package.json 794 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "through",
  3. "version": "2.3.8",
  4. "description": "simplified stream construction",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "set -e; for t in test/*.js; do node $t; done"
  8. },
  9. "devDependencies": {
  10. "stream-spec": "~0.3.5",
  11. "tape": "~2.3.2",
  12. "from": "~0.1.3"
  13. },
  14. "keywords": [
  15. "stream",
  16. "streams",
  17. "user-streams",
  18. "pipe"
  19. ],
  20. "author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
  21. "license": "MIT",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/dominictarr/through.git"
  25. },
  26. "homepage": "https://github.com/dominictarr/through",
  27. "testling": {
  28. "browsers": [
  29. "ie/8..latest",
  30. "ff/15..latest",
  31. "chrome/20..latest",
  32. "safari/5.1..latest"
  33. ],
  34. "files": "test/*.js"
  35. }
  36. }