This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "webapp-webpack-plugin",
"version": "2.7.1",
"description": "Let webpack generate your progressive web app icons for you",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test": "ava test/*.test.js",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/brunocodutra/webapp-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"webapp",
"pwa",
"manifest",
"favicon",
"icon",
"png",
"svg"
],
"author": "Bruno Dutra <brunocodutra@gmail.com> (https://github.com/brunocodutra)",
"contributors": [
"Jan Nicklas <j.nicklas@me.com> (https://github.com/jantimon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brunocodutra/webapp-webpack-plugin/issues"
},
"homepage": "https://github.com/brunocodutra/webapp-webpack-plugin",
"devDependencies": {
"ava": "^1.4.1",
"dir-compare": "^1.7.2",
"fs-extra": "^8.0.1",
"html-webpack-plugin": "^3.2.0",
"nyc": "^14.1.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"cache-loader": "^3.0.1",
"camelcase": "^5.3.1",
"favicons": "5.4.1",
"find-cache-dir": "^2.1.0",
"find-root": "^1.1.0",
"loader-utils": "^1.2.3",
"msgpack-lite": "^0.1.26",
"parse-author": "^2.0.0",
"tapable": "^1.1.3"
},
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0"
}
}