-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1000 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
42
{
"name": "tiny-rbac",
"description": "A tiny implementation of the ANSI RBAC spec (Core and Hierarchical)",
"version": "1.0.2",
"author": "Shaun Johansen",
"license": "ISC",
"main": "src/index.js",
"scripts": {
"eslint": "eslint src",
"test": "npm run eslint && mocha src/*.test.js",
"build-docs": "npx documentation build src --format md --output API.md"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"documentation": "^8.1.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.9.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7"
},
"keywords": [
"rbac",
"role based access control",
"resource",
"operation",
"permission",
"role",
"hierarchical",
"hierarchy",
"session",
"access",
"security"
],
"repository": {
"type": "git",
"url": "https://github.com/shaunjohansen/tiny-rbac"
},
"bugs": {
"url": "https://github.com/shaunjohansen/tiny-rbac/issues"
}
}