-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.05 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-redis-session-sets",
"description": "Redis sessions with field-referencing cross sets",
"version": "3.0.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"repository": "koajs/redis-session-sets",
"dependencies": {
"csrf": "^3.0.1",
"lodash": "^4.17.20",
"ms": "^2.0.0"
},
"devDependencies": {
"codecov": "^3.8.3",
"debug": "^4.3.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-standard": "^5.0.0",
"ioredis": "^4.16.2",
"jest": "^28.1.3",
"koa": "^2.2.0",
"supertest": "^6.1.6"
},
"scripts": {
"eslint": "eslint . --ignore-path .gitignore",
"test": "jest"
},
"keywords": [
"koa",
"redis",
"session",
"set",
"atomic",
"reference"
],
"files": [
"lib"
],
"main": "lib",
"jest": {
"testEnvironment": "node"
}
}