This commit is contained in:
VincentChanX
2017-04-05 19:41:04 +08:00
parent 46c69e2059
commit 9e0dafcaa0
5 changed files with 410 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "shadowsocks-over-websocket",
"version": "0.1.0",
"description": "A fast tunnel proxy that helps you bypass firewalls",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node server.js",
"local": "node local.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VincentChanX/shadowsocks-over-websocket.git"
},
"keywords": [
"proxy"
],
"author": "vincentchan <hci.vincentchan@gmail.com> (https://github.com/VincentChanX)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/VincentChanX/shadowsocks-over-websocket/issues"
},
"homepage": "https://github.com/VincentChanX/shadowsocks-over-websocket#readme",
"dependencies": {
"log4js": "^1.1.1",
"ws": "^2.2.3"
}
}