package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "_from": "html-webpack-plugin@^5.1.0",
  3. "_id": "html-webpack-plugin@5.6.6",
  4. "_inBundle": false,
  5. "_integrity": "sha512-bLjW01UTrvoWTJQL5LsMRo1SypHW80FTm12OJRSnr3v6YHNhfe+1r0MYUZJMACxnCHURVnBWRwAsWs2yPU9Ezw==",
  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.6.tgz",
  22. "_shasum": "5321b9579f4a1949318550ced99c2a4a4e60cbaf",
  23. "_spec": "html-webpack-plugin@^5.1.0",
  24. "_where": "E:\\git\\2021项目\\安科院大屏\\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. "handlebars-loader": "^1.7.3",
  54. "html-loader": "2.1.1",
  55. "husky": "^9.0.10",
  56. "jest": "^27.2.5",
  57. "lint-staged": "^15.2.2",
  58. "mini-css-extract-plugin": "^1.6.0",
  59. "npm-run-all": "^4.1.5",
  60. "prettier": "^3.2.5",
  61. "pug": "3.0.2",
  62. "pug-loader": "2.4.0",
  63. "raw-loader": "4.0.2",
  64. "rimraf": "2.6.3",
  65. "standard-version": "^9.3.0",
  66. "style-loader": "2.0.0",
  67. "typescript": "4.9.4",
  68. "webpack": "^5.104.1",
  69. "webpack-cli": "4.5.0",
  70. "webpack-recompilation-simulator": "3.2.0"
  71. },
  72. "engines": {
  73. "node": ">=10.13.0"
  74. },
  75. "files": [
  76. "lib/",
  77. "index.js",
  78. "default_index.ejs",
  79. "typings.d.ts"
  80. ],
  81. "funding": {
  82. "type": "opencollective",
  83. "url": "https://opencollective.com/html-webpack-plugin"
  84. },
  85. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  86. "jest": {
  87. "watchPathIgnorePatterns": [
  88. "<rootDir>/dist"
  89. ],
  90. "testEnvironment": "node"
  91. },
  92. "keywords": [
  93. "webpack",
  94. "plugin",
  95. "html",
  96. "html-webpack-plugin"
  97. ],
  98. "license": "MIT",
  99. "main": "index.js",
  100. "name": "html-webpack-plugin",
  101. "peerDependencies": {
  102. "@rspack/core": "0.x || 1.x",
  103. "webpack": "^5.20.0"
  104. },
  105. "peerDependenciesMeta": {
  106. "@rspack/core": {
  107. "optional": true
  108. },
  109. "webpack": {
  110. "optional": true
  111. }
  112. },
  113. "repository": {
  114. "type": "git",
  115. "url": "git+https://github.com/jantimon/html-webpack-plugin.git"
  116. },
  117. "scripts": {
  118. "build-examples": "node examples/build-examples.js",
  119. "commitlint": "commitlint --from=master",
  120. "fix": "npm-run-all -l fix:js fix:prettier",
  121. "fix:js": "npm run lint:js -- --fix",
  122. "fix:prettier": "npm run lint:prettier -- --write",
  123. "lint": "npm-run-all -l -p \"lint:**\"",
  124. "lint:js": "eslint --cache .",
  125. "lint:prettier": "prettier --cache --list-different .",
  126. "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
  127. "posttest": "tsc",
  128. "prepare": "husky",
  129. "pretest": "npm run lint",
  130. "puml": "npx puml generate flow.puml -o flow.png",
  131. "release": "standard-version",
  132. "security": "npm audit --omit=dev",
  133. "test": "npm run test:coverage",
  134. "test:coverage": "npm run test:only -- --coverage",
  135. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  136. "test:only": "cross-env NODE_ENV=test jest",
  137. "test:watch": "npm run test:only -- --watch"
  138. },
  139. "types": "typings.d.ts",
  140. "version": "5.6.6"
  141. }