-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
27 lines (27 loc) · 1020 Bytes
/
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
{
"name": "egg-boilerplate-simple",
"version": "3.7.0",
"description": "boilerplate for egg quickstart",
"scripts": {
"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",
"clean": "rm -rf dist boilerplate/.idea boilerplate/logs boilerplate/node_modules boilerplate/run",
"build": "npm run clean && egg-init dist --force --silent --template=./",
"install-deps": "cd dist && npm i"
},
"homepage": "https://github.com/eggjs/egg-boilerplate-simple",
"bugs": "https://github.com/eggjs/egg/issues",
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-boilerplate-simple.git"
},
"author": "TZ <[email protected]>",
"devDependencies": {
"egg-init": "3",
"eslint": "8",
"eslint-config-egg": "13"
}
}