-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 KB
/
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
38
39
40
41
42
{
"name": "data-async-iterators",
"version": "1.4.6",
"description": "Batteries-included utility functions to work with async iterables available in ES2018/TypeScript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "pedromsilvapt/data-async-iterator",
"keywords": [
"js",
"future",
"deferred",
"async",
"promises",
"iterables",
"iterators",
"generators",
"loop",
"streams",
"pull"
],
"scripts": {
"test": "blue-tape -r ./lib/polyfill.js ./lib/**/*.test.js | tap-dot"
},
"author": "Pedro M. Silva <pemiolsi@hotmail.com>",
"license": "ISC",
"dependencies": {
"@pedromsilva/data-either": "0.0.2",
"@pedromsilva/data-future": "^1.0.0",
"data-cancel-token": "^0.5.2",
"data-collectors": "^1.0.1",
"data-optional": "0.0.2",
"data-semaphore": "^0.3.7",
"eventemitter3": "^3.0.1"
},
"devDependencies": {
"@types/blue-tape": "^0.1.32",
"@types/node": "^8.10.11",
"blue-tape": "^1.0.0",
"tap-dot": "^2.0.0",
"tape": "^4.9.1"
}
}