{"maintainers":[{"name":"anonymous","email":"yo@contra.io"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"keywords":["streams","ordered","group","combine","streamx","readable"],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"description":"Combines array of streams into one Readable stream in strict order.","readme":"<p align=\"center\">\n  <a href=\"https://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# ordered-read-streams\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nCombines array of streams into one Readable stream in strict order.\n\n## Usage\n\n```js\nvar { Readable } = require('streamx');\nvar ordered = require('ordered-read-streams');\n\nvar s1 = new Readable({\n  read: function (cb) {\n    var self = this;\n    if (self.called) {\n      self.push(null);\n      return cb(null);\n    }\n    setTimeout(function () {\n      self.called = true;\n      self.push('stream 1');\n      cb(null);\n    }, 200);\n  },\n});\nvar s2 = new Readable({\n  read: function (cb) {\n    var self = this;\n    if (self.called) {\n      self.push(null);\n      return cb(null);\n    }\n    setTimeout(function () {\n      self.called = true;\n      self.push('stream 2');\n      cb(null);\n    }, 30);\n  },\n});\nvar s3 = new Readable({\n  read: function (cb) {\n    var self = this;\n    if (self.called) {\n      self.push(null);\n      return cb(null);\n    }\n    setTimeout(function () {\n      self.called = true;\n      self.push('stream 3');\n      cb(null);\n    }, 100);\n  },\n});\n\nvar readable = ordered([s1, s2, s3]);\nreadable.on('data', function (data) {\n  console.log(data);\n  // Logs:\n  // stream 1\n  // stream 2\n  // stream 3\n});\n```\n\n## API\n\n### `ordered(streams, [options])`\n\nTakes an array of `Readable` streams and produces a single `OrderedReadable` stream that will consume the provided streams in strict order. The produced `Readable` stream respects backpressure on itself and any provided streams.\n\n#### `orderedReadable.addSource(stream)`\n\nThe returned `Readable` stream has an `addSource` instance function that takes appends a `Readable` stream to the list of source streams that the `OrderedReadable` is reading from.\n\n## License\n\nMIT\n\n<!-- prettier-ignore-start -->\n[downloads-image]: https://img.shields.io/npm/dm/ordered-read-streams.svg?style=flat-square\n[npm-url]: https://www.npmjs.com/package/ordered-read-streams\n[npm-image]: https://img.shields.io/npm/v/ordered-read-streams.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/ordered-read-streams/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/ordered-read-streams/dev?style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/ordered-read-streams\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/ordered-read-streams/master.svg?style=flat-square\n<!-- prettier-ignore-end -->\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/ordered-read-streams.git"},"users":{"acewinnielee":true},"bugs":{"url":"https://github.com/gulpjs/ordered-read-streams/issues"},"license":"MIT","versions":{"0.0.1":{"name":"ordered-read-streams","version":"0.0.1","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.1","dist":{"shasum":"4f16b5aa860ea210dcb3baf95ec5d8479d66edf1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.1.tgz","integrity":"sha512-C7GF/pW7O+3nJbbOO5izv6OEnnPKOVKDoR2OkOmWH5Yen3nYiOYxg4ObzfcFPQ6NU9EdWMLaNPyz9WacAVRTVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAT2WBnQPnTEy9jZZ83QHC1YGFfFx0+LrXlIhb6dKDU7AiBsQcaSvrXmYlhlUhT69HC09XLKXK1UedrQ2KpfyJpc7w=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.2":{"name":"ordered-read-streams","version":"0.0.2","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.2","dist":{"shasum":"95d590555f6c65dbafa529068a702d8ca1a25aa5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.2.tgz","integrity":"sha512-GIgsB7jMd+I98k6DYBzEmaYknVIiLe/DxH814MAqAX/urXTDcxGXOQ5IXZ5yPIxpEkPxwWnwltVdivLZesLVcA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDt7scfe4t1+gwQDU2FfPS/Mhl19e2CDOdwBeqSlC1j0wIhAM+x259qZU6ldT5ZySj7YQeFK6wD2nI0C6POefKJvJzP"}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.3":{"name":"ordered-read-streams","version":"0.0.3","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint *.js test/*.js"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.3","dist":{"shasum":"5e8339589496f8ae79ff97b9f71a2667601dabdc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.3.tgz","integrity":"sha512-Lnf17w5eJaHnMv3c+ugIfxQgmGHkSfbu8GkUVXof3hCClNt7gO7iFAcashh65AgjbZ5XfS6Zgh6UfMUeX6SYcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAmN39QBtpG2CL/As5SKA6NAIWYhxJ28q38jgOY/cauMAiAVpvoe4KKIaZmM5Wi3wDhAQgmeWWKYTas0Cma5lWbfHA=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.4":{"name":"ordered-read-streams","version":"0.0.4","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint *.js test/*.js"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.4","dist":{"shasum":"6b0076d19edfa8c1f791f0b97a76c2159148a84c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.4.tgz","integrity":"sha512-GhkUf1edR8vrZjyQkVz5AhYiaqsPoZiE2mNyQN7HO4/3cWH6wes6TgxwJ3sHI/b6D30s5g7b0MfKHnIZp+0uMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEKJQnx5VTwL84EJlfbV+GYusrUYedG74MUUMsC/ZDVTAiEA6jbi80BEv8yC3kyYG/unNgnPGtqBpaJbQCI36IdVlcE="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.5":{"name":"ordered-read-streams","version":"0.0.5","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint *.js test/*.js"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.5","dist":{"shasum":"a92ce7e49c5719522d1b9d8862bda72beee884a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.5.tgz","integrity":"sha512-zOm7j0RXMF7+yOVmckmkx138aGMoxx5ZS3BKc/GTrZ5nehYH2HnT2F4jVL9QMnVqiOfJxe7oUEYOm0N/VY9klg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFgCtZfq27D+HS2kX036VNzqRZP6mXh0OkZgFz4HT5cyAiAhUH2IbX+KfhAjYlcJNfy5XmugGeVr43kg/be81Y8+7g=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.6":{"name":"ordered-read-streams","version":"0.0.6","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"mocha -R spec && jshint *.js test/*.js"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.6","dist":{"shasum":"c297d1a0240f3ae892a757b3dbee7b89ed0f2f7e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.6.tgz","integrity":"sha512-IipoMGbf379dZIqLV2er7+fBtfXfzLGlIS/P/OehzDIrnYGjxm3I6t23MrsOwZjitmmGxLtgrS0FCnT8ITTYQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsmGOU+R3dyqrY48feIMIoeWAIYmcKQqZlO39pUsw4fgIgdMy3+7KI2nE6ZzGbVNAc6v1KjY9C3pQoYq4N7yXYtew="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.7":{"name":"ordered-read-streams","version":"0.0.7","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"jshint *.js test/*.js && mocha -R spec"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~2.1.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.7","dist":{"shasum":"64fb9a2e15c6513a5508389bd6df6829fad91ce9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.7.tgz","integrity":"sha512-SnK0IxpVLhe0o1H4ZmPySMEwx4MgZ9FKEtnhPFZXwAqLzDVI+cJzrwHyqBozWSrKbDq+qB8bjzOKMND2Yx7K2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAJKmWPkha943CULuuDzOJf9nB2CNTd83mnsNY3G55mDAiBbjmwTfWIyBhyXqoCTEDuN0ggaYP6LD5tbeNIYSUq2LA=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.0.8":{"name":"ordered-read-streams","version":"0.0.8","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"jshint *.js test/*.js && mocha -R spec"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~3.0.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1","pre-commit":"0.0.4"},"bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.0.8","dist":{"shasum":"fd921331b1a130b66aeef711b219aee01d89e0c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.0.8.tgz","integrity":"sha512-5gU2oKy4zIHrqASdB1AAVcTHg1Yx07fM8amHZRN4r2gL8mG9vxcOItgt94bEzeEUuyOrPz0BrEkxp4bh4HyyXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4PkvcTQiypG4hm2F2r6yBho88yqNvvnT8Ax/bNVh7pAIhALl3TsGlQ+/U70gN/6xNr/VBLpmTj6YCzURg0rDBEFzU"}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"directories":{}},"0.1.0":{"name":"ordered-read-streams","version":"0.1.0","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"jshint *.js test/*.js && mocha -R spec"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~3.0.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1","pre-commit":"0.0.4"},"gitHead":"0a7e487d8734978c0cc29d4dc3bfbdb8e82f865b","bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.1.0","_shasum":"fd565a9af8eb4473ba69b6ed8a34352cb552f126","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"dist":{"shasum":"fd565a9af8eb4473ba69b6ed8a34352cb552f126","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz","integrity":"sha512-PMX5ehiNri4+lgk9fl09xuPeciGmyPyVUSBwwPT4C/3EHGxoVf7UdgKDE3SLBD4pUDmlzrg1L1cK5igrp+Tyuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFFy4EVj7qgJrRB/s2NKtv7DcCcm8Kw+TX+rtdh7JoPgIgBR4jvheTcu8mSnWGeSQ2LFAXnvJBLYQ222WEhg+SSlc="}]},"directories":{}},"0.2.0":{"name":"ordered-read-streams","version":"0.2.0","description":"Combines array of streams into one read stream in strict order","main":"index.js","scripts":{"test":"jshint *.js test/*.js && mocha -R spec"},"repository":{"type":"git","url":"git://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","devDependencies":{"should":"~3.0.1","mocha":"~1.17.0","through2":"~0.4.0","jshint":"~2.4.1","pre-commit":"0.0.4"},"dependencies":{"isstream":"^0.1.1","readable-stream":"^1.0.33"},"gitHead":"16f445d33c370996d6a4cf0ddbe066bed6143875","bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams","_id":"ordered-read-streams@0.2.0","_shasum":"4469ca77baef3500075f62c0d43e4775e6d61192","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"dist":{"shasum":"4469ca77baef3500075f62c0d43e4775e6d61192","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.2.0.tgz","integrity":"sha512-fDUP/2T3iKBOaogKxF/l4fNwCuRUZGAOAXbIBqnp/VHIvJ9dC4MIqsJf2QQNThyNsuj+HoJRel5cccqH2HPeRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFYxa/r0V6vwoq9K+d9jbfi9RWJx+AsBavub5xIChb3LAiAH1JQ05BT/5d/jQ3nhz++tGhS2bau+So+zPhEC59J8Sw=="}]},"directories":{}},"0.3.0":{"name":"ordered-read-streams","version":"0.3.0","description":"Combines array of streams into one read stream in strict order","files":["index.js"],"scripts":{"test":"jshint *.js test/*.js && mocha"},"repository":{"type":"git","url":"git+https://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","dependencies":{"is-stream":"^1.0.1","readable-stream":"^2.0.1"},"devDependencies":{"should":"^7.0.1","mocha":"^2.2.5","through2":"^2.0.0","jshint":"^2.8.0","pre-commit":"^1.0.10"},"gitHead":"d1d4cb9437b1afc750fb0cb7f8f438ba6d9c4406","bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams#readme","_id":"ordered-read-streams@0.3.0","_shasum":"7137e69b3298bb342247a1bbee3881c80e2fd78b","_from":".","_npmVersion":"2.11.2","_nodeVersion":"2.2.1","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"dist":{"shasum":"7137e69b3298bb342247a1bbee3881c80e2fd78b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz","integrity":"sha512-xQvd8qvx9U1iYY9aVqPpoF5V9uaWJKV6ZGljkh/jkiNX0DiQsjbWvRumbh10QTMDE8DheaOEU8xi0szbrgjzcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/mL7JZLMCnECyvQCVoD4ZpXFqjmuqIWZqIkw9wsZjOgIgAfqgu7olHeZgrrGFm1J/vgicBDUcOzafBJ2yNk/qDs4="}]},"directories":{}},"1.0.0":{"name":"ordered-read-streams","version":"1.0.0","description":"Combines array of streams into one read stream in strict order","files":["index.js"],"scripts":{"test":"jscs *.js test/*js && jshint *.js test/*.js && mocha"},"repository":{"type":"git","url":"git+https://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","dependencies":{"is-stream":"^1.0.1","readable-stream":"^2.0.1"},"devDependencies":{"jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","pre-commit":"^1.0.10","should":"^7.0.1","through2":"^2.0.0"},"gitHead":"e3081d2c18d847a4517d5e5eb7e9554c8adca3cf","bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams#readme","_id":"ordered-read-streams@1.0.0","_shasum":"d674a86ffcedf83d0ae06afa2918855e96d4033a","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"}],"dist":{"shasum":"d674a86ffcedf83d0ae06afa2918855e96d4033a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-1.0.0.tgz","integrity":"sha512-TMLRxapAA8f84fJoXjT1c9BbhopxqsRA/GQyKeTK/fjICWJUic23IQ9mPJexuir7kQ64S4SxZ65PMr9156v5+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlq3NsUFUEvQMyizKhYdj7nvjC3BRuj9RphkX683FPTwIgSwzJk4twVLqgC9qZb1UAYa3wGiiUgP6ElNe7NhulKmc="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ordered-read-streams-1.0.0.tgz_1473745040137_0.759948993800208"},"directories":{}},"1.0.1":{"name":"ordered-read-streams","version":"1.0.1","description":"Combines array of streams into one read stream in strict order","files":["index.js"],"scripts":{"test":"jscs *.js test/*js && jshint *.js test/*.js && mocha"},"repository":{"type":"git","url":"git+https://github.com/armed/ordered-read-streams.git"},"author":{"name":"Artem Medeusheyev","email":"artem.medeusheyev@gmail.com"},"license":"MIT","dependencies":{"readable-stream":"^2.0.1"},"devDependencies":{"expect":"^1.20.2","jscs":"^1.13.1","jshint":"^2.8.0","mississippi":"^1.3.0","mocha":"^2.2.5","pre-commit":"^1.0.10","through2":"^2.0.0"},"gitHead":"6c484a674210e49f50d0227bbf8bb0227ef07153","bugs":{"url":"https://github.com/armed/ordered-read-streams/issues"},"homepage":"https://github.com/armed/ordered-read-streams#readme","_id":"ordered-read-streams@1.0.1","_shasum":"77c0cb37c41525d64166d990ffad7ec6a0e1363e","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"artem.medeusheyev@gmail.com"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"77c0cb37c41525d64166d990ffad7ec6a0e1363e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz","integrity":"sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvrD0XxvZVfGqoxD+KCrFeQqUK+ojrHDLmBSJEh6qIhAIgEwkf1qBRtimMfh6kYCCZwiGz70MyfeRKltk+s2zPQrg="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ordered-read-streams-1.0.1.tgz_1494347569794_0.2757302173413336"},"directories":{}},"2.0.0":{"name":"ordered-read-streams","version":"2.0.0","description":"Combines array of streams into one Readable stream in strict order.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"},{"name":"Artem Medeu","email":"artem.medeusheyev@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/ordered-read-streams.git"},"license":"MIT","engines":{"node":">= 10.13.0"},"scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha --async-only"},"dependencies":{"streamx":"^2.12.5"},"devDependencies":{"eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","eslint-plugin-node":"^11.1.0","expect":"^27.4.2","mocha":"^8.4.0","nyc":"^15.1.0","readable-stream":"^3.6.0"},"nyc":{"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"keywords":["streams","ordered","group","combine","streamx","readable"],"gitHead":"cb3d384fa0398429d1fe6243447a238b24b9b55e","bugs":{"url":"https://github.com/gulpjs/ordered-read-streams/issues"},"homepage":"https://github.com/gulpjs/ordered-read-streams#readme","_id":"ordered-read-streams@2.0.0","_nodeVersion":"16.14.2","_npmVersion":"8.11.0","dist":{"integrity":"sha512-YT9wHHV9mB/qadhWnBsC57JKhAMA22/aR+RwZRgcf4K4Q7IIfmSsnYGxgiu9LVZP3wddRAm5pfYkzkmBb+HuwA==","shasum":"c6a8f025f8f701be533d5d6decdb5d98b63a295d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ordered-read-streams/-/ordered-read-streams-2.0.0.tgz","fileCount":4,"unpackedSize":7734,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA+XmbXuXGocA6EXj9OkbMsIwxLJTEhQcSbk+m/0yW32AiEAjJCkt04UH2u+ya6wbnWazOqNlms2Cw5ieXCUnOGCrLg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRGxWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnQw/9FED4T2Lvpt045MRK+pifm3GNCe2VeZNBrc3DwmJM0EbvAg4/\r\ni19pST1rRWm9XAJVAB2H5H+DzYguopC9uJ1K8rsBbw1VhcBHmDT5vZpbmyEH\r\nOBLW8UrJu8oKb1XZJ0tp5DE6Iw6HUKSWSu3MuBOEi1OGRELNX/xTPuFLlmUy\r\ndGR0ALa3n14VbDxXIqUv437FQL6IWGFwPmjganJc9q5+SQLnkUW3RKP73PPQ\r\nwqYJjBASxP3WmiIt7kSxTSXU3rV5u+6H2PHlcVBR+IANB0g3fyMuumq/ga9x\r\nlqmGoQ0dmgvszqFO8vUx27OiAMbFsZOcxfFYlle77jql9JHPHW7I4BJxPTXI\r\nkAnMMJ510EUN8JBiiYaJGkDxwa825PO1+LfdpZIQPGGGHG1/e+uTAONS4vAw\r\nzBENS2fC0YY3BLR49crAxsTDlln4QD9EZlEAm1TXONGguaIXTi3y4aMElp9W\r\nhlWOGqz7EirNEE5asLnwN8jHCePB5QP7aoRvewHXopZjRgrgJTpOIB4tAEIV\r\nsXDNa3ZJ9ilsmdeQRSNhWV9v0cHcSTOvkgiFwz+RSyKVotU7RLXYTcgGiLHD\r\nwL2KtTTrAZQ313iSjT8ZoqinrZQS+Co/QgQyEAuigl81xnxU5ju2eUvJkLZr\r\nKXZ/oER8qBojjH9e+OuYQb6Bf5Qx8b9cHu8=\r\n=mzr3\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"yo@contra.io"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ordered-read-streams_2.0.0_1665428566764_0.7065188875861652"},"_hasShrinkwrap":false}},"name":"ordered-read-streams","time":{"modified":"2022-10-10T19:02:47.027Z","created":"2014-01-15T06:50:22.498Z","0.0.1":"2014-01-15T06:50:22.498Z","0.0.2":"2014-01-15T08:37:31.561Z","0.0.3":"2014-01-16T12:32:57.127Z","0.0.4":"2014-01-17T05:03:16.244Z","0.0.5":"2014-01-18T07:16:21.362Z","0.0.6":"2014-01-18T08:06:01.450Z","0.0.7":"2014-01-18T08:32:14.360Z","0.0.8":"2014-07-01T08:20:59.498Z","0.1.0":"2014-09-30T10:02:03.929Z","0.2.0":"2015-03-02T08:34:33.897Z","0.3.0":"2015-07-04T12:40:31.826Z","1.0.0":"2016-09-13T05:37:22.015Z","1.0.1":"2017-05-09T16:32:51.945Z","2.0.0":"2022-10-10T19:02:46.935Z"},"readmeFilename":"README.md","contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"},{"name":"Artem Medeu","email":"artem.medeusheyev@gmail.com"}],"homepage":"https://github.com/gulpjs/ordered-read-streams#readme"}