-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 938 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 938 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
39
40
41
{
"name": "@think201/database-backup",
"version": "1.0.7",
"description": "A utility that can back up PostgreSQL or MongoDB databases.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "node testBackup.js"
},
"keywords": [
"database",
"backup",
"postgresql",
"mongodb",
"aws",
"s3",
"automation"
],
"author": "Kunal Bandekar",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^5.8.5",
"aws-sdk": "^2.1030.0",
"commander": "^8.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"mongodb": "^4.1.0",
"pg": "^8.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/think201/database-backup"
},
"bugs": {
"url": "https://github.com/think201/database-backup/issues"
},
"homepage": "https://github.com/think201/database-backup#readme",
"publishConfig": {
"access": "public"
}
}