-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 789 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 789 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
{
"name": "until-stream",
"version": "0.2.2",
"description": "A PassThrough stream that stops piping when a pattern is reached ",
"main": "until.js",
"scripts": {
"test": "./node_modules/.bin/tap ./test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/EvanOxfeld/until-stream.git"
},
"keywords": [
"until",
"when",
"split",
"pause",
"stream",
"pipe",
"pull"
],
"author": "Evan Oxfeld <eoxfeld@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "babb2bd6e42172fcbed4581049ae62ae6d68b3a6",
"devDependencies": {
"tap": "~0.4.0",
"stream-buffers": "~0.2.4"
},
"dependencies": {
"buffers": "~0.1.1",
"readable-stream": "~1.0.0",
"setimmediate": "~1.0.1"
}
}