-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"version": "0.1.1",
"name": "network-monitor",
"display_name": "Network Monitor",
"description": "Network Monitor add-on for the WebThings IoT Gateway. This monitors the presence of devices on the local network(s)",
"author": "Chas-IoT",
"license": "MPL-2.0",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"keywords": [
"iot",
"network",
"monitor",
"presence"
],
"homepage": "https://github.com/chas-iot/network-monitor",
"repository": {
"type": "git",
"url": "https://github.com/chas-iot/network-monitor.git"
},
"bugs": {
"url": "https://github.com/chas-iot/network-monitor/issues"
},
"dependencies": {
"ip-cidr": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"src/network-monitor-adaoptor.js",
"src/network-monitor-device.js",
"index.js",
"manifest.json"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"type": "adapter",
"plugin": true,
"exec": "{nodeLoader} {path}"
}
}