forked from niieani/chunk-splitting-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "chunk-splitting-plugin",
"engines": {
"node": ">=7"
},
"files": [
"ChunkSplittingPlugin.js"
],
"main": "ChunkSplittingPlugin.js",
"author": {
"name": "Bazyli Brzóska",
"email": "npm@invent.life",
"url": "https://invent.life"
},
"keywords": [
"webpack",
"chunk",
"splitting",
"hmr",
"hot module reload"
],
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/node": "^8.0.0",
"html-webpack-plugin": "^2.28.0",
"semantic-release": "^6.3.2",
"typescript": "next",
"webpack": "3.3.0",
"webpack-dev-server": "^2.4.5"
},
"version": "0.0.0-development",
"scripts": {
"test": "rm -rf example && node_modules/.bin/webpack --color --progress --display-modules --display-chunks --display-entrypoints --display-reasons && test -e example/core-part-06.bundle.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/niieani/chunk-splitting-plugin.git"
}
}