@tsed/oidc-provider 7.61.1 → 7.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsed/oidc-provider",
3
- "version": "7.61.1",
3
+ "version": "7.62.0",
4
4
  "description": "OIDC provider package for Ts.ED framework",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/cjs/index.js",
@@ -17,12 +17,10 @@
17
17
  "start": "ts-node test/app/index.ts",
18
18
  "barrels": "yarn barrelsby --delete -d ./src -e \"\\.spec\\.ts\" -e \"__mock__\" -e \".benchmark.ts\"",
19
19
  "test": "cross-env NODE_ENV=test yarn jest --max-workers=2 && jest-coverage-thresholds-bumper",
20
- "build:ts": "tsc --build tsconfig.json && tsc --build tsconfig.esm.json",
21
- "lint": "eslint '**/*.{ts,js}'",
22
- "lint:fix": "eslint '**/*.{ts,js}' --fix"
20
+ "build:ts": "tsc --build tsconfig.json && tsc --build tsconfig.esm.json"
23
21
  },
24
22
  "dependencies": {
25
- "@tsed/adapters": "7.61.1",
23
+ "@tsed/adapters": "7.62.0",
26
24
  "express-urlrewrite": "^1.4.0",
27
25
  "jose2": "npm:jose@^2.0.4",
28
26
  "koa-mount": "^4.0.0",
@@ -32,13 +30,12 @@
32
30
  "uuid": "8.3.2"
33
31
  },
34
32
  "devDependencies": {
35
- "@tsed/common": "7.61.1",
36
- "@tsed/core": "7.61.1",
37
- "@tsed/di": "7.61.1",
38
- "@tsed/eslint": "7.61.1",
39
- "@tsed/exceptions": "7.61.1",
40
- "@tsed/jwks": "7.61.1",
41
- "@tsed/typescript": "7.61.1",
33
+ "@tsed/common": "7.62.0",
34
+ "@tsed/core": "7.62.0",
35
+ "@tsed/di": "7.62.0",
36
+ "@tsed/exceptions": "7.62.0",
37
+ "@tsed/jwks": "7.62.0",
38
+ "@tsed/typescript": "7.62.0",
42
39
  "@types/lowdb": "1.0.11",
43
40
  "@types/oidc-provider": "8.1.1",
44
41
  "@types/uuid": "8.3.4",
@@ -49,12 +46,12 @@
49
46
  "oidc-provider": "8.1.1"
50
47
  },
51
48
  "peerDependencies": {
52
- "@tsed/ajv": "7.61.1",
53
- "@tsed/common": "7.61.1",
54
- "@tsed/core": "7.61.1",
55
- "@tsed/di": "7.61.1",
56
- "@tsed/json-mapper": "7.61.1",
57
- "@tsed/schema": "7.61.1",
49
+ "@tsed/ajv": "7.62.0",
50
+ "@tsed/common": "7.62.0",
51
+ "@tsed/core": "7.62.0",
52
+ "@tsed/di": "7.62.0",
53
+ "@tsed/json-mapper": "7.62.0",
54
+ "@tsed/schema": "7.62.0",
58
55
  "oidc-provider": ">=8.0.0"
59
56
  },
60
57
  "peerDependenciesMeta": {
package/.eslintignore DELETED
@@ -1,13 +0,0 @@
1
- node_modules
2
- docs
3
- docs-references
4
- lib
5
- dist
6
- coverage
7
- .nyc_output
8
- *-lock.json
9
- *.lock
10
- benchmarks.*
11
- **/generated
12
-
13
- **/*.js
package/.eslintrc.js DELETED
@@ -1 +0,0 @@
1
- module.exports = require("@tsed/eslint/node.js");