package.json 1.7 KB

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