-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@roboteby/parry",
"version": "2.0.1",
"description": "Application-layer security middleware for Express that combines abuse detection, request guards, rate limiting, brute-force protection and security observability.",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "node --test tests/unit/*.test.js tests/integration/*.test.js tests/package/*.test.js",
"test:unit": "node --test tests/unit/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:integ": "npm run test:integration",
"test:package": "node --test tests/package/*.test.js",
"test:types": "tsc -p tests/types/tsconfig.json",
"test:fixtures": "node scripts/payloads/validate-fixtures.js",
"test:payload-regression": "node --test tests/regression/*.test.js",
"test:payload-report": "node scripts/payloads/generate-payload-report.js",
"package:check": "node scripts/package/check-package.js",
"package:check-tag": "node scripts/package/check-version-tag.js",
"package:dry-run": "npm pack --dry-run",
"example": "node examples/express-basic.js",
"docker:build:demo": "docker build -f docker/demo-api/Dockerfile -t parry-demo-api .",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"exports": {
".": {
"require": "./src/index.js",
"types": "./types/index.d.ts"
},
"./core": {
"require": "./src/core/index.js",
"types": "./types/core.d.ts"
},
"./detectors": {
"require": "./src/detectors/index.js",
"types": "./types/detectors.d.ts"
},
"./stores": {
"require": "./src/stores/index.js",
"types": "./types/stores.d.ts"
},
"./policies": {
"require": "./src/policies/index.js",
"types": "./types/policies.d.ts"
},
"./brute-force": {
"require": "./src/brute-force/index.js",
"types": "./types/brute-force.d.ts"
},
"./events": {
"require": "./src/events/index.js",
"types": "./types/events.d.ts"
},
"./observability": {
"require": "./src/observability/index.js",
"types": "./types/observability.d.ts"
},
"./admin": {
"require": "./src/admin/index.js",
"types": "./types/admin.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"src",
"config",
"constants",
"types",
"README.md",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"keywords": [
"express",
"middleware",
"security",
"application-security",
"appsec",
"rate-limit",
"brute-force",
"xss",
"sql-injection",
"nosql-injection",
"redis",
"nodejs"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RobotEby/parry.git"
},
"bugs": {
"url": "https://github.com/RobotEby/parry/issues"
},
"homepage": "https://github.com/RobotEby/parry#readme",
"peerDependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^26.4.0",
"eslint": "^10.9.1",
"express": "^5.2.1",
"globals": "^17.11.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"ipaddr.js": "^2.5.0"
}
}