-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.22 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
{
"name": "rosspi",
"version": "1.1.1",
"description": "Kitchen utility for magnetic switch sensor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"preferGlobal": true,
"bin": "dist/index.js",
"scripts": {
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rossanmol/ross-pi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rossanmol/ross-pi/issues"
},
"homepage": "https://github.com/rossanmol/ross-pi#readme",
"dependencies": {
"@types/commander": "^2.12.2",
"@types/i2c-bus": "1.0.18",
"@types/node-cleanup": "^2.1.0",
"@types/node-hue-api": "^2.3.0",
"commander": "^2.18.0",
"i2c-bus": "^4.0.1",
"node-cleanup": "^2.1.2",
"node-hue-api": "^2.4.3",
"rxjs": "^6.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"jest": "^23.6.0",
"ts-jest": "^23.10.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3"
}
}