forked from loopbackio/loopback-connector-elastic-search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "loopback-connector-es",
"version": "1.3.5",
"description": "Connect LoopBack to Elasticsearch engine",
"main": "index.js",
"scripts": {
"eslint": "eslint",
"pretest": "eslint **/*.js",
"test": "mocha"
},
"keywords": [
"loopback",
"elastic",
"elasticsearch",
"es",
"loopback-connector",
"connector"
],
"author": "Drakerian",
"contributors": [
{
"name": "Pulkit Singhal",
"email": "[email protected]"
},
{
"name": "yagobski"
},
{
"name": "Aquid Shahwar",
"email": "[email protected]"
}
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/strongloop-community/loopback-connector-elastic-search.git"
},
"license": {
"name": "MIT",
"url": "https://github.com/strongloop-community/loopback-connector-elastic-search/blob/master/LICENCE"
},
"bugs": {
"url": "https://github.com/strongloop-community/loopback-connector-elastic-search/issues"
},
"homepage": "https://github.com/strongloop-community/loopback-connector-elastic-search",
"dependencies": {
"async": "^0.9.0",
"bluebird": "^2.9.14",
"debug": "^2.1.3",
"elastic-deletebyquery": "1.0.7",
"elasticsearch": "^11.0.1",
"lodash": "^3.5.0",
"loopback-connector": "^1.1.1"
},
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"chai": "^2.1.2",
"eslint": "2.13.1",
"eslint-config-loopback": "4.0.0",
"grunt": "^0.4.5",
"grunt-mocha-test": "^0.12.1",
"loopback-datasource-juggler": "^2.21.0",
"mocha": "^1.21.4",
"should": "^5.2.0"
}
}