async-collection-utils
Version:
A collection of map, forEach, reduce, mapValues, filter etc. utility functions for both arrays and plain objects accepting asynchronous callbacks, with both sequential and parallel versions.
40 lines (39 loc) • 955 B
JSON
{
"name": "async-collection-utils",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup-node src/index.ts --dts",
"test": "vitest --globals --typecheck",
"generateToc": "markdown-toc --bullets=\"*\" --no-firsth1 README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/Lukasz-pluszczewski/async-collection-utils"
},
"author": "Łukasz Pluszczewski",
"bugs": {
"url": "https://github.com/Lukasz-pluszczewski/async-collection-utils/issues"
},
"homepage": "https://github.com/Lukasz-pluszczewski/async-collection-utils",
"keywords": [
"async",
"forEach",
"map",
"reduce",
"filter",
"entries",
"keys",
"object",
"array"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.23",
"markdown-toc": "^1.2.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}