cytoscape
Advanced tools
Comparing version 3.21.2 to 3.21.3
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
2
27
14
4350103
109333
+ Addedlodash@^4.17.21
+ Addedlodash@4.17.21(transitive)
- Removedlodash.debounce@^4.0.8
- Removedlodash.get@^4.4.2
- Removedlodash.set@^4.3.2
- Removedlodash.topath@^4.5.2
- Removedlodash.debounce@4.0.8(transitive)
- Removedlodash.get@4.4.2(transitive)
- Removedlodash.set@4.3.2(transitive)
- Removedlodash.topath@4.5.2(transitive)