webssh2/app/package.json
2022-03-31 08:24:27 -04:00

91 lines
2.5 KiB
JSON

{
"name": "webssh2",
"version": "0.4.4",
"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": ">= 14"
},
"bugs": {
"url": "https://github.com/billchurch/WebSSH2/issues"
},
"dependencies": {
"basic-auth": "~2.0.1",
"cidr-matcher": "^2.1.1",
"colors": "~1.4.0",
"debug": "^4.3.2",
"express": "~4.17.1",
"express-session": "~1.17.1",
"morgan": "~1.10.0",
"read-config-ng": "^3.0.4",
"serve-favicon": "^2.5.0",
"socket.io": "^4.2.0",
"ssh2": "~1.4.0",
"validator": "^13.7.0"
},
"scripts": {
"start": "node index.js",
"build": "webpack --progress --config scripts/webpack.prod.js",
"builddev": "webpack --progress --config scripts/webpack.dev.js",
"analyze": "webpack --json --config scripts/webpack.prod.js | webpack-bundle-size-analyzer",
"test": "snyk test",
"watch": "nodemon index.js",
"cleanmac": "find . -name '.DS_Store' -type f -delete",
"release": "standard-version"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"mini-css-extract-plugin": "^1.6.0",
"nodaemon": "0.0.5",
"prettier": "^2.3.0",
"snazzy": "^9.0.0",
"snyk": "^1.787.0",
"socket.io-client": "^4.1.1",
"source-map-loader": "^2.0.1",
"standard-version": "^9.3.0",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3",
"xterm": "^4.15.0",
"xterm-addon-fit": "^0.5.0"
},
"resolutions": {
"trim-newlines": "^3.0.1"
}
}