-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
82 lines (82 loc) · 2.03 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
{
"name": "oauth2-mock-server",
"version": "7.2.0",
"description": "OAuth 2 mock server",
"keywords": [
"oauth",
"oauth2",
"oauth 2",
"mock",
"server",
"cli",
"jwt",
"oidc",
"openid connect"
],
"author": {
"name": "Jorge Poveda",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": "^18.12 || ^20 || ^22",
"yarn": "^1.15.2"
},
"repository": {
"type": "git",
"url": "https://github.com/axa-group/oauth2-mock-server.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"oauth2-mock-server": "./dist/oauth2-mock-server.js"
},
"files": [
"CHANGELOG.md",
"MIGRATION.md",
"LICENSE.md",
"README.md",
"dist/**/*.*"
],
"scripts": {
"prebuild": "rimraf ./dist ./.cache",
"build": "tsc -p ./tsconfig.build.json",
"prelint": "tsc --noEmit",
"lint": "eslint --cache --cache-location .cache/ --ext=.ts src test --max-warnings 0",
"prepack": "yarn build --tsBuildInfoFile null --incremental false",
"pretest": "yarn lint",
"test": "yarn vitest --run --coverage",
"test:watch": "yarn vitest --watch"
},
"dependencies": {
"basic-auth": "^2.0.1",
"cors": "^2.8.5",
"express": "^4.21.1",
"is-plain-object": "^5.0.0",
"jose": "^5.9.6"
},
"devDependencies": {
"@types/basic-auth": "^1.1.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^18.19.64",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.10",
"supertest": "^7.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.5"
},
"resolutions": {
"@types/node": "^18"
}
}