package.json 792 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "read-only-stream",
  3. "version": "2.0.0",
  4. "description": "wrap a readable/writable stream to be read-only",
  5. "main": "index.js",
  6. "dependencies": {
  7. "readable-stream": "^2.0.2"
  8. },
  9. "devDependencies": {
  10. "concat-stream": "^1.4.6",
  11. "tape": "^4.2.0",
  12. "through2": "^2.0.0",
  13. "through": "^2.3.4",
  14. "covert": "^1.0.0"
  15. },
  16. "scripts": {
  17. "test": "tape test/*.js",
  18. "coverage": "covert test/*.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/substack/read-only-stream.git"
  23. },
  24. "homepage": "https://github.com/substack/read-only-stream",
  25. "keywords": [
  26. "stream",
  27. "readonly"
  28. ],
  29. "author": {
  30. "name": "James Halliday",
  31. "email": "mail@substack.net",
  32. "url": "http://substack.net"
  33. },
  34. "license": "MIT"
  35. }