forked from fr1sk/mongo-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1021 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@conpago/mongo-clone",
"version": "1.4.0",
"description": "CLI tool for cloning mongoDB database from one server to another",
"main": "src/index.js",
"scripts": {
"test": "mongo-clone -s OLDMONGOURI -t NEWMONGOURI"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fr1sk/mongo-clone.git"
},
"keywords": [
"mongo",
"copy",
"database",
"clone",
"DB",
"mongoDB",
"migrate"
],
"author": "Marko Jovanovic - fr1sk",
"contributors": [
{
"name": "Raschid J.F. Rafaelly",
"url": "https://github.com/RaschidJFR/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fr1sk/mongo-clone/issues"
},
"homepage": "https://github.com/fr1sk/mongo-clone#readme",
"bin": {
"mongo-clone": "src/index.js"
},
"dependencies": {
"bluebird": "^3.7.2",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"mongodb": "^5.6.0",
"single-line-log": "^1.1.2",
"sprintf-js": "^1.1.2"
}
}