2020-02-18 00:34:10 -06:00
|
|
|
{
|
2020-08-26 01:28:40 -05:00
|
|
|
"name": "ftp-deploy-action",
|
2020-11-23 01:22:34 -06:00
|
|
|
"version": "4.0.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": [
|
2020-08-26 01:28:40 -05:00
|
|
|
"website deploy",
|
|
|
|
|
"continuous integration",
|
|
|
|
|
"ftp",
|
|
|
|
|
"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": {
|
2020-10-23 23:41:37 -05:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-11-23 01:22:34 -06:00
|
|
|
"@samkirkland/ftp-deploy": "^1.0.3",
|
|
|
|
|
"@types/jest": "^26.0.15",
|
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
|
"ts-jest": "^26.4.4",
|
2020-09-05 01:33:58 -05:00
|
|
|
"ts-node-dev": "^1.0.0-pre.62"
|
2020-02-18 00:34:10 -06:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-08-26 01:28:40 -05:00
|
|
|
"@types/node": "^14.0.27",
|
2020-09-05 01:33:58 -05:00
|
|
|
"@typescript-eslint/parser": "^4.0.1",
|
2020-10-24 00:56:44 -05:00
|
|
|
"@vercel/ncc": "^0.24.0",
|
2020-09-05 01:33:58 -05:00
|
|
|
"eslint": "^7.8.1",
|
2020-08-26 01:28:40 -05:00
|
|
|
"js-yaml": "^3.14.0",
|
2020-09-05 01:33:58 -05:00
|
|
|
"typescript": "^4.0.2"
|
2020-02-18 00:34:10 -06:00
|
|
|
}
|
2020-09-07 14:57:56 -05:00
|
|
|
}
|