forked from danpaz/bodybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 869 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
{
"name": "bodybuilder",
"version": "1.1.0",
"description": "An elasticsearch query body builder.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"check": "npm run lint && npm test",
"lint": "eslint src test",
"test": "mocha --recursive --compilers js:babel/register test",
"watch:build": "babel src --watch --out-dir lib"
},
"author": "Daniel Paz-Soldan <daniel.pazsoldan@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel": "5.8.21",
"chai": "3.2.0",
"eslint": "1.10.2",
"mocha": "2.2.5"
},
"dependencies": {
"lodash": "3.10.1"
},
"repository": {
"type": "git",
"url": "http://github.com/danpaz/bodybuilder"
},
"keywords": [
"elasticsearch",
"bodybuilder",
"querying",
"queries",
"query",
"elastic",
"search",
"dsl"
]
}