-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "homekit-battery-integration",
"version": "1.2.0",
"description": "A HomeKit integration for home batteries.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib/",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "bin/homekit-battery-integration"
},
"author": "[email protected]",
"license": "MIT",
"bin": {
"homekit-battery-integration": "bin/homekit-battery-integration"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"angular2-uuid": "^1.1.1",
"commander": "^5.1.0",
"date-fns": "^2.14.0",
"debug": "^4.1.1",
"hap-nodejs": "^0.7.3",
"ng2-cookies": "^1.0.12",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/node": "10.17.18",
"rimraf": "3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}