-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
122 lines (122 loc) · 3.08 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "add-asset-html-webpack-plugin",
"version": "0.0.0-development",
"description": "Add a JS or CSS assets to a generated HTML file",
"files": [
"src/",
"index.d.ts"
],
"main": "src/index.js",
"scripts": {
"clean": "rimraf --glob lib/ coverage/ 'example/*/build' 'example/*/dist'",
"cover": "yarn run test --coverage",
"example": "yarn run clean && yarn run example:dll && yarn run example:polyfill",
"example:dll": "webpack --config example/dll/webpack.config.dll.js && webpack --config example/dll/webpack.config.js",
"example:polyfill": "webpack --config example/polyfill/webpack.config.js",
"lint": "eslint --cache .",
"update-license": "licensor --width 72",
"build-and-update-license": "yarn run update-license",
"test": "jest",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"repository": "SimenB/add-asset-html-webpack-plugin",
"keywords": [
"dll",
"html-webpack-plugin",
"webpack"
],
"author": "Simen Bekkhus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimenB/add-asset-html-webpack-plugin/issues"
},
"homepage": "https://github.com/SimenB/add-asset-html-webpack-plugin#readme",
"dependencies": {
"globby": "^11.1.0",
"micromatch": "^4.0.4"
},
"devDependencies": {
"classnames": "^2.2.5",
"eslint": "^8.10.0",
"eslint-config-simenb-base": "^16.0.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.2.0",
"husky": "^9.0.0",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"licensor": "^4.0.0",
"lint-staged": "^13.0.0",
"pinst": "^3.0.0",
"prettier": "^3.0.0",
"puppeteer": "^23.0.0",
"rimraf": "^5.0.0",
"semantic-release": "^24.0.0",
"slash": "^3.0.0",
"stoppable": "^1.1.0",
"webpack": "^5.23.0",
"webpack-cli": "^5.1.1"
},
"peerDependencies": {
"html-webpack-plugin": "^4.0.0 || ^5.0.0",
"webpack": "^5.0.0"
},
"engines": {
"node": "^16.13.0 || ^18.12.0 || >=20.0.0"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache",
"*.{md,json}": "prettier --write",
".eslintrc": "prettier --write"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all",
"proseWrap": "always",
"overrides": [
{
"files": ".eslintrc",
"options": {
"parser": "json"
}
},
{
"files": "lib/**/*.js",
"options": {
"trailingComma": "es5"
}
},
{
"files": ".github/workflows/**/*.yml",
"options": {
"printWidth": 175
}
}
]
},
"release": {
"branches": [
"main",
"4.x"
]
},
"packageManager": "[email protected]"
}