From 34af6b548d729d71b442ca98c4898ec52d15784e Mon Sep 17 00:00:00 2001 From: billchurch Date: Wed, 1 Feb 2017 16:20:16 -0500 Subject: [PATCH] =?UTF-8?q?Changing=20over=20from=20term.js=20to=20https:/?= =?UTF-8?q?/github.com/sourcelair/xterm.js=20Added=20cookie=20parser=20Upd?= =?UTF-8?q?ated=20some=20packages=20but=20locked=20versions,=20node=20on?= =?UTF-8?q?=20system=20I=E2=80=99m=20targeting=20is=20currently=20locked?= =?UTF-8?q?=20v0.12.15=E2=80=A6in=20case=20anyone=20wonders=20why=20I?= =?UTF-8?q?=E2=80=99m=20locking=20some=20of=20these=20versions=20down.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trying to make a grownup package.json ;) --- package.json | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 524fa67..25c69dc 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,38 @@ { + "name": "WebSSH2", + "version": "0.0.2", + "ignore": [ + ".gitignore" + ], + "bin": "./index.js", "description": "A Websocket to SSH2 gateway using term.js, socket.io, ssh2, and express", + "homepage": "https://github.com/billchurch/WebSSH2", + "keywords": "ssh webssh terminal webterminal", + "license": "SEE LICENSE IN FILE - LICENSE", "private": true, - "repository": {}, + "repository": { + "type": "git", + "url": "git+https://github.com/billchurch/WebSSH2.git" + }, + "contributors": [ + { + "name": "Bill Church", + "email": "wmchurch@gmail.com" + } + ], "engines": { "node": "0.12.7" }, + "bugs": { + "url" : "https://github.com/billchurch/WebSSH2/issues" + }, "dependencies": { - "basic-auth": "^1.0.3", - "express": "^4.13.4", + "basic-auth": "^1.1.0", + "cookie-parser": "^1.4.3", + "express": "^4.14.1", "read-config": "^1.6.0", - "socket.io": "^1.4.5", - "ssh2": "^0.5.0", - "term.js": "0.0.7" + "socket.io": "^1.6.0", + "ssh2": "^0.5.4", + "xterm": "^2.2.3" } }