forked from tensult/role-acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "role-acl",
"version": "4.3.2",
"description": "Role, Attribute and Condition based Access Control for Node.js",
"main": "./index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"files": [
"index.js",
"lib",
"LICENSE"
],
"types": "./lib/src/index.d.ts",
"scripts": {
"build": "rimraf ./lib && mkdirp ./lib && tsc",
"prepare": "npm run build",
"test": "ts-node ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"test:coverage": "./node_modules/istanbul/lib/cli.js cover -e .ts -x \"*.d.ts\" -x \"*.spec.ts\" ts-node node_modules/jasmine/bin/jasmine.js -- JASMINE_CONFIG_PATH=jasmine.json",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tensult/role-acl.git"
},
"keywords": [
"access",
"access-control",
"role",
"attribute",
"grant",
"allow",
"condition",
"permission",
"action",
"rbac",
"abac",
"resource",
"express",
"admin",
"user",
"acl",
"glob",
"wildcard"
],
"author": "Dilip Kola <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tensult/role-acl/issues"
},
"homepage": "https://github.com/tensult/role-acl#readme",
"devDependencies": {
"@types/jasmine": "^3.3.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/matcher": "^1.1.0",
"@types/node": "^9.4.7",
"handlebars": "^4.5.3",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^3.3.0",
"js-yaml": ">=3.13.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"webpack": "^4.12.0"
},
"dependencies": {
"jsonpath-plus": "^0.18.0",
"lodash.clonedeep": "^4.5.0",
"matcher": "^1.0.0",
"notation": "^1.3.5"
}
}