UNPKG

p-queue-cjs

Version:

Promise queue with concurrency control. A fork of p-queue for commonjs.

101 lines 2.23 kB
{ "name": "p-queue-cjs", "version": "7.3.4", "description": "Promise queue with concurrency control. A fork of p-queue for commonjs.", "repository": { "type": "git", "url": "https://github.com/nguyenngoclongdev/p-queue-cjs" }, "bugs": { "url": "https://github.com/nguyenngoclongdev/p-queue-cjs/issues" }, "sponsor": { "url": "https://ko-fi.com/nguyenngoclong" }, "funding": { "type": "individual", "url": "https://ko-fi.com/nguyenngoclong" }, "homepage": "https://nguyenngoclongdev.github.io", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=12" }, "files": [ "dist" ], "keywords": [ "promise", "queue", "enqueue", "limit", "limited", "concurrency", "throttle", "throat", "rate", "batch", "ratelimit", "priority", "priorityqueue", "fifo", "job", "task", "async", "await", "promises", "bluebird" ], "dependencies": { "eventemitter3": "^4.0.7", "p-timeout-cjs": "^5.0.5" }, "devDependencies": { "@sindresorhus/tsconfig": "^2.0.0", "@types/benchmark": "^2.1.1", "@types/node": "^17.0.13", "ava": "^5.1.1", "benchmark": "^2.1.4", "del-cli": "^5.0.0", "delay": "^5.0.0", "in-range": "2.0.0", "p-defer": "3.0.0", "random-int": "2.0.1", "time-span": "4.0.0", "ts-node": "^10.9.1", "tsd": "^0.25.0", "typescript": "^4.8.4", "xo": "^0.44.0" }, "ava": { "files": [ "test/**" ], "extensions": { "ts": "commonjs" }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "rules": { "@typescript-eslint/member-ordering": "off", "@typescript-eslint/no-floating-promises": "off", "@typescript-eslint/no-invalid-void-type": "off", "@typescript-eslint/no-unnecessary-type-assertion": "warn" } }, "author": { "name": "Nguyen Ngoc Long", "url": "https://nguyenngoclongdev.github.io" }, "publisher": "nguyenngoclong", "license": "MIT", "scripts": { "build": "del-cli dist && tsc", "test": "xo && ava && del-cli dist && tsc && tsd", "bench": "node --loader=ts-node/esm bench.ts" } }