-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 974 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 974 Bytes
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
{
"name": "sftploy",
"version": "0.0.3",
"description": "A simple (CLI) tool to deploy stuff via SFTP",
"author": {
"name": "Thomas Rasshofer",
"email": "hello@thomasrasshofer.com",
"url": "http://thomasrasshofer.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rasshofer/sftploy.git"
},
"bugs": {
"url": "https://github.com/rasshofer/sftploy/issues"
},
"main": "sftploy.js",
"keywords": [
"sftploy",
"ftp",
"deployment",
"cli"
],
"dependencies": {
"bluebird": "^3.5.0",
"glob": "^7.1.1",
"inquirer": "^3.0.6",
"leprechaun": "0.0.2",
"lodash.isarray": "^4.0.0",
"lodash.merge": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"nconf": "^0.8.4",
"scp2": "^0.5.0"
},
"devDependencies": {
"jshint": "^2.9.4"
},
"scripts": {
"test": "jshint sftploy.js cli.js"
},
"preferGlobal": "true",
"bin": {
"sftploy": "cli.js"
}
}