-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 902 Bytes
/
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
{
"name": "precise-memory-rate-limit",
"version": "2.0.0",
"type": "module",
"description": "A store for express-rate-limit that provides precise in memory rate limit storage.",
"main": "lib/index.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JGLTechnologies/precise-memory-rate-limit.git"
},
"keywords": [
"ratelimit",
"express",
"express-rate-limit",
"rate-limit",
"memory"
],
"author": "Nebula",
"license": "ISC",
"bugs": {
"url": "https://github.com/JGLTechnologies/precise-memory-rate-limit/issues"
},
"homepage": "https://github.com/JGLTechnologies/precise-memory-rate-limit",
"devDependencies": {
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"tsc": "^2.0.4",
"typescript": "^4.7.4"
},
"peerDependencies": {
"express-rate-limit": ">=6"
}
}