-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 900 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
38
{
"name": "offline-webpack-plugin",
"version": "0.1.0",
"description": "Webpack plugin to zip up emitted files.",
"main": "index.js",
"scripts": {
"test": "ava test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikdesjardins/zip-webpack-plugin.git"
},
"keywords": [
"webpack"
],
"author": "Erik Desjardins",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikdesjardins/zip-webpack-plugin/issues"
},
"homepage": "https://github.com/erikdesjardins/zip-webpack-plugin#readme",
"dependencies": {
"webpack-sources": "^1.0.2",
"yazl": "^2.4.3"
},
"peerDependencies": {
"webpack": ">=3.0.0"
},
"devDependencies": {
"ava": "^0.23.0",
"file-loader": "^1.1.5",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"spawn-loader": "^4.0.0",
"webpack": "^3.3.0",
"yauzl": "^2.9.1"
}
}