-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 926 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 926 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
{
"name": "reploy",
"version": "0.0.2",
"description": "Deploy code in multi-server environments over SSH",
"main": "index.js",
"bin": {
"reploy": "./bin/reploy.js"
},
"files": [
"index.js",
"bin",
"lib",
"templates"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:Toddses/reploy.git"
},
"keywords": [
"node",
"deploy",
"deployment",
"ssh",
"git",
"releases"
],
"author": "Todd Miller <todd@rainydaymedia.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Toddses/reploy/issues"
},
"homepage": "https://github.com/Toddses/reploy",
"dependencies": {
"async": "^0.9.0",
"chalk": "^0.5.1",
"interpret": "^0.4.3",
"liftoff": "^2.0.1",
"minimist": "^1.1.0",
"node-json-minify": "^0.1.3-a",
"ssh2": "^0.4.3"
}
}