-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "throttled-queue",
"version": "2.1.4",
"description": "Throttles arbitrary code to execute a maximum number of times per interval. Best for making throttled API requests.",
"main": "dist/throttledQueue.js",
"types": "dist/throttledQueue.d.ts",
"files": ["dist/*", "src/*"],
"scripts": {
"prepublishOnly": "tsc",
"test": "mocha"
},
"mocha": {
"spec": "test/throttledQueue.test.ts",
"extension": [
"ts"
],
"require": [
"ts-node/register"
],
"timeout": 200000
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunpersad/throttled-queue.git"
},
"keywords": [
"node",
"rate limit",
"queue",
"throttle",
"throttled",
"request"
],
"author": "Shaun Persad <shaunpersad@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunpersad/throttled-queue/issues"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}