This repository has been archived by the owner on Sep 9, 2018. It is now read-only.
forked from ltonetwork/mongodb-rest
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
72 lines (72 loc) · 1.49 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
{
"name": "mongodb-rest",
"description": "REST API Server for MongoDB",
"version": "0.10.14",
"author": "Ashley Davis <[email protected]>",
"main": "server.js",
"contributors": [
{
"name": "Ashley Davis",
"email": "[email protected]"
},
{
"name": "Mike Vegeto",
"email": "[email protected]"
},
{
"name": "Ryan Carmichael",
"email": "[email protected]"
},
{
"name": "Tom de Grunt",
"email": "[email protected]"
},
{
"name": "Benjamín Eidelman"
},
{
"name": "Samyak Bhuta"
}
],
"dependencies": {
"body-parser": "^1.4.3",
"express": "= 4.4.5",
"express-csv": "^0.6.0",
"extend": "^1.3.0",
"mongodb": "= 1.4.7",
"promised-mongo": "^0.11.1",
"uuid": "^3.0.0"
},
"keywords": [
"mongodb",
"mongo",
"db",
"web",
"rest",
"restful",
"api"
],
"repository": "https://github.com/codecapers/mongodb-rest.git",
"directories": {
"lib": "./lib"
},
"bin": {
"mongodb-rest": "./bin/mongodb-rest"
},
"engines": {
"node": ">= 0.10.24"
},
"devDependencies": {
"jasmine-node": "^1.14.5",
"promised-mongo": "^0.11.1",
"q": "^1.0.1",
"request": "^2.49.0"
},
"scripts": {
"test": "jasmine-node ./ --verbose --captureExceptions"
},
"bugs": {
"url": "https://github.com/codecapers/mongodb-rest/issues"
},
"homepage": "https://github.com/codecapers/mongodb-rest"
}