-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.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.1.2",
"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.18.2",
"is-plain-object": "^5.0.0",
"jose": "^5.3.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/node": "^18.18.6",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vitest": "^0.3.8",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"resolutions": {
"@types/node": "^18"
}
}