forked from elasticsearch-dump/elasticsearch-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.22 KB
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
{
"author": "Evan Tahler <evantahler@gmail.com>",
"name": "elasticdump-next",
"description": "import and export tools for elasticsearch",
"version": "4.1.5",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/node-packages/elasticsearch-dump.git"
},
"main": "elasticdump.js",
"keywords": [
"elasticsearch",
"dump",
"elasticdump",
"import",
"export",
"transfer",
"migrate",
"migration",
"elasitic",
"cluster",
"elastic-dump",
"elastic dump"
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"JSONStream": "^1.3.2",
"async": "^2.6.0",
"aws-sdk": "^2.175.0",
"aws4": "^1.6.0",
"ini": "^1.3.5",
"lodash": "4.17.4",
"optimist": "latest",
"request": "2.x.x"
},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"standard": "^10.0.3"
},
"standard": {
"globals": [
"describe",
"it",
"describe",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"bin": {
"elasticdump": "./bin/elasticdump",
"multielasticdump": "./bin/multielasticdump"
},
"scripts": {
"pretest": "standard",
"test": "mocha"
}
}