forked from elasticsearch-dump/elasticsearch-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.54 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
{
"author": "Evan Tahler <[email protected]>",
"name": "elasticdump",
"description": "import and export tools for elasticsearch",
"version": "6.17.2",
"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.3.5",
"async": "^2.0.1",
"aws-sdk": "^2.551.0",
"aws4": "^1.8.0",
"bytes": "^3.1.0",
"decimal.js": "^10.2.0",
"delay": "^4.3.0",
"ini": "^1.3.5",
"lodash": "^4.17.15",
"lossless-json": "^1.0.3",
"optimist": "latest",
"p-queue": "^6.2.0",
"pump": "^3.0.0",
"request": "2.x.x",
"requestretry": "^4.0.2",
"s3-stream-upload": "2.0.2",
"s3urls": "^1.5.2",
"socks5-http-client": "^1.0.4",
"socks5-https-client": "^1.2.1"
},
"devDependencies": {
"jsonpath": "1.0.2",
"mocha": "latest",
"should": "latest",
"standard": "^14.3.1"
},
"standard": {
"globals": [
"describe",
"it",
"describe",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"bin": {
"elasticdump": "./bin/elasticdump",
"multielasticdump": "./bin/multielasticdump"
},
"scripts": {
"pretest": "standard",
"test": "mocha"
}
}