source: frontend/node_modules/html-webpack-plugin/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 3.1 KB
Line 
1{
2 "name": "html-webpack-plugin",
3 "version": "5.6.7",
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 "posttest": "tsc",
17 "puml": "npx puml generate flow.puml -o flow.png",
18 "build-examples": "node examples/build-examples.js",
19 "commitlint": "commitlint --from=master",
20 "security": "npm audit --omit=dev",
21 "lint:prettier": "prettier --cache --list-different .",
22 "lint:js": "eslint --cache .",
23 "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
24 "lint": "npm-run-all -l -p \"lint:**\"",
25 "fix:js": "npm run lint:js -- --fix",
26 "fix:prettier": "npm run lint:prettier -- --write",
27 "fix": "npm-run-all -l fix:js fix:prettier",
28 "test:only": "cross-env NODE_ENV=test jest",
29 "test:watch": "npm run test:only -- --watch",
30 "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
31 "test:coverage": "npm run test:only -- --coverage",
32 "pretest": "npm run lint",
33 "test": "npm run test:coverage",
34 "prepare": "husky",
35 "release": "standard-version"
36 },
37 "devDependencies": {
38 "@commitlint/cli": "^18.4.4",
39 "@commitlint/config-conventional": "^18.4.4",
40 "@types/node": "^20.2.5",
41 "cross-env": "^7.0.3",
42 "cspell": "^8.3.2",
43 "css-loader": "5.0.1",
44 "cz-conventional-changelog": "2.1.0",
45 "dir-compare": "^3.3.0",
46 "eslint": "^8.56.0",
47 "handlebars-loader": "^1.7.3",
48 "html-loader": "2.1.1",
49 "husky": "^9.0.10",
50 "jest": "^27.2.5",
51 "lint-staged": "^15.2.2",
52 "mini-css-extract-plugin": "^1.6.0",
53 "npm-run-all": "^4.1.5",
54 "prettier": "^3.2.5",
55 "pug": "3.0.2",
56 "pug-loader": "2.4.0",
57 "raw-loader": "4.0.2",
58 "rimraf": "2.6.3",
59 "standard-version": "^9.3.0",
60 "style-loader": "2.0.0",
61 "typescript": "4.9.4",
62 "webpack": "^5.104.1",
63 "webpack-cli": "4.5.0",
64 "webpack-recompilation-simulator": "3.2.0"
65 },
66 "dependencies": {
67 "@types/html-minifier-terser": "^6.0.0",
68 "html-minifier-terser": "^6.0.2",
69 "lodash": "^4.17.21",
70 "pretty-error": "^4.0.0",
71 "tapable": "^2.0.0"
72 },
73 "peerDependencies": {
74 "@rspack/core": "0.x || 1.x",
75 "webpack": "^5.20.0"
76 },
77 "peerDependenciesMeta": {
78 "@rspack/core": {
79 "optional": true
80 },
81 "webpack": {
82 "optional": true
83 }
84 },
85 "keywords": [
86 "webpack",
87 "plugin",
88 "html",
89 "html-webpack-plugin"
90 ],
91 "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
92 "homepage": "https://github.com/jantimon/html-webpack-plugin",
93 "repository": "https://github.com/jantimon/html-webpack-plugin.git",
94 "engines": {
95 "node": ">=10.13.0"
96 },
97 "jest": {
98 "watchPathIgnorePatterns": [
99 "<rootDir>/dist"
100 ],
101 "testEnvironment": "node"
102 },
103 "funding": {
104 "type": "opencollective",
105 "url": "https://opencollective.com/html-webpack-plugin"
106 }
107}
Note: See TracBrowser for help on using the repository browser.