forked from RafalWilinski/express-status-monitor
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 787 Bytes
/
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
{
"name": "koa-monitor",
"version": "0.4.0",
"description": "Realtime monitoring for koa-based Node applications",
"main": "index.js",
"keywords": [
"node",
"status",
"monitoring",
"koa",
"charts"
],
"engines": {
"node": ">=7.6"
},
"scripts": {},
"author": "Jiri Spac capajj@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/capaj/koa-monitor.git"
},
"dependencies": {
"handlebars": "^4.0.12",
"mz": "^2.7.0",
"pidusage": "^2.0.17",
"socket.io": "^2.2.0"
},
"devDependencies": {
"husky": "^1.3.1",
"koa": "^2.7.0",
"prettier": "^1.16.3",
"pretty-quick": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}