package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fast-safe-stringify",
  3. "version": "2.0.6",
  4. "description": "Safely and quickly serialize JavaScript objects",
  5. "keywords": [
  6. "stable",
  7. "stringify",
  8. "JSON",
  9. "JSON.stringify",
  10. "safe",
  11. "serialize"
  12. ],
  13. "main": "index.js",
  14. "scripts": {
  15. "test": "standard && tap test.js test-stable.js",
  16. "benchmark": "node benchmark.js"
  17. },
  18. "author": "David Mark Clements",
  19. "contributors": [
  20. "Ruben Bridgewater",
  21. "Matteo Collina",
  22. "Ben Gourley",
  23. "Gabriel Lesperance",
  24. "Alex Liu",
  25. "Christoph Walcher",
  26. "Nicholas Young"
  27. ],
  28. "license": "MIT",
  29. "typings": "index",
  30. "devDependencies": {
  31. "benchmark": "^2.1.4",
  32. "clone": "^2.1.0",
  33. "json-stringify-safe": "^5.0.1",
  34. "standard": "^11.0.0",
  35. "tap": "^12.0.0"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/davidmarkclements/fast-safe-stringify.git"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/davidmarkclements/fast-safe-stringify/issues"
  43. },
  44. "homepage": "https://github.com/davidmarkclements/fast-safe-stringify#readme",
  45. "dependencies": {}
  46. }