Comparing version 0.5.4 to 0.6.0
{ | ||
"name": "dagre-d3", | ||
"version": "0.5.4", | ||
"version": "0.6.0", | ||
"main": [ | ||
@@ -24,6 +24,6 @@ "dist/dagre-d3.core.js" | ||
"d3": "^4.12.2", | ||
"dagre": "^0.7.3", | ||
"graphlib": "^1.0.5", | ||
"lodash": "^3.10.0" | ||
"dagre": "^0.8.1", | ||
"graphlib": "^2.1.5", | ||
"lodash": "^4.17.4" | ||
} | ||
} |
@@ -1212,5 +1212,5 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.dagreD3 = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | ||
},{"./lodash":21}],28:[function(require,module,exports){ | ||
module.exports = "0.5.4"; | ||
module.exports = "0.6.0"; | ||
},{}]},{},[1])(1) | ||
}); |
@@ -104,2 +104,2 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.dagreD3=f()}})(function(){var define,module,exports;return function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}({1:[function(require,module,exports){ | ||
* subgraph node is one that contains other nodes. | ||
*/function isSubgraph(g,v){return!!g.children(v).length}function edgeToId(e){return escapeId(e.v)+":"+escapeId(e.w)+":"+escapeId(e.name)}var ID_DELIM=/:/g;function escapeId(str){return str?String(str).replace(ID_DELIM,"\\:"):""}function applyStyle(dom,styleFn){if(styleFn){dom.attr("style",styleFn)}}function applyClass(dom,classFn,otherClasses){if(classFn){dom.attr("class",classFn).attr("class",otherClasses+" "+dom.attr("class"))}}function applyTransition(selection,g){var graph=g.graph();if(_.isPlainObject(graph)){var transition=graph.transition;if(_.isFunction(transition)){return transition(selection)}}return selection}},{"./lodash":21}],28:[function(require,module,exports){module.exports="0.5.4"},{}]},{},[1])(1)}); | ||
*/function isSubgraph(g,v){return!!g.children(v).length}function edgeToId(e){return escapeId(e.v)+":"+escapeId(e.w)+":"+escapeId(e.name)}var ID_DELIM=/:/g;function escapeId(str){return str?String(str).replace(ID_DELIM,"\\:"):""}function applyStyle(dom,styleFn){if(styleFn){dom.attr("style",styleFn)}}function applyClass(dom,classFn,otherClasses){if(classFn){dom.attr("class",classFn).attr("class",otherClasses+" "+dom.attr("class"))}}function applyTransition(selection,g){var graph=g.graph();if(_.isPlainObject(graph)){var transition=graph.transition;if(_.isFunction(transition)){return transition(selection)}}return selection}},{"./lodash":21}],28:[function(require,module,exports){module.exports="0.6.0"},{}]},{},[1])(1)}); |
@@ -20,3 +20,3 @@ // Karma configuration | ||
'node_modules/lodash/index.js', | ||
'node_modules/lodash/lodash.js', | ||
'node_modules/d3/build/d3.js', | ||
@@ -23,0 +23,0 @@ 'build/dist/dagre-d3.js', |
@@ -20,3 +20,3 @@ // Karma configuration | ||
'node_modules/lodash/index.js', | ||
'node_modules/lodash/lodash.js', | ||
'node_modules/d3/build/d3.js', | ||
@@ -23,0 +23,0 @@ 'node_modules/graphlib/dist/graphlib.core.js', |
@@ -1,1 +0,1 @@ | ||
module.exports = "0.5.4"; | ||
module.exports = "0.6.0"; |
{ | ||
"name": "dagre-d3", | ||
"version": "0.5.4", | ||
"version": "0.6.0", | ||
"description": "A D3-based renderer for Dagre", | ||
@@ -14,31 +14,31 @@ "author": "Chris Pettitt <chris@samsarin.com>", | ||
"d3": "^4.12.2", | ||
"dagre": "^0.7.3", | ||
"graphlib": "^1.0.5", | ||
"lodash": "^3.10.0" | ||
"dagre": "^0.8.1", | ||
"graphlib": "^2.1.5", | ||
"lodash": "^4.17.4" | ||
}, | ||
"devDependencies": { | ||
"browser-sync": "^2.7.1", | ||
"browserify": "^10.2.0", | ||
"chai": "^1.9.2", | ||
"del": "^1.1.1", | ||
"jshint": "^2.5.6", | ||
"jshint-stylish": "^1.0.2", | ||
"karma": "^0.13.22", | ||
"karma-chrome-launcher": "^0.2.0", | ||
"karma-coverage": "^0.4.2", | ||
"karma-firefox-launcher": "^0.1.6", | ||
"karma-mocha": "^0.2.0", | ||
"karma-phantomjs-launcher": "^1.0.0", | ||
"karma-requirejs": "^0.2.5", | ||
"karma-safari-launcher": "^0.1.1", | ||
"merge-stream": "^0.1.7", | ||
"mocha": "^1.21.5", | ||
"phantomjs-prebuilt": "^2.1.7", | ||
"pretty-hrtime": "^1.0.0", | ||
"requirejs": "^2.1.22", | ||
"semver": "^4.1.0", | ||
"uglify-js": "^3.3.2", | ||
"vinyl-buffer": "^1.0.0", | ||
"vinyl-source-stream": "^1.1.0", | ||
"watchify": "^3.2.1" | ||
"browser-sync": "^2.23.2", | ||
"browserify": "^14.5.0", | ||
"chai": "^4.1.2", | ||
"del": "^3.0.0", | ||
"jshint": "^2.9.5", | ||
"jshint-stylish": "^2.2.1", | ||
"karma": "^2.0.0", | ||
"karma-chrome-launcher": "^2.2.0", | ||
"karma-coverage": "^1.1.1", | ||
"karma-firefox-launcher": "^1.1.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-phantomjs-launcher": "^1.0.4", | ||
"karma-requirejs": "^1.1.0", | ||
"karma-safari-launcher": "^1.0.0", | ||
"merge-stream": "^1.0.1", | ||
"mocha": "^4.1.0", | ||
"phantomjs-prebuilt": "^2.1.16", | ||
"pretty-hrtime": "^1.0.3", | ||
"requirejs": "^2.3.5", | ||
"semver": "^5.4.1", | ||
"uglify-js": "^3.3.4", | ||
"vinyl-buffer": "^1.0.1", | ||
"vinyl-source-stream": "^2.0.0", | ||
"watchify": "^3.9.0" | ||
}, | ||
@@ -45,0 +45,0 @@ "repository": { |
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 not supported yet
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
Network access
Supply chain riskThis module accesses the network.
Found 2 instances in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
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 3 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
3586094
60845
16
0
+ Addeddagre@0.8.5(transitive)
+ Addedgraphlib@2.1.8(transitive)
+ Addedlodash@4.17.21(transitive)
- Removeddagre@0.7.4(transitive)
- Removedgraphlib@1.0.7(transitive)
- Removedlodash@3.10.1(transitive)
Updateddagre@^0.8.1
Updatedgraphlib@^2.1.5
Updatedlodash@^4.17.4