forked from WebThingsIO/zwave-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
{
"name": "candle-zwave-adapter",
"version": "0.11.1",
"description": "Connect to Z-wave devices",
"author": "WebThingsIO & CandleSmartHome.com",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"jest": "jest"
},
"homepage": "https://github.com/createcandle/candle-zwave-adapter",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/fcreatecandle/candle-zwave-adapter.git"
},
"bugs": {
"url": "https://github.com/createcandle/candle-zwave-adapter/issues"
},
"dependencies": {
"color": "^3.1.3",
"mkdirp": "^1.0.4",
"openzwave-shared": "latest",
"serialport": "latest"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.29.0",
"gateway-addon": "^1.1.0",
"jest": "^26.6.3"
},
"files": [
"LICENSE",
"SHA256SUMS",
"index.js",
"manifest.json",
"package.json",
"zwave-adapter.js",
"zwave-classifier.js",
"zwave-constants.js",
"zwave-debug.js",
"zwave-loader.sh",
"zwave-node.js",
"zwave-property.js"
],
"jest": {
"coverageDirectory": "./coverage/",
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/test/**/*-test.js"
],
"testEnvironment": "node"
}
}