forked from thkl/hap-homematic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.55 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
69
70
71
72
73
74
75
76
77
{
"name": "hap-homematic",
"version": "0.0.58",
"description": "provides a homekit bridge to the ccu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/thkl/hap-homematic.git"
},
"keywords": [
"HomeKit",
"HomeMatic",
"CCU"
],
"engines": {
"node": ">=8.11.0"
},
"dependencies": {
"binrpc": "3.3.1",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"fakegato-history": "^0.5.6",
"formidable": "^1.2.2",
"hap-nodejs": "^0.5.7",
"homematic-xmlrpc": "1.0.2",
"sockjs": "^0.3.20",
"moment": "2.29.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"scripts": {
"start": "node index.js || true",
"dev": "node index.js -D || true",
"devall": "DEBUG=* node index.js -D || true",
"test": "mocha",
"update": "mkdir /tmp/hap-homematic-cache;cd /usr/local/addons/hap-homematic;npm i --cache /tmp/hap-homematic-cache hap-homematic@latest;rm -R /tmp/hap-homematic-cache",
"restart": "/etc/config/rc.d/hap-homematic restart",
"lint": "standard",
"preversion": "npm run test",
"version": "",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"mocha": "^7.0.1",
"expect.js": "0.3.1",
"husky": "^4.2.5"
},
"mocha": {
"bail": true,
"reporter": "spec",
"recursive": true
},
"standard": {
"ignore": [
"/lib/configurationsrv/html/*"
],
"env": [
"commonjs",
"node",
"mocha"
]
},
"files": [
"lib/",
"etc/",
"README.md",
"CHANGELOG.md",
"LICENSE",
"index.js",
"package.json",
".nobackup"
]
}