forked from lzztt/koa-session-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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-session-minimal",
"version": "4.0.3",
"description": "Minimal implementation of session middleware for Koa 2. Inspired by and compatible with koa-generic-session",
"main": "src/session.js",
"scripts": {
"lint": "eslint src test example",
"test": "nyc mocha --timeout 3000 --bail --exit test",
"report": "nyc report --reporter=cobertura"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longztian/koa-session-minimal.git"
},
"keywords": [
"koa",
"session"
],
"author": "Longzhang Tian",
"license": "MIT",
"bugs": {
"url": "https://github.com/longztian/koa-session-minimal/issues"
},
"homepage": "https://github.com/longztian/koa-session-minimal#readme",
"dependencies": {
"co": "^4.6.0",
"fast-deep-equal": "^3.1.3",
"uid-safe": "^2.1.2"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"koa": "^2.13.4",
"koa-redis": "^4.0.1",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"supertest": "^6.2.2"
},
"engines": {
"node": ">= 14"
},
"files": [
"src"
]
}