forked from node-casbin/nest-authz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.72 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
{
"name": "nest-authz",
"version": "2.8.0",
"description": "Nest.js RBAC & ABAC authorization module based on Node-Casbin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 10.13.0"
},
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist",
"commit": "git-cz",
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublish": "yarn lint && yarn build",
"style": "prettier --check \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"release": "standard-version",
"test": "jest",
"coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "dreamdevil00",
"license": "MIT",
"dependencies": {
"casbin": "^5.11.1"
},
"devDependencies": {
"@nestjs/common": "^9.0.3",
"@nestjs/core": "^9.0.3",
"@types/jest": "24.9.0",
"@types/node": "11.15.50",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"jest": "24.9.0",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.1",
"rxjs": "^6.0.0",
"standard-version": "8.0.2",
"ts-jest": "24.3.0",
"ts-node": "10.0.0",
"tslint": "5.11.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@nestjs/common": "^9.0.3 || ^10.0.0",
"@nestjs/core": "^9.0.3 || ^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6"
},
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/nest-authz.git"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}