New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

deref

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deref - npm Package Compare versions

Comparing version 0.7.2 to 0.7.3

10

lib/util/resolve-schema.js

@@ -26,10 +26,16 @@ 'use strict';

if (_[id]) {
if (_[id] > 10) {
return obj;
}
_[id] = 1;
if (_[id]) {
_[id] += 1;
} else {
_[id] = 1;
}
}
for (var prop in obj) {
if (typeof obj[prop] === 'object' && obj[prop] !== null && !$.isKeyword(prop)) {

@@ -36,0 +42,0 @@ target[prop] = copy(_, obj[prop], refs, parent, resolve, callback);

12

package.json
{
"name": "deref",
"version": "0.7.2",
"version": "0.7.3",
"description": "JSON-Schema $ref resolution",

@@ -20,6 +20,6 @@ "main": "lib/index.js",

"devDependencies": {
"clone": "^0.1.19",
"codecov": "^1.0.1",
"eslint": "^2.3.0",
"glob": "^4.5.3",
"clone": "^2.1.1",
"codecov": "^3.0.0",
"eslint": "^4.14.0",
"glob": "^7.1.2",
"is-my-json-valid": "^2.13.1",

@@ -33,3 +33,3 @@ "istanbul": "^0.4.2",

"dependencies": {
"deep-extend": "^0.4.0"
"deep-extend": "^0.5.0"
},

@@ -36,0 +36,0 @@ "publishConfig": {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc