-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 863 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
{
"name": "async-iterator-pipe",
"version": "1.0.1",
"description": "Pipe between async iterators and streams",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "standard && nyc tap test.js"
},
"keywords": [
"async",
"iterator",
"stream",
"pipe"
],
"author": "Stephen Belanger <[email protected]> (https://github.com/qard)",
"license": "MIT",
"devDependencies": {
"codecov": "^3.2.0",
"nyc": "^13.3.0",
"standard": "^12.0.1",
"tap": "^12.6.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Qard/async-iterator-pipe.git"
},
"bugs": {
"url": "https://github.com/Qard/async-iterator-pipe/issues"
},
"homepage": "https://github.com/Qard/async-iterator-pipe#readme"
}