forked from nomagick/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 975 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
44
{
"author": "James R. Carr <james.r.carr@gmail.com> (http://blog.james-carr.org)",
"name": "mongoosastic",
"description": "A mongoose plugin that indexes models into elastic search",
"version": "3.1.0",
"tags": [
"mongodb",
"elasticsearch",
"elastic search",
"mongoose",
"full text search"
],
"repository": {
"type": "git",
"url": "git://github.com/mongoosastic/mongoosastic"
},
"main": "lib/mongoosastic.js",
"dependencies": {
"elasticsearch": "^8.2.0",
"lodash": "^3.10.1",
"nop": "^1.0.0"
},
"peerDependencies": {
"mongoose": "^4.x"
},
"devDependencies": {
"async": "^0.9.x",
"gulp": "^3.8.11",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.4",
"gulp-mocha": "^2.0.0",
"jscs": "^1.12.0",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.x",
"mongoose": "^4.x",
"should": "^5.2.x"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "gulp"
}
}