package.json 752 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "through2",
  3. "version": "3.0.2",
  4. "description": "A tiny wrapper around Node.js streams.Transform (Streams2/3) to avoid explicit subclassing noise",
  5. "main": "through2.js",
  6. "scripts": {
  7. "test": "nyc node test/test.js | faucet && nyc report"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/rvagg/through2.git"
  12. },
  13. "keywords": [
  14. "stream",
  15. "streams2",
  16. "through",
  17. "transform"
  18. ],
  19. "author": "Rod Vagg <r@va.gg> (https://github.com/rvagg)",
  20. "license": "MIT",
  21. "dependencies": {
  22. "inherits": "^2.0.4",
  23. "readable-stream": "2 || 3"
  24. },
  25. "devDependencies": {
  26. "bl": "~2.0.1",
  27. "faucet": "0.0.1",
  28. "nyc": "~13.1.0",
  29. "stream-spigot": "~3.0.6",
  30. "tape": "~4.9.1"
  31. }
  32. }