-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
58 lines (58 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@samkirkland/ftp-deploy",
"version": "1.2.4",
"private": false,
"description": "Deploy files to a ftp server",
"main": "dist/module.js",
"bin": {
"ftp-deploy": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"deploy": "tsc && node ./dist/cli.js --log-level verbose ---server samkirkland.com --protocol ftp --username \"[email protected]\" --password \"actualPasswordHere\" --exclude dist/** --exclude **/.git* --exclude **/.git*/** --exclude **/node_modules/** --exclude package.json",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamKirkland/ftp-deploy.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Sam Kirkland",
"license": "MIT",
"dependencies": {
"basic-ftp": "^5.0.5",
"lodash": "^4.17.21",
"multimatch": "^5.0.0",
"pretty-bytes": "^5.6.0",
"pretty-ms": "^7.0.1",
"readdir-enhanced": "^6.0.4",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.191",
"@types/minimatch": "^3.0.4",
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-jest": "^26.8.6",
"ftp-srv": "^4.6.2",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/SamKirkland/ftp-deploy/issues"
},
"homepage": "https://github.com/SamKirkland/ftp-deploy"
}