-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "@neoskop/hrbac",
"version": "2.1.0",
"description": "An implementation of a hierarchical role based access control for nodejs and browser.",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "npm test -- --coverage && coveralls < coverage/lcov.info",
"clean": "rimraf dist",
"prebuild": "npm run test && npm run clean",
"build": "ng-packagr -p src/ng-package.json && tsc",
"postbuild": "node ./bin/postbuild.js",
"publish-next": "npm run build && npm publish ./dist --tag next",
"publish-latest-only": "npm run build && npm publish ./dist",
"publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/hrbac@`jq '.version' package.json -r` next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoskop/hrbac.git"
},
"keywords": [
"hierarchical",
"rbac",
"acl",
"permission",
"permissions",
"access",
"control",
"role",
"resource",
"privilege",
"assert"
],
"author": "Mark Wecke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neoskop/hrbac/issues"
},
"homepage": "https://github.com/neoskop/hrbac#readme",
"peerDependencies": {
"@angular/common": ">=13.0.0",
"@angular/core": ">=13.0.0",
"rxjs": ">=7.5.0"
},
"devDependencies": {
"@angular/common": "14.0.2",
"@angular/compiler": "14.0.2",
"@angular/compiler-cli": "14.0.2",
"@angular/core": "14.0.2",
"@angular/platform-browser": "14.0.2",
"@angular/router": "14.0.2",
"@types/jest": "^28.1.2",
"@types/node": "18.0.0",
"coveralls": "3.1.1",
"jest": "^28.1.1",
"json5": "^2.2.1",
"ng-packagr": "14.0.2",
"rimraf": "3.0.2",
"rxjs": "7.5.5",
"ts-jest": "^28.0.5",
"ts-node": "10.8.1",
"tsconfig-paths": "4.0.0",
"tslib": "2.4.0",
"typescript": "~4.7.4",
"zone.js": "~0.11.6"
}
}