-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "html-webpack-skip-assets-plugin",
"version": "1.0.4",
"description": "a plugin for html-webpack-plugin to skip adding certain output files to the html",
"repository": {
"type": "git",
"url": "git+https://github.com/swimmadude66/html-webpack-skip-assets-plugin.git"
},
"bugs": {
"url": "https://github.com/swimmadude66/html-webpack-skip-assets-plugin/issues"
},
"homepage": "https://github.com/swimmadude66/html-webpack-skip-assets-plugin#readme",
"main": "dist/plugin.js",
"scripts": {
"test": "mocha -r ts-node/register spec/**/*.spec.ts --exit",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"html-webpack-plugin",
"exclude-assets",
"assets",
"polyfills",
"webpack",
"plugin"
],
"author": "swimmadude66",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "20.11.30",
"chai": "4.2.0",
"css-loader": "5.0.1",
"html-webpack-plugin": ">=3.2.0",
"mini-css-extract-plugin": "1.3.5",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "5.4.3",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "3.0.5"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=3.0.0"
}
}