package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "html-webpack-plugin",
  3. "version": "5.6.3",
  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. "html-loader": "2.1.1",
  48. "husky": "^9.0.10",
  49. "jest": "^27.2.5",
  50. "lint-staged": "^15.2.2",
  51. "mini-css-extract-plugin": "^1.6.0",
  52. "npm-run-all": "^4.1.5",
  53. "prettier": "^3.2.5",
  54. "pug": "3.0.2",
  55. "pug-loader": "2.4.0",
  56. "raw-loader": "4.0.2",
  57. "rimraf": "2.6.3",
  58. "standard-version": "^9.3.0",
  59. "style-loader": "2.0.0",
  60. "typescript": "4.9.4",
  61. "webpack": "^5.95.0",
  62. "webpack-cli": "4.5.0",
  63. "webpack-recompilation-simulator": "3.2.0"
  64. },
  65. "dependencies": {
  66. "@types/html-minifier-terser": "^6.0.0",
  67. "html-minifier-terser": "^6.0.2",
  68. "lodash": "^4.17.21",
  69. "pretty-error": "^4.0.0",
  70. "tapable": "^2.0.0"
  71. },
  72. "peerDependencies": {
  73. "@rspack/core": "0.x || 1.x",
  74. "webpack": "^5.20.0"
  75. },
  76. "peerDependenciesMeta": {
  77. "@rspack/core": {
  78. "optional": true
  79. },
  80. "webpack": {
  81. "optional": true
  82. }
  83. },
  84. "keywords": [
  85. "webpack",
  86. "plugin",
  87. "html",
  88. "html-webpack-plugin"
  89. ],
  90. "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
  91. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  92. "repository": "https://github.com/jantimon/html-webpack-plugin.git",
  93. "engines": {
  94. "node": ">=10.13.0"
  95. },
  96. "jest": {
  97. "watchPathIgnorePatterns": [
  98. "<rootDir>/dist"
  99. ],
  100. "testEnvironment": "node"
  101. },
  102. "funding": {
  103. "type": "opencollective",
  104. "url": "https://opencollective.com/html-webpack-plugin"
  105. }
  106. }