forked from RafalWilinski/express-status-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.01 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
{
"name": "express-status-monitor",
"version": "1.3.3",
"description": "Realtime Monitoring for Express-based Node applications",
"main": "index.js",
"keywords": [
"node",
"status",
"monitoring",
"express",
"charts"
],
"engines": {
"node": ">=8"
},
"author": "Rafal Wilinski <[email protected]> (https://rwilinski.me)",
"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/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/RafalWilinski/express-status-monitor.git"
},
"license": "MIT",
"dependencies": {
"axios": "0.21.1",
"debug": "4.1.1",
"handlebars": "^4.7.7",
"on-headers": "1.0.2",
"pidusage": "2.0.18",
"socket.io": "2.4.0"
},
"optionalDependencies": {
"event-loop-stats": "1.2.0"
},
"scripts": {
"test-ci": "mocha --recursive",
"test": "mocha --recursive --watch",
"snyk-protect": "snyk protect",
"example": "npm i && npm i --prefix examples && npm start --prefix examples",
"eslint": "eslint ."
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.8.0",
"mocha": "7.1.1",
"sinon": "9.0.1",
"snyk": "^1.606.0"
},
"snyk": true
}