forked from ElemeFE/cooking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.02 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cooking",
"version": "0.5.4",
"description": "A modular build tool based on webpack.",
"preferGlobal": true,
"bin": {
"cooking": "bin/cooking"
},
"main": "lib/cooking.js",
"scripts": {
"test": "xo && nyc ava",
"watch:test": "ava -wv",
"report": "nyc report --reporter=html",
"prepublish": "npm test"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"xo/no-process-exit": 0,
"xo/filename-case": 0
},
"ignores": [
"example/**"
]
},
"ava": {
"files": [
"test/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElemeFE/cooking.git"
},
"keywords": [
"vue",
"react",
"webpack",
"cli",
"build",
"tool"
],
"author": "qingwei-li<qingwei.li@ele.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElemeFE/cooking/issues"
},
"homepage": "https://github.com/ElemeFE/cooking#readme",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"ava": "^0.15.1",
"coveralls": "^2.11.9",
"nyc": "^6.4.2",
"xo": "^0.15.0"
},
"dependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"cross-spawn": "^4.0.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"format-json": "^1.0.3",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.9.0",
"json-loader": "^0.5.4",
"lodash.set": "^4.1.0",
"lodash.toarray": "^4.2.4",
"lodash.unset": "^4.3.1",
"progress-bar-webpack-plugin": "^1.6.0",
"shelljs": "^0.7.0",
"slush": "^1.1.1",
"style-loader": "^0.13.1",
"update-notifier": "^0.7.0",
"url-loader": "^0.5.7",
"webpack": "1.13.0",
"webpack-dev-server": "~1.14.1",
"webpack-hud": "0.0.8"
}
}