-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 812 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 812 Bytes
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": "softoken",
"version": "1.0.1",
"description": "Redis and JWT token based session manager.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive --exit",
"lint": "eslint src"
},
"author": "Adebayo Mustafa",
"license": "ISC",
"keywords": [
"token",
"JWT",
"session",
"redis",
"koa"
],
"dependencies": {
"debug": "^2.2.0",
"ioredis": "^4.14.1",
"jsonwebtoken": "^5.4.0",
"lodash": "^4.17.15",
"promise": "^7.0.4"
},
"devDependencies": {
"chai": "^3.3.0",
"co-mocha": "^1.1.2",
"co-supertest": "0.0.10",
"eslint": "^3.19.0",
"eslint-plugin-standard": "^1.3.1",
"koa": "^1.1.0",
"mocha": "^6.2.0",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
}
}