forked from canboat/canboatjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@canboat/canboatjs",
"version": "2.8.0",
"description": "Native javascript version of canboat",
"main": "index.js",
"scripts": {
"dev-test": "jest --watch",
"test": "jest && mocha --exit",
"code-coverage": "jest --coverage && nyc mocha --exit",
"create-release": "github-create-release --owner canboat --repository canboatjs",
"release": "git tag -d v$npm_package_version && git tag v$npm_package_version && git push --tags && git push && npm run create-release",
"build_ios": "webpack -c ./webpack.config.js --mode development ./ios.js -o ios_canboat.js",
"build_prod_ios": "webpack -c ./webpack.config.js --mode production ./ios.js -o ios_canboat.js"
},
"bin": {
"analyzerjs": "./bin/analyzerjs",
"to-pgn": "./bin/to-pgn",
"candumpanalyzerjs": "./bin/candumpanalyzerjs",
"actisense-serialjs": "./bin/actisense-serialjs",
"actisense-file": "./bin/actisense-file",
"actisense-n2k-tcp": "./bin/actisense-n2k-tcp",
"candumpjs": "./bin/candumpjs",
"ikonvert-serial": "./bin/ikonvert-serial"
},
"jest": {
"rootDir": "lib"
},
"keywords": [
"boat",
"bus",
"can",
"canboat",
"k",
"marine",
"nmea2000",
"parser",
"pgn",
"signalk",
"signal"
],
"author": "Scott Bender <[email protected]>",
"contributors": [
{
"name": "Kees Verruijt",
"email": "[email protected]"
},
{
"name": "Teppo Kurki",
"email": "[email protected]"
},
{
"name": "Jouni Hartikainen",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"dependencies": {
"@canboat/pgns": "5.1.x",
"bit-buffer": "0.2.3",
"debug": "^4.3.4",
"dnssd": "^0.4.1",
"int64-buffer": "^0.1.10",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mqtt": "^2.18.8",
"split": "^1.0.1"
},
"devDependencies": {
"@signalk/github-create-release": "^1.0.1",
"@signalk/server-api": "^1.39.0",
"baconjs": "^1.0.1",
"buffer": "^6.0.3",
"chai": "^4.1.2",
"chai-json-equal": "0.0.1",
"chai-string": "^1.5.0",
"chai-things": "^0.2.0",
"jest": "^24.7.1",
"mocha": "^5.0.0",
"moment": "^2.24.0",
"nyc": "^15.1.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"serialport": "11.x.x",
"socketcan": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/canboat/canboatjs.git"
}
}