package.json 1002 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "p-limit",
  3. "version": "4.0.0",
  4. "description": "Run multiple promise-returning & async functions with limited concurrency",
  5. "license": "MIT",
  6. "repository": "sindresorhus/p-limit",
  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. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "promise",
  27. "limit",
  28. "limited",
  29. "concurrency",
  30. "throttle",
  31. "throat",
  32. "rate",
  33. "batch",
  34. "ratelimit",
  35. "task",
  36. "queue",
  37. "async",
  38. "await",
  39. "promises",
  40. "bluebird"
  41. ],
  42. "dependencies": {
  43. "yocto-queue": "^1.0.0"
  44. },
  45. "devDependencies": {
  46. "ava": "^3.15.0",
  47. "delay": "^5.0.0",
  48. "in-range": "^3.0.0",
  49. "random-int": "^3.0.0",
  50. "time-span": "^5.0.0",
  51. "tsd": "^0.17.0",
  52. "xo": "^0.44.0"
  53. }
  54. }