65 lines
1.4 KiB
JSON
65 lines
1.4 KiB
JSON
{
|
|
"name": "webssh2-server",
|
|
"version": "0.2.13",
|
|
"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": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/billchurch/WebSSH2.git"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Bill Church",
|
|
"email": "wmchurch@gmail.com"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/billchurch/WebSSH2/issues"
|
|
},
|
|
"dependencies": {
|
|
"basic-auth": "~2.0.1",
|
|
"colors": "~1.3.2",
|
|
"compression": "~1.7.3",
|
|
"debug": "~4.1.0",
|
|
"express": "~4.16.4",
|
|
"express-session": "~1.15.6",
|
|
"morgan": "~1.9.1",
|
|
"read-config-ng": "~3.0.7",
|
|
"serve-favicon": "~2.5.0",
|
|
"socket.io": "~2.2.0",
|
|
"ssh2": "~0.8.9",
|
|
"validator": "~10.9.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"watch": "nodemon index.js",
|
|
"standard": "standard --verbose --fix | snazzy",
|
|
"cleanmac": "find . -name '.DS_Store' -type f -delete"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"bin/*",
|
|
"build/*"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"nodaemon": "0.0.5",
|
|
"snazzy": "^8.0.0",
|
|
"standard": "^12.0.1"
|
|
}
|
|
}
|