-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 845 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 845 Bytes
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
{
"name": "express-limit",
"version": "1.0.0",
"description": "A rate-limiter for Express JS.",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Dallas62/express-limit.git"
},
"keywords": [
"rate",
"limit",
"express",
"expressjs",
"limiter",
"security",
"api"
],
"author": "Tacyniak Boris <boris.tacyniak@free.fr> (https://www.tacyniak.fr/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dallas62/express-limit/issues"
},
"homepage": "https://github.com/Dallas62/express-limit#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.7.0",
"express": "^4.17.1",
"jest": "^29.3.1",
"redis": "^4.5.1",
"supertest": "^6.3.3"
}
}