-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1015 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
43
44
{
"name": "telnet-console",
"version": "1.0.5",
"description": "Node.js Runtime Console",
"author": "Wes Garland <[email protected]>",
"license": "MIT",
"main": "telnet-console.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/wesgarland/telnet-console",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wesgarland/telnet-console.git"
},
"bugs": {
"url": "https://github.com/wesgarland/telnet-console/issues"
},
"files": [
"*.js",
"lib",
"etc"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"keywords": [
"debug",
"console",
"telnet",
"introspection"
],
"dependencies": {
"telnet": "git+https://github.com/TooTallNate/node-telnet.git#780340617e1f223de384cdfcb7cecf0a1a6f1159"
},
"peerDependencies": {
"node-pty": "^0.10.1"
}
}