-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.24 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": "kuro-connector",
"version": "0.1.0",
"description": "Control pioneer krl-37v and krl-32v over serial connection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run clean && npm run build",
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write \"**/*.{ts,md}\"",
"clean": "rm -rf dist"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"kuro",
"pioneer",
"serial",
"iot"
],
"author": "Han Verstraete",
"repository": {
"type": "git",
"url": "https://github.com/welteki/kuro-connector"
},
"bugs": {
"url": "https://github.com/welteki/kuro-connector/issues"
},
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"p-defer": "^2.0.0",
"p-queue": "^4.0.0",
"p-timeout": "^3.0.0",
"serialport": "^7.1.4"
},
"devDependencies": {
"@types/debug": "^4.1.2",
"@types/serialport": "^7.0.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}