forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.65 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
{
"name": "webpack",
"version": "0.11.18",
"author": "Tobias Koppers @sokra",
"description": "Packs CommonJs/AMD/Labeled Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
"dependencies": {
"esprima": "1.0.x",
"mkdirp": "0.3.x",
"optimist": "0.6.x",
"uglify-js": "2.4.x",
"async": "0.2.x",
"enhanced-resolve": "0.5.x",
"clone": "0.1.x",
"webpack-core": "0.2.x",
"node-libs-browser": "0.1.x",
"tapable": "0.1.x",
"base64-encode": "1.0.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "1.15.x",
"should": "2.1.x",
"vm-browserify": "0.0.x",
"express": "3.4.x",
"webpack-dev-middleware": "0.11.x",
"worker-loader": "0.5.x",
"raw-loader": "0.5.x",
"json-loader": "0.5.x",
"jade-loader": "0.5.x",
"coffee-loader": "0.6.x",
"css-loader": "0.6.x",
"less-loader": "0.6.x",
"style-loader": "0.6.x",
"script-loader": "0.5.x",
"bundle-loader": "0.5.x",
"file-loader": "0.5.x",
"url-loader": "0.5.x",
"val-loader": "0.5.x",
"i18n-webpack-plugin": "0.2.x",
"component-webpack-plugin": "0.1.x"
},
"engines": {
"node": ">=0.6"
},
"repository": {
"type": "git",
"url": "http://github.com/webpack/webpack.git"
},
"homepage": "http://github.com/webpack/webpack",
"main": "lib/webpack.js",
"web": "lib/webpack.web.js",
"bin": "./bin/webpack.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
}
}