-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.93 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
68
69
70
71
72
73
74
{
"name": "elastic-particles",
"version": "6.0.3",
"description": "Building blocks for Elastic queries, filters, and aggregations which can be re-used, combed, and nested.",
"author": {
"name": "Thomas Beutler",
"email": "[email protected]",
"url": "https://github.com/tcbeutler"
},
"contributors": [
{
"name": "Influence Health",
"url": "https://github.com/medseek-engineering"
},
{
"name": "Nathan Stott",
"email": "[email protected]",
"url": "https://github.com/nrstott"
},
{
"name": "Nathan Cooke",
"email": "[email protected]",
"url": "https://github.com/3choBoomer"
},
{
"name": "Dylan Hein",
"email": "[email protected]",
"url": "https://github.com/dylanhein"
},
{
"name": "Dane Allen",
"url": "https://github.com/danecallen"
}
],
"repository": {
"type": "git",
"url": "https://github.com/3choboomer/elastic-particles.git"
},
"main": "lib/particles.js",
"files": [
"lib"
],
"dependencies": {
"lodash": "~4.6.1"
},
"devDependencies": {
"mocha": "~2.2.1",
"assert": "~1.3.0",
"jshint": "~2.6.3",
"jsdoc-to-markdown": "~1.3.3",
"jsdoc-simple-template": "0.0.1",
"sinon": "~1.10.3"
},
"keywords": [
"elastic",
"elasticsearch",
"es",
"query",
"filter",
"builder",
"aggregation",
"aggs",
"node"
],
"bugs": {
"url": "https://github.com/3choboomer/elastic-particles/issues"
},
"license": "BSD-2-Clause",
"scripts": {
"test": "mocha",
"lint": "jshint -c test/.jshintrc lib",
"docs": "jsdoc2md --global-index-format grouped ./lib/elasticQuery.js > elasticQuery.md && jsdoc2md --global-index-format grouped ./lib/aggregations/*.js > aggregations.md && jsdoc2md --global-index-format grouped ./lib/filters/*.js > filters.md && jsdoc2md --global-index-format grouped ./lib/queries/*.js > queries.md"
}
}