package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "html-webpack-plugin",
  3. "version": "4.5.2",
  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/loader-utils": "1.1.3",
  32. "@types/node": "11.13.9",
  33. "appcache-webpack-plugin": "1.4.0",
  34. "commitizen": "4.0.3",
  35. "css-loader": "2.1.1",
  36. "cz-conventional-changelog": "2.1.0",
  37. "dir-compare": "1.7.2",
  38. "file-loader": "3.0.1",
  39. "html-loader": "0.5.5",
  40. "jest": "24.7.1",
  41. "mini-css-extract-plugin": "0.6.0",
  42. "pug": "2.0.3",
  43. "pug-loader": "2.4.0",
  44. "rimraf": "2.6.3",
  45. "semistandard": "^13.0.1",
  46. "standard-version": "5.0.2",
  47. "style-loader": "0.23.1",
  48. "typescript": "3.8.3",
  49. "webpack": "4.35.2",
  50. "webpack-recompilation-simulator": "3.2.0"
  51. },
  52. "dependencies": {
  53. "@types/html-minifier-terser": "^5.0.0",
  54. "@types/tapable": "^1.0.5",
  55. "@types/webpack": "^4.41.8",
  56. "html-minifier-terser": "^5.0.1",
  57. "loader-utils": "^1.2.3",
  58. "lodash": "^4.17.20",
  59. "pretty-error": "^2.1.1",
  60. "tapable": "^1.1.3",
  61. "util.promisify": "1.0.0"
  62. },
  63. "peerDependencies": {
  64. "webpack": "^4.0.0 || ^5.0.0"
  65. },
  66. "keywords": [
  67. "webpack",
  68. "plugin",
  69. "html",
  70. "html-webpack-plugin"
  71. ],
  72. "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
  73. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  74. "repository": "https://github.com/jantimon/html-webpack-plugin.git",
  75. "engines": {
  76. "node": ">=6.9"
  77. },
  78. "config": {
  79. "commitizen": {
  80. "path": "./node_modules/cz-conventional-changelog"
  81. }
  82. },
  83. "jest": {
  84. "watchPathIgnorePatterns": [
  85. "<rootDir>/dist"
  86. ],
  87. "testEnvironment": "node"
  88. }
  89. }