forked from marsanla/sails-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 963 Bytes
/
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
{
"name": "sails-elastic",
"version": "0.12.0",
"description": "Elasticsearch adapter for Sails / Waterline",
"main": "./lib/adapter.js",
"scripts": {
"test": "node test/integration/runner -R spec -b"
},
"keywords": [
"elasticsearch",
"adapter",
"sails",
"waterline",
"sails.js",
"plugin"
],
"author": "Mohamed Elawadi ([email protected])",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/mie00/sails-elasticsearch.git"
},
"dependencies": {
"async": "~0.8.0",
"bluebird": "^3.0.6",
"elasticsearch": "^10.0.1",
"lodash": "~2.4.1",
"waterline-errors": "~0.10.0"
},
"devDependencies": {
"waterline-adapter-tests": "~0.10.0",
"mocha": "*",
"captains-log": "~0.11.0"
},
"waterlineAdapter": {
"type": "elasticsearch",
"interfaces": [
"semantic"
],
"waterlineVersion": "~0.10.0"
}
}