-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 800 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 800 Bytes
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
{
"name": "stream-funnel",
"version": "3.1.0",
"description": "Node stream funnel/collector. Merge/join provided streams.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/Volox/node-stream-funnel.git"
},
"homepage": "https://github.com/Volox/node-stream-funnel",
"keywords": [
"join",
"stream",
"merge",
"collect"
],
"author": {
"name": "Riccardo Volonterio",
"email": "voloxxx@gmail.com",
"url": "https://volox.io"
},
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/node": "^6.0.42",
"typescript": "^2.0.3"
}
}