forked from eggjs/egg-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "egg-init",
"version": "1.14.1",
"description": "Init egg app helper tools.",
"main": "lib/init_command.js",
"scripts": {
"lint": "eslint bin lib test",
"test": "npm run lint -- --fix && egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && egg-bin cov",
"autod": "autod"
},
"preferGlobal": true,
"bin": {
"egg-init": "bin/egg-init.js"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"co": "^4.6.0",
"colors": "^1.1.2",
"compressing": "^1.2.3",
"egg-init-config": "^1.2.0",
"glob": "^7.1.2",
"inquirer": "^3.0.6",
"is-type-of": "^1.2.0",
"istextorbinary": "^2.2.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^4.0.0",
"mkdirp": "^0.5.1",
"mz-modules": "^2.0.0",
"node-homedir": "^1.1.0",
"npm-updater": "^3.0.3",
"proxy-agent": "^2.1.0",
"urllib": "^2.25.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"autod": "^3.0.1",
"coffee": "^3.3.0",
"egg-bin": "^1.11.1",
"egg-ci": "^1.1.0",
"eslint": "^4.13.1",
"eslint-config-egg": "^5.1.1",
"intelli-espower-loader": "^1.0.1",
"power-assert": "^1.4.4",
"rimraf": "^2.6.1",
"mm": "^2.2.0",
"proxy": "^0.2.4",
"webstorm-disable-index": "^1.0.11"
},
"homepage": "https://github.com/eggjs/egg-init",
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg-init.git"
},
"bugs": "https://github.com/eggjs/egg/issues",
"keywords": [
"egg",
"egg-init"
],
"ci": {
"version": "4, 6, 8"
},
"engines": {
"node": ">=4.0.0"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.com)"
}