forked from peterkhayes/rolling-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "rolling-rate-limiter",
"version": "0.2.8",
"description": "Rate limiter that supports a rolling window, either in-memory or backed by Redis",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"build": "tsc",
"ci": "act",
"lint": "eslint --fix",
"prepublish": "yarn build",
"test": "jest ./**/*.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/peterkhayes/rolling-rate-limiter"
},
"engines": {
"node": ">= 4.0.0"
},
"keywords": [
"rate",
"limiter",
"ratelimiter",
"redis",
"rolling",
"window"
],
"author": "Peter Hayes",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterkhayes/rolling-rate-limiter/issues"
},
"homepage": "https://github.com/peterkhayes/rolling-rate-limiter",
"dependencies": {
"@limeandcoconut/microtime-x": "^1.0.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.12",
"@types/ioredis": "^4.17.3",
"@types/redis": "^2.8.26",
"@types/node": "^14.6.2",
"@types/uuid": "^8.3.0",
"async": "~3.2.0",
"eslint": "^7.8.0",
"eslint-config-peterkhayes": "^4.0.0",
"ioredis": "^4.17.3",
"jest": "^26.4.2",
"lodash": "^4.17.20",
"redis": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}