-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 725 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 725 Bytes
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
{
"name": "@ssrfproxy/ssrfproxy-node",
"version": "1.0.4",
"description": "nodejs package for proxying http requires to avoid (ssrf) server side request forgery attacks ",
"author": "ssrfproxy",
"repository": {
"type": "git",
"url": "https://github.com/henryoswald/ssrfproxy-node"
},
"keywords": [
"ssrf",
"axios",
"typescript",
"openapi-client",
"openapi-generator",
"ssrfproxy"
],
"license": "Unlicense",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc ",
"prepare": "npm run build"
},
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@types/node": "^12.11.5",
"typescript": "^4.0"
}
}