1
0
Files
ftp-deploy-action/package.json
T

45 lines
1.1 KiB
JSON
Raw Normal View History

2020-02-18 00:34:10 -06:00
{
2020-08-26 01:28:40 -05:00
"name": "ftp-deploy-action",
2022-12-02 10:44:37 -06:00
"version": "4.3.3",
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",
"@samkirkland/ftp-deploy": "^1.2.2",
"@types/jest": "^28.1.7",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0"
2020-02-18 00:34:10 -06:00
},
"devDependencies": {
2020-08-26 01:28:40 -05:00
"@types/node": "^14.0.27",
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
}