forked from 2do2go/rate-limit-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.34 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
56
57
58
59
{
"name": "mongo-rate-limit-store",
"version": "1.0.1",
"description": "Provides a Mongo store for the express-rate-limit middleware.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "mocha test/**/*spec.ts",
"test:unit": "mocha test/unit/*spec.ts",
"test:integration": "mocha test/integration/*spec.ts",
"coverage": "nyc npm test",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"keywords": [
"express-rate-limit",
"express",
"rate",
"limit",
"ratelimit",
"rate-limit",
"security",
"brute",
"force",
"bruteforce",
"brute-force",
"attack",
"mongo",
"mongodb"
],
"types": "./dist/index.d.ts",
"dependencies": {
"mongodb": "6.7.0"
},
"devDependencies": {
"@types/mocha": "10.0.7",
"@types/node": "20.14.9",
"eslint": "8.57.0",
"express-rate-limit": "7",
"mocha": "10.6.0",
"nyc": "15.1.0",
"prettier": "3.3.1",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"peerDependencies": {
"express-rate-limit": ">= 6"
},
"author": "Mert Şişmanoğlu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mertssmnoglu/mongo-rate-limit-store.git"
},
"engines": {
"node": ">=16.20.1"
}
}