forked from elasticsearch-dump/elasticsearch-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.27 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
{
"author": "Evan Tahler <evantahler@gmail.com>",
"name": "elasticdump",
"description": "import and export tools for elasticsearch",
"version": "3.3.18",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/taskrabbit/elasticsearch-dump.git"
},
"main": "elasticdump.js",
"keywords": [
"elasticsearch",
"dump",
"elasticdump",
"import",
"export",
"transfer",
"migrate",
"migration",
"elasitic",
"cluster",
"elastic-dump",
"elastic dump"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"JSONStream": "^1.2.0",
"async": "^2.0.1",
"aws-sdk": "^2.36.0",
"aws4": "^1.4.1",
"decimal.js": "^10.0.0",
"ini": "^1.3.4",
"lodash": "^4.17.5",
"lossless-json": "^1.0.2",
"optimist": "latest",
"request": "2.x.x"
},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"standard": "^10.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"describe",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"bin": {
"elasticdump": "./bin/elasticdump",
"multielasticdump": "./bin/multielasticdump"
},
"scripts": {
"pretest": "standard",
"test": "mocha"
}
}