forked from fastify/fastify-rate-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "fastify-rate-limit",
"version": "5.0.1",
"description": "A low overhead rate limiter for your routes",
"main": "index.js",
"scripts": {
"redis": "docker run -p 6379:6379 --rm redis:3.0.7",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "standard && tap test/*.test.js && npm run typescript",
"typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-rate-limit.git"
},
"keywords": [
"fastify",
"rate",
"limit"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-rate-limit/issues"
},
"homepage": "https://github.com/fastify/fastify-rate-limit#readme",
"devDependencies": {
"@types/ioredis": "^4.17.0",
"@types/node": "^14.0.18",
"fastify": "^3.0.0",
"ioredis": "^4.9.0",
"knex": "^0.21.1",
"sqlite3": "^5.0.0",
"standard": "^16.0.2",
"tap": "^14.10.7",
"tsd": "^0.14.0"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"ms": "^2.1.1",
"tiny-lru": "^7.0.0"
},
"tsd": {
"directory": "test/types"
}
}