-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
57 lines (57 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@signalk/nmea0183-signalk",
"version": "3.15.1",
"description": "A node.js/javascript parser for NMEA0183 sentences. Sentences are parsed to Signal K format.",
"main": "index.js",
"scripts": {
"format": "prettier --write test lib hooks index.js",
"test": "mocha",
"deploy": "npm test && npm run release && npm publish --access public --scope @signalk .",
"create-release": "github-create-release --owner signalk --repository nmea0183-signalk",
"release": "git tag -d v$npm_package_version && git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"bin": {
"nmea0183-signalk": "./bin/nmea0183-signalk",
"nmea2signalk": "./bin/nmea0183-signalk"
},
"keywords": [
"nmea",
"0183",
"nmea0183",
"signalk",
"signal",
"k",
"parser"
],
"author": "Fabian Tollenaar <[email protected]> (http://signalk.org)",
"license": "Apache-2.0",
"dependencies": {
"@signalk/nmea0183-utilities": "^0.8.0",
"@signalk/signalk-schema": "^1.7.1",
"ggencoder": "^1.0.8",
"moment-timezone": "^0.5.21",
"split": "^1.0.1"
},
"devDependencies": {
"@signalk/github-create-release": "^1.2.0",
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"debug": "^4.0.1",
"mocha": "^9.1.2",
"prettier": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/signalk/signalk-parser-nmea0183"
},
"bugs": {
"url": "https://github.com/signalk/signalk-parser-nmea0183/issues"
},
"homepage": "https://github.com/signalk/signalk-parser-nmea0183",
"standard": {
"globals": [
"describe",
"it"
]
}
}