forked from kysely/mongodb-atlas-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 991 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
{
"name": "mongodb-cli",
"version": "1.0.0",
"description": "The human way to mongodump and mongorestore your MongoDB Atlas cluster",
"main": "lib/index.js",
"scripts": {
"prepare": "tsc",
"test": "mocha -r ts-node/register test/**/*.spec.ts --reporter mochawesome --reporter-options reportDir=report --exit"
},
"bin": {
"mongodb-cli": "lib/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lukebellamy053/mongodb-cli"
},
"keywords": [
"mongodb",
"atlas",
"mongo",
"mongodump",
"mongorestore"
],
"author": "Luke Bellamy",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukebellamy053/mongodb-cli/issues"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"command-line-args": "^5.1.1"
}
}