package.json 665 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "is-typedarray",
  3. "version": "1.0.0",
  4. "description": "Detect whether or not an object is a Typed Array",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test"
  8. },
  9. "author": "Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/)",
  10. "license": "MIT",
  11. "dependencies": {},
  12. "devDependencies": {
  13. "tape": "^2.13.1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/hughsk/is-typedarray.git"
  18. },
  19. "keywords": [
  20. "typed",
  21. "array",
  22. "detect",
  23. "is",
  24. "util"
  25. ],
  26. "bugs": {
  27. "url": "https://github.com/hughsk/is-typedarray/issues"
  28. },
  29. "homepage": "https://github.com/hughsk/is-typedarray"
  30. }