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

@cara/porter

Package Overview
Dependencies
Maintainers
3
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cara/porter - npm Package Compare versions

Comparing version 4.4.4 to 4.4.5

2

package.json
{
"name": "@cara/porter",
"description": "A middleware for web modules",
"version": "4.4.4",
"version": "4.4.5",
"main": "src/porter.js",

@@ -6,0 +6,0 @@ "repository": {

@@ -113,3 +113,3 @@ 'use strict';

static async create({ dir, parent, app }) {
static async create({ name, dir, parent, app }) {
// cnpm (npminstall) dedupes dependencies with symbolic links

@@ -122,3 +122,3 @@ dir = await fs.realpath(dir);

if (app.packet) {
const { name, version } = data;
const { version } = data;
const packet = app.packet.find({ name, version });

@@ -128,3 +128,3 @@ if (packet) return packet;

const packet = new Packet({ dir, parent, app, packet: data });
const packet = new Packet({ dir, parent, app, packet: { ...data, name } });
await packet.prepare();

@@ -483,3 +483,3 @@ return packet;

const { app } = this;
const packet = await Packet.create({ dir, parent: this, app });
const packet = await Packet.create({ name, dir, parent: this, app });
this.dependencies[packet.name] = packet;

@@ -486,0 +486,0 @@ return await packet.parseEntry(entry);

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