-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "vshosting-monitor",
"version": "1.0.0",
"description": "CLI monitor for vshosting.cloud servers (CPU/RAM/disk) with Slack threshold alerts",
"type": "module",
"license": "MIT",
"author": "BeLenka <dev@belenka.com>",
"homepage": "https://github.com/be-lenka/vshosting-monitor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/be-lenka/vshosting-monitor.git"
},
"bugs": {
"url": "https://github.com/be-lenka/vshosting-monitor/issues"
},
"keywords": [
"vshosting",
"monitoring",
"cli",
"slack",
"server-health",
"cpu",
"ram",
"disk"
],
"bin": {
"vshosting-monitor": "./src/index.js"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node src/index.js",
"notify": "node src/notify.js",
"test": "node --test tests/*.test.js",
"check": "node --check src/api.js && node --check src/filter.js && node --check src/evaluator.js && node --check src/index.js && node --check src/notify.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"cli-table3": "^0.6.5",
"dotenv": "^16.4.5"
}
}