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

cytoscape

Package Overview
Dependencies
Maintainers
5
Versions
254
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cytoscape - npm Package Compare versions

Comparing version 3.21.2 to 3.21.3

9

package.json
{
"name": "cytoscape",
"version": "3.21.2",
"version": "3.21.3",
"license": "MIT",

@@ -110,3 +110,2 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation",

"release": "run-s copyright dist docs",
"postpublish": "run-s docs:push",
"watch": "run-s watch:fast",

@@ -165,3 +164,2 @@ "watch:sync": "livereload \"build, debug\" -w 500",

"rollup-plugin-license": "^2.3.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.3.0"

@@ -171,7 +169,4 @@ },

"heap": "^0.2.6",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.topath": "^4.5.2"
"lodash": "^4.17.21"
}
}

@@ -6,3 +6,2 @@ import nodeResolve from '@rollup/plugin-node-resolve';

import { terser } from "rollup-plugin-terser";
import { sizeSnapshot } from 'rollup-plugin-size-snapshot';
import license from 'rollup-plugin-license';

@@ -16,3 +15,2 @@ import path from 'path';

const NODE_ENV = process.env.NODE_ENV === 'development' ? 'development' : 'production'; // default prod
const matchSnapshot = process.env.SNAPSHOT === 'match';

@@ -58,4 +56,3 @@ const input = './src/index.js';

replace(envVariables),
license(licenseHeaderOptions),
!FILE ? sizeSnapshot({ matchSnapshot }) : {}
license(licenseHeaderOptions)
]

@@ -95,4 +92,3 @@ },

license(licenseHeaderOptions),
terser(),
!FILE ? sizeSnapshot({ matchSnapshot }) : {}
terser()
]

@@ -109,4 +105,3 @@ },

replace(envVariables),
license(licenseHeaderOptions),
!FILE ? sizeSnapshot({ matchSnapshot }) : {}
license(licenseHeaderOptions)
]

@@ -123,4 +118,3 @@ },

replace(envVariables),
license(licenseHeaderOptions),
!FILE ? sizeSnapshot({ matchSnapshot }) : {}
license(licenseHeaderOptions)
]

@@ -127,0 +121,0 @@ }

import * as util from '../util';
import * as is from '../is';
import get from 'lodash.get';
import set from 'lodash.set';
import toPath from 'lodash.topath';
import get from 'lodash/get';
import set from 'lodash/set';
import toPath from 'lodash/toPath';

@@ -7,0 +7,0 @@ let define = {

import window from '../window';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';

@@ -4,0 +4,0 @@ var performance = window ? window.performance : null;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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