-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 788 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 788 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
33
34
{
"name": "mongo-join",
"description": "mongo-join provides document joins for MongoDB in Node.js. Based on the node-mongodb-native module.",
"author": "Chris Bumgardner <cbumgard@gmail.com>",
"version": "1.0.0",
"scripts": {
"test": "mocha"
},
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/cbumgard/node-mongo-join"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cbumgard/node-mongo-join/blob/master/LICENSE"
}
],
"dependencies": {
"mongodb": "1.2.x",
"async": "0.1.x",
"underscore": "1.4.x",
"semaphore": "1.0.x"
},
"devDependencies": {
"mocha": "1.7.x",
"should": "1.2.x"
},
"engines": {
"node": "0.8.x",
"npm": "1.1.x"
}
}