-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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": "zwave-adapter",
"version": "0.11.0",
"description": "Z-Wave adapter plugin for WebThings Gateway",
"author": "WebThingsIO",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"jest": "jest"
},
"homepage": "https://github.com/WebThingsIO/zwave-adapter",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/zwave-adapter.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/zwave-adapter/issues"
},
"dependencies": {
"color": "^3.1.3",
"mkdirp": "^1.0.4",
"openzwave-shared": "^1.7.2",
"serialport": "^9.0.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.14.0",
"gateway-addon": "^1.2.0-alpha.1",
"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"
}
}