-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "hapi-pulse",
"description": "hapi plugin that gracefully stops the hapi server on SIGINT",
"version": "3.0.1",
"author": "Marcus Pöhls <marcus@futurestud.io>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-pulse/issues"
},
"dependencies": {
"joi": "~17.9.2"
},
"devDependencies": {
"@hapi/code": "~9.0.3",
"@hapi/hapi": "~21.3.2",
"@hapi/hoek": "~11.0.2",
"@hapi/lab": "~25.1.3",
"eslint": "~8.45.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-n": "~16.0.1",
"eslint-plugin-promise": "~6.1.1",
"husky": "~8.0.3",
"mock-stdio": "~1.0.3",
"sinon": "~15.2.0"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-pulse#readme",
"keywords": [
"developer",
"hapi",
"hapi graceful",
"hapi pm2",
"hapi pm2 graceful",
"hapi pm2 graceful restart",
"hapi pm2 graceful server restart",
"hapi.js",
"hapijs",
"plugin",
"pm2"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-pulse.git"
},
"scripts": {
"prepush": "npm test",
"test": "lab --assert @hapi/code --leaks --coverage --lint"
}
}