{ "name": "webssh2-server", "version": "2.0.0-alpha", "ignore": [ ".gitignore" ], "bin": { "webssh2-server": "./index.js" }, "description": "A Websocket to SSH2 gateway using xterm.js, socket.io, ssh2", "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": [ "Bill Church " ], "engines": { "node": ">= 22" }, "bugs": { "url": "https://github.com/billchurch/WebSSH2/issues" }, "dependencies": { "ajv": "^4.11.8", "basic-auth": "^2.0.1", "body-parser": "^1.20.3", "debug": "^3.2.7", "express": "^4.14.1", "express-session": "^1.18.0", "express-socket.io-session": "^1.3.5", "jsmasker": "^1.4.0", "read-config-ng": "~3.0.7", "socket.io": "~2.2.0", "ssh2": "1.16", "validator": "^13.12.0", "webssh2_client": "^0.2.28" }, "scripts": { "start": "node index.js", "lint": "eslint app", "lint:fix": "eslint app --fix", "watch": "NODE_ENV=development DEBUG=webssh* node --watch index.js", "test": "node --test tests/*.test.js", "release": "standard-version -a -s --release-as patch --commit-all", "release:dry-run": "standard-version -a -s --release-as patch --dry-run", "publish:dry-run": "npm publish --dry-run", "publish:npm": "npm publish", "pretest": "npm run lint", "ci": "npm run test", "release:major": "npm run release -- --release-as major", "release:minor": "npm run release -- --release-as minor", "release:patch": "npm run release -- --release-as patch" }, "standard": { "ignore": [ "bin/*", "build/*" ] }, "devDependencies": { "@eslint/js": "^9.16.0", "@types/debug": "^4.1.12", "@types/express": "^5.0.0", "@types/express-session": "^1.18.1", "@types/node": "^22.10.2", "@types/ssh2": "^1.15.1", "@types/validator": "^13.12.2", "@typescript-eslint/eslint-plugin": "^8.18.0", "@typescript-eslint/parser": "^8.18.0", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-security": "^3.0.1", "prettier": "^3.4.2", "standard-version": "^4.4.0", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "main": "index.js", "directories": { "test": "tests" }, "author": "", "type": "module" }