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
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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": "bodybuilder",
"version": "1.12.1",
"description": "An elasticsearch query body builder.",
"main": "lib/index.js",
"scripts": {
"build:babel": "babel src --out-dir lib",
"build:umd": "webpack lib browser/bodybuilder.min.js",
"build:docs": "documentation -o docs/API.md -f md src/index.js --shallow",
"build": "npm run build:babel && npm run build:umd && npm run build:docs",
"lint": "eslint src test",
"test": "mocha --require babel-core/register --recursive test",
"check": "npm run lint && npm test",
"preversion": "npm run check && npm run build"
},
"author": "Daniel Paz-Soldan <daniel.pazsoldan@gmail.com>",
"contributors": [
"Nicolás Fantone",
"Nauval Atmaja",
"Ferron Hanse"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "6.5.1",
"babel-core": "6.5.1",
"babel-plugin-lodash": "2.0.1",
"babel-preset-es2015": "6.5.0",
"chai": "3.2.0",
"documentation": "3.0.4",
"eslint": "1.10.2",
"mocha": "2.4.5",
"webpack": "1.12.13"
},
"dependencies": {
"lodash": "4.9.0"
},
"repository": {
"type": "git",
"url": "http://github.com/danpaz/bodybuilder"
},
"keywords": [
"elasticsearch",
"bodybuilder",
"querying",
"queries",
"query",
"elastic",
"search",
"dsl"
]
}