mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-23 20:31:25 +00:00
conflict resolved
This commit is contained in:
commit
875fc34341
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "anyproxy",
|
"name": "anyproxy",
|
||||||
"version": "2.7.0",
|
"version": "2.7.1",
|
||||||
"description": "A fully configurable proxy in NodeJS, which can handle HTTPS requests perfectly.",
|
"description": "A fully configurable proxy in NodeJS, which can handle HTTPS requests perfectly.",
|
||||||
"main": "proxy.js",
|
"main": "proxy.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@ -23,7 +23,8 @@
|
|||||||
"socks5-http-client": "^0.1.6",
|
"socks5-http-client": "^0.1.6",
|
||||||
"socks5-https-client": "^0.2.2",
|
"socks5-https-client": "^0.2.2",
|
||||||
"stream-throttle": "^0.1.3",
|
"stream-throttle": "^0.1.3",
|
||||||
"ws": "^0.4.32"
|
"ws": "^0.4.32",
|
||||||
|
"cookie":"^0.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
1
proxy.js
1
proxy.js
@ -5,6 +5,7 @@ try{
|
|||||||
GLOBAL.util['colorful'] = require("colorful");
|
GLOBAL.util['colorful'] = require("colorful");
|
||||||
GLOBAL.util['path'] = require("path");
|
GLOBAL.util['path'] = require("path");
|
||||||
GLOBAL.util['jsdom'] = require('jsdom');
|
GLOBAL.util['jsdom'] = require('jsdom');
|
||||||
|
GLOBAL.util['cookie'] = require('cookie');
|
||||||
GLOBAL.util['jquery'] = require('jquery');
|
GLOBAL.util['jquery'] = require('jquery');
|
||||||
GLOBAL.util['Socks5ClientHttpAgent'] = require('socks5-http-client/lib/Agent');
|
GLOBAL.util['Socks5ClientHttpAgent'] = require('socks5-http-client/lib/Agent');
|
||||||
GLOBAL.util['Socks5ClientHttpsAgent'] = require('socks5-https-client/lib/Agent');
|
GLOBAL.util['Socks5ClientHttpsAgent'] = require('socks5-https-client/lib/Agent');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user