-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.75 KB
/
package.json
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
{
"name": "got-ssrf",
"version": "3.0.0",
"description": "Protect Got requests from SSRF",
"type": "module",
"repository": "hanover-computing/got-ssrf",
"author": "Jane Jeon <[email protected]>",
"license": "LGPL-3.0",
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"build": "tsc -p tsconfig.build.json",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check . --ignore-path .gitignore",
"lint:eslint": "eslint . --ignore-path .gitignore",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"debug": "^4.3.2",
"ipaddr.js": "^2.0.1"
},
"devDependencies": {
"@janejeon/eslint-config-typescript": "^0.1.0",
"@janejeon/prettier-config": "^2.0.0",
"@janejeon/tsconfig": "^0.3.1",
"@types/debug": "^4.1.8",
"@types/node": "^20.5.1",
"@vitest/coverage-istanbul": "^1.0.0",
"@vitest/ui": "^1.0.0",
"cacheable-lookup": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^15.0.0",
"nock": "^13.1.3",
"npm-run-all2": "^6.0.0",
"skip-ci": "^1.0.4",
"typescript": "^5.1.6",
"vitest": "^1.0.0"
},
"peerDependencies": {
"got": "^14"
},
"keywords": [
"http",
"https",
"http2",
"get",
"got",
"url",
"uri",
"request",
"simple",
"curl",
"wget",
"fetch",
"net",
"network",
"gzip",
"brotli",
"requests",
"human-friendly",
"axios",
"superagent",
"node-fetch",
"ky",
"ssrf",
"csrf",
"security",
"plugin"
]
}