forked from yagobski/loopback-connector-elastic-search
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
90 lines (90 loc) · 2.13 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "loopback-connector-esv6",
"version": "2.1.1",
"description": "LoopBack Connector for Elasticsearch 6.x and 7.x",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "mocha --recursive",
"testv6": "mocha test/es-v6/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"keywords": [
"loopback",
"elastic",
"elasticsearch",
"elasticsearchv6",
"es",
"esv6",
"esv7",
"loopback-connector",
"connector"
],
"author": "bharathkontham",
"contributors": [
{
"name": "Pulkit Singhal",
"email": "[email protected]"
},
{
"name": "yagobski"
},
{
"name": "Aquid Shahwar",
"email": "[email protected]"
},
{
"name": "wolfgang-s"
},
{
"name": "Bharath Reddy Kontham",
"email": "[email protected]"
}
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/strongloop-community/loopback-connector-elastic-search.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop-community/loopback-connector-elastic-search/issues"
},
"homepage": "https://github.com/strongloop-community/loopback-connector-elastic-search",
"dependencies": {
"async": "3.1.0",
"debug": "3.2.6",
"elasticsearch": "15.2.0",
"es6": "npm:@elastic/elasticsearch@6",
"es7": "npm:@elastic/elasticsearch@7",
"lodash": "4.17.11",
"loopback-connector": "4.9.0",
"ramda": "^0.26.1"
},
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-mocha-test": "^0.12.1",
"loopback-datasource-juggler": "^2.55.3",
"should": "^5.2.0",
"chai": "4.1.2",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-loopback": "8.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.15.0",
"husky": "1.0.1",
"mocha": "5.2.0",
"sonarqube-scanner": "2.5.0",
"supertest": "3.0.0"
}
}