-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 994 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
38
39
40
41
42
{
"name": "kneesocks",
"version": "1.0.4",
"description": "Put some nice SOCKS on your HTTP only program",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"dev": "nodemon index.js",
"report": "istanbul cover _mocha -- -R spec test/test.js",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/bitinn/kneesocks.git"
},
"keywords": [
"socks",
"proxy",
"http"
],
"author": "David Frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitinn/kneesocks/issues"
},
"dependencies": {
"debug": "^2.3.3",
"dnscache": "~0.0.4",
"socksv5": "~0.0.6"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"istanbul": "~0.4.5",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
},
"engines": {
"node": ">=0.11.0"
},
"bin": "index.js"
}