forked from clowwindy/ShadowSPDY
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "shadowspdy",
"description": "a tunnel proxy using spdy as the tunnel",
"keywords": ["SPDY", "proxy", "http", "https", "socks", "tunnel"],
"author": {
"name":"clowwindy",
"email":"[email protected]"
},
"version": "0.1.8",
"licenses": [{
"type": "MIT",
"url": "https://raw.github.com/clowwindy/shadowspdy/master/LICENSE"
}],
"engines": {
"node": "~0.10"
},
"directories": {
"lib": "./lib/shadowspdy"
},
"main": "./lib/shadowspdy/local",
"bin": {
"splocal": "./bin/splocal",
"spserver": "./bin/spserver"
},
"scripts": {
"test": "cake test"
},
"homepage": "https://github.com/clowwindy/shadowspdy",
"bugs": "https://github.com/clowwindy/shadowspdy/issues",
"repository": {
"type": "git",
"url": "https://github.com/clowwindy/shadowspdy.git"
},
"dependencies": {
"spdy": "=1.25.1",
"argparse": "=0.1.15"
},
"devDependencies": {
"coffee-script": ">=1.7.0"
}
}