This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.4 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
{
"name": "html-webpack-exclude-empty-assets-plugin",
"version": "0.1.4",
"description": "Add the ability to exclude empty assets",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/KnisterPeter/html-webpack-exclude-empty-assets-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"exclude",
"assets"
],
"engines": {
"node": ">=4.0.0"
},
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KnisterPeter/html-webpack-exclude-empty-assets-plugin/issues"
},
"homepage": "https://github.com/KnisterPeter/html-webpack-exclude-empty-assets-plugin",
"devDependencies": {
"prettier": "^2.0.5",
"standard-version": "^9.0.0"
},
"prettier": {},
"renovate": {
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}