-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
64 lines (64 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
64
{
"name": "syncjs",
"version": "2.0.2",
"main": "dist/index.js",
"preferGlobal": true,
"scripts": {
"start": "gulp",
"build": "gulp build",
"prepublish": "gulp build"
},
"bin": {
"syncjs": "bin/syncjs"
},
"dependencies": {
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"inquirer": "^1.1.2",
"jsonplus": "^1.2.1",
"minimist": "^1.2.0",
"observatory": "^1.0.0",
"prompt": "^1.0.0",
"scp2": "^0.5.0",
"upath": "^0.2.0"
},
"description": "sync.js let's you keep your remote files in sync with your local copy. Whenever you make a change on your local project, sync.js uploads the changed files to remote server using `scp` command.",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.18.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^3.1.2",
"typescript": "^2.0.6",
"@types/chalk": "^0.4.31",
"@types/chokidar": "^1.4.29",
"@types/inquirer": "^0.0.30",
"@types/minimist": "^1.1.29",
"@types/node": "^6.0.46"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serkanyersen/sync.git"
},
"keywords": [
"SFTP",
"sync",
"rsync",
"scp",
"ftp",
"upload",
"project",
"typescript",
"developer",
"tools",
"tooling"
],
"author": "Serkan Yersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/serkanyersen/sync/issues"
},
"homepage": "https://github.com/serkanyersen/sync#readme"
}