UNPKG

874 BJSONView Raw
1{
2 "name": "p-queue",
3 "version": "3.2.0",
4 "description": "Promise queue with concurrency control",
5 "license": "MIT",
6 "repository": "sindresorhus/p-queue",
7 "engines": {
8 "node": ">=6"
9 },
10 "scripts": {
11 "test": "xo && nyc ava && tsd-check",
12 "bench": "node bench.js"
13 },
14 "files": [
15 "index.js",
16 "index.d.ts"
17 ],
18 "keywords": [
19 "promise",
20 "queue",
21 "enqueue",
22 "limit",
23 "limited",
24 "concurrency",
25 "throttle",
26 "throat",
27 "rate",
28 "batch",
29 "ratelimit",
30 "priority",
31 "priorityqueue",
32 "fifo",
33 "job",
34 "task",
35 "async",
36 "await",
37 "promises",
38 "bluebird"
39 ],
40 "devDependencies": {
41 "@types/node": "^11.9.6",
42 "ava": "^1.2.1",
43 "benchmark": "^2.1.2",
44 "codecov": "^3.1.0",
45 "delay": "^4.1.0",
46 "in-range": "^1.0.0",
47 "nyc": "^13.0.1",
48 "random-int": "^1.0.0",
49 "time-span": "^2.0.0",
50 "tsd-check": "^0.3.0",
51 "xo": "^0.24.0"
52 }
53}