package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "safe-json-parse",
  3. "version": "4.0.0",
  4. "description": "Parse JSON safely without throwing",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/safe-json-parse.git",
  8. "main": "callback",
  9. "homepage": "https://github.com/Raynos/safe-json-parse",
  10. "contributors": [
  11. {
  12. "name": "Raynos"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Raynos/safe-json-parse/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "dependencies": {
  20. "rust-result": "^1.0.0"
  21. },
  22. "devDependencies": {
  23. "tape": "~1.0.2"
  24. },
  25. "licenses": [
  26. {
  27. "type": "MIT",
  28. "url": "http://github.com/Raynos/safe-json-parse/raw/master/LICENSE"
  29. }
  30. ],
  31. "scripts": {
  32. "test": "node ./test/index.js"
  33. },
  34. "testling": {
  35. "files": "test/index.js",
  36. "browsers": [
  37. "ie/8..latest",
  38. "firefox/16..latest",
  39. "firefox/nightly",
  40. "chrome/22..latest",
  41. "chrome/canary",
  42. "opera/12..latest",
  43. "opera/next",
  44. "safari/5.1..latest",
  45. "ipad/6.0..latest",
  46. "iphone/6.0..latest",
  47. "android-browser/4.2..latest"
  48. ]
  49. }
  50. }