-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 915 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
{
"name": "udp-tunnel-cli",
"version": "0.1.1",
"description": "A tiny command-line toolkit to tunnel any UDP connection/socket to another machine.",
"homepage": "https://github.com/thbaumbach/node-udp-tunnel-cli",
"readmeFilename": "README.md",
"scripts": {
"test": "echo no tests yet"
},
"preferGlobal": true,
"bin": {
"udp-tunnel-client": "bin/udp-tunnel-client",
"udp-tunnel-server": "bin/udp-tunnel-server"
},
"directories": {
"src": "./src"
},
"repository": {
"type" : "git",
"url" : "https://github.com/thbaumbach/node-udp-tunnel-cli"
},
"bugs": {
"url": "https://github.com/thbaumbach/node-udp-tunnel-cli/issues"
},
"dependencies": {
},
"keywords": [
"tunnel",
"udp",
"network",
"client",
"server",
"proxy",
"agent",
"cli",
"command"
],
"author": "Thomas Baumbach <[email protected]>",
"license": "MIT"
}