-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sftp-deployer",
"version": "0.4.1",
"description": "A command-line tool for lightning-fast SFTP deployments",
"main": "dist/index.js",
"bin": {
"sftp-deployer": "dist/bin/sftp-deployer.js"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist coverage",
"test": "jest",
"dev": "tsc -w",
"verify": "npm run test && npm run lint && npm run clean && npm run build",
"lint": "prettier \"**/*.{ts,json,md,js,json}\" --check --ignore-path .gitignore && eslint \"src/**/*.{ts,json}\" --ignore-path .gitignore",
"fix": "prettier \"**/*.{ts,json,md,js,json}\" --write --ignore-path .gitignore && eslint \"src/**/*.{ts,json}\" --fix --ignore-path .gitignore",
"version": "npm run verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svandriel/sftp-deployer.git"
},
"keywords": [
"sftp",
"ssh",
"deploy",
"deployer",
"upload",
"uploader",
"transfer",
"cli"
],
"author": "Sander van Driel <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run verify"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"**/*.json": [
"prettier --write"
]
},
"engines": {
"node": ">=14"
},
"dependencies": {
"bytes": "^3.1.2",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"fs-extra": "^11.1.0",
"ora": "^5.4.1",
"ssh2": "^1.1.0",
"ssh2-sftp-client": "^7.0.0",
"tar": "^6.1.13",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^16.3.1",
"@types/ssh2-sftp-client": "^5.3.2",
"@types/tar": "^6.1.3",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^4.3.8",
"jest": "^29.4.1",
"lint-staged": "^11.2.6",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}