forked from skratchdot/elasticsearch-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "elasticsearch-tools",
"version": "2.2.0",
"description": "Elasticsearch command line tools for importing, exporting, etc",
"homepage": "http://github.com/skratchdot/elasticsearch-tools",
"preferGlobal": true,
"bin": {
"es-export-aliases": "./lib/es-export-aliases.js",
"es-export-bulk": "./lib/es-export-bulk.js",
"es-export-mappings": "./lib/es-export-mappings.js",
"es-export-settings": "./lib/es-export-settings.js",
"es-import-aliases": "./lib/es-import-aliases.js",
"es-import-bulk": "./lib/es-import-bulk.js",
"es-import-mappings": "./lib/es-import-mappings.js",
"es-import-settings": "./lib/es-import-settings.js"
},
"author": "skratchdot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/skratchdot/elasticsearch-tools.git"
},
"bugs": {
"url": "https://github.com/skratchdot/elasticsearch-tools/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"async": "^0.9.0",
"commander": "^2.3.0",
"elasticsearch": "^2.4.0",
"filesize": "^2.0.3",
"line-by-line": "^0.1.1",
"progress": "^1.1.8"
},
"keywords": [
"elasticsearch",
"es",
"cli",
"import",
"export",
"dump",
"restore",
"mappings",
"data",
"schema"
],
"devDependencies": {
"async": "^0.9.0",
"gulp": "^3.8.7",
"gulp-jshint": "^1.8.4"
}
}