forked from gavinaiken/rbac2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "@twenty20solutions/rbac2",
"version": "2.0.2",
"description": "Simple RBAC checker with support for context checks.",
"main": "index.js",
"scripts": {
"lint": "eslint --format codeframe '**/*.js'",
"lint-fix": "eslint --fix --format codeframe '**/*.js'",
"test": "npm run lint && jest --coverage",
"preversion": "/bin/bash ./scripts/preversion.sh",
"version": "/bin/bash ./scripts/version.sh"
},
"keywords": [
"rbac",
"role",
"based",
"access",
"control",
"hierarchical",
"context",
"business",
"logic",
"database"
],
"repository": {
"type": "git",
"url": "git+https://git@github.com/twenty20solutions/rbac2.git"
},
"author": "Twenty20 Solutions <info@twenty20solutions.com> (https://www.twenty20solutions.com/)",
"contributors": [
"Jigar Jain <jjain91@gmail.com> (http://twitter.com/ragij)",
"Ramnique Singh <mail@ramniquesingh.name> (http://twitter.com/ramniquesingh)",
"Galvin Aiken",
"Luis Lobo <luislobo@gmail.com>",
"Mudrekh Goderya <mudrekh@gmail.com>",
"Keaton Foster <keatonfids@gmail.com>"
],
"license": "MIT",
"dependencies": {
"debug": "4.3.4"
},
"devDependencies": {
"eslint": "8.42.0",
"eslint-formatter-codeframe": "7.32.1",
"jest": "^29.5.0"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}