-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
40 lines (40 loc) · 923 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": "webtelnet",
"version": "1.1.1",
"description": "WebTelnet is a proxy server to bridge websocket to telnet, enable visiting telnet servers with browsers",
"main": "./webtelnet-proxy.js",
"bin": {
"webtelnet": "./main.js"
},
"scripts": {
"start": "node ./main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudchina/webtelnet.git"
},
"keywords": [
"telnet",
"webtelnet",
"proxy",
"mud",
"webmud"
],
"author": {
"name": "Raymond Xie",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mudchina/webtelnet/issues"
},
"homepage": "https://github.com/mudchina/webtelnet#README.md",
"dependencies": {
"express": "^4.13.4",
"iconv-lite": "^0.4.13",
"minimist": "^1.2.0",
"socket.io": "^1.4.4",
"text-encoding": "^0.5.5"
},
"devDependencies": {}
}