-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "proxyfoxy",
"version": "1.3.4",
"description": "Distributed Multi-Protocol Proxy Manager with Residential Node Networking",
"bin": {
"proxyfoxy": "./index.js"
},
"scripts": {
"prepare": "command -v husky >/dev/null 2>&1 && husky || true",
"format": "prettier --write \"**/*.{js,json,md,yml,yaml,css,html,sh}\"",
"format:check": "prettier --check \"**/*.{js,json,md,yml,yaml,css,html,sh}\"",
"test": "node tests/sanity.test.js",
"test:e2e": "docker compose --project-directory e2e -f e2e/docker-compose.yml up --build --abort-on-container-exit",
"test:e2e:residential": "docker compose --project-directory e2e -f e2e/docker-compose.two-container.yml up --build --abort-on-container-exit",
"test:browser": "docker compose --project-directory e2e -f e2e/docker-compose.browser.yml up --build -d && node tests/browser-extension-e2e.js"
},
"lint-staged": {
"*.{js,json,md,yml,yaml,css,html,sh}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/maxylev/proxyfoxy.git"
},
"keywords": [
"proxy",
"squid",
"socks5",
"dante",
"mtproto",
"residential-proxy",
"vpn",
"networking"
],
"author": "Max Ymlev",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"prettier-plugin-sh": "^0.14.0"
}
}