-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name" : "collections",
"description" : "Key-value store supporting node-tiny and mongodb",
"version" : "0.0.4",
"keywords" : ["database", "key-value", "mongo", "tiny"],
"homepage" : "http://github.com/SDA/connect-cors",
"author" : "Sasa Djolic <[email protected]>",
"maintainers" : [{
"name" : "Sasa Djolic",
"email" : "[email protected]",
"web" : "http://www.sasadjolic.com"
}],
"contributors" : [{
"name" : "Sasa Djolic",
"email" : "[email protected]",
"web" : "http://www.sasadjolic.com"
}],
"bugs" : { "url": "http://github.com/SDA/collections/issues" },
"licenses" : [{ "type": "MIT", "url": "https://raw.github.com/SDA/collections/master/LICENSE" }],
"repositories" : [{ "type": "git", "url": "http://github.com/SDA/collections" }],
"scripts" : {
"example" : "node example/example.js",
"test" : "node test/test.js"
},
"directories" : {
"lib" : "lib"
},
"main" : "lib/collections",
"devDependencies": {
"assert" : "0.4.x",
"connect" : "2.1.x",
"request" : "2.9.x",
"seq" : "0.3.x"
},
"dependencies" : {
"mongodb" : "1.0.x",
"node-uuid" : "1.3.x",
"tiny" : "0.0.x"
},
"engines" : {
"node" : "0.6.x"
}
}