forked from KenorFR/dploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 962 Bytes
/
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
{
"name": "dploy",
"version": "2.0.0",
"license": "MIT",
"author": "Lucas Motta <http://lucasmotta.com>",
"contributors": [
"AdonMaster <https://github.com/AdonMaster>",
"KenorFR <https://github.com/KenorFR>",
"Tobias Duehr <[email protected]>"
],
"description": "Command line tool to deploy websites using FTP/SFTP and git.",
"keywords": [
"ftp",
"sftp",
"deploy",
"git"
],
"repository": {
"type": "git",
"url": "https://github.com/DieSchittigs/dploy"
},
"main": "./src/dploy.js",
"bin": {
"dploy": "./bin/dploy"
},
"engines": {
"node": ">= 10.15.x"
},
"dependencies": {
"axios": "^0.18.0",
"colors": "^1.3.3",
"ftp": "^0.3.10",
"glob-expand": "^0.2.1",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"minimatch": "^3.0.4",
"prompt": "^1.0.0",
"signals": "^1.0.0",
"ssh2": "^0.8.2",
"yamljs": "^0.3.0",
"zip-folder": "^1.0.0"
}
}