-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
60
61
62
63
64
65
{
"name": "@outofsync/express-rate-limiter",
"version": "1.3.0",
"description": "A cache-based, request rate limiter for ExpressJS",
"main": "index.js",
"type": "index.d.ts",
"scripts": {
"test": "nyc mocha",
"build": "gulp",
"fix": "gulp fix",
"lint": "gulp lint",
"coverage": "nyc --reporter=lcov mocha && cat ./coverage/lcov.info | codacy-coverage",
"pretty": "gulp pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutofSyncStudios/express-rate-limiter.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"express",
"expressJS",
"rate limit",
"rate limiter",
"rate",
"limit",
"ip rate limit",
"ratelimit",
"ip"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutofSyncStudios/object-key-cache/issues"
},
"homepage": "https://github.com/OutofSyncStudios/object-key-cache#readme",
"devDependencies": {
"chai": "^4.3.4",
"codacy-coverage": "^3.4.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-prettier": "^4.0.0",
"lolex": "^6.0.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2"
},
"dependencies": {
"@outofsync/memory-cache": "^1.4.1",
"@outofsync/object-key-cache": "^1.6.3",
"@outofsync/request-utils": "^3.0.1",
"@types/node": "^14.17.7",
"lodash.assign": "^4.2.0",
"lodash.isnil": "^4.0.0",
"lodash.join": "^4.0.1",
"lodash.merge": "^4.6.2",
"logstub": "^1.5.0",
"redis": "^3.1.2"
}
}