-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependencies, added app.json file
- Loading branch information
1 parent
a01e9aa
commit 20ec930
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
{ | ||
"name": "hello-mongoose", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "MongoDB with Mongoose on Node.js example", | ||
"main": "app.js", | ||
"engines" : { | ||
"node" : "0.8", | ||
"npm" : ">=1.1" | ||
"node" : "0.10.31", | ||
"npm" : ">=1.4" | ||
}, | ||
"repository": "https://github.com/mongolab/hello-mongoose.git", | ||
"author": "Ben Wen", | ||
"authors": [ "Ben Wen", "Chris Chang" ], | ||
"license": "MIT", | ||
"dependencies": { | ||
"mongoose": "3.5.7" | ||
"mongoose": "3.8.15" | ||
}, | ||
"changelog" : [{"0.0.0": "Initial release"}, | ||
{"0.1.0": "Update to Mongoose 3.5.7; new MongoClient semantics"}], | ||
{"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"], | ||
"homepage" : "http://hello-mongoose.herokuapp.com" | ||
} | ||
|