forked from eggjs/create-egg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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": "create-egg",
"version": "2.0.1",
"description": "Alias for egg-init, so you could use `npm init egg showcase`.",
"dependencies": {
"egg-init": "^2"
},
"devDependencies": {
"autod": "^3.0.1",
"coffee": "^5.1.0",
"egg-bin": "^4.9.0",
"egg-ci": "^1.10.0",
"eslint": "^5.7.0",
"eslint-config-egg": "^7.1.0",
"webstorm-disable-index": "^1.2.0"
},
"bin": "./bin/create-egg.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "10, 12",
"type": "github",
"license": {
"year": 2018
}
},
"eslintIgnore": [
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:eggjs/create-egg.git"
},
"bug": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/create-egg",
"files": [
"bin"
],
"author": "TZ <[email protected]>",
"license": "MIT"
}