-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
33 lines (33 loc) · 831 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
{
"name": "mongoose-populate-example",
"version": "1.0.0",
"description": "Shows the usage of mongoose Schema referencing",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/alexpchin/mongoose-populate-example.git"
},
"keywords": [
"mongoose",
"schema",
"reference"
],
"author": "Alex CHIN",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexpchin/mongoose-populate-example/issues"
},
"homepage": "https://github.com/alexpchin/mongoose-populate-example",
"dependencies": {
"body-parser": "^1.13.3",
"ejs": "^2.3.3",
"express": "^4.13.3",
"express-ejs-layouts": "^1.1.0",
"mongoose": "^4.1.3",
"morgan": "^1.6.1",
"path": "^0.11.14"
}
}