forked from jwerre/rate-limit-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@jwerre/rate-limit-redis",
"version": "2.0.0",
"description": "A Redis based rate limiter for Node.js and Express.",
"main": "lib/index.js",
"scripts": {
"test": "mocha test --exit",
"benchmark": "node test/benchmark.js"
},
"repository": {
"type": "git",
"url": "github:jwerre/rate-limit-redis"
},
"keywords": [
"redis",
"ratelimit",
"rate",
"limit",
"429",
"express",
"expressjs",
"cache",
"x-ratelimit-limit",
"x-ratelimit-remaining",
"retry-after",
"headers"
],
"author": "Jonah Werre <jonahwerre@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jwerre/rate-limit-redis/issues"
},
"homepage": "https://github.com/jwerre/rate-limit-redis/blob/master/README.md",
"dependencies": {
"redis": "^4.0.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.30.0",
"express": "^4.17.1",
"mocha": "^8.3.2",
"supertest": "^4.0.2"
}
}