package.json 700 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "buffer-to-arraybuffer",
  3. "version": "0.0.5",
  4. "description": "Convert Buffer to ArrayBuffer",
  5. "main": "buffer-to-arraybuffer.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "tape test/*.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/miguelmota/buffer-to-arraybuffer"
  15. },
  16. "keywords": [
  17. "buffer",
  18. "array"
  19. ],
  20. "author": "Miguel Mota <hello@miguelmota.com> (http://www.miguelmota.com/)",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/miguelmota/buffer-to-arraybuffer/issues"
  24. },
  25. "homepage": "https://github.com/miguelmota/buffer-to-arraybuffer",
  26. "devDependencies": {
  27. "tape": "^4.7.0"
  28. }
  29. }