-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
32 lines (32 loc) · 1.21 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
{
"name": "connect-couchdb",
"description": "CouchDB session store for Connect",
"keywords" : [ "connect", "session", "couchdb", "middleware" ],
"version": "1.0.0",
"node": ">= 0.10.0",
"author": "Thomas de Barochez <[email protected]>",
"contributors": ["Ian Ward (https://github.com/ianshward)",
"Young Hahn (https://github.com/yhahn)",
"Ryan Kirkman (https://github.com/ryankirkman)",
"Dan VerWeire (https://github.com/wankdanker)",
"Pau Ramon Revilla (https://github.com/masylum)",
"Konstantin Käfer (https://github.com/kkaefer)",
"Daniel Bell (https://github.com/danbell)",
"Quentin Raynaud (https://github.com/even)",
"Ivan Erceg (https://github.com/ierceg"],
"main": "./index.js",
"dependencies": {
"connect": "3.*",
"yacw": "0.2.x",
"express-session": "^1.6.1"
},
"devDependencies": {
"mocha": "*"
},
"scripts": {
"test": "node tools/cleanup.tests.js ; mocha"
},
"engines": { "node": ">= 0.10.0" },
"repository" : {"type" : "git",
"url" : "http://github.com/tdebarochez/connect-couchdb.git"}
}