This repository was archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 KB
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
{
"name": "koa-pg-session",
"version": "2.0.1",
"description": "A session store implementation for koa's generic-session module, using postgres as the backend",
"keywords": [
"session",
"cookies",
"middleware",
"koa",
"postgres",
"pg",
"rdbms",
"database"
],
"main": "index.js",
"license": "ISC",
"scripts": {
"test": "mocha --harmony"
},
"engines": {
"node": ">= 4.0.0",
"iojs": ">= 1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TMiguelT/koa-pg-session"
},
"author": "Michael Milton <michael.r.milton@gmail.com> (http://protomeric.com/)",
"bugs": {
"url": "https://github.com/TMiguelT/koa-pg-session/issues"
},
"homepage": "https://github.com/TMiguelT/koa-pg-session",
"dependencies": {
"bluebird": "^2.10.2",
"co": "^4.5.1",
"co-pg": "^1.3.1",
"ms": "^0.7.1",
"pg": "^4.3.0",
"pg-escape": "TMiguelT/pg-escape",
"pg-promise": "^2.3.3"
},
"devDependencies": {
"bluebird": "^2.9.24",
"bluebird-events": "^1.0.0",
"co-mocha": "^1.1.0",
"co-pg": "^1.3.1",
"koa": "^1.1.2",
"koa-generic-session": "^1.10.0",
"mocha": "^2.3.4",
"pg": "^4.4.3",
"pg-promise": "^2.3.3",
"proxyquire": "^1.4.0",
"request-promise": "^1.0.2",
"sinon-es6": "0.0.3"
}
}