-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 824 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 824 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
31
32
{
"name":"mongo-watch",
"description":"A mongo watcher. This ties into the MongoDB replication oplog, and exposes all data modifications via an EventEmitter.",
"version":"0.2.8",
"homepage":"http://github.com/TorchlightSoftware/mongo-watch",
"repository":"git://github.com/TorchlightSoftware/mongo-watch.git",
"author":"Torchlight Software <info@torchlightsoftware.com> (http://torchlightsoftware.com)",
"main":"./index.js",
"dependencies":{
"coffee-script":">1.7.0",
"mongodb":"*",
"lodash":"*",
"async":"*"
},
"devDependencies":{
"mocha":"*",
"should":"*"
},
"engines":{
"node":">= 0.8.4"
},
"licenses":[
{
"type":"MIT",
"url":"http://github.com/torchlightsoftware/mongo-watch/raw/master/LICENSE"
}
],
"scripts": {
"test":"mocha"
}
}