Added cookie parser
Updated some packages but locked versions, node on system I’m targeting
is currently locked v0.12.15…in case anyone wonders why I’m locking
some of these versions down.

Trying to make a grownup package.json ;)
This commit is contained in:
billchurch 2017-02-01 16:20:16 -05:00
parent ca4e059c39
commit 34af6b548d

View file

@ -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", "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, "private": true,
"repository": {}, "repository": {
"type": "git",
"url": "git+https://github.com/billchurch/WebSSH2.git"
},
"contributors": [
{
"name": "Bill Church",
"email": "wmchurch@gmail.com"
}
],
"engines": { "engines": {
"node": "0.12.7" "node": "0.12.7"
}, },
"bugs": {
"url" : "https://github.com/billchurch/WebSSH2/issues"
},
"dependencies": { "dependencies": {
"basic-auth": "^1.0.3", "basic-auth": "^1.1.0",
"express": "^4.13.4", "cookie-parser": "^1.4.3",
"express": "^4.14.1",
"read-config": "^1.6.0", "read-config": "^1.6.0",
"socket.io": "^1.4.5", "socket.io": "^1.6.0",
"ssh2": "^0.5.0", "ssh2": "^0.5.4",
"term.js": "0.0.7" "xterm": "^2.2.3"
} }
} }