-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
48
49
50
{
"name": "rbac",
"version": "6.0.0",
"description": "Hierarchical Role Based Access Control",
"author": {
"name": "Zlatko Fedor",
"email": "zfedor@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/seeden/rbac.git"
},
"keywords": [
"rbac",
"role",
"permission",
"access",
"authorization",
"hierarchical",
"access-control"
],
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "babel ./src --out-dir ./dist --source-maps --ignore '**/*.test.js'",
"test": "jest ./src/",
"test:coverage": "jest --coverage ./src/",
"test:watch": "jest --watch ./src/",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-flow": "^7.27.1",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"babel-jest": "^30.3.0",
"jest": "^30.3.0"
},
"bugs": {
"url": "https://github.com/seeden/rbac/issues"
},
"jest": {
"testEnvironment": "node"
}
}