forked from amoussard/sftp-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "SFTP-deployment",
"description": "A package which allow you to upload and download files with FTP/SFTP protocol",
"version": "1.0.2",
"author": {
"name": "Ellipsis Team",
"email": "[email protected]"
},
"repository": "https://github.com/amoussard/sftp-deployment",
"bugs": {
"url": "https://github.com/amoussard/sftp-deployment/issues"
},
"main": "./lib/sftp-deployment.js",
"activationCommands": {
"atom-workspace": [
"sftp-deployment:mapToRemote",
"sftp-deployment:uploadCurrentFile",
"sftp-deployment:uploadOpenFiles",
"sftp-deployment:downloadCurrentFile",
"sftp-deployment:uploadSelection",
"sftp-deployment:downloadSelection",
"core:save"
]
},
"engines": {
"atom": ">0.50.0"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"ssh2": "^0.4.4",
"ftp": "^0.3.9",
"MD5": "^1.2.1",
"util": "*",
"node-dir": "*",
"bluebird": "^2.9.16",
"expand-home-dir": "^0.0.2",
"atom-space-pen-views": "^2.0.3"
},
"devDependencies": {
"should": "latest",
"coveralls": "2.3.0"
},
"keywords": [
"atom",
"package",
"sftp",
"ftp",
"remote",
"deployment"
],
"license": "MIT"
}