package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "helmet",
  3. "description": "help secure Express/Connect apps with various HTTP headers",
  4. "version": "8.1.0",
  5. "author": "Adam Baldwin <adam@npmjs.com> (https://evilpacket.net)",
  6. "contributors": [
  7. "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)"
  8. ],
  9. "homepage": "https://helmetjs.github.io/",
  10. "bugs": {
  11. "url": "https://github.com/helmetjs/helmet/issues",
  12. "email": "me@evanhahn.com"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/helmetjs/helmet.git"
  17. },
  18. "license": "MIT",
  19. "keywords": [
  20. "express",
  21. "security",
  22. "headers",
  23. "backend",
  24. "content-security-policy",
  25. "cross-origin-embedder-policy",
  26. "cross-origin-opener-policy",
  27. "cross-origin-resource-policy",
  28. "origin-agent-cluster",
  29. "referrer-policy",
  30. "strict-transport-security",
  31. "x-content-type-options",
  32. "x-dns-prefetch-control",
  33. "x-download-options",
  34. "x-frame-options",
  35. "x-permitted-cross-domain-policies",
  36. "x-powered-by",
  37. "x-xss-protection"
  38. ],
  39. "engines": {
  40. "node": ">=18.0.0"
  41. },
  42. "exports": {
  43. "import": "./index.mjs",
  44. "require": "./index.cjs"
  45. },
  46. "main": "./index.cjs",
  47. "types": "./index.d.cts"
  48. }