-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "elasticsearch-odm",
"version": "1.1.0",
"description": "Like Mongoose but for Elasticsearch. Define models, preform CRUD operations, and build advanced search queries.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --check-leaks ./tests/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zackiles/elasticsearch-odm.git"
},
"keywords": [
"elasticsearch",
"elastic",
"odm",
"orm",
"database",
"model",
"query",
"search",
"driver",
"client",
"es",
"promise",
"bulk",
"mapping"
],
"author": "Zachary Iles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zackiles/elasticsearch-odm/issues"
},
"homepage": "https://github.com/zackiles/elasticsearch-odm#readme",
"dependencies": {
"bluebird": "~2.9.34",
"dot-object": "^1.1.0",
"elasticsearch": "~8.0.1",
"kareem": "^1.0.1",
"lodash": "~3.10.1",
"pluralize": "~1.1.6",
"winston": "~1.0.1"
},
"devDependencies": {
"benchmark": "^1.0.0",
"mocha": "^2.3.0",
"should": "^7.1.0"
}
}