1{ 2 "name": "p-map", 3 "version": "4.0.0", 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 "engines": { 14 "node": ">=10" 15 }, 16 "scripts": { 17 "test": "xo && ava && tsd" 18 }, 19 "files": [ 20 "index.js", 21 "index.d.ts" 22 ], 23 "keywords": [ 24 "promise", 25 "map", 26 "resolved", 27 "wait", 28 "collection", 29 "iterable", 30 "iterator", 31 "race", 32 "fulfilled", 33 "async", 34 "await", 35 "promises", 36 "concurrently", 37 "concurrency", 38 "parallel", 39 "bluebird" 40 ], 41 "dependencies": { 42 "aggregate-error": "^3.0.0" 43 }, 44 "devDependencies": { 45 "ava": "^2.2.0", 46 "delay": "^4.1.0", 47 "in-range": "^2.0.0", 48 "random-int": "^2.0.0", 49 "time-span": "^3.1.0", 50 "tsd": "^0.7.4", 51 "xo": "^0.27.2" 52 } 53} 54