forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 825 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
{
"author": "James R. Carr <[email protected]> (http://blog.james-carr.org)",
"name": "mongoosastic",
"description": "A mongoose plugin that indexes models into elastic search",
"version": "0.2.6",
"tags": [
"mongodb",
"elastic search",
"mongoose",
"full text search"
],
"repository": {
"type": "git",
"url": "git://github.com/jamescarr/mongoosastic"
},
"main": "lib/mongoosastic.js",
"dependencies": {
"async": "^0.9.0",
"elastical": "0.0.12",
"elasticsearch": "^2.1.4",
"lodash": "^2.4.1"
},
"peerDependencies": {
"mongoose": "3.8.x"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"async": "*",
"mongoose": "3.8.x"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha -R spec -t 20000 -b"
}
}