forked from zackiles/elasticsearch-odm
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "elasticsearch-odm-2",
"version": "0.3.6",
"description": "Like Mongoose but for Elasticsearch 2.x. Define models, preform CRUD operations, and build advanced search queries.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --check-leaks ./tests/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloublou2014/elasticsearch-odm.git"
},
"keywords": [
"elasticsearch",
"elastic",
"odm",
"orm",
"database",
"model",
"query",
"search",
"driver",
"client",
"es",
"promise",
"bulk",
"mapping"
],
"author": "Zachary Iles <[email protected]>",
"contributors": [
"BlouBlou <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bloublou2014/elasticsearch-odm/issues"
},
"homepage": "https://github.com/bloublou2014/elasticsearch-odm#readme",
"dependencies": {
"bluebird": "^3.4.1",
"dot-object": "^1.1.0",
"elasticsearch": "^12.0.0",
"kareem": "^1.0.1",
"lodash": "^4.13.1",
"pluralize": "^3.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"benchmark": "^2.1.0",
"mocha": "^3.0.1",
"require-new": "^1.1.0",
"should": "^10.0.0"
}
}