Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nodegate

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodegate - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1

22

package.json
{
"name": "nodegate",
"description": "API gateway made simple, fast and easy to configure.",
"version": "1.7.0",
"version": "1.7.1",
"author": "Julien Martin <martin.julien82@gmail.com>",

@@ -14,16 +14,16 @@ "license": "MIT",

"dependencies": {
"body-parser": "^1.18.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"deepmerge": "^4.1.1",
"express": "^4.16.4",
"lodash": "^4.17.11",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"lodash": "^4.17.15",
"request": "^2.88.2",
"request-promise-native": "^1.0.7"
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"nock": "^12.0.2",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.1.0",
"nock": "^12.0.3",
"supertest": "^4.0.2"

@@ -30,0 +30,0 @@ },

@@ -8,3 +8,3 @@ /**

const { merge } = require('lodash');
const { assign } = require('lodash');
const WorkflowError = require('../entities/WorkflowError');

@@ -23,6 +23,6 @@ const request = require('../services/request');

if (options.path) {
merge(container.body[options.path], body);
assign(container.body[options.path], body);
return;
}
merge(container.body, body);
assign(container.body, body);
};

@@ -29,0 +29,0 @@

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