-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1017 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
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
{
"name": "databank-mongodb",
"version": "1.0.1",
"engines": {
"node": ">=0.6.x"
},
"author": "Evan Prodromou <[email protected]>",
"scripts": {
"test": "vows test/*-test.js"
},
"main": "./lib/mongodb.js",
"directories": {
"lib": "./lib/"
},
"description": "Databank driver for MongoDB",
"dependencies": {
"databank": "^1.0.1",
"debug": "^2.2.0",
"mongodb": "^2.2.22",
"step": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"vows": "^0.8.2"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"databank",
"mongodb",
"driver",
"database",
"json",
"storage",
"nosql"
],
"homepage": "http://github.com/e14n/databank-mongodb",
"bugs": {
"url": "http://github.com/e14n/databank-mongodb/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/e14n/databank-mongodb.git"
}
}