forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added key
main
to package.json
. Prettified package.json
. Added …
…entry for `.swp` files to `.gitignore`.
- Loading branch information
1 parent
128850c
commit 3acd538
Showing
2 changed files
with
26 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.DS_Store | ||
.DS_Store | ||
*.swp |
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,30 +1,25 @@ | ||
{ "name" : "mongodb" | ||
, "description" : "A node.js driver for MongoDB" | ||
, "version" : "0.7.8" | ||
, "author" : "Christian Amor Kvalheim <christkv@gmail.com>" | ||
, "contributors" : | ||
[ "Nathan White <nw@nwhite.net>", | ||
"Adam Wiggins <adam@heroku.com>", | ||
"Ian Millington <idmillington@googlemail.com>", | ||
"Aaron Heckmann <aaron.heckmann+github@gmail.com>", | ||
"Ciaran Jessup <ciaranj@gmail.com>", | ||
"Christoph Pojer", | ||
"Erik Abele", | ||
"Henrik Johansson <dahankzter@gmail.com>" ] | ||
, "repository" : | ||
{ "type" : "git" | ||
, "url" : "http://github.com/christkv/node-mongodb-native.git" | ||
} | ||
, "bugs" : | ||
{ "mail" : "node-mongodb-native@googlegroups.com" | ||
, "web" : "http://github.com/christkv/node-mongodb-native/issues" | ||
} | ||
, "os" : [ "linux", "darwin", "freebsd" ] | ||
, "directories" : { "lib" : "./lib/" } | ||
, "engines" : { "node" : ">=0.1.97" } | ||
, "licenses" : | ||
[ { "type" : "Apache License, Version 2.0" | ||
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
] | ||
{ "name" : "mongodb" | ||
, "description" : "A node.js driver for MongoDB" | ||
, "version" : "0.7.8" | ||
, "author" : "Christian Amor Kvalheim <christkv@gmail.com>" | ||
, "contributors" : [ "Nathan White <nw@nwhite.net>", | ||
"Adam Wiggins <adam@heroku.com>", | ||
"Ian Millington <idmillington@googlemail.com>", | ||
"Aaron Heckmann <aaron.heckmann+github@gmail.com>", | ||
"Ciaran Jessup <ciaranj@gmail.com>", | ||
"Christoph Pojer", | ||
"Erik Abele", | ||
"Henrik Johansson <dahankzter@gmail.com>" ] | ||
, "repository" : { "type" : "git" | ||
, "url" : "http://github.com/christkv/node-mongodb-native.git" } | ||
, "bugs" : { "mail" : "node-mongodb-native@googlegroups.com" | ||
, "web" : "http://github.com/christkv/node-mongodb-native/issues" } | ||
, "os" : [ "linux" | ||
, "darwin" | ||
, "freebsd" ] | ||
, "main": "./lib/mongodb/index" | ||
, "directories" : { "lib" : "./lib/" } | ||
, "engines" : { "node" : ">=0.1.97" } | ||
, "licenses" : [ { "type" : "Apache License, Version 2.0" | ||
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ] | ||
} |