-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
{
"name": "rate-limiter-ts",
"version": "1.0.0",
"description": "Comprehensive TypeScript rate limiting library with multiple algorithms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"rate-limiting",
"rate-limiter",
"throttle",
"token-bucket",
"leaky-bucket",
"sliding-window",
"api-rate-limit",
"express-middleware",
"redis"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"redis": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"express": "^4.18.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"express": "^4.x"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/muditkalra/Rate-Limiting-Guide.git"
},
"bugs": {
"url": "https://github.com/muditkalra/Rate-Limiting-Guide/issues"
},
"homepage": "https://github.com/muditkalra/Rate-Limiting-Guide#readme"
}