forked from elasticsearch-dump/elasticsearch-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.63 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
{
"author": "Evan Tahler <[email protected]>",
"name": "elasticdump",
"description": "import and export tools for elasticsearch",
"version": "6.87.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/elasticsearch-dump/elasticsearch-dump.git"
},
"main": "elasticdump.js",
"keywords": [
"elasticsearch",
"dump",
"elasticdump",
"import",
"export",
"transfer",
"migrate",
"migration",
"elasitic",
"cluster",
"elastic-dump",
"elastic dump"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"JSONStream": "^1.3.5",
"async": "^2.6.4",
"aws-sdk": "2.1122.0",
"aws4": "^1.11.0",
"big.js": "^5.2.2",
"bytes": "^3.1.2",
"delay": "^5.0.0",
"extends-classes": "1.0.5",
"fast-csv": "4.3.6",
"http-status": "^1.5.1",
"ini": "^2.0.0",
"lodash": "^4.17.21",
"lossless-json": "^1.0.5",
"minimist": "^1.2.6",
"p-queue": "^6.6.2",
"request": "2.88.2",
"requestretry": "^7.1.0",
"s3-stream-upload": "2.0.2",
"s3urls": "^1.5.2",
"semver": "5.7.1",
"socks5-http-client": "^1.0.4",
"socks5-https-client": "^1.2.1"
},
"devDependencies": {
"jsonpath": "^1.1.1",
"mocha": "^6.2.2",
"should": "^13.2.3",
"standard": "^17.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"describe",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"bin": {
"elasticdump": "bin/elasticdump",
"multielasticdump": "bin/multielasticdump"
},
"scripts": {
"pretest": "standard",
"test": "mocha"
}
}