package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "html-webpack-plugin",
  3. "version": "3.2.0",
  4. "license": "MIT",
  5. "description": "Simplifies creation of HTML files to serve your webpack bundles",
  6. "author": "Charles Blaxland <charles.blaxland@gmail.com> (https://github.com/ampedandwired)",
  7. "main": "index.js",
  8. "files": [
  9. "lib/",
  10. "index.js",
  11. "default_index.ejs"
  12. ],
  13. "scripts": {
  14. "pretest": "semistandard",
  15. "commit": "git-cz",
  16. "build-examples": "node examples/build-examples.js",
  17. "test": "jasmine",
  18. "release": "standard-version"
  19. },
  20. "semistandard": {
  21. "ignore": [
  22. "examples/*/dist/**/*.*"
  23. ]
  24. },
  25. "devDependencies": {
  26. "appcache-webpack-plugin": "^1.3.0",
  27. "commitizen": "2.9.6",
  28. "css-loader": "^0.26.1",
  29. "cz-conventional-changelog": "2.1.0",
  30. "dir-compare": "1.3.0",
  31. "es6-promise": "^4.0.5",
  32. "extract-text-webpack-plugin": "^1.0.1",
  33. "file-loader": "^0.9.0",
  34. "html-loader": "^0.4.4",
  35. "jade": "^1.11.0",
  36. "jade-loader": "^0.8.0",
  37. "jasmine": "^2.5.2",
  38. "jasmine-diff-matchers": "^2.0.0",
  39. "rimraf": "^2.5.4",
  40. "semistandard": "8.0.0",
  41. "standard-version": "^4.3.0",
  42. "style-loader": "^0.13.1",
  43. "underscore-template-loader": "^0.7.3",
  44. "url-loader": "^0.5.7",
  45. "webpack": "^1.14.0",
  46. "webpack-recompilation-simulator": "^1.3.0"
  47. },
  48. "dependencies": {
  49. "html-minifier": "^3.2.3",
  50. "loader-utils": "^0.2.16",
  51. "lodash": "^4.17.3",
  52. "pretty-error": "^2.0.2",
  53. "tapable": "^1.0.0",
  54. "toposort": "^1.0.0",
  55. "util.promisify": "1.0.0"
  56. },
  57. "peerDependencies": {
  58. "webpack": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
  59. },
  60. "keywords": [
  61. "webpack",
  62. "plugin",
  63. "html",
  64. "html-webpack-plugin"
  65. ],
  66. "bugs": "https://github.com/jantimon/html-webpack-plugin/issues",
  67. "homepage": "https://github.com/jantimon/html-webpack-plugin",
  68. "repository": "https://github.com/jantimon/html-webpack-plugin.git",
  69. "engines": {
  70. "node": ">=6.9"
  71. },
  72. "config": {
  73. "commitizen": {
  74. "path": "./node_modules/cz-conventional-changelog"
  75. }
  76. }
  77. }