-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "elasticsearch-streamer",
"version": "1.2.0",
"description": "A programmatic and command-line utility for streaming docs from Elasticsearch indices and putting docs into indices in bulk.",
"main": "index.js",
"scripts": {
"lint": "eslint lib/* cmd/* index.js",
"test": "npm run lint && mocha"
},
"bin": {
"ess": "./index.js"
},
"author": "Chris Kirk",
"license": "ISC",
"dependencies": {
"elasticsearch": "^14.2.1",
"highland": "^2.11.1",
"lodash": "^4.17.5",
"yargs": "^11.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"mocha": "^5.0.1",
"sinon": "^4.4.2"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nymag/elasticsearch-streamer.git"
},
"keywords": [
"elasticsearch",
"elastic",
"search",
"migration",
"bulk",
"batch",
"stream",
"scroll",
"cli",
"command line",
"dump"
],
"bugs": {
"url": "https://github.com/nymag/elasticsearch-streamer/issues"
},
"homepage": "https://github.com/nymag/elasticsearch-streamer#readme"
}