Skip to content

Commit

Permalink
Added key main to package.json. Prettified package.json. Added …
Browse files Browse the repository at this point in the history
…entry for `.swp` files to `.gitignore`.
  • Loading branch information
jameshfisher authored and christkv committed Jul 4, 2010
1 parent 128850c commit 3acd538
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 30 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1 +1,2 @@
.DS_Store
.DS_Store
*.swp
53 changes: 24 additions & 29 deletions package.json
@@ -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" } ]
}

0 comments on commit 3acd538

Please sign in to comment.