forked from skratchdot/elasticsearch-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "elasticsearch-tools",
"version": "5.0.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": {
"build": "npm-run-all readme format lint cover",
"cover": "npm run test -- --coverage",
"format": "prettier --write --single-quote ./**/*.js ./*.{js,md}",
"lint": "eslint .",
"readme": "./scripts/build-readme.js",
"test": "jest tests/unit/",
"test:integration": "jest tests/integration/"
},
"dependencies": {
"commander": "^2.9.0",
"elasticsearch": "^15.1.1",
"filesize": "^3.2.0",
"line-by-line": "^0.1.4",
"prettier": "^1.10.2",
"progress": "^2.0.0"
},
"devDependencies": {
"async": "^2.6.0",
"eslint": "^5.2.0",
"jest": "^25.0.0",
"npm-run-all": "^4.1.2"
},
"keywords": [
"elasticsearch",
"es",
"cli",
"import",
"export",
"dump",
"restore",
"mappings",
"data",
"schema"
]
}