package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "html-webpack-plugin",
  3. "version": "5.6.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/node": "^20.2.5",
  32. "commitizen": "^4.2.4",
  33. "css-loader": "5.0.1",
  34. "cz-conventional-changelog": "2.1.0",
  35. "dir-compare": "^3.3.0",
  36. "html-loader": "2.1.1",
  37. "jest": "^27.2.5",
  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.9.4",
  47. "webpack": "^5.86.0",
  48. "webpack-cli": "4.5.0",
  49. "webpack-recompilation-simulator": "3.2.0"
  50. },
  51. "dependencies": {
  52. "@types/html-minifier-terser": "^6.0.0",
  53. "html-minifier-terser": "^6.0.2",
  54. "lodash": "^4.17.21",
  55. "pretty-error": "^4.0.0",
  56. "tapable": "^2.0.0"
  57. },
  58. "peerDependencies": {
  59. "@rspack/core": "0.x || 1.x",
  60. "webpack": "^5.20.0"
  61. },
  62. "peerDependenciesMeta": {
  63. "@rspack/core": {
  64. "optional": true
  65. },
  66. "webpack": {
  67. "optional": true
  68. }
  69. },
  70. "keywords": [
  71. "webpack",
  72. "plugin",
  73. "html",
  74. "html-webpack-plugin"
  75. ],
  76. "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
  77. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  78. "repository": "https://github.com/jantimon/html-webpack-plugin.git",
  79. "engines": {
  80. "node": ">=10.13.0"
  81. },
  82. "config": {
  83. "commitizen": {
  84. "path": "./node_modules/cz-conventional-changelog"
  85. }
  86. },
  87. "jest": {
  88. "watchPathIgnorePatterns": [
  89. "<rootDir>/dist"
  90. ],
  91. "testEnvironment": "node"
  92. },
  93. "funding": {
  94. "type": "opencollective",
  95. "url": "https://opencollective.com/html-webpack-plugin"
  96. }
  97. }