forked from mongodb/js-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (30 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ "name" : "bson"
, "description" : "A bson parser for node.js and the browser"
, "keywords" : ["mongodb", "bson", "parser"]
, "version" : "0.2.6"
, "author" : "Christian Amor Kvalheim <[email protected]>"
, "contributors" : []
, "repository" : { "type" : "git"
, "url" : "git://github.com/mongodb/js-bson.git" }
, "bugs" : { "mail" : "[email protected]"
, "url" : "https://github.com/mongodb/js-bson/issues" }
, "dependencies": {
"nan": "~0.8.0"
}
, "devDependencies": {
"nodeunit": "0.8.2"
, "gleak": "0.2.3"
, "one": "2.X.X"
}
, "config": { "native" : false }
, "main": "./lib/bson/index"
, "directories" : { "lib" : "./lib/bson" }
, "engines" : { "node" : ">=0.6.19" }
, "scripts": {
"install" : "(node-gyp rebuild 2> builderror.log) || (exit 0)",
"test" : "nodeunit ./test/node && TEST_NATIVE=TRUE nodeunit ./test/node"
}
, "browser": "lib/bson/bson.js"
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
}