forked from danpaz/bodybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "bodybuilder",
"version": "2.1.0",
"description": "An elasticsearch query body builder.",
"main": "lib/index.js",
"files": [
"browser/",
"lib/",
"src/",
"repl.js"
],
"scripts": {
"build:babel": "babel src --out-dir lib",
"build:umd": "webpack lib browser/bodybuilder.min.js",
"build:docs": "documentation build src/index.js -o docs -f html --name bodybuilder",
"build": "npm run build:babel && npm run build:umd && npm run build:docs",
"lint": "eslint src test",
"style": "npm run lint",
"test": "babel-tape-runner test/* | tap-spec",
"watch:test": "tape-watch test/* -r babel-register -p tap-spec",
"check": "npm run lint && npm test",
"preversion": "npm run check && npm run build && npm run git-commit",
"postversion": "npm run git-push",
"git-commit": "git add docs browser && git commit -m \"Commit built files\"",
"git-push": "git push origin master && git push origin v$npm_package_version"
},
"author": "Daniel Paz-Soldan <[email protected]>",
"contributors": [
"Nicolás Fantone",
"Nauval Atmaja",
"Ferron Hanse",
"Dave Cranwell",
"Anton Samper Rivaya"
],
"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",
"babel-register": "6.18.0",
"babel-tape-runner": "2.0.1",
"documentation": "4.0.0-beta10",
"eslint": "1.10.2",
"tap-spec": "4.1.1",
"tape": "4.6.2",
"tape-watch": "2.2.4",
"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"
]
}