-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1009 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
37
38
39
40
41
42
43
44
45
{
"name": "@aftership/rate-limiter",
"description": "Rate limit for Node.js, with ioredis client",
"version": "3.0.2",
"homepage": "https://github.com/AfterShip/rate-limiter",
"author": {
"name": "AfterShip",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/AfterShip/rate-limiter.git"
},
"bugs": {
"url": "https://github.com/AfterShip/rate-limiter/issues"
},
"main": "./lib/index",
"engines": {
"node": ">= 8"
},
"scripts": {
"lint": "eslint --ext .js .",
"test": "NODE_ENV=test jest"
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"ioredis": "^4.27.10",
"jest": "^27.2.4"
},
"keywords": [
"redis rate limiter",
"redis rate limit",
"redis limiter",
"rate",
"ratelimiter",
"ratelimit",
"limiter",
"limit"
],
"license": "MIT",
"private": false
}