-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 839 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": "awaitify-stream",
"version": "1.0.2",
"description": "Read or write to a stream using while and await, not event handlers.",
"main": "./lib/awaitify-stream.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hashtagchris/node-awaitify-stream.git"
},
"keywords": [
"async",
"await",
"stream",
"read",
"write",
"readAsync",
"writeAsync",
"line-by-line"
],
"author": "hashtagchris",
"license": "MIT",
"bugs": {
"url": "https://github.com/hashtagchris/node-awaitify-stream/issues"
},
"homepage": "https://github.com/hashtagchris/node-awaitify-stream#readme",
"scripts": {
"test": "mocha --timeout 60000"
},
"devDependencies": {
"byline": "^5.0.0",
"json-stream": "^1.0.0",
"mocha": "^4.0.1"
}
}