-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 743 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 743 Bytes
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
{
"name": "esfix",
"version": "1.0.0",
"description": "Simple fixture loading for Elasticsearch on Node.js.",
"main": "src/index.js",
"bin": {
"esfix": "bin/index.js"
},
"scripts": {
"test": "ava test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/antonvs2/es-fixtures"
},
"keywords": [
"fixtures",
"Elasticsearch",
"bulk",
"index",
"mapping",
"CLI",
"Command line tool"
],
"author": "Antonio Valverde",
"license": "ISC",
"dependencies": {
"elasticsearch": "13.3.1",
"minimist": "1.2.0"
},
"devDependencies": {
"ava": "0.18.2",
"babel-eslint": "^8.0.1",
"eslint": "^4.7.2"
},
"engines": {
"node": ">=4.3.2"
}
}