-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.67 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
{
"$schema": "https://www.schemastore.org/package.json",
"name": "@relintio/agent",
"version": "0.11.5",
"description": "RelintioAgent in-process agent for Node runtimes. Provides bot mitigation, threat detection, and adaptive content protection as Express middleware or zero-code preload.",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Relintio",
"url": "https://relintio.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Relintio/relintio-node-agent.git"
},
"homepage": "https://relintio.com/docs",
"bugs": {
"url": "https://github.com/Relintio/relintio-node-agent/issues"
},
"funding": {
"type": "commercial",
"url": "https://relintio.com/pricing"
},
"keywords": [
"relintio-agent",
"relintio",
"security",
"waf",
"middleware",
"bot-detection",
"bot-mitigation",
"express",
"threat-protection",
"antibot"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"express": ">=4.21.2"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"overrides": {
"range-parser": "1.2.1"
},
"resolutions": {
"range-parser": "1.2.1"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"exports": {
".": "./src/index.js",
"./express": "./src/express.js",
"./preload": {
"require": "./src/preload.cjs",
"import": "./src/preload.js"
}
},
"scripts": {
"test": "node --test --test-timeout=10000 test/metering.test.js test/passport.test.js test/signing.test.js"
}
}