-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 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
{
"name": "egg-boilerplate-framework",
"version": "2.1.0",
"description": "boilerplate for egg framework",
"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_modules/.bin/npminstall autod-egg && ../node_modules/.bin/autod && ../node_modules/.bin/npminstall"
},
"homepage": "https://github.com/eggjs/egg-boilerplate-framework",
"bugs": "https://github.com/eggjs/egg/issues",
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-boilerplate-framework.git"
},
"author": "TZ <[email protected]>",
"dependencies": {},
"devDependencies": {
"autod": "^3.1.0",
"egg-ci": "^1.15.0",
"egg-init": "^1.17.2",
"eslint": "^7.3.1",
"eslint-config-egg": "^8.0.1",
"npminstall": "^3.27.0"
},
"eslintIgnore": [
"coverage",
"dist"
],
"ci": {
"version": "10, 12",
"type": "github",
"os": {
"github": "ubuntu, macos"
}
}
}