-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "@neabyte/express-shield",
"version": "1.0.1",
"description": "Express Middleware With Rate-Limit And Security Headers",
"main": "index.js",
"types": "lib/index.d.ts",
"files": [
"index.js",
"lib/**/*.d.ts",
"data/**/*",
"script/update-cloudflare-ip.js"
],
"scripts": {
"test": "jest --coverage --detectOpenHandles",
"build:types": "tsc",
"prepublishOnly": "npm run build:types && npm test",
"update:cloudflare-ip": "node ./script/update-cloudflare-ip.js",
"postinstall": "node ./script/update-cloudflare-ip.js"
},
"engines": {
"node": ">=18.20.8"
},
"enginesStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Express-Shield.git"
},
"bugs": {
"url": "https://github.com/NeaByteLab/Express-Shield/issues"
},
"homepage": "https://github.com/NeaByteLab/Express-Shield#readme",
"keywords": [
"express",
"middleware",
"rate-limit",
"security",
"redis",
"cloudflare"
],
"author": "NeaByteLab",
"license": "MIT",
"exports": {
".": {
"require": "./index.js",
"import": "./index.js",
"types": "./lib/index.d.ts"
}
},
"sideEffects": false,
"dependencies": {
"express": "^5.1.0",
"ioredis": "^5.6.1"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/ioredis": "^4.28.10",
"@types/node": "^24.0.7",
"ioredis-mock": "^8.9.0",
"jest": "^30.0.3",
"supertest": "^7.1.1",
"typescript": "^5.8.3"
}
}