-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
37 lines (37 loc) · 975 Bytes
/
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
{
"name": "webpack-split-by-path",
"version": "3.0.0",
"description": "Split a Webpack entry bundle into any number of arbitrarily defined smaller bundles",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:BohdanTkachenko/webpack-split-by-path.git"
},
"keywords": [
"webpack",
"plugin"
],
"author": {
"name": "Bohdan Tkachenko",
"email": "[email protected]",
"url": "http://BohdanTkachenko.com"
},
"contributors": [
"SoundCloud, Nick Fisher",
"Norbert de Langen"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BohdanTkachenko/webpack-split-by-path/issues"
},
"scripts": {
"test": "./node_modules/.bin/webpack --config example/webpack.config.js"
},
"homepage": "https://github.com/BohdanTkachenko/webpack-split-by-path",
"devDependencies": {
"webpack": "^3.0.0",
"css-loader": "^0.28.0",
"react": "^15.3.2",
"style-loader": "^0.18.0"
}
}