ssh-deploy/package.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2019-10-03 00:52:52 +03:00
{
2021-05-28 01:32:37 +03:00
"name": "@draganfilipovic/ssh-deploy",
"version": "3.3.0",
2021-05-27 23:56:27 +03:00
"description": "Fast NodeJS action to deploy specific directory from `GITHUB_WORKSPACE` to a server via rsync over ssh.",
2021-05-28 01:23:04 +03:00
"main": "dist/index.js",
2021-05-28 01:32:37 +03:00
"files": [
"/dist",
"./action.yml",
"./README.md",
"LICENSE"
],
2019-10-03 00:52:52 +03:00
"scripts": {
2021-05-28 01:23:04 +03:00
"build": "npm run lint && ncc build ./src/index.js -o dist -m",
"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",
2021-05-27 23:56:27 +03:00
"license": "MIT",
2019-10-03 00:52:52 +03:00
"bugs": {
"url": "https://github.com/easingthemes/ssh-deploy/issues"
},
"homepage": "https://github.com/easingthemes/ssh-deploy#readme",
2022-12-30 16:29:31 +03:00
"dependencies": {
"rsyncwrapper": "^3.0.1"
},
"devDependencies": {
2022-12-30 16:29:31 +03:00
"@vercel/ncc": "^0.36.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
2019-10-03 00:52:52 +03:00
}