-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "koa-session2",
"version": "2.2.10",
"description": "Middleware for Koa2 to get/set session use with custom stores such as Redis or mongodb",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-cov": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Secbone/koa-session2.git"
},
"files":[
"index.js",
"libs"
],
"keywords": [
"koa2",
"koa",
"session",
"redis",
"store",
"middleware"
],
"author": "Secbone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Secbone/koa-session2/issues"
},
"homepage": "https://github.com/Secbone/koa-session2#readme",
"devDependencies": {
"koa": "^2.0.1",
"koa-router": "^7.0.1",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
},
"peerDependencies": {
"koa": ">=2.0.1"
},
"engines": {
"node": ">=7.6.0"
},
"contributors": [
"Tino Vyatkin <[email protected]>"
]
}