-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 793 Bytes
/
package.json
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
32
33
34
35
36
37
{
"name": "duplexpair",
"version": "1.0.1",
"description": "Make a full duplex stream with 2 Duplex endpoints",
"engine": ">=4.0.0",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"readable-stream": "^4.5.2"
},
"devDependencies": {
"mocha": "^10.3.0",
"nyc": "^15.1.0"
},
"scripts": {
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/addaleax/duplexpair.git"
},
"keywords": [
"duplex",
"pair",
"streams",
"socket"
],
"author": "Anna Henningsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/addaleax/duplexpair/issues"
},
"homepage": "https://github.com/addaleax/duplexpair#readme"
}