forked from oyyd/http-proxy-to-socks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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": "http-proxy-to-socks",
"version": "1.1.0",
"description": "hpts(http-proxy-to-socks) is a nodejs client to convert socks proxy into http proxy",
"main": "lib/server.js",
"repository": {
"type": "git",
"url": "https://github.com/oyyd/http-proxy-to-socks"
},
"scripts": {
"build": "babel src --out-dir lib",
"dev": "jest --watch",
"test": "eslint src && jest"
},
"keywords": [
"socks",
"http proxy",
"converting proxy"
],
"bin": {
"hpts": "./bin/hpts.js"
},
"author": "oyyd <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.9.0",
"socks": "^1.1.10",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^18.0.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0"
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"testRegex": "(\\.|/)(test|spec)\\.js$"
}
}