package.json 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "p-waterfall",
  3. "version": "2.1.1",
  4. "description": "Run promise-returning & async functions in series, each passing its result to the next",
  5. "license": "MIT",
  6. "repository": "sindresorhus/p-waterfall",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "promise",
  25. "waterfall",
  26. "series",
  27. "serial",
  28. "sequence",
  29. "sequential",
  30. "ordered",
  31. "task",
  32. "tasks",
  33. "array",
  34. "collection",
  35. "iterable",
  36. "iterator",
  37. "async",
  38. "await",
  39. "promises",
  40. "bluebird"
  41. ],
  42. "dependencies": {
  43. "p-reduce": "^2.0.0"
  44. },
  45. "devDependencies": {
  46. "ava": "^1.4.1",
  47. "tsd": "^0.7.2",
  48. "xo": "^0.24.0"
  49. }
  50. }