-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
44 lines (44 loc) · 1.1 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
42
43
44
{
"name": "signalk-to-nmea2000",
"version": "2.20.0",
"description": "Signal K server plugin to convert Signal K to NMEA2000",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000",
"create-release": "github-create-release --owner signalk --repository signalk-to-nmea2000",
"release": "git tag -d v$npm_package_version ; git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"keywords": [
"signalk-node-server-plugin"
],
"author": {
"name": "Scott Bender",
"email": "[email protected]"
},
"contributors": [
{
"name": "Teppo Kurki"
}
],
"license": "ISC",
"dependencies": {
"baconjs": "^0.7.88",
"lodash": "^4.17.4"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-to-nmea2000"
},
"devDependencies": {
"@canboat/canboatjs": "2.x",
"@signalk/github-create-release": "^1.2.1",
"chai": "^4.1.2",
"chai-json-equal": "^0.0.1",
"mocha": "^5.0.0",
"signalk-server": "^1.4.0",
"sinon": "^4.1.6"
},
"engines": {
"node": ">=10"
}
}