UNPKG

p-waterfall

Version:

Run promise-returning & async functions in series, each passing its result to the next

53 lines (52 loc) 930 B
{ "name": "p-waterfall", "version": "3.0.0", "description": "Run promise-returning & async functions in series, each passing its result to the next", "license": "MIT", "repository": "sindresorhus/p-waterfall", "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "type": "module", "exports": "./index.js", "engines": { "node": ">=12" }, "scripts": { "test": "xo && ava && tsd" }, "files": [ "index.js", "index.d.ts" ], "keywords": [ "promise", "waterfall", "series", "serial", "sequence", "sequential", "ordered", "task", "tasks", "array", "collection", "iterable", "iterator", "async", "await", "promises", "bluebird" ], "dependencies": { "p-reduce": "^3.0.0" }, "devDependencies": { "ava": "^3.15.0", "tsd": "^0.14.0", "xo": "^0.38.2" } }