You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
4.1 KiB

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