-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·81 lines (81 loc) · 2.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "synchly",
"version": "1.1.0",
"description": "A CLI to automate database backups",
"homepage": "https://github.com/hariprasanths/synchly",
"repository": {
"type": "git",
"url": "https://github.com/hariprasanths/synchly.git"
},
"author": {
"name": "Hariprasanth S",
"email": "[email protected]",
"url": "https://hariprasanths.github.io"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hariprasanths/synchly/issues"
},
"main": "src/backup.js",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"postuninstall": "node scripts/postuninstall.js",
"fmt": "prettier --print-width 120 --no-bracket-spacing --single-quote --tab-width 4 --write scripts src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"fmt"
],
"bin": {
"synchly": "bin/synchly"
},
"engines": {
"node": ">=8"
},
"files": [
"/bin",
"/scripts",
"/src"
],
"preferGlobal": true,
"keywords": [
"cli",
"automatic",
"backup",
"database",
"sync",
"synchronise",
"recurring",
"scheduler",
"remote-sync",
"notifications",
"mongodb",
"mysql",
"postgresql",
"google-drive",
"sftp"
],
"dependencies": {
"arg": "^4.1.3",
"aws-sdk": "^2.877.0",
"cli-table3": "^0.6.0",
"conf": "^6.2.4",
"googleapis": "^49.0.0",
"inquirer": "^7.1.0",
"inquirer-datepicker-prompt": "^0.4.2",
"keytar": "^6.0.1",
"mongoose": "^5.9.11",
"mysql": "^2.18.1",
"node-cron": "^2.0.3",
"nodemailer": "^6.5.0",
"omelette": "^0.4.12",
"ora": "^4.0.4",
"pg": "^8.5.1",
"ssh2-sftp-client": "^5.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"prettier": "^2.0.5"
}
}