-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
88 lines (88 loc) · 2.55 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "favicons-webpack-plugin",
"version": "6.0.1",
"description": "Let webpack generate all your favicons and icons for you",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"commit": "git-cz",
"update-snapshots": "ava --timeout 10m --no-worker-threads -u \"test/*.test.{js,mjs}\"",
"declarations": "rimraf src/cache.d.ts src/hash.d.ts src/index.d.ts src/logger.d.ts src/oracle.d.ts && tsc -p ./tsconfig.json",
"test": "ava --timeout 10m --no-worker-threads --fail-fast",
"prettify:fix": "prettier --write \"src/*.{js,mjs}\" \"test/*.{js,mjs}\"",
"prettify": "prettier --check \"src/*.{js,mjs}\" \"test/*.{js,mjs}\"",
"lint:fix": "eslint \"src/*.{js,mjs}\" \"test/*.{js,mjs}\" --fix",
"lint": "eslint \"src/*.{js,mjs}\" \"test/*.{js,mjs}\"",
"coverage": "nyc npm test",
"release": "standard-version",
"prepare": "npm run declarations"
},
"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)",
"Andrey Kutejko <[email protected]> (https://github.com/andy128k)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jantimon/favicons-webpack-plugin/issues"
},
"homepage": "https://github.com/jantimon/favicons-webpack-plugin",
"devDependencies": {
"ava": "^5.1.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"diffable-html": "^5.0.0",
"eslint": "^8.24.0",
"favicons": "^7.0.1",
"get-folder-size": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"image-size": "^1.0.2",
"nyc": "^15.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.4",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"find-root": "^1.1.0",
"parse-author": "^2.0.0",
"parse5": "^7.1.1"
},
"peerDependencies": {
"favicons": "^7.0.1",
"webpack": "^5.0.0"
},
"optionalDependencies": {
"html-webpack-plugin": "^5.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=16"
}
}