forked from roccomuso/iot-433mhz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "iot-433mhz",
"version": "1.0.4",
"description": "Node server to handle 433mhz outlets and sensors.",
"main": "index.js",
"preferGlobal": true,
"bin": {
"iot-433mhz": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "npm run integration_test && npm run security_check",
"integration_test": "NODE_ENV=development mocha --timeout=5000 test/**/*.js",
"security_check": "nsp check"
},
"repository": {
"type": "git",
"url": "https://github.com/roccomuso/iot-433mhz"
},
"bugs": {
"url": "https://github.com/roccomuso/iot-433mhz/issues"
},
"keywords": [
"iot",
"433mhz",
"domotic",
"arduino",
"raspberry",
"433",
"rc-switch",
"pir"
],
"author": "Rocco Musolino",
"license": "MIT",
"dependencies": {
"async": "2.1.4",
"basic-auth": "1.1.0",
"body-parser": "1.18.2",
"chalk": "2.3.2",
"console-mirroring": "1.0.3",
"consolidate": "0.14.5",
"debug": "^3.1.0",
"express": "4.16.3",
"figlet": "1.1.2",
"multer": "1.1.0",
"mustache": "2.2.1",
"nedb": "1.8.0",
"node-webhooks": "1.2.4",
"prompt": "1.0.0",
"request": "2.85.0",
"semver": "^5.3.0",
"serialport": "4.0.6",
"socket.io": "2.0.4",
"validator": "4.5.0",
"virtual-serialport": "^4.0.1",
"yargs": "4.8.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nsp": "^2.6.2"
}
}