-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 932 Bytes
/
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
{
"name": "rate-throttle-limiter-testing",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"npm start\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup"
},
"homepage": "https://github.com/ShakirFarhan/rate-throttle-limiter",
"repository": {
"type": "git",
"url": "git+https://github.com/ShakirFarhan/rate-throttle-limiter"
},
"keywords": [
"rate-limiter",
"throttle-limiter",
"express-rate-limiter",
"rate-throttle-limiter"
],
"author": "Shakir Farhan",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/express": "^4.17.21",
"tsc-watch": "^6.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"express": "^4.19.2",
"ioredis": "^5.4.1"
}
}