-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1016 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
28
29
30
31
32
{
"name": "egg-boilerplate-plugin",
"version": "2.2.0",
"description": "boilerplate for egg plugin",
"homepage": "https://github.com/eggjs/egg-boilerplate-plugin",
"bugs": "https://github.com/eggjs/egg/issues",
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-boilerplate-plugin.git"
},
"author": "dead_horse",
"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",
"build": "egg-init dist --force --template=./ --silent",
"install-deps": "cd dist && npx npminstall"
},
"dependencies": {},
"devDependencies": {
"egg-ci": "^2",
"egg-init": "^2.3.1",
"eslint": "^8.24.0",
"eslint-config-egg": "^12.1.0",
"npminstall": "^6.5.1"
},
"ci": {
"version": "16"
}
}