-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.17 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
{
"name":"mongo-view",
"author":"Edward Hotchkiss <[email protected]",
"contributors":[
{ "name" : "Edward Hotchkiss", "github" : "http://github.com/edwardhotchkiss/" },
{ "name": "Max Presman", "github" : "https://github.com/MaxPresman/" },
{ "name": "Kevin Sakhuja", "github" : "https://github.com/kevbook/" }
],
"description":"{mongo.view} a lightweight node.js tool for managing mongodb databases",
"version":"0.5.0",
"repository":{
"type":"git",
"url":"git://github.com/edwardhotchkiss/mongodb-viewer.git"
},
"keywords":["mongodb","mongo","view","web","based","admin"],
"bin": { "mongoview":"./bin/mongo-view.js" },
"preferGlobal":"true",
"engines":{
"node":">= 0.6.0"
},
"dependencies":{
"mongodb":"1.0.2",
"express":"2.5.10"
},
"devDependencies":{
"vows":"0.6.2",
"request":"2.9.202",
"paige":"0.1.7"
},
"homepage": "http://edwardhotchkiss.github.com/mongo-view",
"bugs": {
"url": "https://github.com/edwardhotchkiss/mongo-view/issues"
},
"licenses":[{
"type":"MIT",
"url":"http://github.com/edwardhotchkiss/mongo-view/LICENSE"
}],
"scripts":{
"test":"vows test/*.test.js --spec"
}
}