ssh-deploy/package.json

38 lines
1014 B
JSON
Raw Normal View History

2019-10-03 00:52:52 +03:00
{
"name": "ssh-deploy",
2021-04-17 02:24:55 +03:00
"version": "2.1.9",
2019-10-03 00:52:52 +03:00
"description": "This GitHub Action deploys specific directory from `GITHUB_WORKSPACE` to a folder on a server via rsync over ssh.",
"main": "src/index.js",
"dependencies": {
2021-05-27 22:51:10 +03:00
"command-exists": "1.2.9",
"node-cmd": "4.0.0",
2019-10-03 00:52:52 +03:00
"rsyncwrapper": "3.0.1"
},
"devDependencies": {
2021-05-27 23:04:06 +03:00
"@vercel/ncc": "^0.28.6",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3"
2019-10-03 00:52:52 +03:00
},
"scripts": {
2020-04-11 17:26:19 +03:00
"build": "npm run lint && ncc build ./src/index.js -o dist",
"lint": "eslint ./src/index.js",
"lint:fix": "eslint ./src/index.js --fix"
2019-10-03 00:52:52 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/easingthemes/ssh-deploy.git"
},
"keywords": [
"deploy",
"ssh",
"rsync"
],
"author": "Dragan Filipovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/easingthemes/ssh-deploy/issues"
},
"homepage": "https://github.com/easingthemes/ssh-deploy#readme"
}