-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@koshnic/ratelimit",
"version": "1.0.3",
"description": "Redis based rate limiting implementation using the token bucket algorithm.",
"main": "dist/rate.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"types": "./dist/rate.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register rate.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koshnic/ratelimit.git"
},
"keywords": [
"ratelimit",
"rate-limit",
"rate",
"token-bucket",
"tokenbucket",
"ioredis",
"redis"
],
"author": "HenryHe",
"license": "MIT",
"bugs": {
"url": "https://github.com/koshnic/ratelimit/issues"
},
"homepage": "https://github.com/koshnic/ratelimit#readme",
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/node": "^20.8.9",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"chai": "^4.3.10",
"ioredis": "^5.3.2",
"mocha": "^10.2.0"
}
}