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

42 lines
1.0 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-01-30 23:36:06 -06:00
"version": "4.3.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": {
2021-10-13 01:18:45 -05:00
"@actions/core": "^1.6.0",
2022-01-31 00:11:43 -06:00
"@samkirkland/ftp-deploy": "^1.2.1",
2021-10-13 01:18:45 -05:00
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8"
2020-02-18 00:34:10 -06:00
},
"devDependencies": {
2020-08-26 01:28:40 -05:00
"@types/node": "^14.0.27",
2021-06-22 23:59:51 -05:00
"@typescript-eslint/eslint-plugin": "^4.28.0",
2021-10-13 01:18:45 -05:00
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
2021-06-22 23:59:51 -05:00
"eslint": "^7.29.0",
"eslint-plugin-jest": "^24.3.6",
2021-10-13 01:18:45 -05:00
"typescript": "^4.4.3"
2020-02-18 00:34:10 -06:00
}
2020-09-07 14:57:56 -05:00
}