chore: update package.json

This commit is contained in:
Bill Church 2024-08-22 02:11:24 +00:00
parent 87d5f5ee3f
commit c19dbf019d
No known key found for this signature in database

View file

@ -4,7 +4,9 @@
"ignore": [ "ignore": [
".gitignore" ".gitignore"
], ],
"bin": "./index.js", "bin": {
"webssh2-server": "./index.js"
},
"description": "A Websocket to SSH2 gateway using xterm.js, socket.io, ssh2", "description": "A Websocket to SSH2 gateway using xterm.js, socket.io, ssh2",
"homepage": "https://github.com/billchurch/WebSSH2", "homepage": "https://github.com/billchurch/WebSSH2",
"keywords": [ "keywords": [
@ -20,10 +22,7 @@
"url": "git+https://github.com/billchurch/WebSSH2.git" "url": "git+https://github.com/billchurch/WebSSH2.git"
}, },
"contributors": [ "contributors": [
{ "Bill Church <wmchurch@gmail.com>"
"name": "Bill Church",
"email": "wmchurch@gmail.com"
}
], ],
"engines": { "engines": {
"node": ">= 6" "node": ">= 6"
@ -49,12 +48,14 @@
"scripts": { "scripts": {
"start": "node index.js", "start": "node index.js",
"lint": "eslint src test", "lint": "eslint src test",
"watch": "node_modules/.bin/nodemon index.js", "watch": "nodemon index.js -w app/ -w index.js -w config.json -w package.json",
"test": "jest" "test": "jest"
}, },
"jest": { "jest": {
"testEnvironment": "node", "testEnvironment": "node",
"testMatch": ["**/tests/**/*.test.js"] "testMatch": [
"**/tests/**/*.test.js"
]
}, },
"standard": { "standard": {
"ignore": [ "ignore": [
@ -75,5 +76,10 @@
"prettier": "^1.19.1", "prettier": "^1.19.1",
"prettier-eslint": "^8.8.2", "prettier-eslint": "^8.8.2",
"standard-version": "^4.4.0" "standard-version": "^4.4.0"
} },
"main": "index.js",
"directories": {
"test": "tests"
},
"author": ""
} }