forked from 418sec/express-brute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 889 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
37
38
39
40
{
"name": "express-brute",
"version": "1.0.1",
"description": "A brute-force protection middleware for express routes that rate limits incoming requests",
"keywords": [
"brute",
"force",
"bruteforce",
"attack",
"fibonacci",
"rate",
"limit",
"security"
],
"license": "BSD",
"private": false,
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha spec"
},
"repository": {
"type": "git",
"url": "[email protected]:AdamPflug/express-brute.git"
},
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "~2.11.9",
"istanbul": "~0.4.3",
"mocha": "~2.4.5",
"mocha-lcov-reporter": "~1.2.0",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0"
},
"dependencies": {
"long-timeout": "~0.1.1",
"underscore": "~1.8.3"
},
"peerDependencies": {
"express": "4.x"
}
}