forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 722 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 722 Bytes
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
{
"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": "0.6.0",
"tags":["mongodb", "elastic search", "mongoose", "full text search"],
"repository": {
"type": "git",
"url": "git://github.com/jamescarr/mongoosastic"
},
"main":"lib/mongoosastic.js",
"dependencies": {
"elastical":"0.0.12"
},
"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"
}
}