package.json 979 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "event-stream",
  3. "version": "4.0.1",
  4. "description": "construct pipes of streams of events",
  5. "homepage": "http://github.com/dominictarr/event-stream",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/dominictarr/event-stream.git"
  9. },
  10. "dependencies": {
  11. "duplexer": "^0.1.1",
  12. "from": "^0.1.7",
  13. "map-stream": "0.0.7",
  14. "pause-stream": "^0.0.11",
  15. "split": "^1.0.1",
  16. "stream-combiner": "^0.2.2",
  17. "through": "^2.3.8"
  18. },
  19. "devDependencies": {
  20. "asynct": "^1.1.0",
  21. "it-is": "^1.0.3",
  22. "stream-spec": "^0.3.6",
  23. "tape": "^4.9.1",
  24. "ubelt": "^3.2.2"
  25. },
  26. "scripts": {
  27. "prepublish": "npm ls && npm test",
  28. "test": "asynct test/",
  29. "test_tap": "set -e; for t in test/*.js; do node $t; done"
  30. },
  31. "keywords": [
  32. "stream", "map", "flatmap", "filter", "split", "join", "merge", "replace"
  33. ],
  34. "license": "MIT",
  35. "author": "Dominic Tarr <dominic.tarr@gmail.com> (http://bit.ly/dominictarr)"
  36. }