UNPKG

batched-promise

Version:

An extension for Promise with support for running asynchronous functions in batches/chunks.

46 lines (45 loc) 1.15 kB
{ "name": "batched-promise", "version": "1.0.0", "description": "An extension for Promise with support for running asynchronous functions in batches/chunks.", "author": "Nourman Hajar (nourmanhajar@gmail.com)", "license": "MIT", "private": false, "main": "./dist/index.js", "exports": { "import": "./dist/index.js", "require": "./dist/index.js" }, "types": "./dist/types", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/masnormen/batched-promise.git" }, "keywords": [ "batch", "batches", "promise", "promise.all", "promise.allSettled", "chunk", "chunks" ], "scripts": { "build": "tsc --build --verbose --listEmittedFiles", "test": "jest --verbose", "watch": "tsc --watch --listEmittedFiles " }, "devDependencies": { "@types/jest": "^29.1.2", "@types/node": "^18.11.0", "@typescript-eslint/eslint-plugin": "^5.3.0", "@typescript-eslint/parser": "^5.3.0", "eslint": "^8.2.0", "jest": "^29.2.0", "prettier": "^2.4.1", "ts-jest": "^29.0.3", "typescript": "^4.7.0" }, "dependencies": {} }