-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 KB
/
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
46
47
48
49
50
51
52
53
{
"name": "dbclone",
"version": "0.0.4",
"description": "Utility to move data between NoSQL databases.",
"keywords": [
"database",
"db",
"mongo",
"mongodb",
"clone",
"import",
"export",
"dump",
"restore",
"transfer",
"migrate"
],
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "nyc mocha"
},
"main": "index.js",
"bin": {
"dbclone": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vot/dbclone.git"
},
"author": "Vot Z <http://vot-z.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vot/dbclone/issues"
},
"homepage": "https://github.com/vot/dbclone",
"dependencies": {
"async": "^2.6.1",
"clarg": "0.0.4",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"inquirer": "^6.2.0",
"lodash": "^4.17.10",
"mongodb": "^3.0.10"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^5.2.0",
"mochawesome": "^3.1.1",
"nyc": "^13.1.0"
}
}