package.json 745 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "through2",
  3. "version": "2.0.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 | faucet"
  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. "readable-stream": "~2.3.6",
  23. "xtend": "~4.0.1"
  24. },
  25. "devDependencies": {
  26. "bl": "~2.0.1",
  27. "faucet": "0.0.1",
  28. "nyc": "~13.1.0",
  29. "safe-buffer": "~5.1.2",
  30. "stream-spigot": "~3.0.6",
  31. "tape": "~4.9.1"
  32. }
  33. }