-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "elasticsearch-indexer",
"version": "0.0.0",
"description": "An advanced elasticsearch bulk indexer",
"main": "index.js",
"scripts": {
"test": "node test/unit/run.js | tap-spec",
"integration": "node test/integration/run.js | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/elasticsearch-indexer"
},
"keywords": [
"elasticsearch",
"client",
"stream",
"bulk"
],
"author": "mapzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/elasticsearch-indexer/issues"
},
"homepage": "https://github.com/pelias/elasticsearch-indexer",
"devDependencies": {
"async": "^0.9.0",
"elasticsearch": "^4.0.2",
"elastictest": "0.0.0",
"precommit-hook": "^1.0.7",
"randomstring": "^1.0.5",
"tap-spec": "^0.2.0",
"tape": "^2.13.4"
},
"dependencies": {
"check-types": "^3.1.1",
"commander": "^2.8.1",
"split": "^0.3.3",
"through2": "^0.6.1"
}
}