-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
57
58
59
60
61
62
{
"name": "@hansenw/jwt-auth",
"version": "0.11.1",
"description": "A complete JWT auth library that provides key rotation, token revocation and persistent key storage",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "rm -rf lib/ && npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"microservice",
"auth",
"authentication",
"jwt",
"jwks",
"key rotation",
"jwt revoke",
"token revocation"
],
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WangHansen/jwt-auth.git"
},
"author": "Hansen Wang",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.13",
"cron": "^1.8.2",
"debug": "^4.3.4",
"jose": "^2.0.5"
},
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.6.3"
},
"bugs": {
"url": "https://github.com/WangHansen/jwt-auth.git/issues"
},
"homepage": "https://github.com/WangHansen/jwt-auth.git#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}