-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1 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
{
"name": "fetch-socks",
"version": "1.3.2",
"description": "Socks proxy for Node builtin `fetch`",
"license": "MIT",
"author": "Kaciras <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Kaciras/fetch-socks"
},
"keywords": [
"fetch",
"socks",
"proxy",
"undici"
],
"files": [
"index.js",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"typeCoverage": {
"ignoreCatch": true,
"atLeast": 100
},
"scripts": {
"lint": "eslint --fix .",
"test": "node --import ts-directly/register --test",
"type-coverage": "type-coverage"
},
"dependencies": {
"socks": "^2.8.2",
"undici": "^7.2.3"
},
"devDependencies": {
"@e9x/simple-socks": "1.0.0",
"@jest/globals": "^29.7.0",
"@kaciras/eslint-config-core": "^3.2.1",
"@kaciras/eslint-config-typescript": "^3.2.1",
"@types/ws": "^8.5.12",
"eslint": "^9.18.0",
"mockttp": "^3.15.4",
"ts-directly": "^2.1.2",
"type-coverage": "^2.29.7",
"typescript": "^5.7.3",
"ws": "^8.18.0"
}
}