-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "rate-limit-mongo",
"description": "Provides a Mongo store for the express-rate-limit middleware.",
"version": "2.3.2",
"author": "2do2go team <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:2do2go/rate-limit-mongo.git"
},
"keywords": [
"express-rate-limit",
"express",
"rate",
"limit",
"ratelimit",
"rate-limit",
"security",
"brute",
"force",
"bruteforce",
"brute-force",
"attack",
"mongo",
"mongodb"
],
"dependencies": {
"mongodb": "^3.6.7",
"twostep": "0.4.2",
"underscore": "1.12.1"
},
"devDependencies": {
"expect.js": "0.3.1",
"jshint": "2.10.3",
"mocha": "5.2.0",
"nyc": "15.0.1",
"rewire": "4.0.1",
"sinon": "7.5.0"
},
"scripts": {
"lint": "jshint ./",
"test": "mocha --reporter spec --bail --timeout 10000 --recursive",
"makeCodeCoverageDetailReport": "nyc --all --exclude migrations --exclude coverage --exclude test --reporter lcov --reporter html npm test -- --reporter dot && echo \"*** Code coverage report done, checkout ./coverage dir\"",
"makeCodeCoverageSummaryReport": "nyc --all --exclude migrations --exclude coverage --exclude test --reporter text-summary npm test -- --reporter dot"
}
}