forked from tdebarochez/connect-couchdb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·50 lines (50 loc) · 1.34 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
{
"name": "connect-couchdb-queue",
"description": "CouchDB session store for Connect, using queue and changesets to avoid race conditions",
"keywords": [
"connect",
"session",
"couchdb",
"middleware"
],
"version": "0.2.0",
"node": ">=0.8",
"author": "Tomi Nokkala <[email protected]>",
"contributors": [
"Thomas Debarochez <[email protected]>",
"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)"
],
"main": "./index.js",
"dependencies": {
"async": "~0.2.9",
"connect": "*",
"cradle": "~0.6.6",
"debug": "~0.7.2",
"deep-diff": "~0.1.3",
"express-session": "^1.15.1",
"flat": "~1.0.0",
"memory-cache": "0.0.5",
"node-uuid": "~1.4.1",
"underscore": "~1.5.1"
},
"devDependencies": {
"mocha": "*"
},
"scripts": {
"test": "node tools/cleanup.tests.js && mocha -t 10000"
},
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "http://github.com/Tol1/connect-couchdb-queue.git"
}
}