-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "@mangosteen/rate-limiter",
"version": "1.1.1",
"description": "A rate limiter that helps you limit your client from making excessive API requests.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test-publish-npm": "npm pack",
"publish-npm": "npm publish --access public",
"prepublish": "npm run build",
"start": "ts-node ./src/test.ts",
"start:debugger": "node --inspect -r ts-node/register ./src/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paya-cz/rate-limiter.git"
},
"keywords": [
"rate",
"limiting",
"throttling",
"limit",
"brute",
"force",
"bruteforce",
"throttle",
"queue",
"ddos",
"rate limiter",
"rate limiting",
"async",
"limiter",
"throttler",
"load"
],
"author": "Paya",
"license": "MIT",
"bugs": {
"url": "https://github.com/paya-cz/rate-limiter/issues"
},
"homepage": "https://github.com/paya-cz/rate-limiter#readme",
"devDependencies": {
"@tsconfig/node10": "^1.0.8",
"@types/functional-red-black-tree": "^1.0.1",
"@types/nanotimer": "^0.3.0",
"@types/node": "^10.17.60",
"nanotimer": "^0.3.15",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"denque": "^2.0.1",
"functional-red-black-tree": "^1.0.1",
"just-performance": "^4.3.0",
"make-error": "^1.3.6"
}
}