package.json 641 B

123456789101112131415161718192021222324
  1. {
  2. "name": "stream-exhaust",
  3. "version": "1.0.2",
  4. "description": "Ensure that a stream is flowing data without mutating it",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/chrisdickinson/stream-exhaust.git"
  12. },
  13. "author": "Chris Dickinson <chris@neversaw.us>",
  14. "license": "MIT",
  15. "bugs": {
  16. "url": "https://github.com/chrisdickinson/stream-exhaust.git"
  17. },
  18. "homepage": "https://github.com/chrisdickinson/stream-exhaust.git",
  19. "devDependencies": {
  20. "readable-stream": "^1.0.31",
  21. "tape": "^2.14.0",
  22. "through2": "^0.5.1"
  23. }
  24. }