UNPKG

2.32 kBJSONView Raw
1{
2 "name": "html-webpack-plugin",
3 "version": "5.3.0",
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/loader-utils": "2.0.1",
32 "@types/node": "11.13.9",
33 "commitizen": "4.2.1",
34 "css-loader": "5.0.1",
35 "cz-conventional-changelog": "2.1.0",
36 "dir-compare": "1.7.2",
37 "html-loader": "2.1.1",
38 "jest": "26.5.3",
39 "mini-css-extract-plugin": "1.0.0",
40 "pug": "3.0.2",
41 "pug-loader": "2.4.0",
42 "raw-loader": "4.0.2",
43 "rimraf": "2.6.3",
44 "semistandard": "^13.0.1",
45 "standard-version": "9.1.0",
46 "style-loader": "2.0.0",
47 "typescript": "4.1.3",
48 "webpack": "5.23.0",
49 "webpack-recompilation-simulator": "3.2.0",
50 "webpack-cli": "4.2.0"
51 },
52 "dependencies": {
53 "@types/html-minifier-terser": "^5.0.0",
54 "html-minifier-terser": "^5.0.1",
55 "lodash": "^4.17.20",
56 "pretty-error": "^2.1.1",
57 "tapable": "^2.0.0"
58 },
59 "peerDependencies": {
60 "webpack": "^5.20.0"
61 },
62 "keywords": [
63 "webpack",
64 "plugin",
65 "html",
66 "html-webpack-plugin"
67 ],
68 "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
69 "homepage": "https://github.com/jantimon/html-webpack-plugin",
70 "repository": "https://github.com/jantimon/html-webpack-plugin.git",
71 "engines": {
72 "node": ">=10.13.0"
73 },
74 "config": {
75 "commitizen": {
76 "path": "./node_modules/cz-conventional-changelog"
77 }
78 },
79 "jest": {
80 "watchPathIgnorePatterns": [
81 "<rootDir>/dist"
82 ],
83 "testEnvironment": "node"
84 },
85 "funding": {
86 "type": "opencollective",
87 "url": "https://opencollective.com/html-webpack-plugin"
88 }
89}