@loopback/metadata 7.0.13 → 8.0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -134,7 +134,7 @@ const arrayOfSpecs = MetadataInspector.getMethodMetadata<object>(
134
134
 
135
135
  Typescript
136
136
  [applies decorators in reverse order](https://www.typescriptlang.org/docs/handbook/decorators.html)
137
- per class, from the parent down. The metadata array resurned by `getOwnMetadata`
137
+ per class, from the parent down. The metadata array returned by `getOwnMetadata`
138
138
  will be in this order:
139
139
 
140
140
  ```ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/metadata",
3
3
  "description": "Utilities to help developers implement TypeScript decorators, define/merge metadata, and inspect metadata",
4
- "version": "7.0.13",
4
+ "version": "8.0.0",
5
5
  "keywords": [
6
6
  "LoopBack",
7
7
  "Decorators",
@@ -18,7 +18,7 @@
18
18
  "directory": "packages/metadata"
19
19
  },
20
20
  "engines": {
21
- "node": "18 || 20 || 22"
21
+ "node": "20 || 22 || 24"
22
22
  },
23
23
  "scripts": {
24
24
  "acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
@@ -39,18 +39,18 @@
39
39
  "!*/__tests__"
40
40
  ],
41
41
  "dependencies": {
42
- "debug": "^4.4.0",
42
+ "debug": "^4.4.1",
43
43
  "lodash": "^4.17.21",
44
44
  "reflect-metadata": "^0.2.1",
45
45
  "tslib": "^2.8.1"
46
46
  },
47
47
  "devDependencies": {
48
- "@loopback/build": "^11.0.11",
49
- "@loopback/eslint-config": "^15.0.5",
50
- "@loopback/testlab": "^7.0.12",
48
+ "@loopback/build": "^12.0.0",
49
+ "@loopback/eslint-config": "^16.0.0",
50
+ "@loopback/testlab": "^8.0.0",
51
51
  "@types/debug": "^4.1.12",
52
- "@types/lodash": "^4.17.16",
52
+ "@types/lodash": "^4.17.17",
53
53
  "@types/node": "^16.18.126"
54
54
  },
55
- "gitHead": "1a389bb6fe31fec81a82825493cc66f830cd6655"
55
+ "gitHead": "be9e7324fca771c50502bdbd312821be8f94347e"
56
56
  }