-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.07 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
{
"name": "heilo",
"version": "1.0.4",
"description": "server status monitoring tool made simple",
"main": "./dist/index.js",
"files": [
"dist",
"bin"
],
"scripts": {
"prepublish": "npm run build",
"example": "node examples/index.js",
"build": "mkdir -p dist && async-to-gen lib/index.js > dist/index.js",
"test": "standard"
},
"bin": {
"heilo": "./bin/heilo"
},
"repository": "xkawi/heilo",
"keywords": [
"heilo",
"server",
"health",
"checker",
"healthchecker",
"ping",
"status",
"regularly",
"interval",
"statuspage",
"pagechecker",
"heartbeat"
],
"author": {
"name": "Kawi Xiao",
"email": "kawixiao@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xkawi/heilo"
},
"homepage": "https://github.com/xkawi/heilo#readme",
"dependencies": {
"async-to-gen": "^1.3.0",
"isomorphic-fetch": "^3.0.0",
"minimist": "^1.2.6",
"ms": "^0.7.2"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"standard": "^8.6.0"
}
}