-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "webpack-multi-output",
"version": "2.1.1",
"description": "Webpack loader and plugin to produce multiple bundle from one import",
"main": "index.js",
"author": "Romain Berger <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:dailymotion/webpack-multi-output.git"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"clean": "rm -rf lib test/dist*",
"test": "npm run clean && npm run build && mocha --compilers js:babel-register test/*.js",
"flow": "flow"
},
"keywords": [
"webpack",
"bundle"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.22.1",
"mocha": "^2.4.5",
"moment": "^2.13.0",
"path-exists": "^3.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-rtl-plugin": "^1.1.1"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"lodash.clone": "^4.3.2",
"lodash.merge": "^4.3.5",
"mkdirp": "^0.5.1",
"webpack-sources": "^0.1.1"
},
"peerDependencies": {
"webpack": "^1.13.1"
}
}