-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 892 Bytes
/
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
{
"name": "sails-hook-rbac",
"version": "0.0.1",
"description": "Simple RBAC checker with support for context checks for Sails.js as a hook",
"main": "index.js",
"scripts": {
"lint": "eslint --format codeframe '**/*.js'",
"lint-fix": "eslint --fix --format codeframe '**/*.js'"
},
"sails": {
"isHook": true,
"hookName": "rbac"
},
"repository": "luislobo/sails-hook-rbac",
"author": "Luis Lobo Borobia <[email protected]> (https://lobo.com.ar/)",
"dependencies": {
"@luislobo/rbac2": "1.1.3",
"debug": "4.3.1",
"flaverr": "^1.10.0",
"lodash": "4.17.21"
},
"license": "MIT",
"keywords": [
"rbac",
"sails",
"sails.js",
"hook",
"role",
"based",
"access",
"control",
"hierarchical",
"context",
"business",
"logic",
"database"
],
"devDependencies": {
"eslint": "^7.29.0"
}
}