-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 915 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
{
"name": "mongoose-reverse-populate",
"version": "1.1.0",
"description": "This module allows you to 'populate' a mongoose model where the relationship ids are stored on another mongoose model that is related to this model",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec --recursive"
},
"repository": {
"type": "git",
"url": "git://github.com/Prismatik/mongoose-reverse-populate.git"
},
"keywords": [
"mongo",
"mongoose",
"populate"
],
"author": "Simon Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Prismatik/mongoose-reverse-populate/issues"
},
"homepage": "https://github.com/Prismatik/mongoose-reverse-populate",
"devDependencies": {
"async": "^0.9.0",
"mongoose": "^4.0.6",
"mocha": "^2.2.1"
},
"dependencies": {
"lodash": "^3.10.0"
},
"engines": {
"node": ">= 0.10.0"
}
}