forked from WebThingsIO/zwave-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.36 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
{
"name": "zwave-adapter",
"display_name": "Z-Wave",
"version": "0.5.2",
"description": "Z-Wave adapter plugin for Mozilla IoT Gateway",
"author": "Mozilla IoT",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"keywords": [
"mozilla",
"iot",
"adapter",
"zwave"
],
"homepage": "https://github.com/mozilla-iot/zwave-adapter",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mozilla-iot/zwave-adapter.git"
},
"bugs": {
"url": "https://github.com/mozilla-iot/zwave-adapter/issues"
},
"dependencies": {
"openzwave-shared": "^1.4.6",
"serialport": "^7.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0"
},
"files": [
"LICENSE",
"SHA256SUMS",
"index.js",
"package.json",
"zwave-adapter.js",
"zwave-classifier.js",
"zwave-node.js",
"zwave-property.js"
],
"moziot": {
"api": {
"min": 1,
"max": 2
},
"enabled": true,
"plugin": true,
"exec": "{nodeLoader} {path}",
"config": {
"networkKey": ""
},
"schema": {
"type": "object",
"required": [
"networkKey"
],
"properties": {
"networkKey": {
"type": "string",
"description": "16-byte, comma-separated hex string (0xb4,0xc9,etc...)"
}
}
}
}
}