package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "safe-buffer",
  3. "description": "Safer Node.js Buffer API",
  4. "version": "5.2.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/safe-buffer/issues"
  12. },
  13. "devDependencies": {
  14. "standard": "*",
  15. "tape": "^5.0.0"
  16. },
  17. "homepage": "https://github.com/feross/safe-buffer",
  18. "keywords": [
  19. "buffer",
  20. "buffer allocate",
  21. "node security",
  22. "safe",
  23. "safe-buffer",
  24. "security",
  25. "uninitialized"
  26. ],
  27. "license": "MIT",
  28. "main": "index.js",
  29. "types": "index.d.ts",
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/feross/safe-buffer.git"
  33. },
  34. "scripts": {
  35. "test": "standard && tape test/*.js"
  36. },
  37. "funding": [
  38. {
  39. "type": "github",
  40. "url": "https://github.com/sponsors/feross"
  41. },
  42. {
  43. "type": "patreon",
  44. "url": "https://www.patreon.com/feross"
  45. },
  46. {
  47. "type": "consulting",
  48. "url": "https://feross.org/support"
  49. }
  50. ]
  51. }