package.json 606 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "ordered-read-streams",
  3. "version": "0.3.0",
  4. "description": "Combines array of streams into one read stream in strict order",
  5. "files": [
  6. "index.js"
  7. ],
  8. "scripts": {
  9. "test": "jshint *.js test/*.js && mocha"
  10. },
  11. "repository": "armed/ordered-read-streams",
  12. "author": "Artem Medeusheyev <artem.medeusheyev@gmail.com>",
  13. "license": "MIT",
  14. "dependencies": {
  15. "is-stream": "^1.0.1",
  16. "readable-stream": "^2.0.1"
  17. },
  18. "devDependencies": {
  19. "should": "^7.0.1",
  20. "mocha": "^2.2.5",
  21. "through2": "^2.0.0",
  22. "jshint": "^2.8.0",
  23. "pre-commit": "^1.0.10"
  24. }
  25. }