-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 757 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "webpack-code-splitting",
"version": "1.0.0",
"description": "Examples of webpack code spitting",
"main": "index.js",
"scripts": {
"use-bundle-loader:build": "rm -rf dist/use-bundle-loader && webpack --verbose --config webpack.config.bundle-loader.js",
"use-dynamic-import:build": "rm -rf dist/use-dynamic-import && webpack --verbose --config webpack.config.dynamic-import.js",
"build": "npm run use-bundle-loader:build && npm run use-dynamic-import:build"
},
"keywords": [
"webpack",
"code-splitting",
"example"
],
"author": "Igor Ovsiannikov <garek@mail.ru>",
"license": "MIT",
"devDependencies": {
"bundle-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.10.0"
}
}