This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
99 lines (99 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "elasticsearch-exporter",
"description": "A utility for exporting data from one Elasticsearch cluster to other databases",
"homepage": "http://github.com/mallocator/Elasticsearch-Exporter",
"bugs": {
"url": "http://github.com/mallocator/Elasticsearch-Exporter/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"version": "2.0.1",
"os": [
"darwin",
"linux"
],
"author": "Ravi Gairola <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/mallocator/Elasticsearch-Exporter.git"
},
"preferGlobal": true,
"files": [
"drivers/bigquery.driver.js",
"drivers/csv.driver.js",
"drivers/datastore.driver.js",
"drivers/driver.interface.js",
"drivers/elasticsearch.driver.js",
"drivers/elasticsearch-query.driver.js",
"drivers/file.driver.js",
"drivers/hbase.driver.js",
"drivers/mongodb.driver.js",
"drivers/mysql.driver.js",
"drivers/noop.driver.js",
"tools/ex.sh",
"args.js",
"cluster.js",
"DEVELOPERS.md",
"drivers.js",
"exporter.js",
"log.js",
"mapper.js",
"options.js",
"worker.js",
"README.md",
"LICENSE"
],
"main": "./exporter.js",
"bin": {
"eexport": "tools/ex.sh"
},
"keywords": [
"export",
"import",
"elastichsearch",
"data pump",
"file",
"transfer",
"tools",
"cli",
"command line",
"database",
"backup",
"restore",
"archive",
"synchronize",
"dump",
"replicate",
"mongodb",
"mysql",
"csv",
"hbase",
"datastore",
"bigquery"
],
"dependencies": {
"async": "^2",
"colors": "^1",
"elasticsearch": "^12",
"graceful-fs": "^4",
"json-bigint": "^0.2",
"mongodb": "^2",
"mysql": "^2"
},
"devDependencies": {
"chai": "^3",
"coveralls": "^2",
"gently": "^0.10",
"istanbul": "^0.4",
"mocha": "^3",
"mocha-lcov-reporter": "^1",
"nock": "^9"
},
"engine": {
"node": ">=6.0"
},
"scripts": {
"test": "istanbul cover _mocha -- --recursive",
"test-travis": "istanbul cover _mocha --report lcovonly -- -R spec --recursive"
}
}