-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 882 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
{
"name": "koa-session-store",
"version": "2.0.0",
"description": "Session middleware for Koa with a pluggable storage layer",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/hiddentao/koa-session-store"
},
"keywords": [
"koa",
"session",
"cookies",
"mongo"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiddentao/koa-session-store/issues"
},
"homepage": "https://github.com/hiddentao/koa-session-store",
"devDependencies": {
"gulp": "~3.9.1",
"gulp-mocha": "^2.2.0",
"koa": "~1.2.0",
"should": "~9.0.0",
"supertest": "~1.2.0"
},
"dependencies": {
"uid2": "0.0.3",
"debug": "~2.2.0"
},
"engines": {
"node": ">=4.4.0"
},
"engine-strict": true
}