cytoscape-elk
Advanced tools
Comparing version 1.1.6 to 1.1.7
{ | ||
"name": "cytoscape-elk", | ||
"description": "The ELK layout algorithm for Cytoscape.js", | ||
"description": "The ELK layout algorithm adapter for Cytoscape.js", | ||
"main": "cytoscape-elk.js", | ||
@@ -10,3 +10,3 @@ "dependencies": { | ||
"type": "git", | ||
"url": "https://github.com/cytoscape/cytoscape.js-elk.git" | ||
"url": "https://github.com/jfstephe/cytoscape.js-elk.git" | ||
}, | ||
@@ -13,0 +13,0 @@ "ignore": [ |
(function webpackUniversalModuleDefinition(root, factory) { | ||
if(typeof exports === 'object' && typeof module === 'object') | ||
module.exports = factory(); | ||
module.exports = factory(require("elkjs")); | ||
else if(typeof define === 'function' && define.amd) | ||
define([], factory); | ||
define(["elkjs"], factory); | ||
else if(typeof exports === 'object') | ||
exports["cytoscapeElk"] = factory(); | ||
exports["cytoscapeElk"] = factory(require("elkjs")); | ||
else | ||
root["cytoscapeElk"] = factory(); | ||
})(this, function() { | ||
root["cytoscapeElk"] = factory(root["ELK"]); | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_4__) { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
@@ -86,3 +86,3 @@ /******/ // The module cache | ||
//const ELK = require('elkjs'); | ||
var ELK = __webpack_require__(4); | ||
// eslint-disable-next-line no-undef | ||
@@ -356,4 +356,10 @@ var elk = new ELK(); | ||
/***/ }), | ||
/* 4 */ | ||
/***/ (function(module, exports) { | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_4__; | ||
/***/ }) | ||
/******/ ]); | ||
}); |
{ | ||
"name": "cytoscape-elk", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"description": "The ELK layout algorithm adapter for Cytoscape.js", | ||
@@ -24,3 +24,3 @@ "main": "cytoscape-elk.js", | ||
"type": "git", | ||
"url": "https://github.com/cytoscape/cytoscape.js-elk.git" | ||
"url": "https://github.com/jfstephe/cytoscape.js-elk.git" | ||
}, | ||
@@ -33,5 +33,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/cytoscape/cytoscape.js-elk/issues" | ||
"url": "https://github.com/jfstephe/cytoscape.js-elk/issues" | ||
}, | ||
"homepage": "https://github.com/cytoscape/cytoscape.js-elk", | ||
"homepage": "https://github.com/jfstephe/cytoscape.js-elk", | ||
"devDependencies": { | ||
@@ -38,0 +38,0 @@ "babel-core": "^6.24.1", |
@@ -103,2 +103,2 @@ cytoscape-elk | ||
5. Publish to npm: `npm publish .` | ||
6. If publishing to bower for the first time, you'll need to run `bower register cytoscape-elk https://github.com/cytoscape/cytoscape.js-elk.git` | ||
6. If publishing to bower for the first time, you'll need to run `bower register cytoscape-elk https://github.com/jfstephe/cytoscape.js-elk.git` |
@@ -1,3 +0,3 @@ | ||
//const ELK = require('elkjs'); | ||
// eslint-disable-next-line no-undef | ||
const ELK = require('elkjs'); | ||
// eslint-disable-next-line no-undef | ||
const elk = new ELK(); | ||
@@ -4,0 +4,0 @@ const assign = require('./assign'); |
@@ -30,3 +30,3 @@ const path = require('path'); | ||
amd: 'elkjs', | ||
root: '$elk' | ||
root: 'ELK' | ||
} | ||
@@ -33,0 +33,0 @@ } : [], |
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
55247
655