-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 817 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": "min-zip-webpack-plugin",
"version": "1.0.0",
"description": "Webpack plugin to zip up emitted files.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test:smoke": "jest tests/config.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCAaron/min-zip-webpack-plugin.git"
},
"keywords": [
"webpack",
"zip"
],
"author": "PCAaron",
"license": "ISC",
"bugs": {
"url": "https://github.com/PCAaron/min-zip-webpack-plugin/issues"
},
"homepage": "https://github.com/PCAaron/min-zip-webpack-plugin#readme",
"dependencies": {
"jszip": "^3.2.2"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"glob-all": "^3.2.1",
"jest": "^25.2.4",
"webpack": "^4.42.1"
}
}