-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "dssrf",
"version": "1.0.3",
"description": "SSRF defense library for Node.js with safe URL validation utilities.",
"keywords": [
"ssrf",
"safe-http",
"secure-url",
"nodejs",
"web-security"
],
"homepage": "https://github.com/HackingRepo/dssrf-js#readme",
"bugs": {
"url": "https://github.com/HackingRepo/dssrf-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackingRepo/dssrf-js.git"
},
"license": "MIT",
"author": "RelunSec",
"type": "commonjs",
"main": "dist/utils.js",
"types": "src/utils.d.ts",
"exports": {
".": {
"import": "./dist/utils.js",
"require": "./dist/utils.js",
"types": "./src/utils.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"bench": "vitest bench --run"
},
"devDependencies": {
"@codspeed/vitest-plugin": "5.2.0",
"@types/node": "25.5.0",
"typescript": "6.0.2",
"vitest": "4.1.3"
},
"dependencies": {
"got": "15.0.3",
"ip-cidr": "4.0.2",
"ipaddr.js": "2.3.0"
}
}