package.json 960 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "cloneable-readable",
  3. "version": "1.1.3",
  4. "description": "Clone a Readable stream, safely",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && tape test.js | tap-spec"
  8. },
  9. "precommit": "test",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/mcollina/cloneable-readable.git"
  13. },
  14. "keywords": [
  15. "readable",
  16. "stream",
  17. "clone"
  18. ],
  19. "author": "Matteo Collina <hello@matteocollina.com>",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/mcollina/cloneable-readable/issues"
  23. },
  24. "homepage": "https://github.com/mcollina/cloneable-readable#readme",
  25. "devDependencies": {
  26. "flush-write-stream": "^1.0.0",
  27. "from2": "^2.1.1",
  28. "pre-commit": "^1.1.2",
  29. "pump": "^3.0.0",
  30. "standard": "^11.0.0",
  31. "tap-spec": "^4.1.1",
  32. "tape": "^4.9.0"
  33. },
  34. "dependencies": {
  35. "inherits": "^2.0.1",
  36. "process-nextick-args": "^2.0.0",
  37. "readable-stream": "^2.3.5"
  38. }
  39. }