-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 785 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 785 Bytes
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
{
"name": "node-proxy-socket",
"version": "1.0.0",
"description": "HTTP proxy client for raw sockets",
"main": "proxy.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuildingIntelligence/node-proxy-socket.git"
},
"keywords": [
"proxy",
"client",
"http",
"https",
"tls",
"socket"
],
"author": "Travis Sinnott",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/BuildingIntelligence/node-proxy-socket/issues"
},
"homepage": "https://github.com/BuildingIntelligence/node-proxy-socket#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"dependencies": {
"lodash": "^4.13.1"
}
}