package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "script-ext-html-webpack-plugin",
  3. "version": "2.1.5",
  4. "description": "Enhances html-webpack-plugin functionality with async and defer attributes for script elements",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "pretest": "semistandard & install-module-versions dynavers.json",
  12. "test": "npm run test:webpack1 && npm run test:webpack2 && npm run test:webpack3 && npm run test:webpack4 && npm run test:webpack4htmlPlugin4",
  13. "test:webpack1": "cross-env VERSION=webpack1 HWP_VERSION=hwp3 jasmine",
  14. "test:webpack2": "cross-env VERSION=webpack2 HWP_VERSION=hwp3 jasmine",
  15. "test:webpack3": "cross-env VERSION=webpack3 HWP_VERSION=hwp3 jasmine",
  16. "test:webpack4": "cross-env VERSION=webpack4 HWP_VERSION=hwp3 jasmine",
  17. "test:webpack4htmlPlugin4": "cross-env VERSION=webpack4 HWP_VERSION=hwp4 jasmine",
  18. "debug": "cross-env DEBUG=ScriptExt VERSION=webpack4 HWP_VERSION=hwp4 jasmine",
  19. "node-debug": "cross-env DEBUG=ScriptExt VERSION=webpack4 HWP_VERSION=hwp4 node-debug jasmine"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/numical/script-ext-html-webpack-plugin.git"
  24. },
  25. "keywords": [
  26. "webpack",
  27. "plugin",
  28. "html-webpack-plugin",
  29. "async",
  30. "defer",
  31. "inline",
  32. "script",
  33. "module",
  34. "resource hints",
  35. "prefetch",
  36. "preload",
  37. "dynamic script",
  38. "async script"
  39. ],
  40. "author": "Mike Evans <mike.evans@numical.com> (https://github.com/numical)",
  41. "license": "MIT",
  42. "css-loader": "^1.0.1",
  43. "bugs": {
  44. "url": "https://github.com/numical/script-ext-html-webpack-plugin/issues"
  45. },
  46. "homepage": "https://github.com/numical/script-ext-html-webpack-plugin",
  47. "dependencies": {
  48. "debug": "^4.2.0"
  49. },
  50. "devDependencies": {
  51. "cross-env": "^7.0.2",
  52. "dynavers": "^0.3.1",
  53. "handlebars": "^4.7.6",
  54. "handlebars-loader": "1.7.1",
  55. "jasmine": "^3.6.2",
  56. "jasmine-spec-reporter": "^6.0.0",
  57. "jasmine2-custom-message": "^0.9.3",
  58. "rimraf": "^3.0.2",
  59. "semistandard": "^14.2.3",
  60. "uglifyjs-webpack-plugin": "^2.2.0",
  61. "webpack-config": "7.5.0"
  62. },
  63. "peerDependencies": {
  64. "webpack": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0",
  65. "html-webpack-plugin": "^3.0.0 || ^4.0.0"
  66. },
  67. "engines": {
  68. "node": ">=6.11.5"
  69. }
  70. }