-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "hapi-response-utilities",
"description": "hapi response decorations to conveniently compose responses",
"version": "2.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-response-utilities/issues"
},
"devDependencies": {
"@hapi/code": "~9.0.0",
"@hapi/hapi": "~21.3.0",
"@hapi/lab": "~26.0.0",
"@hapi/vision": "~7.0.0",
"eslint": "~9.21.0",
"eslint-config-standard": "~16.0.2",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~7.2.1",
"handlebars": "~4.7.6",
"husky": "~9.1.1"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-response-utilities#readme",
"keywords": [
"hapi",
"hapi.js",
"hapijs",
"plugin"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-response-utilities.git"
},
"scripts": {
"test": "lab --assert @hapi/code --leaks --coverage --lint --reporter console --output stdout --reporter html --output ./coverage/coverage.html"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}