-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "hapi-rbac",
"version": "3.0.0",
"description": "Rule Based Access Control for Hapijs",
"preferGlobal": false,
"main": "lib/index.js",
"repository": "[email protected]:franciscogouveia/hapi-rbac.git",
"keywords": [
"hapijs",
"hapi",
"api",
"rbac",
"ac",
"access-control",
"rule"
],
"author": {
"name": "Francisco de Gouveia",
"email": "[email protected]",
"url": "http://de-gouveia.eu"
},
"license": "ISC",
"scripts": {
"test": "lab -v",
"coverage": "lab -s -r lcov | coveralls",
"lint": "lab -dL",
"indent": "js-beautify lib/index.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"boom": "^7.3.0",
"hoek": "^6.1.2",
"joi": "14.3.1",
"rbac-core": "^3.0.0"
},
"devDependencies": {
"code": "4.0.0",
"eslint-config-hapi": "^10.0.0",
"eslint-plugin-hapi": "^4.0.0",
"coveralls": "^2.11.9",
"hapi": "17.8.1",
"hapi-auth-basic": "5.0.0",
"js-beautify": "^1.6.2",
"lab": "^18.0.1"
}
}