UNPKG

ssh2-exec

Version:

Transparent usage between `child_process.exec` and `ssh2.prototype.exec`

93 lines (92 loc) 2.37 kB
{ "name": "ssh2-exec", "version": "0.8.5", "description": "Transparent usage between `child_process.exec` and `ssh2.prototype.exec`", "keywords": [ "child process", "exec", "ssh2", "ssh", "promise" ], "homepage": "https://github.com/adaltas/node-ssh2-exec", "license": "MIT", "author": "David Worms <david@adaltas.com>", "contributors": [], "devDependencies": { "@commitlint/cli": "^20.1.0", "@commitlint/config-conventional": "^20.0.0", "@eslint/js": "^9.39.1", "@types/mocha": "^10.0.10", "@types/ssh2": "^1.15.5", "eslint": "^9.39.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-mocha": "^11.2.0", "eslint-plugin-prettier": "^5.5.4", "husky": "^9.1.7", "lint-staged": "^16.2.7", "mocha": "^11.7.5", "mocha-they": "^0.1.11", "prettier": "^3.7.3", "should": "^13.2.3", "ssh2-connect": "^4.2.0", "standard-version": "^9.5.0", "tsup": "^8.5.1", "tsx": "^4.21.0", "typedoc": "^0.28.15", "typedoc-plugin-markdown": "^4.9.0", "typescript": "^5.9.3", "typescript-eslint": "^8.48.1" }, "engines": { "node": ">=0.10.1" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts", "require": "./dist/index.cjs" }, "./promises": { "import": "./dist/promises.js", "types": "./dist/promises.d.ts", "require": "./dist/promises.cjs" } }, "files": [ "dist" ], "lint-staged": { "*.js": "npm run lint:fix", "*.md": "prettier -w" }, "mocha": { "inline-diffs": true, "import": "tsx", "recursive": true, "reporter": "spec", "require": [ "should" ], "throw-deprecation": false, "timeout": 40000 }, "repository": { "type": "git", "url": "https://github.com/adaltas/node-ssh2-exec.git" }, "scripts": { "build": "tsup-node", "lint:check": "eslint", "lint:fix": "eslint --fix", "lint:staged": "npx lint-staged", "prepare": "husky install", "release": "standard-version", "release:minor": "standard-version --release-as minor", "release:patch": "standard-version --release-as patch", "release:major": "standard-version --release-as major", "postrelease": "git push --follow-tags origin master", "test": "mocha 'test/**/*.ts'" }, "type": "module" }