-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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": "egg-rbac-example",
"version": "0.4.0",
"description": "example for egg-rbac plugin",
"private": true,
"dependencies": {
"btoa": "^1.1.2",
"egg": "^2.0.0",
"egg-mongoose": "^2.1.1",
"egg-rbac": "^0.4.0",
"egg-scripts": "^2.4.0",
"egg-validate": "^1.0.0",
"egg-view-ejs": "^2.0.0",
"glob": "^7.1.2",
"load-grunt-tasks": "^3.5.2",
"npm-shrinkwrap": "^6.1.0",
"remarkable": "^1.7.1",
"time-grunt": "^1.4.0"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-bin": "^4.3.6",
"egg-ci": "^1.8.0",
"egg-mock": "^3.14.0",
"eslint": "^4.13.1",
"eslint-config-egg": "^5.1.1",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title egg-rbac-example",
"stop": "egg-scripts stop --title egg-rbac-example",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"author": "[email protected]",
"license": "MIT"
}