mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2024-11-12 05:38:05 +00:00
aa1c48118d
## [4.1.10](https://github.com/easingthemes/ssh-deploy/compare/v4.1.9...v4.1.10) (2023-09-30) ### Bug Fixes * normalize line endings in SSH key for the underlying OS ([3f5d9aa
](3f5d9aab1a
))
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@draganfilipovic/ssh-deploy",
|
|
"version": "4.1.10",
|
|
"description": "Fast NodeJS action to deploy specific directory from `GITHUB_WORKSPACE` to a server via rsync over ssh.",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"/dist",
|
|
"./action.yml",
|
|
"./README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run lint && ncc build ./src/index.js -o dist -m",
|
|
"lint": "eslint ./src/index.js",
|
|
"lint:fix": "eslint ./src/index.js --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/easingthemes/ssh-deploy.git"
|
|
},
|
|
"keywords": [
|
|
"deploy",
|
|
"ssh",
|
|
"rsync"
|
|
],
|
|
"author": "Dragan Filipovic",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/easingthemes/ssh-deploy/issues"
|
|
},
|
|
"homepage": "https://github.com/easingthemes/ssh-deploy#readme",
|
|
"dependencies": {
|
|
"rsyncwrapper": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.36.0",
|
|
"eslint": "^8.30.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.26.0"
|
|
},
|
|
"overrides": {
|
|
"word-wrap": "npm:@aashutoshrathi/word-wrap@1.2.5",
|
|
"semver": "^7.5.2"
|
|
}
|
|
}
|