forked from onur-ozkan/nestjs-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "nestjs-rate-limiter",
"version": "2.6.5",
"description": "Highly configurable rate limiter library",
"repository": {
"type": "git",
"url": "git+https://github.com/ozkanonur/nestjs-rate-limiter.git"
},
"keywords": [
"nestjs",
"nest",
"rate-limiter",
"request-limiter",
"security"
],
"main": "dist/index.js",
"author": "Ryan Dowling <ryan@ryandowling.me>",
"contributors": [
"Ryan Dowling <ryan@ryandowling.me>",
"Onur Ozkan <onurozkan.dev@outlook.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ozkanonur/nestjs-rate-limiter/issues"
},
"homepage": "https://github.com/ozkanonur/nestjs-rate-limiter#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"lint": "prettier --write lib",
"test": "jest --config ./jest.config.js"
},
"dependencies": {
"rate-limiter-flexible": "2.1.10"
},
"devDependencies": {
"@nestjs/common": "latest",
"@nestjs/core": "latest",
"@types/jest": "^26.0.15",
"@types/node": "^14.11.1",
"jest": "^26.6.3",
"prettier": "^2.1.1",
"reflect-metadata": "0.1.13",
"rxjs": "^6.6.3",
"ts-node": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.2"
}
}