-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "rate-limiter-flexible",
"version": "2.0.0",
"description": "Node.js rate limiter by key and protection from DDoS and Brute-Force attacks in process Memory, Redis, MongoDb, Memcached, MySQL, PostgreSQL, Cluster or PM",
"main": "index.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha --recursive",
"debug-test": "mocha --inspect-brk lib/**/**.test.js",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eslint": "node_modules/eslint/bin/eslint.js --quiet lib/**/**.js test/**/**.js",
"eslint-fix": "node_modules/eslint/bin/eslint.js --fix lib/**/**.js test/**/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animir/node-rate-limiter-flexible.git"
},
"keywords": [
"authorization",
"security",
"rate",
"limit",
"ratelimter",
"brute",
"force",
"bruteforce",
"throttle",
"koa",
"express",
"hapi",
"auth",
"ddos",
"queue"
],
"author": "animir <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/animir/node-rate-limiter-flexible/issues"
},
"homepage": "https://github.com/animir/node-rate-limiter-flexible#readme",
"types": "./lib/index.d.ts",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-security": "^1.4.0",
"istanbul": "^0.4.5",
"memcached-mock": "^0.1.0",
"mocha": "^5.1.1",
"redis-mock": "^0.48.0",
"sinon": "^5.0.10"
}
}