-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
94 lines (94 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mock-jwks",
"description": "A tool to mock a JWKS for development of microservices who consume jwts signed with RSA",
"version": "3.2.2",
"exports": "./build/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "yarn build && vitest",
"clean": "rm -rf build",
"prepack": "yarn clean && yarn build",
"postpack": "yarn clean",
"lint": "eslint .",
"format": "prettier -w .",
"check:code": "tsc --noEmit -p tsconfig.check.json",
"check:prettier": "prettier -c ."
},
"engines": {
"node": ">=14.16"
},
"type": "module",
"files": [
"build"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"email": "[email protected]",
"name": "Levin Keller",
"url": "https://github.com/Levino"
},
{
"name": "Andrew Schekatihin",
"url": "https://github.com/aschekatihin"
},
{
"name": "Marek Urbanowicz",
"url": "https://github.com/murbanowicz"
},
{
"name": "Martin Levett",
"url": "https://github.com/mlev"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Levino/mock-jwks.git"
},
"keywords": [
"jwks",
"jwt",
"mock",
"testing"
],
"author": "Levin Keller",
"license": "MIT",
"bugs": {
"url": "https://github.com/Levino/mock-jwks/issues"
},
"types": "build/index.d.ts",
"homepage": "https://github.com/Levino/mock-jwks#readme",
"devDependencies": {
"@types/base64-url": "^2.2.0",
"@types/express": "^4",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^20.1.1",
"@types/node-forge": "^1.3.0",
"@types/node-rsa": "^1.1.1",
"@types/normalize-url": "^4.2.0",
"@types/superagent": "^4.1.15",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.19.2",
"express-jwt": "^8.4.1",
"husky": "^8.0.1",
"jwks-rsa": "^3.0.1",
"prettier": "^2.7.1",
"supertest": "^6.3.0",
"typescript": "^5.0.2",
"vitest": "^2.0.3"
},
"dependencies": {
"base64-url": "^2.3.3",
"jsonwebtoken": "^9.0.0",
"msw": "^2.3.1",
"node-forge": "^1.3.1",
"node-rsa": "^1.1.1"
},
"packageManager": "[email protected]"
}