package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "typedarray-to-buffer",
  3. "description": "Convert a typed array to a Buffer without a copy",
  4. "version": "3.1.5",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "http://feross.org/"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/typedarray-to-buffer/issues"
  12. },
  13. "dependencies": {
  14. "is-typedarray": "^1.0.0"
  15. },
  16. "devDependencies": {
  17. "airtap": "0.0.4",
  18. "standard": "*",
  19. "tape": "^4.0.0"
  20. },
  21. "homepage": "http://feross.org",
  22. "keywords": [
  23. "buffer",
  24. "typed array",
  25. "convert",
  26. "no copy",
  27. "uint8array",
  28. "uint16array",
  29. "uint32array",
  30. "int16array",
  31. "int32array",
  32. "float32array",
  33. "float64array",
  34. "browser",
  35. "arraybuffer",
  36. "dataview"
  37. ],
  38. "license": "MIT",
  39. "main": "index.js",
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/feross/typedarray-to-buffer.git"
  43. },
  44. "scripts": {
  45. "test": "standard && npm run test-node && npm run test-browser",
  46. "test-browser": "airtap -- test/*.js",
  47. "test-browser-local": "airtap --local -- test/*.js",
  48. "test-node": "tape test/*.js"
  49. }
  50. }