-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "shadowshield",
"version": "1.0.12",
"description": "Behavioral API security middleware for Express — detects bots, scrapers and session hijacking in real time",
"main": "dist/packageIndex.js",
"types": "dist/packageIndex.d.ts",
"type": "module",
"files": [
"dist/packageIndex.js",
"dist/packageIndex.d.ts",
"dist/packageIndex.js.map",
"dist/packageIndex.d.ts.map",
"dist/middleware",
"dist/engines"
],
"keywords": [
"security",
"middleware",
"express",
"bot-detection",
"redis",
"rate-limiting",
"behavioral-analysis",
"session-hijacking"
],
"author": "SHREESH2004",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SHREESH2004/Shadowsheild.git"
},
"homepage": "https://github.com/SHREESH2004/Shadowsheild#readme",
"bugs": {
"url": "https://github.com/SHREESH2004/Shadowsheild/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"attack": "node dist/test/attack.js",
"normal": "node dist/test/normal.js",
"prepare": "npm run build"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"dependencies": {
"express-session": "^1.19.0",
"ioredis": "^5.10.0",
"shadowshield": "^1.0.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/node": "^24.10.13",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.18.0",
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"typescript": "^5.9.3"
}
}