forked from koajs/session
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.1 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
51
52
53
54
55
56
{
"name": "koa-session",
"description": "Koa cookie session middleware with external store support",
"repository": "koajs/session",
"version": "6.2.0",
"keywords": [
"koa",
"middleware",
"session",
"cookie"
],
"files": [
"index.js",
"lib"
],
"devDependencies": {
"benchmark": "^2.1.4",
"c8": "^7.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.0.0",
"koa": "^2.0.0",
"mm": "^3.0.0",
"mocha": "^9.0.0",
"mz-modules": "^2.0.0",
"pedding": "^1.1.0",
"uid-safe": "^2.1.3",
"should": "^13.0.0",
"supertest": "^6.0.0"
},
"license": "MIT",
"dependencies": {
"crc": "^3.4.4",
"debug": "^4.0.0",
"is-type-of": "^1.0.0",
"uuid": "^8.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
}
},
"scripts": {
"test": "NODE_ENV=test mocha --exit test/*.test.js",
"cover": "c8 npm test",
"lint": "eslint lib/ test/ index.js"
}
}