forked from eggjs/egg-boilerplate-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"name": "egg-boilerplate-nuxt",
"version": "1.0.0",
"description": "boilerplate for nuxt-egg framework",
"homepage": "https://github.com/nuxt-egg/egg-boilerplate-nuxt",
"bugs": "https://github.com/nuxt-egg/egg-boilerplate-nuxt/issues",
"author": "liyl",
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-boilerplate",
"ci": "npm run lint && npm run ci-boilerplate",
"test-boilerplate": "npm run build && npm run install-deps && cd dist && npm test",
"ci-boilerplate": "npm run build && npm run install-deps && cd dist && npm run ci",
"build": "egg-init dist --force --silent --template=./",
"install-deps": "cd dist && node ../node_modules/.bin/autod && node ../node_modules/.bin/npminstall"
},
"dependencies": {
},
"devDependencies": {
"autod": "^2.7.1",
"egg-ci": "^1.1.0",
"egg-init": "^1.6.1",
"eslint": "^3.13.1",
"eslint-config-egg": "^3.2.0",
"npminstall": "^2.16.0",
"webstorm-disable-index": "^1.1.2"
},
"ci": {
"version": "6, 7"
}
}