-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 951 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 951 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
42
43
44
45
46
47
48
49
50
{
"name": "mbs3",
"version": "0.3.1",
"description": "CLI tool to backup MongoDB database and upload to S3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mbs3": "dist/index.js"
},
"files": [
"dist",
"README.md",
".env.example"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "ts-node src/index.ts"
},
"keywords": [
"mongodb",
"backup",
"s3",
"mongodump",
"mongorestore",
"aws",
"cli",
"database",
"backup-tool"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dani-beltran/mbs3.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}