{"maintainers":[{"name":"anonymous","email":"nicolas.froidure@insertafter.com"}],"keywords":["queue","streaming","stream","async","pipe"],"dist-tags":{"beta":"0.1.2","latest":"2.0.0"},"author":{"name":"Nicolas Froidure","email":"nicolas.froidure@insertafter.com","url":"https://insertafter.com/en/index.html"},"description":"StreamQueue pipe the queued streams one by one in order to preserve their content order.","readme":"[//]: # ( )\n[//]: # (This file is automatically generated by a `metapak`)\n[//]: # (module. Do not change it  except between the)\n[//]: # (`content:start/end` flags, your changes would)\n[//]: # (be overridden.)\n[//]: # ( )\n# streamqueue\n> StreamQueue pipe the queued streams one by one in order to preserve their content order.\n\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/nfroidure/streamqueue/blob/main/LICENSE)\n\n\n[//]: # (::contents:start)\n\n## Usage\n\nInstall the [npm module](https://npmjs.org/package/streamqueue):\n\n```sh\nnpm install streamqueue --save\n```\n\nThen, in your scripts:\n\n```js\nimport { StreamQueue } from 'streamqueue';\nimport { createReadStream } from 'node:fs';\n\nconst queue = new StreamQueue(\n  createReadStream('input.txt'),\n  createReadStream('input2.txt'),\n  createReadStream('input3.txt'),\n).pipe(process.stdout);\n```\n\nStreamQueue also accept functions returning streams, the above can be written\nlike this, doing system calls only when piping:\n\n```js\nimport { queueStreams } = require('streamqueue');\nimport { createReadStream } from 'node:fs';\n\nconst queue = queueStreams(\n  createReadStream.bind(null, 'input.txt'),\n  createReadStream.bind(null, 'input2.txt'),\n  createReadStream.bind(null, 'input3.txt'),\n).pipe(process.stdout);\n```\n\nObject-oriented traditionnal API offers more flexibility:\n\n```js\nimport { StreamQueue } from 'streamqueue';\nimport { createReadStream } from 'node:fs';\n\nconst queue = new StreamQueue();\n\nqueue.queue(\n  createReadStream('input.txt'),\n  createReadStream('input2.txt'),\n  createReadStream('input3.txt'),\n);\nqueue.done();\n\nqueue.pipe(process.stdout);\n```\n\nYou can also chain StreamQueue methods like that:\n\n```js\nimport StreamQueue from 'streamqueue';\nimport { createReadStream } from 'node:fs';\n\nnew StreamQueue()\n  .queue(createReadStream('input.txt'))\n  .queue(createReadStream('input2.txt'))\n  .queue(createReadStream('input3.txt'))\n  .done()\n  .pipe(process.stdout);\n```\n\nYou can queue new streams at any moment until you call the done() method. So the\ncreated stream will not fire the end event until done() call.\n\n## Stats\n\n[![NPM](https://nodei.co/npm/streamqueue.png?downloads=true&stars=true)](https://nodei.co/npm/streamqueue/)\n[![NPM](https://nodei.co/npm-dl/streamqueue.png)](https://nodei.co/npm/streamqueue/)\n\n## Contributing\n\nFeel free to propose your code if you agree with publishing it under the MIT\nlicense.\n\n[//]: # (::contents:end)\n\n# API\n## Classes\n\n<dl>\n<dt><a href=\"#StreamQueue\">StreamQueue</a></dt>\n<dd><p>Pipe queued streams sequentially</p>\n</dd>\n</dl>\n\n## Functions\n\n<dl>\n<dt><a href=\"#queueObjectStreams\">queueObjectStreams(options, ...streams)</a> ⇒</dt>\n<dd><p>Create a new queue in object mode and pipe given streams and end if some</p>\n</dd>\n<dt><a href=\"#queueStreams\">queueStreams(options, ...streams)</a> ⇒</dt>\n<dd><p>Create a new queue and pipe given streams and end if some</p>\n</dd>\n</dl>\n\n<a name=\"StreamQueue\"></a>\n\n## StreamQueue\nPipe queued streams sequentially\n\n**Kind**: global class  \n\n* [StreamQueue](#StreamQueue)\n    * [new StreamQueue(options, ...streams)](#new_StreamQueue_new)\n    * [.queue(...streams)](#StreamQueue+queue) ⇒\n    * [.done(...streams)](#StreamQueue+done) ⇒\n\n<a name=\"new_StreamQueue_new\"></a>\n\n### new StreamQueue(options, ...streams)\nCreate a new queue and pipe given streams and end if some\n\n**Returns**: StreamQueue  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | <code>Object</code> | The queue options |\n| options.objectMode | <code>boolean</code> | Operate in object mode |\n| options.pauseFlowingStream | <code>boolean</code> | Pause given streams that are flowing |\n| options.resumeFlowingStream | <code>boolean</code> | Resume given streams that are flowing |\n| ...streams | <code>Readable</code> \\| <code>function</code> | The stream or stream returning function to pipe in |\n\n<a name=\"StreamQueue+queue\"></a>\n\n### streamQueue.queue(...streams) ⇒\nQueue each stream given in argument\n\n**Kind**: instance method of [<code>StreamQueue</code>](#StreamQueue)  \n**Returns**: StreamQueue  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| ...streams | <code>Readable</code> \\| <code>function</code> | The stream or stream returning function to pipe in |\n\n<a name=\"StreamQueue+done\"></a>\n\n### streamQueue.done(...streams) ⇒\nQueue each stream given in argument and end\n\n**Kind**: instance method of [<code>StreamQueue</code>](#StreamQueue)  \n**Returns**: StreamQueue  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| ...streams | <code>Readable</code> \\| <code>function</code> | The stream or stream returning function to pipe in |\n\n<a name=\"queueObjectStreams\"></a>\n\n## queueObjectStreams(options, ...streams) ⇒\nCreate a new queue in object mode and pipe given streams and end if some\n\n**Kind**: global function  \n**Returns**: StreamQueue  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | <code>Object</code> | The queue options |\n| ...streams | <code>Readable</code> \\| <code>function</code> | The stream or stream returning function to pipe in |\n\n<a name=\"queueStreams\"></a>\n\n## queueStreams(options, ...streams) ⇒\nCreate a new queue and pipe given streams and end if some\n\n**Kind**: global function  \n**Returns**: StreamQueue  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | <code>Object</code> | The queue options |\n| ...streams | <code>Readable</code> \\| <code>function</code> | The stream or stream returning function to pipe in |\n\n\n# Authors\n- [Nicolas Froidure](https://insertafter.com/en/index.html)\n\n# License\n[MIT](https://github.com/nfroidure/streamqueue/blob/main/LICENSE)\n","repository":{"type":"git","url":"git://github.com/nfroidure/StreamQueue.git"},"users":{"bsara":true,"itonyyo":true,"andamira":true,"larrychen":true,"quocnguyen":true,"donggw2030521":true,"thierrymarianne":true},"bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"license":"MIT","versions":{"0.0.1":{"name":"streamqueue","version":"0.0.1","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.1","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"3edded1f1fdeed836b29b5745df408ae64dd54e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.1.tgz","integrity":"sha512-7zOx7272xDYNjSZufW1aWA7LTbVUclbOkeN00QK7/LvO7sJqZM1q+WL75hjy0T/qk65yWcd2KS90swRNl3ZLow==","signatures":[{"sig":"MEUCIQDzmpTL9XssDoBFZoJn3xv6x4nWhbHQ1ic4dRhdY81c9gIga4CtKo7p4HV+JnUGqTB2YuvlGgznJhhBbFB35xaVpOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"node_modules/mocha/bin/mocha tests/*.mocha.js"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.3.14","description":"Pipe queued streams progressively.","directories":{},"devDependencies":{"mocha":"1.x.x","event-stream":"1.x.x"}},"0.0.2":{"name":"streamqueue","version":"0.0.2","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.2","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"9b065e8a89cb66b37ffed03291e68b65a238c530","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.2.tgz","integrity":"sha512-n06N4zpTXki/Bu8+WS0M8r1L9DUMgy6LaQomjcj4YqvTqM2p3CxayvM1c1L6JDcwg8CmyU/A6GyorWd2lhDGSg==","signatures":[{"sig":"MEUCIQDeH6O8z/SigX0bxjyxwwfl9AICaln/U8R18K+6una76gIgKsoa11iD8379zQaUTWj+dLryNdNkRxzGBabfSRnFTUI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"node_modules/mocha/bin/mocha tests/*.mocha.js"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.3.14","description":"Pipe queued streams progressively.","directories":{},"devDependencies":{"mocha":"1.x.x","event-stream":"1.x.x"}},"0.0.3":{"name":"streamqueue","version":"0.0.3","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.3","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"2dc9ddf0bf1286a6a244504014a8648da8c86c8c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.3.tgz","integrity":"sha512-ogPgmpm9veulsxwiYzO4ztwhhjKFVlGkKaDrg28ZjJtVxiuus1/AWrAl2QZKR14I2lfLAnTzhNNtTXCZMpoh3g==","signatures":[{"sig":"MEQCIEoSTOtDHcEWWpySD/Zk5K9C3ImFhwAmqQHFRe7pQyGtAiBdCNxFVnf/XyVRgpwU3JabCp4PLtWqt77H0NmjpmqrKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"node_modules/mocha/bin/mocha tests/*.mocha.js"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.3.14","description":"Pipe queued streams progressively.","directories":{},"devDependencies":{"mocha":"1.x.x","event-stream":"1.x.x"}},"0.0.4":{"name":"streamqueue","version":"0.0.4","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.4","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"ab3e4dfb100ea725e28f9ec08b39ee8ed930f81b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.4.tgz","integrity":"sha512-BpO2Sl6VODJqQ6a42ieP/KFLmMohKu7PdSk5HImG8qnYeYv66cmxTbxr5UbaSDR8wYuX/Ge4wMZ/BM7WFwP8/Q==","signatures":[{"sig":"MEYCIQCvJnjr/IfLTwUmf/A2soll5v1CdgX0mJ2vGzIWp04TAQIhANEGET5rRJvU3wDYL410zOFZVkbZMnLimQiqsJS9byGb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"node_modules/mocha/bin/mocha tests/*.mocha.js"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.3.14","description":"Pipe queued streams progressively.","directories":{},"devDependencies":{"mocha":"1.x.x","event-stream":"1.x.x"}},"0.0.5":{"name":"streamqueue","version":"0.0.5","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.5","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"1c0d3be500dc2af67591934befd937e955903959","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.5.tgz","integrity":"sha512-qIDmf4fQMiuIiOFkYbzyNT9TO114FpunkUB0qnYrvJ2JplATfRbSPbC155CEIatpJxAdbEjQg5QK+q9RjsT+dA==","signatures":[{"sig":"MEUCIQCHFDSd9DfLRTXgxM7z4kDv8+0AFXihuE+nNKa6QXPRVgIgVJ+vEWMEQZQ1colyNAkTBm7UXqTMhb9yO2J1m6QeGK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.3.14","description":"Pipe queued streams progressively.","directories":{},"devDependencies":{"mocha":"~1.17.1","istanbul":"~0.2.4","coveralls":"~2.7.1","event-stream":"~3.1.0","mocha-lcov-reporter":"0.0.1"}},"0.0.6":{"name":"streamqueue","version":"0.0.6","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.6","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"66f5f5ec94e9b8af249e4aec2dd1f741bfe94de3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.6.tgz","integrity":"sha512-l09LNfTUkmLMckTB1Mm8Um5GMS1uTZ/KTodg/SMf5Nx758IOsmaqIQ/AJumAnNMkDgZBG39btq3LVkN90knq8w==","signatures":[{"sig":"MEUCIQCIg1KggQHoCQXXsAyMbcJP0GbvkDT/gIL/ZxM2O1ShGgIgEzXJp8ioFu/EvxTw24D8tWzHfSsyenkRGZN6ZKc49Ts=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.4.3","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"dependencies":{"readable-stream":"^1.0.26-2"},"devDependencies":{"mocha":"~1.18.2","istanbul":"~0.2.6","coveralls":"~2.10.0","event-stream":"~3.1.1","mocha-lcov-reporter":"0.0.1"}},"0.0.7":{"name":"streamqueue","version":"0.0.7","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.0.7","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"b2f5e03a60790603201861d0d8130a5fb6826057","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.0.7.tgz","integrity":"sha512-FOWt+XBXkn7GiaPDokssdRwZmnD+KqGOomt2hWzTeeJhoL9HvR1wVr61E2uY05SakS9GXliNB3kIk/9JXbcRzA==","signatures":[{"sig":"MEQCIG5MPez4Skx+XKs6PC8jNATFfeOMFFgM9kd9UgXr+ciNAiB+ZK2sY7mRGo73keoOq2ybo+FAryNXPOxRKfkAd0b0qQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.4.3","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"dependencies":{"readable-stream":"^1.0.26-2"},"devDependencies":{"mocha":"~1.18.2","istanbul":"~0.2.6","coveralls":"~2.10.0","event-stream":"~3.1.1","mocha-lcov-reporter":"0.0.1"}},"0.1.0":{"name":"streamqueue","version":"0.1.0","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.1.0","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"35159317951542d46f77a316dfac1a219603e901","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.1.0.tgz","integrity":"sha512-BogQ56elKHioWdCcwcnxIslBHW90ZO78AWTqoxBmCSUp+kqaWRlC6+dF4U/F8aXXFvsr3NTSt0SsSJnSOPesLw==","signatures":[{"sig":"MEQCIG8aFcoWzP0wyU/NBvWyB87RTvYM3eFDXtSvNb6aXkaKAiBYvGgckC1li4Z8DmCrzSYEqciRjyoMSeIZpnyBboiV6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.4.3","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"dependencies":{"isstream":"~0.1.0","readable-stream":"~1.0.27-1"},"devDependencies":{"mocha":"~1.19.0","istanbul":"~0.2.10","coveralls":"~2.10.0","event-stream":"~3.1.5","mocha-lcov-reporter":"0.0.1"}},"0.1.1":{"name":"streamqueue","version":"0.1.1","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.1.1","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"41b337200fdb94506870e7976d7e180003331b98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.1.1.tgz","integrity":"sha512-glvnGBfUN9DoijWRNN24PswE1uDt481dEwYUWv5o2j+4x5DdZYZ6H4i1De8GaJuos5poPhh9uTujilnILQGxdA==","signatures":[{"sig":"MEUCIFRGirMiGWu3bgfSeygs1RomQeeFVnJ8U8ToN/+TLNLWAiEAzIUXd/gtHx5LHufzA6jRTMLKfSRsPhMrod4AG/LYlo8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.4.6","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"dependencies":{"isstream":"~0.1.0","readable-stream":"~1.0.27-1"},"devDependencies":{"mocha":"~1.19.0","istanbul":"~0.2.10","coveralls":"~2.10.0","event-stream":"~3.1.5","mocha-lcov-reporter":"0.0.1"}},"0.1.2":{"name":"streamqueue","version":"0.1.2","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.1.2","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"2d580183bd4483b199c638eea6bb81b39aaeda34","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.1.2.tgz","integrity":"sha512-AQ/9QjOY5FkhDD+GSTn+15GRUlvV77wMsuxWz6wvUtMu0k0JpvtRSTT6jyxCmUqEFnqhtwDPIyd1xPfBQJ+fkA==","signatures":[{"sig":"MEYCIQDnPYY7r4R1PwHb4VPlpAeksHrXQYmLCZGNGjZASVHBaAIhANx6zkdHXFqWr0iaZhyrOSscfka+qfz9hbvyrWbdiGsU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","engines":{"node":">= 0.10.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"1.4.3","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"dependencies":{"isstream":"~0.1.0","readable-stream":"~1.0.27-1"},"devDependencies":{"mocha":"~1.19.0","istanbul":"~0.2.10","coveralls":"~2.10.0","event-stream":"~3.1.5","mocha-lcov-reporter":"0.0.1"}},"0.1.3":{"name":"streamqueue","version":"0.1.3","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@0.1.3","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"b10d65158af579ce3a5f48c9276d01db23d4f8b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-0.1.3.tgz","integrity":"sha512-gfc8VDMK+BasZLWckdiCLZIXeSBiDbIkYYvYYJjXhsk9PFVlpzsEZ24pWf7AopwIMcuzlDKjVLRPiZoAKjMSBA==","signatures":[{"sig":"MEUCIQDwEBY8+RA8BFpIvYf+qVn+FI6Yh/Z2T3q5vKSaASHPiwIgLe+3ArGc23uLmJlxKHVM77/sXKjZ7AT1EUQLCeaT/HQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","_shasum":"b10d65158af579ce3a5f48c9276d01db23d4f8b5","engines":{"node":">= 0.10.0"},"gitHead":"b54a8121c93bcb2283dd586b1f46f9f4e14aa5c2","scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"2.5.1","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isstream":"~0.1.1","readable-stream":"~1.0.33"},"devDependencies":{"mocha":"~2.1.0","istanbul":"~0.3.5","coveralls":"~2.11.2","streamtest":"~1.2.0","mocha-lcov-reporter":"~0.0.1"}},"1.0.0":{"name":"streamqueue","version":"1.0.0","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@1.0.0","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"860cc39ff95e91df6850d518d4fcd33fe166fb09","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-1.0.0.tgz","integrity":"sha512-jcXDVuViKV1MpcOfMMN63kT2vtUdOUqJteHAl09p5Ma+wn5JWEHL0wVF2ZYW8PBDZQzWwZpAAlBDOVRDTG+4Vg==","signatures":[{"sig":"MEUCIQCm/9kvPZ7dwsq1y0OpnB/prEoehfbYI4wS3Q9VSm9xwAIgVybgDMc3S8dwFutMIDyosC+z4DhsVLaADDAVYHKTrns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","_shasum":"860cc39ff95e91df6850d518d4fcd33fe166fb09","engines":{"node":">= 0.10.0"},"gitHead":"1d1399ee9bbd25d3d53d1eca74f40aea124e3d9e","scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"2.5.1","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isstream":"~0.1.2","readable-stream":"~1.0.33"},"devDependencies":{"mocha":"~2.2.5","istanbul":"~0.3.14","coveralls":"~2.11.2","streamtest":"~1.2.0","mocha-lcov-reporter":"~0.0.2"}},"1.1.0":{"name":"streamqueue","version":"1.1.0","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@1.1.0","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"4acd7fd6c47807f603aef0fc457951fc4509f77a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-1.1.0.tgz","integrity":"sha512-0DL8Jbkt2eoIDl48oxqnZUj86u4TVmgnX4HESN66fYdV8XKJDCXVO71K96T5SuuSeOsB5DIbheib3eCfbKR5SA==","signatures":[{"sig":"MEYCIQD7ug10oOVxxmjs8Z4P3W84xV+c7SxSphA+NsgqcRpt1QIhAICCBgUCaQXQZpBTz8J5sk4MIE1AJkI+Y2o3dBNWywl3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","_shasum":"4acd7fd6c47807f603aef0fc457951fc4509f77a","engines":{"node":">= 0.10.0"},"gitHead":"f8f8fc35346ec7009021bfe51c89d03bc89dfb9b","scripts":{"test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"2.5.1","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isstream":"~0.1.2","readable-stream":"~1.0.33"},"devDependencies":{"mocha":"~2.2.5","istanbul":"~0.3.14","coveralls":"~2.11.2","streamtest":"~1.2.0","mocha-lcov-reporter":"~0.0.2"}},"1.1.1":{"name":"streamqueue","version":"1.1.1","keywords":["queue","streaming","stream","async","pipe"],"author":{"url":"http://www.insertafter.com/blog.html","name":"Nicolas Froidure"},"_id":"streamqueue@1.1.1","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"d3ad76686be924bbf9ca2c74a814a2182475d6d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-1.1.1.tgz","integrity":"sha512-5XpKq4bXD+os99S2AWhbyy00Cq9N83OC4531NjS/LNZsAam8dsf7gjstef5pOwYe5z7CYfjgTK4zq0U9SUNG9w==","signatures":[{"sig":"MEUCIHLRSpzI/Vdj2ZS/5LuGo4s4ORDfPnvus9LNj778NMLdAiEAhHSGjqE08ZEKIbnJ56pQWbmANlQPnolNajTS4ztcfbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","_from":".","_shasum":"d3ad76686be924bbf9ca2c74a814a2182475d6d7","engines":{"node":">= 0.10.0"},"gitHead":"a772c3925e60fd2f26b7a2f8e0aa500793df62bc","scripts":{"cli":"env NPM_RUN_CLI=1","lint":"eslint **/*.js *.js","test":"./node_modules/mocha/bin/mocha tests/*.mocha.js","cover":"./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000","coveralls":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"},"_npmUser":{"name":"anonymous","email":"nfroidure@elitwork.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue","type":"git"},"_npmVersion":"2.5.1","description":"Pipe queued streams progressively, keeping datas order.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isstream":"^0.1.2","readable-stream":"~1.0.33"},"devDependencies":{"mocha":"~2.2.5","istanbul":"~0.3.14","coveralls":"~2.11.2","streamtest":"~1.2.0","mocha-lcov-reporter":"~0.0.2"}},"1.1.2":{"name":"streamqueue","version":"1.1.2","keywords":["queue","streaming","stream","async","pipe"],"author":{"name":"Nicolas Froidure"},"license":"MIT","_id":"streamqueue@1.1.2","maintainers":[{"name":"anonymous","email":"nfroidure@elitwork.com"}],"homepage":"https://github.com/nfroidure/StreamQueue","bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"dist":{"shasum":"6c99c7c20d62b57f5819296bf9ec942542380192","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-1.1.2.tgz","integrity":"sha512-CHUpqa+1BM99z7clQz9W6L9ZW4eXRRQCR0H+utVAGGvNo2ePlJAFjhdK0IjunaBbY/gWKJawk5kpJeyz0EXxRA==","signatures":[{"sig":"MEQCIEVuplk/7Px6wWsT9xWjl7uDtizZb621xPJbipDa3IS9AiBe4lntuLir8YjZs9+fbdYV4PPIyjRtRu7Eq5LpaCqVmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"engines":{"node":">=6.9.5"},"gitHead":"d086aecbbaa934b2415d3ca097749469f260ebbf","metapak":{"data":{"files":"src/*.js tests/*.mocha.js","testsFiles":"tests/*.mocha.js"},"configs":["readme","mocha","eslint","codeclimate","travis"]},"scripts":{"cz":"env NODE_ENV=${NODE_ENV:-cli} git cz","cli":"env NODE_ENV=${NODE_ENV:-cli}","lint":"eslint src/*.js tests/*.mocha.js","test":"npm run mocha","cover":"istanbul cover _mocha --report html -- tests/*.mocha.js -R spec -t 5000","mocha":"mocha tests/*.mocha.js","metapak":"metapak","version":"npm run changelog && git add CHANGELOG.md","prettier":"prettier --write src/*.js tests/*.mocha.js","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s","coveralls":"istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage","preversion":"npm t && npm run lint && npm run metapak -s"},"_npmUser":{"name":"anonymous","email":"nicolas.froidure@insertafter.com"},"licenses":[{"url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/nfroidure/StreamQueue.git","type":"git"},"_npmVersion":"5.5.1","description":"StreamQueue pipe the queued streams one by one in order to preserve their content order.","directories":{},"greenkeeper":{"ignore":["commitizen","cz-conventional-changelog","conventional-changelog-cli","mocha","mocha-lcov-reporter","coveralls","istanbul","eslint","eslint-config-prettier","prettier"]},"_nodeVersion":"6.10.3","dependencies":{"isstream":"^0.1.2","readable-stream":"^2.3.3"},"devDependencies":{"mocha":"^3.5.3","eslint":"^4.12.1","metapak":"^1.0.2","istanbul":"^0.4.5","prettier":"^1.8.2","coveralls":"^2.13.3","commitizen":"^2.9.6","streamtest":"~1.2.0","metapak-nfroidure":"^2.0.2","mocha-lcov-reporter":"^1.3.0","eslint-plugin-prettier":"^2.3.1","cz-conventional-changelog":"^2.0.0","conventional-changelog-cli":"^1.3.5"},"_npmOperationalInternal":{"tmp":"tmp/streamqueue-1.1.2.tgz_1512303889228_0.9024417218752205","host":"s3://npm-registry-packages"}},"2.0.0":{"metapak":{"configs":["main","readme","tsesm","jsdocs","jest","eslint","codeclimate","ghactions"],"data":{"files":"'src/**/*.ts'","testsFiles":"'src/**/*.tests.ts'","distFiles":"'dist/**/*.js'","ignore":["dist"],"bundleFiles":["dist","src"]}},"name":"streamqueue","version":"2.0.0","description":"StreamQueue pipe the queued streams one by one in order to preserve their content order.","homepage":"https://github.com/nfroidure/StreamQueue","main":"dist/index.js","scripts":{"build":"rimraf 'dist' && tsc --outDir dist","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md","cli":"env NODE_ENV=${NODE_ENV:-cli}","cover":"npm run jest -- --coverage","cz":"env NODE_ENV=${NODE_ENV:-cli} git cz","doc":"echo \"# API\" > API.md; jsdoc2md 'dist/**/*.js' >> API.md && git add API.md","format":"npm run prettier","jest":"NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest","lint":"eslint 'src/**/*.ts'","metapak":"metapak","precz":"npm t && npm run lint && npm run metapak -- -s && npm run build && npm run doc","prettier":"prettier --write 'src/**/*.ts'","preversion":"npm t && npm run lint && npm run build && npm run metapak -- -s && npm run doc","rebuild":"swc ./src -s -d dist -C jsc.target=es2022","test":"npm run jest","type-check":"tsc --pretty --noEmit","version":"npm run changelog && git add CHANGELOG.md"},"repository":{"type":"git","url":"git://github.com/nfroidure/StreamQueue.git"},"keywords":["queue","streaming","stream","async","pipe"],"dependencies":{"yerror":"^8.0.0"},"devDependencies":{"@eslint/js":"^9.7.0","@swc/cli":"^0.4.0","@swc/core":"^1.6.13","@swc/helpers":"^0.5.12","@swc/jest":"^0.2.36","commitizen":"^4.3.0","conventional-changelog-cli":"^5.0.0","cz-conventional-changelog":"^3.3.0","eslint":"^9.7.0","eslint-config-prettier":"^9.1.0","eslint-plugin-jest":"^28.6.0","eslint-plugin-prettier":"^5.1.3","jest":"^29.7.0","jsdoc-to-markdown":"^8.0.0","metapak":"^6.0.1","metapak-nfroidure":"^18.2.0","prettier":"^3.3.3","rimraf":"^6.0.1","streamtest":"^3.0.1","typescript":"^5.5.3","typescript-eslint":"^7.16.0"},"author":{"name":"Nicolas Froidure","email":"nicolas.froidure@insertafter.com","url":"https://insertafter.com/en/index.html"},"engines":{"node":">=20.11.1"},"licenses":[{"type":"MIT","url":"https://github.com/nfroidure/StreamQueue/blob/master/LICENSE"}],"bugs":{"url":"https://github.com/nfroidure/StreamQueue/issues"},"license":"MIT","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"greenkeeper":{"ignore":["commitizen","cz-conventional-changelog","conventional-changelog-cli","typescript","rimraf","@swc/cli","@swc/core","@swc/helpers","jsdoc-to-markdown","jest","@swc/jest","eslint","prettier","eslint-config-prettier","eslint-plugin-prettier","typescript-eslint"]},"contributors":[],"type":"module","types":"dist/index.d.ts","jest":{"coverageReporters":["lcov"],"testPathIgnorePatterns":["/node_modules/"],"roots":["<rootDir>/src"],"transform":{"^.+\\.tsx?$":["@swc/jest",{}]},"testEnvironment":"node","moduleNameMapper":{"(.+)\\.js":"$1"},"extensionsToTreatAsEsm":[".ts"],"prettierPath":null},"overrides":{"eslint":"^9.7.0"},"prettier":{"semi":true,"printWidth":80,"singleQuote":true,"trailingComma":"all","proseWrap":"always"},"_id":"streamqueue@2.0.0","gitHead":"3ba437add426ab458df6323df79da4f4a3422065","_nodeVersion":"20.14.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-Qs4M2u0Ujj3oHrI9p2ihZ3Jo4xWCc9et2FL8b6qQ6kd9S7pLdeRHUxY1EbvHKlslDYc8i7mL7kXFFZ8zQCy9qg==","shasum":"07928802ca2fe58e246e8dd7259802d5cd1554bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/streamqueue/-/streamqueue-2.0.0.tgz","fileCount":13,"unpackedSize":132841,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGAZRGgc745X606a9Huiw0DUtAvI71BiiBKnIlJWaUNzAiAtT/dQujRPNAgQDsTlBbKfNTjeA/AcgmUP4nioH8IFyg=="}]},"_npmUser":{"name":"anonymous","email":"nicolas.froidure@insertafter.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"nicolas.froidure@insertafter.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/streamqueue_2.0.0_1721294758325_0.14133844934217765"},"_hasShrinkwrap":false}},"name":"streamqueue","time":{"created":"2014-01-11T14:29:57.325Z","modified":"2024-07-18T09:25:58.695Z","0.0.1":"2014-01-11T14:29:59.299Z","0.0.2":"2014-01-22T21:11:45.189Z","0.0.3":"2014-02-03T21:18:36.131Z","0.0.4":"2014-02-05T10:40:04.698Z","0.0.5":"2014-02-21T15:55:52.310Z","0.0.6":"2014-03-29T10:46:57.425Z","0.0.7":"2014-04-26T17:28:56.516Z","0.1.0":"2014-05-25T15:54:17.076Z","0.1.1":"2014-05-27T05:39:31.470Z","0.1.2":"2014-07-19T08:45:42.690Z","0.1.3":"2015-02-14T14:45:26.691Z","1.0.0":"2015-06-08T16:42:49.535Z","1.1.0":"2015-06-09T06:21:59.705Z","1.1.1":"2015-08-27T11:35:16.636Z","1.1.2":"2017-12-03T12:24:50.035Z","2.0.0":"2024-07-18T09:25:58.533Z"},"readmeFilename":"README.md","contributors":[],"homepage":"https://github.com/nfroidure/StreamQueue"}