webssh2/package.json
2024-12-04 11:57:15 +00:00

95 lines
2.5 KiB
JSON

{
"name": "webssh2-server",
"version": "0.2.24",
"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 <wmchurch@gmail.com>"
],
"engines": {
"node": ">= 6"
},
"bugs": {
"url": "https://github.com/billchurch/WebSSH2/issues"
},
"dependencies": {
"ajv": "^4.11.8",
"basic-auth": "^2.0.1",
"body-parser": "^1.15.2",
"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": "~0.8.9",
"validator": "^12.2.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* nodemon index.js -w app/ -w index.js -w config.json -w package.json",
"test": "jest",
"release": "npm run lint:fix && npm run test && standard-version -a -s --release-as patch --commit-all --infile ChangeLog.md",
"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"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
]
},
"standard": {
"ignore": [
"bin/*",
"build/*"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.7.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"prettier": "^1.19.1",
"prettier-eslint": "^7.1.0",
"standard-version": "^4.4.0"
},
"main": "index.js",
"directories": {
"test": "tests"
},
"author": ""
}