forked from yourwelcomeltd/hapi-authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "@descript/hapi-authorization",
"version": "4.0.0-alpha.1",
"description": "ACL support for hapijs apps",
"main": "index.js",
"scripts": {
"test": "mocha test",
"coverage": "istanbul cover _mocha test; cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:descriptinc/hapi-authorization.git"
},
"keywords": [
"hapi",
"auth",
"authorization",
"acl"
],
"contributors": [
{
"name": "Asaf David",
"email": "[email protected]",
"url": "http://about.me/asafdavid"
},
{
"name": "Tom Caflisch",
"email": "[email protected]",
"url": "https://github.com/toymachiner62"
},
{
"name": "Descript Engineering",
"email": "[email protected]",
"url": "https://github.com/descriptinc"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/descriptinc/hapi-authorization/issues"
},
"homepage": "https://github.com/descriptinc/hapi-authorization",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"jscoverage": "^0.6.0",
"mocha": "^2.3.4"
},
"peerDependencies": {
"@hapi/hapi": ">= 20",
"joi": ">= 17"
}
}