-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "elasticsearch-csv",
"version": "0.0.3",
"description": "A simple Elasticsearch CSV importer",
"dependencies": {
"bluebird": "3.4.1",
"elasticsearch": "11.0.1",
"fast-csv": "2.0.0",
"lodash": "4.13.1",
"uuid": "2.0.2"
},
"devDependencies": {
"coveralls": "2.11.9",
"david": "7.0.2",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-mocha-istanbul": "5.0.1",
"grunt-mocha-test": "0.12.7",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"mocha-junit-reporter": "1.11.1",
"should": "9.0.2",
"sinon": "1.17.4"
},
"main": "index.js",
"scripts": {
"test": "grunt",
"posttest": "david || true"
},
"repository": {
"type": "git",
"url": "https://github.com/robertstettner/elasticsearch-csv.git"
},
"keywords": [
"csv",
"elasticsearch",
"elastic",
"import",
"importer",
"csv import",
"CSV"
],
"engines": {
"node": ">=0.10"
},
"author": "Robert Stettner <robert.stettner@gmail.com> (https://github.com/robertstettner)",
"contributors": [
"Raúl Requero <rareq1987@gmail.com> (https://github.com/rrequero)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/robertstettner/elasticsearch-csv/issues"
},
"homepage": "https://github.com/robertstettner/elasticsearch-csv"
}