-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "fast-ratelimit",
"description": "Fast and efficient in-memory rate-limit for Node, used to alleviate severe DOS attacks.",
"version": "3.0.1",
"homepage": "https://github.com/valeriansaliou/node-fast-ratelimit",
"license": "MIT",
"author": {
"name": "Valerian Saliou",
"email": "[email protected]",
"url": "https://valeriansaliou.name/"
},
"repository": {
"type": "git",
"url": "git://github.com/valeriansaliou/node-fast-ratelimit.git"
},
"bugs": {
"url": "https://github.com/valeriansaliou/node-fast-ratelimit/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/valeriansaliou/node-fast-ratelimit/blob/master/LICENSE"
}
],
"main": "lib/fast_ratelimit",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "check-build && istanbul cover _mocha"
},
"devDependencies": {
"check-build": "2.8.2",
"mocha": "3.4.2",
"mocha-lcov-reporter": "1.3.0",
"istanbul": "0.4.5"
},
"keywords": [
"ratelimit",
"rate-limit",
"rate",
"limit",
"attack",
"flood",
"security",
"dos",
"ddos"
]
}