-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 979 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
{
"name": "ftp-transfer-watcher",
"version": "1.1.4",
"description": "A module that let you create a daemon watcher that listen changes in given directory ( after wizard configuration ), create a files backup, transfer to given FTP and delete them",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"install-svc": "qckwinsvc --name \"Ftp Transfer watcher\" --description \"Sync your files to FTP\" --script \"$INIT_CWD/index.js\" --startImmediately",
"config": "npx . --config"
},
"repository": {
"type": "git",
"url": "https://github.com/buggyzap/ftp-transfer-watcher"
},
"keywords": [
"ftp transfer",
"node ftp transfer",
"ftp watcher changes",
"ftp watcher"
],
"author": "Marco Ingraiti",
"license": "ISC",
"type": "module",
"dependencies": {
"args-parser": "^1.3.0",
"basic-ftp": "^5.0.2",
"enquirer": "^2.3.6",
"fs-extra": "^10.1.0",
"qckwinsvc": "^1.0.0",
"shelljs": "^0.8.5"
}
}