-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "koa-authz",
"version": "3.0.1",
"description": "koa-authz is an authorization middleware for Koa",
"main": "authz.js",
"scripts": {
"prepublish": "npm run lint && npm run test",
"fix": "eslint \"authz.js\" --fix",
"lint": "eslint \"authz.js\"",
"test": "jest"
},
"keywords": [
"node-casbin",
"koajs",
"koa2",
"authz",
"authorization",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/koa-authz.git"
},
"author": {
"name": "Chalin-Shi",
"email": "[email protected]"
},
"engines": {
"node": ">= 7.6.0"
},
"license": "http://www.apache.org/licenses/LICENSE-2.0",
"bugs": {
"url": "https://github.com/node-casbin/koa-authz/issues"
},
"homepage": "https://github.com/node-casbin/koa-authz#readme",
"dependencies": {},
"devDependencies": {
"casbin": "^3.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"express": "^4.16.3",
"jest": "^23.5.0",
"koa": "^2.5.2",
"supertest": "^3.1.0"
},
"peerDependencies": {
"casbin": "^3.0.0"
}
}