This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
forked from RafalWilinski/express-status-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "express-status-monitor",
"version": "1.3.4",
"description": "Realtime Monitoring for Express-based Node applications",
"main": "index.js",
"homepage": "https://dynobase.com",
"keywords": [
"node",
"status",
"monitoring",
"express",
"charts"
],
"engines": {
"node": ">=8"
},
"author": "Rafal Wilinski <[email protected]> (https://dynobase.com)",
"contributors": [
{
"name": "Julien Breux",
"email": "[email protected]",
"url": "https://github.com/JulienBreux/"
},
{
"name": "Benjamin Dixon",
"email": "[email protected]",
"url": "http://bcdxn.tumblr.com/"
},
{
"name": "Colin Cummings",
"email": "[email protected]",
"url": "https://github.com/colinrcummings/"
},
{
"name": "Ferdinand Mütsch",
"email": "[email protected]",
"url": "https://github.com/n1try/"
},
{
"name": "Mattia Richetto",
"email": "[email protected]",
"url": "https://github.com/mattiaerre"
},
{
"name": "Jiri Spac",
"email": "[email protected]",
"url": "https://github.com/capaj/"
},
{
"name": "Max Findel",
"email": "[email protected]",
"url": "https://github.com/maxfindel/"
},
{
"name": "KRAIEM Taha Yassine",
"email": "[email protected]",
"url": "https://github.com/tahayk/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/RafalWilinski/express-status-monitor.git"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"debug": "^4.3.7",
"handlebars": "^4.7.8",
"on-headers": "^1.0.2",
"pidusage": "^3.0.2",
"socket.io": "^4.8.0"
},
"optionalDependencies": {
"event-loop-stats": "1.4.1"
},
"scripts": {
"test-ci": "mocha --recursive",
"test": "mocha --recursive --watch",
"example": "npm i && npm i --prefix examples && npm start --prefix examples",
"eslint": "eslint ."
},
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^9.11.1",
"mocha": "^10.7.3",
"sinon": "^19.0.2"
},
"funding": {
"type": "individual",
"url": "http://dynobase.com/buy"
}
}