forked from SignalK/signalk-to-nmea2000
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "signalk-to-nmea2000",
"version": "2.5.0",
"description": "Signal K server plugin to convert Signal K to NMEA2000",
"main": "index.js",
"scripts": {
"changelog": "github-changes -o signalk -r signalk-to-nmea2000 -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",
"test": "mocha"
},
"keywords": [
"signalk-node-server-plugin"
],
"author": {
"name": "Scott Bender",
"email": "[email protected]"
},
"contributors": [
{
"name": "Teppo Kurki"
}
],
"license": "ISC",
"dependencies": {
"baconjs": "^0.7.88",
"@canboat/canboatjs": "1.x",
"debug": "^3.1.0",
"github-changes": "^1.1.2",
"lodash": "^4.17.4"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-to-nmea2000"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"signalk-server": "^1.4.0",
"sinon": "^4.1.6"
}
}