package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "webpack-subresource-integrity",
  3. "version": "5.1.0",
  4. "description": "Webpack plugin for enabling Subresource Integrity",
  5. "author": "Julian Scheid <julian@evergiving.com>",
  6. "license": "MIT",
  7. "homepage": "https://github.com/waysact/webpack-subresource-integrity/tree/main/webpack-subresource-integrity#readme",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/waysact/webpack-subresource-integrity.git"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/waysact/webpack-subresource-integrity/issues"
  14. },
  15. "keywords": [
  16. "webpack",
  17. "plugin",
  18. "sri",
  19. "subresource",
  20. "integrity",
  21. "html-webpack-plugin"
  22. ],
  23. "main": "./index.js",
  24. "types": "./webpack-subresource-integrity-public.d.ts",
  25. "engines": {
  26. "node": ">= 12"
  27. },
  28. "dependencies": {
  29. "typed-assert": "^1.0.8"
  30. },
  31. "peerDependencies": {
  32. "html-webpack-plugin": ">= 5.0.0-beta.1 < 6",
  33. "webpack": "^5.12.0"
  34. },
  35. "peerDependenciesMeta": {
  36. "html-webpack-plugin": {
  37. "optional": true
  38. }
  39. },
  40. "devDependencies": {
  41. "@microsoft/api-extractor": "^7.18.1",
  42. "@tsconfig/node12": "^1.0.9",
  43. "@types/cross-spawn": "^6.0.2",
  44. "@types/jest": "^26.0.24",
  45. "@types/json-schema": "^7.0.8",
  46. "@types/lodash": "^4.14.171",
  47. "@types/node": "^14.17.5",
  48. "@types/rimraf": "^3.0.1",
  49. "@types/tmp": "^0.2.1",
  50. "@typescript-eslint/eslint-plugin": "4.28.2",
  51. "@typescript-eslint/parser": "^4.28.2",
  52. "cross-spawn": "^7.0.3",
  53. "eslint": "^7.30.0",
  54. "eslint-config-prettier": "^6.15.0",
  55. "eslint-plugin-import": "2.23.4",
  56. "eslint-plugin-jest": "^24.3.6",
  57. "eslint-plugin-node": "11.1.0",
  58. "eslint-plugin-prettier": "^3.4.0",
  59. "eslint-plugin-promise": "4.3.1",
  60. "eslint-plugin-standard": "4.1.0",
  61. "html-webpack-plugin": ">= 5.0.0-beta.1",
  62. "jest": "^26.6.3",
  63. "lodash": "^4.17.21",
  64. "memfs": "^3.2.0",
  65. "nyc": "*",
  66. "prettier": "^2.3.2",
  67. "rimraf": "^3.0.2",
  68. "tapable": "^2.2.0",
  69. "tmp": "^0.2.1",
  70. "tmp-promise": "^3.0.2",
  71. "ts-jest": "^26.5.6",
  72. "typescript": "^4.3.5",
  73. "webpack": "^5.44.0"
  74. },
  75. "scripts": {
  76. "prepublish": "tsc && api-extractor run --local"
  77. },
  78. "files": [
  79. "/index.js",
  80. "/index.js.map",
  81. "/plugin.js",
  82. "/plugin.js.map",
  83. "/reporter.js",
  84. "/reporter.js.map",
  85. "/util.js",
  86. "/util.js.map",
  87. "/types.js",
  88. "/types.js.map",
  89. "/webpack-subresource-integrity-public.d.ts",
  90. "/tsdoc-metadata.json",
  91. "/README.md",
  92. "/LICENSE"
  93. ]
  94. }