package.json 878 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "json-buffer",
  3. "description": "JSON parse & stringify that supports binary via bops & base64",
  4. "version": "3.0.0",
  5. "homepage": "https://github.com/dominictarr/json-buffer",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/dominictarr/json-buffer.git"
  9. },
  10. "devDependencies": {
  11. "tape": "^4.6.3"
  12. },
  13. "scripts": {
  14. "test": "set -e; for t in test/*.js; do node $t; done"
  15. },
  16. "author": "Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com)",
  17. "license": "MIT",
  18. "testling": {
  19. "files": "test/*.js",
  20. "browsers": [
  21. "ie/8..latest",
  22. "firefox/17..latest",
  23. "firefox/nightly",
  24. "chrome/22..latest",
  25. "chrome/canary",
  26. "opera/12..latest",
  27. "opera/next",
  28. "safari/5.1..latest",
  29. "ipad/6.0..latest",
  30. "iphone/6.0..latest",
  31. "android-browser/4.2..latest"
  32. ]
  33. }
  34. }