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
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "webpack",
"version": "0.8.3",
"author": "Tobias Koppers @sokra",
"description": "Packs CommonJs/AMD Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loading of js, json, jade, coffee, css, ... out of the box and more with custom loaders.",
"dependencies": {
"esprima": "0.9.x",
"optimist": "0.2.x",
"uglify-js": "2.2.x",
"sprintf": "0.1.x",
"enhanced-require": "0.4.x",
"enhanced-resolve": "0.4.x",
"raw-loader": "0.2.x",
"json-loader": "0.2.x",
"jade-loader": "0.2.x",
"coffee-loader": "0.2.x",
"css-loader": "0.2.x",
"less-loader": "0.2.x",
"style-loader": "0.2.x",
"script-loader": "0.3.x",
"bundle-loader": "0.3.x",
"file-loader": "0.1.x",
"val-loader": "0.2.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"worker-loader": "0.2.x",
"mocha": "1.7.x",
"should": "1.2.x",
"vm-browserify": "0.0.x",
"express": "3.0.x",
"webpack-dev-middleware": "0.8.x"
},
"engines": {
"node": ">=0.1.30"
},
"homepage": "http://github.com/webpack/webpack",
"main": "lib/webpack.js",
"bin": "./bin/webpack.js",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha --reporter spec"
},
"license": "MIT"
}