package.json 924 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "p-limit",
  3. "version": "2.3.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": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd-check"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "promise",
  25. "limit",
  26. "limited",
  27. "concurrency",
  28. "throttle",
  29. "throat",
  30. "rate",
  31. "batch",
  32. "ratelimit",
  33. "task",
  34. "queue",
  35. "async",
  36. "await",
  37. "promises",
  38. "bluebird"
  39. ],
  40. "dependencies": {
  41. "p-try": "^2.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "^1.2.1",
  45. "delay": "^4.1.0",
  46. "in-range": "^1.0.0",
  47. "random-int": "^1.0.0",
  48. "time-span": "^2.0.0",
  49. "tsd-check": "^0.3.0",
  50. "xo": "^0.24.0"
  51. }
  52. }