-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 955 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
{
"name": "authomatic-redis",
"version": "1.0.1",
"description": "A redis store for Authomatic",
"main": "index.js",
"scripts": {
"redis": "npm run redis:remove && npm run redis:start",
"redis:start": "docker run --name redis-test -p 6379:6379 -d redis",
"redis:remove": "docker rm -f redis-test &> /dev/null || true",
"test": "npm run test:lint && npm run test:coverage",
"test:coverage": "jest tests --coverage",
"test:lint": "eslint tests index.js"
},
"engines": {
"node": ">=10.x"
},
"author": "Abdulrahman Amri",
"license": "MIT",
"dependencies": {
"redis": "^3.1.1",
"redisscan": "^2.0.0",
"tcomb": "^3.2.29"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.12.1",
"eslint-config-warp": "^6.1.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.5.0"
},
"keywords": [
"authomatic",
"redis",
"store",
"jwt",
"authentication"
]
}