UNPKG

2.29 kBJSONView Raw
1{
2 "name": "html-webpack-plugin",
3 "version": "5.3.2",
4 "license": "MIT",
5 "description": "Simplifies creation of HTML files to serve your webpack bundles",
6 "author": "Jan Nicklas <j.nicklas@me.com> (https://github.com/jantimon)",
7 "main": "index.js",
8 "types": "typings.d.ts",
9 "files": [
10 "lib/",
11 "index.js",
12 "default_index.ejs",
13 "typings.d.ts"
14 ],
15 "scripts": {
16 "pretest": "semistandard",
17 "posttest": "tsc",
18 "commit": "git-cz",
19 "build-examples": "node examples/build-examples.js",
20 "test": "jest --runInBand --verbose --coverage",
21 "test-watch": "jest --runInBand --watch",
22 "puml": "npx puml generate flow.puml -o flow.png",
23 "release": "standard-version"
24 },
25 "semistandard": {
26 "ignore": [
27 "examples/*/dist/**/*.*"
28 ]
29 },
30 "devDependencies": {
31 "@types/node": "11.13.9",
32 "commitizen": "^4.2.4",
33 "css-loader": "5.0.1",
34 "cz-conventional-changelog": "2.1.0",
35 "dir-compare": "1.7.2",
36 "html-loader": "2.1.1",
37 "jest": "26.5.3",
38 "mini-css-extract-plugin": "^1.6.0",
39 "pug": "3.0.2",
40 "pug-loader": "2.4.0",
41 "raw-loader": "4.0.2",
42 "rimraf": "2.6.3",
43 "semistandard": "^13.0.1",
44 "standard-version": "^9.3.0",
45 "style-loader": "2.0.0",
46 "typescript": "4.1.3",
47 "webpack": "5.24.3",
48 "webpack-cli": "4.5.0",
49 "webpack-recompilation-simulator": "3.2.0"
50 },
51 "dependencies": {
52 "@types/html-minifier-terser": "^5.0.0",
53 "html-minifier-terser": "^5.0.1",
54 "lodash": "^4.17.21",
55 "pretty-error": "^3.0.4",
56 "tapable": "^2.0.0"
57 },
58 "peerDependencies": {
59 "webpack": "^5.20.0"
60 },
61 "keywords": [
62 "webpack",
63 "plugin",
64 "html",
65 "html-webpack-plugin"
66 ],
67 "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
68 "homepage": "https://github.com/jantimon/html-webpack-plugin",
69 "repository": "https://github.com/jantimon/html-webpack-plugin.git",
70 "engines": {
71 "node": ">=10.13.0"
72 },
73 "config": {
74 "commitizen": {
75 "path": "./node_modules/cz-conventional-changelog"
76 }
77 },
78 "jest": {
79 "watchPathIgnorePatterns": [
80 "<rootDir>/dist"
81 ],
82 "testEnvironment": "node"
83 },
84 "funding": {
85 "type": "opencollective",
86 "url": "https://opencollective.com/html-webpack-plugin"
87 }
88}