forked from punkave/mongo-dump-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "mongo-dump-stream",
"version": "0.3.3",
"description": "Dump and restore an entire MongoDB database via a single stream, without creating a folder of files",
"main": "index.js",
"scripts": {
"test": "mocha tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/punkave/mongo-dump-stream"
},
"keywords": [
"mongodb",
"mongodump",
"mongorestore",
"mongo",
"stream",
"mongo",
"dump",
"stream"
],
"author": "P'unk Avenue LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/punkave/mongo-dump-stream/issues"
},
"homepage": "https://github.com/punkave/mongo-dump-stream",
"dependencies": {
"async": "^0.9.0",
"bson": "^0.2.19",
"buffertools": "^2.1.2",
"lodash": "^3.3.1",
"mongodb": "^1.4.32",
"yargs": "^3.4.4",
"read-async-bson": "^0.1.0"
},
"devDependencies": {
"mocha": "2.1.x"
},
"bin": {
"mongo-dump-stream": "./bin/mongo-dump-stream",
"mongo-load-stream": "./bin/mongo-load-stream"
}
}