forked from redacademy/dploy-red
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 884 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
{
"name": "dploy-red",
"version": "1.0.0",
"author": "Stevo <http://stephenvovan.com>",
"description": "Command line tool to deploy websites using FTP/SFTP and git.",
"keywords": [
"ftp",
"sftp",
"deploy",
"git"
],
"repository": {
"type": "git",
"url": "https://github.com/vovantics/dploy-red"
},
"main": "./lib/dploy",
"bin": {
"dploy": "./bin/dploy"
},
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {
"colors": "~0.6.x",
"yamljs": "~0.1.x",
"signals": "~1.0.x",
"ftp": "~0.3.x",
"ssh2": "^0.4.6",
"minimatch": "~0.2.x",
"prompt": "~0.2.x",
"glob-expand": "0.0.2"
},
"devDependencies": {
"grunt": "~0.4.x",
"grunt-bump": "~0.0.x",
"grunt-coffeelint": "0.0.x",
"grunt-contrib-coffee": "~0.7.x",
"grunt-contrib-watch": "~0.5.x",
"grunt-shell": "~0.6.x"
}
}