-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "casbin-express-authz",
"version": "3.0.2",
"description": "casbin-express-authz is an authorization middleware for Express",
"main": "./build/authz.js",
"types": "./build/authz.d.ts",
"scripts": {
"prepack": "npm run lint && npm run test && npm run build",
"build": "tsc",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"test": "jest"
},
"files": [
"build",
"testt",
"examples"
],
"keywords": [
"node-casbin",
"casbin",
"expressjs",
"express",
"authz",
"authorization",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/express-authz.git"
},
"author": {
"name": "Chalin-Shi",
"email": "18875906195@163.com"
},
"engines": {
"node": ">= 7.6.0"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/node-casbin/express-authz/issues"
},
"homepage": "https://github.com/node-casbin/express-authz#readme",
"peerDependencies": {
"express": "^4.16.3",
"casbin": "^4.5.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"coveralls": "^3.0.2",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"supertest": "^3.1.0",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.1",
"pretty-quick": "^2.0.1",
"express": "^4.16.3",
"casbin": "^4.5.0"
},
"husky": {
"hooks": {}
}
}