1
|
{
|
2
|
"name": "duplexify",
|
3
|
"version": "3.7.1",
|
4
|
"description": "Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input",
|
5
|
"main": "index.js",
|
6
|
"dependencies": {
|
7
|
"end-of-stream": "^1.0.0",
|
8
|
"inherits": "^2.0.1",
|
9
|
"readable-stream": "^2.0.0",
|
10
|
"stream-shift": "^1.0.0"
|
11
|
},
|
12
|
"devDependencies": {
|
13
|
"concat-stream": "^1.5.2",
|
14
|
"tape": "^4.0.0",
|
15
|
"through2": "^2.0.0"
|
16
|
},
|
17
|
"scripts": {
|
18
|
"test": "tape test.js"
|
19
|
},
|
20
|
"repository": {
|
21
|
"type": "git",
|
22
|
"url": "git://github.com/mafintosh/duplexify"
|
23
|
},
|
24
|
"keywords": [
|
25
|
"duplex",
|
26
|
"streams2",
|
27
|
"streams",
|
28
|
"stream",
|
29
|
"writable",
|
30
|
"readable",
|
31
|
"async"
|
32
|
],
|
33
|
"author": "Mathias Buus",
|
34
|
"license": "MIT",
|
35
|
"bugs": {
|
36
|
"url": "https://github.com/mafintosh/duplexify/issues"
|
37
|
},
|
38
|
"homepage": "https://github.com/mafintosh/duplexify"
|
39
|
}
|