-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
{
"name": "status-monitor",
"version": "1.0.4",
"description": "Monitor http endpoints health instantly, perfect for server integration",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "mocha --recursive --reporter spec",
"watch-test": "mocha --recursive --watch --reporter spec",
"test-ci": "istanbul cover ./node_modules/mocha/bin/_mocha test/**/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info"
},
"devDependencies": {
"mocha": "^5.1.1",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"istanbul": "0.4.5",
"unit-test-class": "1.0.6"
},
"keywords": [
"health",
"healthcheck",
"status",
"statuscheck",
"monitor",
"status monitor",
"http status",
"http check",
"tcp check"
],
"repository": {
"type": "git",
"url": "https://github.com/hisco/status-monitor.git"
},
"bugs": {
"url": "https://github.com/hisco/status-monitor/issues"
},
"homepage": "https://github.com/hisco",
"author": "Eyald <hisco@googlegroups.com>",
"license": "MIT",
"dependencies": {
"healthcheck-monitor": "^1.0.2"
}
}