forked from birkir/obdii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.44 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
{
"name": "obdii",
"version": "0.0.1",
"description": "Vehicle communication and data parsing with OBD-II connector.",
"main": "lib/index.js",
"scripts": {
"prettier": "prettier --write '**/*.{json,md,js,jsx,ts,tsx}'",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birkir/obdii.git"
},
"keywords": [
"obd",
"obd2",
"obdii",
"react native",
"elm327",
"can",
"serial",
"bluetooth",
"usb"
],
"authors": [
"Bence Sipos <sipimokus@gmail.com>",
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/birkir/obdii"
},
"homepage": "https://github.com/birkir/obdii",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"cryptiles": "^4.1.2",
"debug": "2.6.9",
"hoek": "^4.2.1",
"serialport": "^9.0.6"
},
"devDependencies": {
"@types/debug": "4.1.2",
"@types/node": "10.12.18",
"@types/serialport": "7.0.2",
"@ueno/tslint-config": "1.0.3",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"tslint": "5.12.1",
"typescript": "3.3.1"
}
}