-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
64
65
66
67
68
69
70
{
"name": "mongodbcopy",
"version": "1.1.0",
"description": "A lightweight, production-ready CLI and Node.js utility for MongoDB data migration, backup, and cloning. Features include progress bars, incremental backups, index copying, schema validation, JSON export/import, and optimized batch processing for large datasets.",
"type": "module",
"main": "src/api.js",
"bin": {
"mongodbcopy": "./src/cli/index.js"
},
"files": [
"src/**/*",
"README.md",
"LICENSE",
".env.example"
],
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mongodb",
"mongo",
"database",
"migration",
"backup",
"copy",
"clone",
"cli",
"data-transfer",
"mongodb-tools",
"mongodb-backup",
"mongodb-copy",
"mongodb-migration",
"json-export",
"batch-processing"
],
"scripts": {
"start": "node ./src/cli/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint src/**/*.js",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"prepublishOnly": "npm run format:check"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"inquirer": "^12.10.0",
"mongodb": "^6.20.0",
"ora": "^9.0.0"
},
"devDependencies": {
"eslint": "^9.39.0",
"glob": "^11.0.3",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.0"
},
"license": "MIT",
"author": "Dhiraj (https://github.com/iamdhiraj69)",
"repository": {
"type": "git",
"url": "git+https://github.com/iamdhiraj69/mongodbcopy.git"
},
"homepage": "https://github.com/iamdhiraj69/mongodbcopy#readme",
"bugs": {
"url": "https://github.com/iamdhiraj69/mongodbcopy/issues"
}
}