forked from peterkhayes/rolling-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 817 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": "rolling-rate-limiter",
"version": "0.1.4",
"description": "Rate limiter that supports a rolling window, either in-memory or backed by redis",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/classdojo/rolling-rate-limiter"
},
"keywords": [
"rate",
"limiter",
"ratelimiter",
"redis",
"rolling",
"window"
],
"author": "Peter Hayes",
"license": "ISC",
"bugs": {
"url": "https://github.com/classdojo/rolling-rate-limiter/issues"
},
"homepage": "https://github.com/classdojo/rolling-rate-limiter",
"dependencies": {
"microtime-nodejs": "~1.0.0"
},
"devDependencies": {
"fakeredis": "~0.3.0",
"chai": "~1.10.0",
"async": "~0.9.0",
"mocha": "~2.1.0"
}
}