package.json 897 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "JSONStream",
  3. "version": "1.3.5",
  4. "description": "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)",
  5. "homepage": "http://github.com/dominictarr/JSONStream",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/dominictarr/JSONStream.git"
  9. },
  10. "license": "(MIT OR Apache-2.0)",
  11. "keywords": [
  12. "json",
  13. "stream",
  14. "streaming",
  15. "parser",
  16. "async",
  17. "parsing"
  18. ],
  19. "dependencies": {
  20. "jsonparse": "^1.2.0",
  21. "through": ">=2.2.7 <3"
  22. },
  23. "devDependencies": {
  24. "it-is": "~1",
  25. "assertions": "~2.2.2",
  26. "render": "~0.1.1",
  27. "trees": "~0.0.3",
  28. "event-stream": "~0.7.0",
  29. "tape": "~2.12.3"
  30. },
  31. "bin": "./bin.js",
  32. "author": "Dominic Tarr <dominic.tarr@gmail.com> (http://bit.ly/dominictarr)",
  33. "scripts": {
  34. "test": "node test/run.js"
  35. },
  36. "optionalDependencies": {},
  37. "engines": {
  38. "node": "*"
  39. }
  40. }