package.json 795 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "streaming-json-stringify",
  3. "description": "Streaming JSON.stringify()",
  4. "version": "3.1.0",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "repository": "stream-utils/streaming-json-stringify",
  7. "license": "MIT",
  8. "devDependencies": {
  9. "cat-stream": "*",
  10. "istanbul": "0",
  11. "mocha": "2",
  12. "sinon": "^1.17.2"
  13. },
  14. "scripts": {
  15. "test": "mocha --reporter spec",
  16. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  17. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  18. },
  19. "keywords": [
  20. "stream",
  21. "json",
  22. "stringify"
  23. ],
  24. "files": [
  25. "index.js"
  26. ],
  27. "dependencies": {
  28. "json-stringify-safe": "5",
  29. "readable-stream": "2"
  30. }
  31. }