-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.25 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.25 KB
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
{
"name": "oauth2-mock-server",
"version": "8.2.2",
"description": "Configurable OAuth2/OpenID Connect server for automated testing and development purposes",
"type": "module",
"keywords": [
"oauth",
"oauth2",
"oauth 2",
"mock",
"fake",
"stub",
"server",
"cli",
"jwt",
"oidc",
"openid",
"connect"
],
"author": {
"name": "Jorge Poveda",
"email": "jorge.poveda@axa-assistance.es"
},
"license": "MIT",
"engines": {
"node": "^20.19 || ^22.12 || ^24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axa-group/oauth2-mock-server.git"
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"bin": {
"oauth2-mock-server": "./dist/oauth2-mock-server.mjs"
},
"files": [
"CHANGELOG.md",
"MIGRATION.md",
"LICENSE.md",
"README.md",
"dist/**/*.*"
],
"scripts": {
"build": "npx tsdown",
"prelint": "tsc --noEmit",
"lint": "eslint --cache --cache-location .cache/ --ext=.ts src test --max-warnings 0",
"prepack": "npm run build",
"pretest": "npm run lint",
"test": "vitest --run --coverage",
"test:watch": "vitest --watch"
},
"dependencies": {
"basic-auth": "^2.0.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"is-plain-obj": "^4.1.0",
"jose": "^6.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/basic-auth": "^1.1.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^20.19.37",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/eslint-plugin": "^1.6.13",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsdown": "^0.21.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"overrides": {
"@types/node": "$@types/node"
}
}