50 lines
1.4 KiB
JSON
Executable File
50 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "streamqueue",
|
|
"version": "0.0.6",
|
|
"description": "Pipe queued streams progressively, keeping datas order.",
|
|
"homepage": "https://github.com/nfroidure/StreamQueue",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"test": "./node_modules/mocha/bin/mocha tests/*.mocha.js",
|
|
"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",
|
|
"cover": "./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nfroidure/StreamQueue"
|
|
},
|
|
"keywords": [
|
|
"queue",
|
|
"streaming",
|
|
"stream",
|
|
"async",
|
|
"pipe"
|
|
],
|
|
"devDependencies": {
|
|
"mocha": "~1.18.2",
|
|
"event-stream": "~3.1.1",
|
|
"mocha-lcov-reporter": "0.0.1",
|
|
"istanbul": "~0.2.6",
|
|
"coveralls": "~2.10.0"
|
|
},
|
|
"author": {
|
|
"name": "Nicolas Froidure",
|
|
"url": "http://www.insertafter.com/blog.html"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.10.0"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "https://github.com/nfroidure/StreamQueue/blob/master/LICENSE"
|
|
}
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/nfroidure/StreamQueue/issues"
|
|
},
|
|
"dependencies": {
|
|
"readable-stream": "^1.0.26-2"
|
|
}
|
|
}
|