Skip to content

Commit

Permalink
Attempt to fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christkv committed Feb 21, 2013
1 parent f91644e commit 9b1125d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{ "name" : "bson"
, "description" : "A bson parser for node.js and the browser"
, "keywords" : ["mongodb", "bson", "parser"]
, "version" : "0.1.7"
, "version" : "0.1.8"
, "author" : "Christian Amor Kvalheim <christkv@gmail.com>"
, "contributors" : []

Expand All @@ -18,7 +18,10 @@
, "main": "./lib/bson/index"
, "directories" : { "lib" : "./lib/bson" }
, "engines" : { "node" : ">=0.6.0" }
, "scripts": { "install" : "node install.js || (exit 0)", "test" : "nodeunit ./test/node && TEST_NATIVE=TRUE nodeunit ./test/node" }
, "scripts": {
"install" : "(node-gyp rebuild 2> builderror.log) || (exit 0)",
"test" : "nodeunit ./test/node && TEST_NATIVE=TRUE nodeunit ./test/node"
}
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
}

0 comments on commit 9b1125d

Please sign in to comment.