forked from serkanyersen/sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
{
"name": "syncjs",
"version": "2.1.1",
"main": "dist/index.js",
"preferGlobal": true,
"scripts": {
"start": "gulp",
"build": "gulp build",
"prepublish": "gulp build"
},
"bin": {
"syncjs": "bin/syncjs"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"inquirer": "^7.3.3",
"jsonplus": "^1.2.1",
"minimist": "^1.2.0",
"observatory": "^1.0.0",
"prompt": "^1.0.0",
"scp2": "^0.5.0",
"upath": "^2.0.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/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/inquirer": "^7.3.1",
"@types/minimist": "^1.1.29",
"@types/node": "^14.14.2",
"babel-cli": "^6.18.0",
"babel-runtime": "^6.18.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^4.0.3"
},
"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"
}