package.json 779 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "pumpify",
  3. "version": "1.5.1",
  4. "description": "Combine an array of streams into a single duplex stream using pump and duplexify",
  5. "main": "index.js",
  6. "dependencies": {
  7. "duplexify": "^3.6.0",
  8. "inherits": "^2.0.3",
  9. "pump": "^2.0.0"
  10. },
  11. "devDependencies": {
  12. "tape": "^4.8.0",
  13. "through2": "^2.0.3"
  14. },
  15. "scripts": {
  16. "test": "tape test.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/mafintosh/pumpify"
  21. },
  22. "keywords": [
  23. "pump",
  24. "duplexify",
  25. "duplex",
  26. "streams",
  27. "stream",
  28. "pipeline",
  29. "combine"
  30. ],
  31. "author": "Mathias Buus",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/mafintosh/pumpify/issues"
  35. },
  36. "homepage": "https://github.com/mafintosh/pumpify"
  37. }