forked from weyoss/throtty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "throtty",
"description": "Yet another rolling window rate limiter.",
"version": "2.0.0",
"main": "index.js",
"dependencies": {
"bluebird": "3.5.1",
"microtime": "3.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.15.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-config-google": "0.7.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"ioredis": "^4.14.1",
"mocha": "^6.0.2",
"sinon": "1.17.7",
"sinon-chai": "2.11.0",
"uuid": "3.2.1"
},
"scripts": {
"test": "eslint src/*.js && NODE_ENV=test mocha --reporter spec test/run/*.js",
"lint": "eslint src/monitor/assets src/*.js",
"fix": "eslint src/monitor/assets src --fix"
},
"author": "tawk.to",
"license": "MIT",
"keywords": [
"rate",
"limiting",
"throttling",
"throttle",
"ratelimiter",
"ratelimit",
"rolling",
"sliding",
"window",
"redis"
],
"repository": {
"type": "git",
"url": "https://github.com/tawk/throtty.git"
},
"homepage": "https://github.com/tawk/throtty",
"bugs": {
"url": "https://github.com/tawk/throtty/issues"
}
}