-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "mongoose-es",
"version": "2.0.0",
"description": "A small plugin for mongoose.js allows you to automatically index the data in the elastic (ElasticSearch)",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/ava --timeout=100000 tests/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/chetverikov/mongoose-es.git"
},
"keywords": [
"mongoose",
"mongoose.js",
"elastic",
"elasticsearch",
"elasticsearch.js",
"mongoose-es",
"index"
],
"author": "Maksim Chetverikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chetverikov/mongoose-es/issues"
},
"homepage": "https://github.com/chetverikov/mongoose-es",
"engines": {
"node": ">=6"
},
"peerDependencies": {
"mongoose": "^4.5.x"
},
"devDependencies": {
"ava": "^0.18.2",
"mongoose": "^4.5.x",
"should": "^8.0.1"
},
"dependencies": {
"elasticsearch": "^12.1.3",
"lodash.clonedeep": "^4.5.0",
"lodash.defaults": "^4.2.0",
"lodash.pairs": "^3.0.1"
}
}