forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·87 lines (86 loc) · 3.22 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{ "name" : "mongodb"
, "description" : "A node.js driver for MongoDB"
, "keywords" : ["mongodb", "mongo", "driver", "db"]
, "version" : "1.2.13"
, "author" : "Christian Amor Kvalheim <[email protected]>"
, "contributors" : [ "Aaron Heckmann",
"Christoph Pojer",
"Pau Ramon Revilla",
"Nathan White",
"Emmerman",
"Seth LaForge",
"Boris Filipov",
"Stefan Schärmeli",
"Tedde Lundgren",
"renctan",
"Sergey Ukustov",
"Ciaran Jessup",
"kuno",
"srimonti",
"Erik Abele",
"Pratik Daga",
"Slobodan Utvic",
"Kristina Chodorow",
"Yonathan Randolph",
"Brian Noguchi",
"Sam Epstein",
"James Harrison Fisher",
"Vladimir Dronnikov",
"Ben Hockey",
"Henrik Johansson",
"Simon Weare",
"Alex Gorbatchev",
"Shimon Doodkin",
"Kyle Mueller",
"Eran Hammer-Lahav",
"Marcin Ciszak",
"François de Metz",
"Vinay Pulim",
"nstielau",
"Adam Wiggins",
"entrinzikyl",
"Jeremy Selier",
"Ian Millington",
"Public Keating",
"andrewjstone",
"Christopher Stott",
"Corey Jewett",
"brettkiefer",
"Rob Holland",
"Senmiao Liu",
"heroic",
"gitfy",
"Andrew Stone",
"John Le Drew",
"Lucasfilm Singapore",
"Roman Shtylman",
"Matt Self"]
, "repository" : { "type" : "git"
, "url" : "http://github.com/mongodb/node-mongodb-native.git" }
, "bugs" : { "mail" : "[email protected]"
, "url" : "http://github.com/mongodb/node-mongodb-native/issues" }
, "dependencies" : {
"bson": "0.1.8"
}
, "devDependencies": {
"dox": "0.2.0"
, "uglify-js": "1.2.5"
, "ejs": "0.6.1"
, "nodeunit": "0.7.4"
, "github3": ">=0.3.0"
, "markdown": "0.3.1"
, "gleak": "0.2.3"
, "step": "0.0.5"
, "async": "0.1.22"
, "integra": "0.0.1"
, "optimist": "latest"
}
, "config": { "native" : false }
, "main": "./lib/mongodb/index"
, "homepage": "http://mongodb.github.com/node-mongodb-native/"
, "directories" : { "lib" : "./lib/mongodb" }
, "engines" : { "node" : ">=0.6.19" }
, "scripts": { "test" : "make test_pure" }
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
}