UNPKG

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