-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "rtl433-webmon",
"version": "1.0.0",
"description": "web front end for a software defined radio reading sensors",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.1123.0",
"debug": "^4.3.4",
"express": "^4.18.0",
"forever": "^4.0.3",
"moment": "^2.29.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"serialport": "^10.4.0",
"socket.io": "^4.5.0"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.2",
"sinon": "^13.0.2",
"standard": "^17.0.0"
},
"scripts": {
"start": "node index.js",
"daemon-start": "forever start --minUptime 1000 --spinSleepTime 1000 index.js",
"daemon-stop": "forever stop index.js",
"pretest": "standard",
"test": "mocha test/**/*-test.js",
"debug": "DEBUG=webmon* npm start"
},
"standard": {
"globals": [
"angular",
"io"
],
"envs": [
"mocha"
]
},
"author": "Mark Frost",
"license": "GPL-3.0",
"repository": "https://github.com/frostmar/rtl433-webmon.git"
}