-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.55 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
{
"name": "server-health",
"version": "5.3.0",
"description": "Library to provide server health information via a HTTP server endpoint for express, restify, hapi, and vanilla http",
"keywords": [
"server",
"node",
"http",
"status",
"uptime",
"rest",
"json",
"ping",
"health",
"restify",
"fastify",
"express",
"hapi"
],
"main": "index.js",
"scripts": {
"bootstrap": "scripts/bootstrap.sh",
"setup": "scripts/setup.sh",
"update": "scripts/update.sh",
"test": "scripts/test.sh",
"test:coverage": "scripts/test.sh -c",
"lint": "./node_modules/.bin/eslint --color --ext .js lib test example",
"lint:test": "npm run lint && npm run test",
"example": "node example/server.js",
"prepare": "husky install"
},
"author": {
"name": "Ingo Renner",
"email": "[email protected]"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AugustHome/server-health.git"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"bluebird": "^3.7.2",
"git-repo-info": "^2.1.1",
"lodash": "^4.17.21",
"restify-errors": "^8.0.2"
},
"devDependencies": {
"@hapi/hapi": "^21.3.3",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-security": "^1.7.1",
"express": "^4.18.2",
"fastify": "^4.26.1",
"husky": "^8.0.3",
"mocha": "^10.3.0",
"mocha-multi": "^1.1.7",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"restify": "^11.1.0",
"sinon": "^15.2.0"
}
}