forked from asafdav/hapi-auth-extra
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "hapi-authorization",
"version": "4.0.0",
"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]:toymachiner62/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"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/toymachiner62/hapi-authorization/issues"
},
"homepage": "https://github.com/toymachiner62/hapi-authorization",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"boom": "^7.2.0",
"hoek": "^5.0.3",
"joi": "^13.4.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"hapi": "^17.4.0",
"istanbul": "^0.4.1",
"jscoverage": "^0.6.0",
"mocha": "^2.3.4"
},
"peerDependencies": {
"hapi": ">= 10"
}
}