2020-02-18 00:34:10 -06:00
|
|
|
{
|
2020-08-26 01:28:40 -05:00
|
|
|
"name": "ftp-deploy-action",
|
2026-04-23 02:16:36 -05:00
|
|
|
"version": "4.4.0",
|
2020-02-18 00:34:10 -06:00
|
|
|
"private": true,
|
2020-08-26 01:28:40 -05:00
|
|
|
"description": "Automate deploying websites and more with this GitHub action",
|
2020-10-24 00:56:44 -05:00
|
|
|
"main": "dist/index.js",
|
2020-02-18 00:34:10 -06:00
|
|
|
"scripts": {
|
2020-10-24 00:56:44 -05:00
|
|
|
"build": "ncc build src/main.ts --no-cache",
|
2020-11-23 01:22:34 -06:00
|
|
|
"test": "jest",
|
2020-10-23 23:41:37 -05:00
|
|
|
"lint": "eslint src/**/*.ts"
|
2020-02-18 00:34:10 -06:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2020-08-26 01:28:40 -05:00
|
|
|
"url": "git+https://github.com/SamKirkland/FTP-Deploy-Action.git"
|
2020-02-18 00:34:10 -06:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
2021-06-22 23:59:51 -05:00
|
|
|
"ftp",
|
2020-08-26 01:28:40 -05:00
|
|
|
"website deploy",
|
|
|
|
|
"continuous integration",
|
|
|
|
|
"ftps"
|
2020-02-18 00:34:10 -06:00
|
|
|
],
|
2020-08-26 01:28:40 -05:00
|
|
|
"author": "Sam Kirkland",
|
2020-02-18 00:34:10 -06:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2022-08-21 21:21:46 -05:00
|
|
|
"@actions/core": "^1.9.1",
|
2025-08-26 00:32:26 -05:00
|
|
|
"@samkirkland/ftp-deploy": "^1.2.5",
|
2023-03-15 00:50:07 -05:00
|
|
|
"@types/jest": "^29.4.1",
|
|
|
|
|
"jest": "^29.5.0",
|
|
|
|
|
"ts-jest": "^29.0.5",
|
2022-08-21 21:21:46 -05:00
|
|
|
"ts-node-dev": "^2.0.0"
|
2020-02-18 00:34:10 -06:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-04-23 02:16:36 -05:00
|
|
|
"@types/node": "^24.0.0",
|
2022-08-21 21:21:46 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
|
|
|
"@typescript-eslint/parser": "^5.33.1",
|
|
|
|
|
"@vercel/ncc": "^0.34.0",
|
|
|
|
|
"eslint": "^8.22.0",
|
|
|
|
|
"eslint-plugin-jest": "^26.8.7",
|
|
|
|
|
"typescript": "^4.7.4"
|
2022-09-03 17:37:57 -05:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"preset": "ts-jest"
|
2020-02-18 00:34:10 -06:00
|
|
|
}
|
2020-09-07 14:57:56 -05:00
|
|
|
}
|