package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "is-buffer",
  3. "description": "Determine if an object is a Buffer",
  4. "version": "2.0.5",
  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/is-buffer/issues"
  12. },
  13. "dependencies": {},
  14. "devDependencies": {
  15. "airtap": "^3.0.0",
  16. "standard": "*",
  17. "tape": "^5.0.1"
  18. },
  19. "engines": {
  20. "node": ">=4"
  21. },
  22. "keywords": [
  23. "arraybuffer",
  24. "browser",
  25. "browser buffer",
  26. "browserify",
  27. "buffer",
  28. "buffers",
  29. "core buffer",
  30. "dataview",
  31. "float32array",
  32. "float64array",
  33. "int16array",
  34. "int32array",
  35. "type",
  36. "typed array",
  37. "uint32array"
  38. ],
  39. "license": "MIT",
  40. "main": "index.js",
  41. "repository": {
  42. "type": "git",
  43. "url": "git://github.com/feross/is-buffer.git"
  44. },
  45. "scripts": {
  46. "test": "standard && npm run test-node && npm run test-browser",
  47. "test-browser": "airtap -- test/*.js",
  48. "test-browser-local": "airtap --local -- test/*.js",
  49. "test-node": "tape test/*.js"
  50. },
  51. "funding": [
  52. {
  53. "type": "github",
  54. "url": "https://github.com/sponsors/feross"
  55. },
  56. {
  57. "type": "patreon",
  58. "url": "https://www.patreon.com/feross"
  59. },
  60. {
  61. "type": "consulting",
  62. "url": "https://feross.org/support"
  63. }
  64. ]
  65. }