-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "homebridge-cbus",
"version": "1.1.0",
"description": "CBus Platform plugin for homebridge",
"license": "MIT",
"homepage": "http://github.com/anthonywebb/homebridge-cbus/",
"keywords": [
"homebridge-plugin",
"homebridge",
"plugin",
"cbus",
"cbus-smarthome",
"home",
"smarthome",
"homekit",
"siri",
"clipsal",
"cgate"
],
"repository": {
"type": "git",
"url": "git://github.com/anthonywebb/homebridge-cbus.git"
},
"bugs": {
"url": "http://github.com/anthonywebb/homebridge-cbus/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"dependencies": {
"bytes": "^2.4.0",
"carrier": "^0.3.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"debug": ">=2.4.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"ms": "^0.7.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"coveralls": "^2.11.16",
"rewire": "^2.5.2",
"tap": "10.0.2",
"tape": "^4.6.3",
"tmp": "0.0.31"
},
"scripts": {
"test": "node $NODE_DEBUG_OPTION ./node_modules/tape/bin/tape test/*.test.js --coverage",
"test-netId": "node $NODE_DEBUG_OPTION ./node_modules/tape/bin/tape test/cbus-netid.test.js",
"test-database": "node $NODE_DEBUG_OPTION ./node_modules/tape/bin/tape test/cgate-database.test.js",
"build-unit-types": "node $NODE_DEBUG_OPTION ./resources/build-unit-types.js",
"test-coverage": "tap test/*.test.js --cov --coverage-report=html"
}
}