This commit is contained in:
SamKirkland
2020-08-26 01:28:40 -05:00
parent 1053c3278e
commit 3576f3af9c
23 changed files with 7764 additions and 5829 deletions

View File

@@ -1,39 +1,37 @@
{
"name": "typescript-action",
"name": "ftp-deploy-action",
"version": "1.0.0",
"private": true,
"description": "TypeScript template action",
"description": "Automate deploying websites and more with this GitHub action",
"main": "dist/main.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "ncc build src/main.ts -o dist --watch",
"build-docker": "docker build --tag action .",
"run-docker": "act --workflows ./debug/ --secret username=UserNameHere --secret password=PasswordHere"
"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/actions/typescript-action.git"
"url": "git+https://github.com/SamKirkland/FTP-Deploy-Action.git"
},
"keywords": [
"actions",
"node",
"setup"
"website deploy",
"continuous integration",
"ftp",
"ftps"
],
"author": "SamKirkland",
"author": "Sam Kirkland",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.4",
"@actions/exec": "1.0.4"
"@actions/core": "^1.2.4",
"@samkirkland/ftp-deploy": "^0.0.1",
"ts-node-dev": "^1.0.0-pre.56"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "12.12.8",
"@zeit/ncc": "0.22.1",
"jest": "25.5.3",
"jest-circus": "25.5.3",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
"@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"
}
}
}