1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
"name": "duplexer2",
"version": "0.0.2",
"description": "Like duplexer (http://npm.im/duplexer) but using streams2",
"main": "index.js",
"scripts": {
"test": "mocha -R tap"
},
"repository": {
"type": "git",
"url": "git://github.com/deoxxa/duplexer2.git"
},
"keywords": [
"duplex",
"stream",
"join",
"combine"
],
"author": "Conrad Pankoff <deoxxa@fknsrs.biz> (http://www.fknsrs.biz/)",
"license": "BSD",
"bugs": {
"url": "https://github.com/deoxxa/duplexer2/issues"
},
"devDependencies": {
"chai": "~1.7.2",
"mocha": "~1.12.1"
},
"dependencies": {
"readable-stream": "~1.1.9"
}
}
|