-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
{
"name": "pinguno",
"version": "0.2.0",
"author": "Tom Kenny",
"contributors": [
"Tom Kenny"
],
"homepage": "https://gitlab.com/twome/pinguno",
"license": "MIT",
"keywords": "ping, uptime, connectivity",
"dependencies": {
"del": "^3.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"full-icu": "^1.2.1",
"get-folder-size": "^2.0.0",
"ip-address": "^5.8.9",
"lodash": "^4.17.13",
"luxon": "^1.4.1",
"net-ping": "^1.2.3",
"prompts": "^1.1.1",
"simple-statistics": "^6.1.0",
"toxiproxy-node-client": "^2.0.6",
"util": "^0.11.0",
"yarn": "^1.17.3"
},
"main": "pinguno.js",
"bin": {
"pinguno": "./start.js"
},
"pkg": {
"scripts": [],
"assets": []
},
"nodemonConfig": {
"ignore": [
"logs/*",
"config/pinguno-last-settings.json"
]
},
"scripts": {
"compressall": "node action_compress-all-logs.js",
"buildcli": "cross-env NODE_ICU_DATA=\\\"$(pwd)/node_modules/full-icu\\\" pkg . --out-path build --debug",
"dev": "cross-env NODE_ICU_DATA=\\\"$(pwd)/node_modules/full-icu\\\" node start.js",
"devmon": "cross-env NODE_ICU_DATA=\\\"$(pwd)/node_modules/full-icu\\\" nodemon start.js",
"test": "echo \"No tests available yet.\""
},
"devDependencies": {
"cross-env": "^5.2.0",
"pkg": "^4.3.4"
}
}