-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.56 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
{
"name": "obd-parser-cli",
"version": "0.2.0",
"description": "CLI to read diagnostic data from vehicles via OBD (ELM 327) connections",
"bin": {
"obd": "bin/index.js"
},
"scripts": {
"compile": "tsc bin/index.ts --declaration",
"prepublish": "npm test && npm run compile",
"test": "echo \"Tests needed...\""
},
"keywords": [
"obd",
"parser",
"cli",
"obdii",
"elm",
"327",
"pid",
"obd2",
"elm327",
"serial",
"vehicle",
"diagnostics",
"can",
"car",
"canbus"
],
"author": "Evan Shortiss",
"license": "GPL-3.0",
"dependencies": {
"bluebird": "~3.4.6",
"commander": "~2.9.0",
"lodash": "~4.17.2",
"mkdirp": "~0.5.1",
"obd-parser": "~0.3.0",
"obd-parser-development-connection": "~0.2.0",
"obd-parser-serial-connection": "~0.1.1",
"p-queue": "~0.2.0",
"promise-queue": "~2.2.3",
"queue-that-promise": "~1.2.1",
"stream-counter": "~1.0.0",
"table": "~4.0.1",
"uuid": "~3.0.1"
},
"devDependencies": {
"@types/bluebird": "~3.0.36",
"@types/commander": "~2.3.31",
"@types/core-js": "~0.9.35",
"@types/lodash": "~4.14.41",
"@types/mkdirp": "~0.3.29",
"@types/node": "0.0.2",
"@types/uuid": "~2.0.29",
"typescript": "~2.0.10"
},
"main": "bin/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/obd-parser-cli.git"
},
"bugs": {
"url": "https://github.com/evanshortiss/obd-parser-cli/issues"
},
"homepage": "https://github.com/evanshortiss/obd-parser-cli#readme"
}