1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "p-waterfall",
- "version": "2.1.1",
- "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"
- },
- "engines": {
- "node": ">=8"
- },
- "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": "^2.0.0"
- },
- "devDependencies": {
- "ava": "^1.4.1",
- "tsd": "^0.7.2",
- "xo": "^0.24.0"
- }
- }
|