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

37 lines
923 B
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",
2020-02-18 00:34:10 -06:00
"version": "1.0.0",
"private": true,
2020-08-26 01:28:40 -05:00
"description": "Automate deploying websites and more with this GitHub action",
2020-02-18 00:34:10 -06:00
"main": "dist/main.js",
"scripts": {
2020-09-05 01:33:58 -05:00
"build": "ncc build src/main.ts --no-cache",
2020-08-26 01:28:40 -05:00
"lint": "eslint src/**/*.ts",
"all": "npm run build && npm run lint"
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-09-05 01:33:58 -05:00
"@actions/core": "^1.2.5",
"@samkirkland/ftp-deploy": "^0.9.5",
"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-08-28 01:11:57 -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-05 01:33:58 -05:00
}