-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"name": "http-auth-hapi",
"description": "Hapi framework integration with http-auth module.",
"version": "2.0.8",
"author": "Gevorg Harutyunyan (http://github.com/gevorg)",
"maintainers": [
{
"name": "gevorg",
"email": "gevorg.ha@gmail.com"
}
],
"homepage": "https://github.com/http-auth/http-auth-hapi",
"repository": {
"type": "git",
"url": "https://github.com/http-auth/http-auth-hapi.git"
},
"main": "./src/index.js",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/http-auth/http-auth-hapi/blob/master/LICENSE"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/http-auth/http-auth-hapi/issues"
},
"devDependencies": {
"@hapi/hapi": "^19.0.5",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"http-auth": "^4.1.7",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"request": "^2.88.0"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "mocha",
"pretest": "eslint --ignore-path .gitignore ."
},
"keywords": [
"hapi",
"http",
"basic",
"digest",
"access",
"authentication"
],
"dependencies": {
"@hapi/boom": "^9.0.0"
}
}