-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 855 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 855 Bytes
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
{
"name": "smart-limiter",
"description": "Smart rate limiter middleware for both express and koa.",
"authors": [
"Yan Qing <admin@zensh.com>"
],
"version": "1.6.0",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:teambition/smart-limiter.git"
},
"engines": {
"node": ">= 8"
},
"homepage": "https://github.com/teambition/smart-limiter",
"keywords": [
"middleware",
"ratelimit",
"redis"
],
"dependencies": {
"thunks": "^4.9.6",
"thunk-ratelimiter": "^3.1.0"
},
"devDependencies": {
"express": "^4.17.1",
"koa": "^2.13.0",
"standard": "^14.3.4",
"supertest": "^5.0.0",
"thunk-redis": "^2.2.4",
"tman": "^1.10.0"
},
"scripts": {
"test": "standard && tman"
},
"files": [
"README.md",
"index.js"
]
}