-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "egg-authz",
"version": "3.0.0",
"description": "egg-authz is an authorization middleware for Egg.js",
"main": "authz.js",
"scripts": {
"prepublish": "npm run fix && npm run lint && npm run test",
"fix": "eslint --fix app config",
"lint": "eslint app config",
"test": "egg-bin test"
},
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/egg-authz.git"
},
"keywords": [
"node-casbin",
"casbin",
"egg",
"eggjs",
"koa2",
"authorization",
"middleware"
],
"author": {
"name": "Chalin-Shi",
"email": "18875906195@163.com"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 7.6.0"
},
"bugs": {
"url": "https://github.com/node-casbin/egg-authz/issues"
},
"homepage": "https://github.com/node-casbin/egg-authz#readme",
"publishConfig": {
"registry": "https://registry.yarnpkg.com/"
},
"dependencies": {
"koa-authz": "^3.0.0"
},
"devDependencies": {
"casbin": "^3.0.0",
"coveralls": "^3.0.2",
"egg": "^2.10.0",
"egg-bin": "^4.8.1",
"egg-mock": "^3.19.3",
"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"
},
"peerDependencies": {
"casbin": "^3.0.0"
}
}