Socket
Socket
Sign inDemoInstall

@loopback/context

Package Overview
Dependencies
17
Maintainers
10
Versions
190
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.5 to 7.0.0

20

package.json
{
"name": "@loopback/context",
"description": "Facilities to manage artifacts and their dependencies in your Node.js applications. The module exposes TypeScript/JavaScript APIs and decorators to register artifacts, declare dependencies, and resolve artifacts by keys. It also serves as an IoC container to support dependency injection",
"version": "6.1.5",
"version": "7.0.0",
"keywords": [

@@ -25,3 +25,3 @@ "LoopBack",

"engines": {
"node": "16 || 18 || 20"
"node": "18 || 20"
},

@@ -47,6 +47,6 @@ "scripts": {

"dependencies": {
"@loopback/metadata": "^6.1.5",
"@loopback/metadata": "^7.0.0",
"@types/debug": "^4.1.12",
"debug": "^4.3.4",
"hyperid": "^3.1.1",
"hyperid": "^3.2.0",
"p-event": "^4.2.0",

@@ -57,11 +57,11 @@ "tslib": "^2.6.2",

"devDependencies": {
"@loopback/build": "^10.1.5",
"@loopback/eslint-config": "^14.0.5",
"@loopback/testlab": "^6.1.5",
"@loopback/build": "^11.0.0",
"@loopback/eslint-config": "^15.0.0",
"@loopback/testlab": "^7.0.0",
"@types/bluebird": "^3.5.42",
"@types/node": "^16.18.70",
"@types/uuid": "^9.0.7",
"@types/node": "^16.18.86",
"@types/uuid": "^9.0.8",
"bluebird": "^3.7.2"
},
"gitHead": "3f73360ac38e1615317cae977ac20c2e124e3518"
"gitHead": "bb4864f7405492d9c86c7db6e714542a292a8790"
}

@@ -16,5 +16,4 @@ // Copyright IBM Corp. and LoopBack contributors 2019,2020. All Rights Reserved.

*/
export type AsValueOrPromise<T> = T extends Promise<unknown>
? T
: ValueOrPromise<T>;
export type AsValueOrPromise<T> =
T extends Promise<unknown> ? T : ValueOrPromise<T>;

@@ -21,0 +20,0 @@ /**

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc