package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "_from": "html-webpack-plugin@^5.1.0",
  3. "_id": "html-webpack-plugin@5.6.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==",
  6. "_location": "/html-webpack-plugin",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "html-webpack-plugin@^5.1.0",
  12. "name": "html-webpack-plugin",
  13. "escapedName": "html-webpack-plugin",
  14. "rawSpec": "^5.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^5.1.0"
  17. },
  18. "_requiredBy": [
  19. "/@vue/cli-service"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz",
  22. "_shasum": "a31145f0fee4184d53a794f9513147df1e653685",
  23. "_spec": "html-webpack-plugin@^5.1.0",
  24. "_where": "E:\\vue_project\\el-table-column\\node_modules\\@vue\\cli-service",
  25. "author": {
  26. "name": "Jan Nicklas",
  27. "email": "j.nicklas@me.com",
  28. "url": "https://github.com/jantimon"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/jantimon/html-webpack-plugin/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "@types/html-minifier-terser": "^6.0.0",
  36. "html-minifier-terser": "^6.0.2",
  37. "lodash": "^4.17.21",
  38. "pretty-error": "^4.0.0",
  39. "tapable": "^2.0.0"
  40. },
  41. "deprecated": false,
  42. "description": "Simplifies creation of HTML files to serve your webpack bundles",
  43. "devDependencies": {
  44. "@commitlint/cli": "^18.4.4",
  45. "@commitlint/config-conventional": "^18.4.4",
  46. "@types/node": "^20.2.5",
  47. "cross-env": "^7.0.3",
  48. "cspell": "^8.3.2",
  49. "css-loader": "5.0.1",
  50. "cz-conventional-changelog": "2.1.0",
  51. "dir-compare": "^3.3.0",
  52. "eslint": "^8.56.0",
  53. "html-loader": "2.1.1",
  54. "husky": "^9.0.10",
  55. "jest": "^27.2.5",
  56. "lint-staged": "^15.2.2",
  57. "mini-css-extract-plugin": "^1.6.0",
  58. "npm-run-all": "^4.1.5",
  59. "prettier": "^3.2.5",
  60. "pug": "3.0.2",
  61. "pug-loader": "2.4.0",
  62. "raw-loader": "4.0.2",
  63. "rimraf": "2.6.3",
  64. "standard-version": "^9.3.0",
  65. "style-loader": "2.0.0",
  66. "typescript": "4.9.4",
  67. "webpack": "^5.95.0",
  68. "webpack-cli": "4.5.0",
  69. "webpack-recompilation-simulator": "3.2.0"
  70. },
  71. "engines": {
  72. "node": ">=10.13.0"
  73. },
  74. "files": [
  75. "lib/",
  76. "index.js",
  77. "default_index.ejs",
  78. "typings.d.ts"
  79. ],
  80. "funding": {
  81. "type": "opencollective",
  82. "url": "https://opencollective.com/html-webpack-plugin"
  83. },
  84. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  85. "jest": {
  86. "watchPathIgnorePatterns": [
  87. "<rootDir>/dist"
  88. ],
  89. "testEnvironment": "node"
  90. },
  91. "keywords": [
  92. "webpack",
  93. "plugin",
  94. "html",
  95. "html-webpack-plugin"
  96. ],
  97. "license": "MIT",
  98. "main": "index.js",
  99. "name": "html-webpack-plugin",
  100. "peerDependencies": {
  101. "@rspack/core": "0.x || 1.x",
  102. "webpack": "^5.20.0"
  103. },
  104. "peerDependenciesMeta": {
  105. "@rspack/core": {
  106. "optional": true
  107. },
  108. "webpack": {
  109. "optional": true
  110. }
  111. },
  112. "repository": {
  113. "type": "git",
  114. "url": "git+https://github.com/jantimon/html-webpack-plugin.git"
  115. },
  116. "scripts": {
  117. "build-examples": "node examples/build-examples.js",
  118. "commitlint": "commitlint --from=master",
  119. "fix": "npm-run-all -l fix:js fix:prettier",
  120. "fix:js": "npm run lint:js -- --fix",
  121. "fix:prettier": "npm run lint:prettier -- --write",
  122. "lint": "npm-run-all -l -p \"lint:**\"",
  123. "lint:js": "eslint --cache .",
  124. "lint:prettier": "prettier --cache --list-different .",
  125. "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
  126. "posttest": "tsc",
  127. "prepare": "husky",
  128. "pretest": "npm run lint",
  129. "puml": "npx puml generate flow.puml -o flow.png",
  130. "release": "standard-version",
  131. "security": "npm audit --omit=dev",
  132. "test": "npm run test:coverage",
  133. "test:coverage": "npm run test:only -- --coverage",
  134. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  135. "test:only": "cross-env NODE_ENV=test jest",
  136. "test:watch": "npm run test:only -- --watch"
  137. },
  138. "types": "typings.d.ts",
  139. "version": "5.6.3"
  140. }