-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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-request-utilities",
"description": "hapi request decorations to conveniently access request data",
"version": "4.1.1",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-request-utilities/issues"
},
"dependencies": {
"@supercharge/request-ip": "~1.2.0",
"lodash": "~4.17.20"
},
"devDependencies": {
"@hapi/code": "~9.0.0",
"@hapi/hapi": "~21.3.0",
"@hapi/lab": "~25.2.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.1.0",
"eslint-plugin-standard": "~4.1.0",
"husky": "~9.0.1"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-request-utilities#readme",
"keywords": [
"hapi",
"hapi request utilities",
"hapi.js",
"hapijs",
"plugin",
"request",
"request utilities",
"utilities"
],
"license": "MIT",
"main": "lib/index.js",
"types": "typings",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-request-utilities.git"
},
"scripts": {
"test": "lab --assert @hapi/code --leaks --coverage --lint"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}