forked from christkv/js-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·23 lines (22 loc) · 1003 Bytes
/
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
{ "name" : "bson"
, "description" : "A bson parser for node.js and the browser"
, "keywords" : ["mongodb", "bson", "parser"]
, "version" : "0.0.4"
, "author" : "Christian Amor Kvalheim <[email protected]>"
, "contributors" : []
, "repository" : { "type" : "git"
, "url" : "[email protected]:christkv/bson.git" }
, "bugs" : { "mail" : "[email protected]"
, "url" : "https://github.com/christkv/bson/issues" }
, "devDependencies": {
"nodeunit": "0.7.3"
, "gleak": "0.2.3"
}
, "config": { "native" : false }
, "main": "./lib/bson/index"
, "directories" : { "lib" : "./lib/bson" }
, "engines" : { "node" : ">=0.4.0" }
, "scripts": { "install" : "node install.js", "test" : "make test" }
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
}