mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2025-08-14 14:05:05 +00:00
37 lines
910 B
JSON
37 lines
910 B
JSON
{
|
|
"name": "ftp-deploy-action",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Automate deploying websites and more with this GitHub action",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"all": "npm run build && npm run lint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/SamKirkland/FTP-Deploy-Action.git"
|
|
},
|
|
"keywords": [
|
|
"website deploy",
|
|
"continuous integration",
|
|
"ftp",
|
|
"ftps"
|
|
],
|
|
"author": "Sam Kirkland",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.4",
|
|
"@samkirkland/ftp-deploy": "^0.0.1",
|
|
"ts-node-dev": "^1.0.0-pre.56"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.0.27",
|
|
"@typescript-eslint/parser": "^3.8.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^7.6.0",
|
|
"js-yaml": "^3.14.0",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
} |