-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.21 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
{
"name": "dva-cli",
"version": "0.6.0",
"description": "The dva command line utility.",
"repository": {
"type": "git",
"url": "https://github.com/dvajs/dva-cli"
},
"homepage": "https://github.com/dvajs/dva-cli",
"mail": "chencheng <[email protected]>",
"license": "MIT",
"bin": {
"dva": "./bin/dva"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"empty-dir": "^0.2.1",
"fs-extra": "^0.30.0",
"left-pad": "^1.1.3",
"simple-uppercamelcase": "^1.0.0",
"through2": "^2.0.1",
"vinyl-fs": "^2.4.3",
"which": "^1.2.10",
"win-spawn": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "~6.5.0",
"babel-runtime": "^6.9.2"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-runtime"
]
},
"files": [
"lib",
"src",
"boilerplates",
"bin"
]
}