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
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "webpack",
"version": "0.10.0",
"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.5.x",
"uglify-js": "2.3.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.10.x",
"should": "1.2.x",
"vm-browserify": "0.0.x",
"express": "3.2.x",
"webpack-dev-middleware": "0.10.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.5.x",
"style-loader": "0.5.x",
"script-loader": "0.5.x",
"bundle-loader": "0.5.x",
"file-loader": "0.5.x",
"val-loader": "0.5.x",
"i18n-webpack-plugin": "0.1.x",
"component-webpack-plugin": "0.1.x"
},
"engines": {
"node": ">=0.6"
},
"homepage": "http://github.com/webpack/webpack",
"main": "lib/webpack.js",
"bin": "./bin/webpack.js",
"scripts": {
"test": "mocha --reporter spec"
}
}