package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "event-stream",
  3. "version": "3.3.4",
  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. "through": "~2.3.1",
  12. "duplexer": "~0.1.1",
  13. "from": "~0",
  14. "map-stream": "~0.1.0",
  15. "pause-stream": "0.0.11",
  16. "split": "0.3",
  17. "stream-combiner": "~0.0.4"
  18. },
  19. "devDependencies": {
  20. "asynct": "*",
  21. "it-is": "1",
  22. "ubelt": "~3.2.2",
  23. "stream-spec": "~0.3.5",
  24. "tape": "~2.3.0"
  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. "testling": {
  32. "files": "test/*.js",
  33. "browsers": {
  34. "ie": [
  35. 8,
  36. 9
  37. ],
  38. "firefox": [
  39. 13
  40. ],
  41. "chrome": [
  42. 20
  43. ],
  44. "safari": [
  45. 5.1
  46. ],
  47. "opera": [
  48. 12
  49. ]
  50. }
  51. },
  52. "license": "MIT",
  53. "author": "Dominic Tarr <dominic.tarr@gmail.com> (http://bit.ly/dominictarr)"
  54. }