forked from sindresorhus/p-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "p-queue",
"version": "6.6.0",
"description": "Promise queue with concurrency control",
"license": "MIT",
"repository": "sindresorhus/p-queue",
"funding": "https://github.com/sponsors/sindresorhus",
"main": "dist/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "del dist && tsc",
"test": "xo && npm run build && nyc ava",
"bench": "ts-node bench.ts",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"types": "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.4",
"p-timeout": "^3.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/benchmark": "^1.0.31",
"@types/node": "^14.0.23",
"ava": "^2.0.0",
"benchmark": "^2.1.4",
"codecov": "^3.7.1",
"del-cli": "^3.0.0",
"delay": "^4.4.0",
"in-range": "^2.0.0",
"nyc": "^15.0.0",
"random-int": "^2.0.0",
"time-span": "^4.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.9.7",
"xo": "^0.32.1"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**"
]
},
"xo": {
"rules": {
"@typescript-eslint/member-ordering": "off",
"node/no-unsupported-features/es-syntax": "off",
"@typescript-eslint/no-floating-promises": "off",
"import/no-named-default": "off",
"@typescript-eslint/no-invalid-void-type": "off"
}
},
"nyc": {
"extension": [
".ts"
]
}
}