-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "permission-engine",
"description": "Utility permission engine",
"version": "1.0.5",
"main": "./dist/bundle.mjs",
"exports": {
"require": "./dist/bundle.cjs",
"import": "./dist/bundle.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/thiagoanselmo/permission-engine"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagoanselmo/permission-engine/issues"
},
"homepage": "https://github.com/thiagoanselmo/permission-engine/#readme",
"type": "module",
"keywords": [
"rbac",
"permissions",
"roles",
"rules"
],
"author": "thiagoo.anselmoo@gmail.com",
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"chai": "^3.5.0",
"glob": "~7.1.1",
"license-checker": "^8.0.4",
"mocha": "^3.2.0",
"proxyquire": "^1.8.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0"
},
"maintainers": [
{
"name": "Thiago Anselmo",
"email": "thiagoo.anselmoo@gmail.com"
}
]
}