-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "jwt-jwks-client",
"version": "0.2.1",
"description": "A client library that verifies a JWT token by retrieve signing keys from a JWKS (JSON Web Key Set) endpoint.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "rm -rf lib/ && npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"microservice",
"jwt",
"jwks",
"client",
"auth",
"authentication"
],
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WangHansen/jwt-jwks-client.git"
},
"author": "Hansen Wang",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"jose": "^2.0.3"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/debug": "^4.1.5",
"@types/got": "^9.6.11",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"codecov": "^3.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.2",
"nock": "^13.0.4",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}