forked from bugthesystem/hapijs-status-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "hapijs-status-monitor",
"version": "1.0.0",
"description": "Monitoring plugin for hapi.js applications",
"main": "index.js",
"scripts": {
"lint": "eslint --format=node_modules/eslint-formatter-pretty .",
"test": "npm run lint && jest",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/ziyasal/hapijs-status-monitor.git"
},
"keywords": [
"node",
"status",
"monitoring",
"hapi.js",
"charts"
],
"author": "@ziyasal <[email protected]>",
"contributors": [
{
"name": "Daniel Bayerlein",
"url": "https://github.com/danielbayerlein"
}
],
"license": "MIT",
"dependencies": {
"pidusage": "^2.0.6",
"socket.io": "^2.0.4"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.9.0",
"husky": "^0.14.3",
"jest": "^22.4.3"
},
"jest": {
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}