-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
{
"name": "obd2",
"version": "0.1.2",
"description": "Vehicle communication and data parsing with OBD-II connector.",
"main": "index.js",
"scripts": {
"start": "node example/server.js",
"typings": "cd src && typings install",
"lint": "tsconfig-lint && tslint -c tslint.json \"src/**/*.ts\"",
"docs": "typedoc --options typedoc.json ./src/",
"build": "node bin/build && tsc",
"test": "mocha --compilers --reporter spec test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sipimokus/node-obd2.git"
},
"keywords": [
"obd",
"obd2",
"elm327",
"bus",
"can",
"iso",
"sae",
"pwm",
"kwp",
"vpw",
"pid",
"at",
"serial",
"bluetooth",
"usb",
"car",
"engine",
"vehicle",
"diagnostic",
"diagnostics"
],
"author": "Bence Sipos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sipimokus/node-obd2/issues"
},
"homepage": "https://github.com/sipimokus/node-obd2",
"dependencies": {
"debug": "^2.2.0",
"serialport": "^2.0.6"
},
"devDependencies": {
"assert": "^1.3.0",
"mocha": "^2.4.5",
"tsconfig-lint": "^0.5.0",
"tslint": "^3.3.0",
"typedoc": "^0.3.12",
"typescript": "^1.7.5",
"typings": "^0.6.6"
}
}