-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1010 Bytes
/
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
{
"name": "proxy-manager",
"version": "0.0.1",
"description": "Proxy-session manager built upon proxy-chain library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "eslint . --ext .ts",
"test": "jest",
"build": "tsc *.ts **/*.ts",
"start": "npx ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jancimertel/proxy-manager.git"
},
"author": "jancimertel",
"license": "ISC",
"bugs": {
"url": "https://github.com/jancimertel/proxy-manager/issues"
},
"homepage": "https://github.com/jancimertel/proxy-manager#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"jest": "^26.6.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"proxy-chain": "^0.4.7",
"request": "^2.88.2"
}
}