-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 848 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
{
"name": "project-sync",
"version": "2.0.0",
"description": "A simple command line tool for using rsync to push and pull projects to and from a remote server.",
"preferGlobal": true,
"bin": {
"project-sync": "index.js"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:steven-klein/project-sync.git"
},
"keywords": [
"rsync",
"deploy",
"push",
"pull",
"global",
"files",
"folders",
"directories",
"projects",
"project",
"sync"
],
"author": "Steven Klein <steven@brkstn.com>",
"license": "MIT",
"homepage": "https://github.com/steven-klein/project-sync/",
"dependencies": {
"cli": "^1.0.1",
"prompt": "^1.0.0",
"rsync": "^0.5.0"
}
}