-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1017 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
{
"name": "couchdb-dump",
"version": "2.2.1",
"description": "Tools to dump, modify, and load documents in CouchDB from the command line. (Same basic concept as mysqldump, but much more and for CouchDB)",
"author": "Raffi Minassian (https://twitter.com/RaffiMinassian)",
"license": "Apache-2.0",
"engines": {
"node": ">=4.2.2"
},
"bin": {
"cdbdump": "./bin/cdbdump",
"cdbload": "./bin/cdbload",
"cdbmorph": "./bin/cdbmorph"
},
"repository": {
"type": "git",
"url": "https://github.com/raffi-minassian/couchdb-dump.git"
},
"main": "./lib/couchdbdump.js",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1"
},
"keywords": [
"couchdb",
"backup",
"database",
"dump",
"mysqldump"
],
"dependencies": {
"async": "^2.6.0",
"jsonparse": "1.x.x",
"minimist": "1.x.x",
"mkdirp": "^0.5.1",
"request": "2.x.x",
"request-promise": "^4.2.2",
"request-promise-native": "^1.0.5",
"through2": "2.x.x"
}
}