-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 817 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 817 Bytes
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
{
"name": "webpack-remove-empty-js-chunks-plugin",
"version": "0.2.3",
"description": "Webpack plugin for removing empty js-chunks, auto-generated by mini-css-split-chunks plugin",
"main": "webpack-remove-empty-js-chunks-plugin.js",
"license": "WTFPL",
"author": {
"name": "Anton Sychev",
"email": "a.c4off@gmail.com"
},
"engines": {
"node": ">=6.11.5"
},
"devDependencies": {
"@types/webpack": "^4.4.19",
"typescript": "^3.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c4off/webpack-remove-empty-js-chunks-plugin.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -p tsconfig.json && cp package.json dist/package.json && cp README.md dist/README.md",
"publish": "npm run build && cd dist && npm publish"
}
}