forked from SignalK/signalk-to-nmea0183
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 891 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "@signalk/signalk-to-nmea0183",
"version": "1.2.1",
"description": "Signal K server plugin to convert Signal K to NMEA0183",
"main": "index.js",
"scripts": {
"test": "mocha",
"format": "prettier-standard '*.js*' 'sentences/*.js'",
"changelog": "github-changes -o signalk -r signalk-to-nmea0183 -a --only-pulls --use-commit-body --data=pulls --tag-name=v$npm_package_version",
"release": "git tag -d v$npm_package_version ; npm run changelog && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git tag v$npm_package_version && git push --tags && git push"
},
"keywords": [
"signalk-node-server-plugin"
],
"author": "teppo.kurki@iki,fi",
"license": "ISC",
"dependencies": {
"baconjs": "^0.7.88",
"mocha": "^3.5.0"
},
"devDependencies": {
"prettier-standard": "^6.0.0",
"github-changes": "^1.0.4"
}
}