forked from jantimon/favicons-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
64
65
66
67
68
69
70
71
72
{
"name": "favicons-webpack-plugin",
"version": "1.0.1",
"description": "Let webpack generate all your favicons and icons for you",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"commit": "git-cz",
"test": "ava test/*.test.js",
"coverage": "nyc npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/jantimon/favicons-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"webapp",
"pwa",
"manifest",
"favicon",
"icon",
"png",
"svg"
],
"author": "Jan Nicklas <[email protected]> (https://github.com/jantimon)",
"contributors": [
"Bruno Dutra <[email protected]> (https://github.com/brunocodutra)",
"Jan Nicklas <[email protected]> (https://github.com/jantimon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jantimon/favicons-webpack-plugin/issues"
},
"homepage": "https://github.com/jantimon/favicons-webpack-plugin",
"devDependencies": {
"ava": "^1.4.1",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"dir-compare": "^1.7.2",
"fs-extra": "^8.0.1",
"html-webpack-plugin": "^3.2.0",
"nyc": "^14.1.1",
"standard-version": "7.0.0",
"webpack": "^4.35.0",
"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",
"parse-author": "^2.0.0"
},
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}