-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
102 lines (102 loc) · 2.64 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ftp-sync",
"description": "Auto sync your work to remote FTP/SFTP server",
"version": "0.4.0",
"publisher": "lukasz-wronski",
"engines": {
"vscode": "^0.10.1"
},
"bugs": {
"url": "https://github.com/lukasz-wronski/vscode-ftp-sync/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/lukasz-wronski/vscode-ftp-sync/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/lukasz-wronski/vscode-ftp-sync.git"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onCommand:extension.ftpsyncinit",
"onCommand:extension.ftpsyncupload",
"onCommand:extension.ftpsyncdownload",
"onCommand:extension.ftpsynccommit",
"onCommand:extension.ftpsyncsingle",
"onCommand:extension.ftpsyncuploadselected",
"onCommand:extension.ftpsyncdownloadselected",
"workspaceContains:.vscode/ftp-sync.json"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.ftpsyncinit",
"title": "Ftp-sync: Init"
},
{
"command": "extension.ftpsyncupload",
"title": "Ftp-sync: Local to Remote"
},
{
"command": "extension.ftpsyncdownload",
"title": "Ftp-sync: Remote to Local"
},
{
"command": "extension.ftpsynccommit",
"title": "Ftp-sync: Commit"
},
{
"command": "extension.ftpsyncsingle",
"title": "Ftp-sync: Sync current file to Remote"
},
{
"command": "extension.ftpsyncuploadselected",
"title": "Ftp-sync: Upload File"
},
{
"command": "extension.ftpsyncdownloadselected",
"title": "Ftp-sync: Download File"
},
{
"command": "extension.ftpsynclistselected",
"title": "Ftp-sync: Browse Remote..."
}
],
"menus": {
"explorer/context": [
{
"command": "extension.ftpsyncuploadselected",
"group": "extension",
"when": "!explorerResourceIsFolder"
},
{
"command": "extension.ftpsyncdownloadselected",
"group": "extension",
"when": "!explorerResourceIsFolder"
},
{
"command": "extension.ftpsynclistselected",
"group": "extension",
"when": "!explorerResourceIsFolder"
}
]
}
},
"devDependencies": {
"vscode": "0.10.x"
},
"dependencies": {
"fs-cp": "^1.3.1",
"fs-walk": "0.0.1",
"ftp": "^0.3.10",
"lodash": "~4.11.1",
"mkdirp": "^0.5.1",
"scp2": "^0.5.0",
"ssh2": "^0.6",
"stat-mode": "^0.2.1",
"upath": "0.1.6"
}
}