forked from mongolab/hello-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (21 loc) · 811 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "hello-mongoose",
"version": "0.3.0",
"description": "MongoDB with Mongoose on Node.js example",
"main": "app.js",
"engines" : {
"node" : ">=4.1.1",
"npm" : ">=2.1.x"
},
"repository": "https://github.com/mongolab/hello-mongoose.git",
"authors": [ "Ben Wen", "Chris Chang" ],
"license": "MIT",
"dependencies": {
"mongoose": ">=4.1.11"
},
"changelog" : [{"0.0.0": "Initial release"},
{"0.1.0": "Update to Mongoose 3.5.7; new MongoClient semantics"},
{"0.2.0": "Update to Mongoose 3.8.15; updated Node engine to 0.10.31; updated npm engine to >=1.4"},
{"0.3.0": "Update to Mongoose >=4.1.11; updated Node engine to >=4.1.1; updated npm engine to >=2.1.x"}],
"homepage" : "http://hello-mongoose.herokuapp.com"
}