-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1021 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "promises-pipeline",
"version": "1.0.4",
"description": "Sequentially run promise-returning functions, passing the result of each one to its next",
"author": {
"name": "Alexis Menest",
"email": "[email protected]",
"url": "https://twitter.com/alexismenest"
},
"main": "lib/index.js",
"keywords": [
"promise",
"promises",
"promises-a",
"promises-aplus",
"pipeline",
"sequence",
"sequential",
"chain",
"waterfall",
"series",
"serial",
"async",
"reduce",
"task",
"tasks",
"iterable",
"iterator",
"bluebird"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexismenest/promises-pipeline.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "istanbul cover tape ./test/index.js"
},
"dependencies": {
"bluebird": "^3.7.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"tape": "^5.5.0"
}
}