package.json 775 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "through2",
  3. "version": "0.6.5",
  4. "description": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise",
  5. "main": "through2.js",
  6. "scripts": {
  7. "test": "node test/test.js",
  8. "test-local": "brtapsauce-local test/basic-test.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/rvagg/through2.git"
  13. },
  14. "keywords": [
  15. "stream",
  16. "streams2",
  17. "through",
  18. "transform"
  19. ],
  20. "author": "Rod Vagg <r@va.gg> (https://github.com/rvagg)",
  21. "license": "MIT",
  22. "dependencies": {
  23. "readable-stream": ">=1.0.33-1 <1.1.0-0",
  24. "xtend": ">=4.0.0 <4.1.0-0"
  25. },
  26. "devDependencies": {
  27. "bl": ">=0.9.0 <0.10.0-0",
  28. "stream-spigot": ">=3.0.4 <3.1.0-0",
  29. "tape": ">=2.14.0 <2.15.0-0"
  30. }
  31. }