package.json 993 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "p-map",
  3. "version": "7.0.3",
  4. "description": "Map over promises concurrently",
  5. "license": "MIT",
  6. "repository": "sindresorhus/p-map",
  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": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "promise",
  31. "map",
  32. "resolved",
  33. "wait",
  34. "collection",
  35. "iterable",
  36. "iterator",
  37. "race",
  38. "fulfilled",
  39. "async",
  40. "await",
  41. "promises",
  42. "concurrently",
  43. "concurrency",
  44. "parallel",
  45. "bluebird"
  46. ],
  47. "devDependencies": {
  48. "ava": "^5.2.0",
  49. "chalk": "^5.3.0",
  50. "delay": "^6.0.0",
  51. "in-range": "^3.0.0",
  52. "random-int": "^3.0.0",
  53. "time-span": "^5.1.0",
  54. "tsd": "^0.29.0",
  55. "xo": "^0.56.0"
  56. }
  57. }