{"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"keywords":["d3","d3-module","sankey"],"dist-tags":{"latest":"0.12.3"},"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"description":"Visualize flow between nodes in a directed acyclic network.","readme":"# d3-sankey\n\nSankey diagrams visualize the directed flow between nodes in an acyclic network. For example, this diagram shows a possible scenario of UK energy production and consumption in 2050:\n\n[<img alt=\"Sankey diagram\" src=\"https://raw.githubusercontent.com/d3/d3-sankey/master/img/energy.png\" width=\"960\">](https://observablehq.com/@d3/sankey-diagram)\n\nSource: Department of Energy & Climate Change, Tom Counsell.\n\n**For an interactive editor, see [Flow-o-Matic](https://observablehq.com/@mbostock/flow-o-matic).**\n\n## Installing\n\nIf you use NPM, `npm install d3-sankey`. Otherwise, download the [latest release](https://github.com/d3/d3-sankey/releases/latest). You can also load directly from [unpkg.com](https://unpkg.com/d3-sankey/). AMD, CommonJS, and vanilla environments are supported. In vanilla, a `d3` global is exported:\n\n```html\n<script src=\"https://unpkg.com/d3-array@1\"></script>\n<script src=\"https://unpkg.com/d3-collection@1\"></script>\n<script src=\"https://unpkg.com/d3-path@1\"></script>\n<script src=\"https://unpkg.com/d3-shape@1\"></script>\n<script src=\"https://unpkg.com/d3-sankey@0\"></script>\n<script>\n\nvar sankey = d3.sankey();\n\n</script>\n```\n\n## API Reference\n\n<a href=\"#sankey\" name=\"sankey\">#</a> d3.<b>sankey</b>() [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nConstructs a new Sankey generator with the default settings.\n\n<a href=\"#_sankey\" name=\"_sankey\">#</a> <i>sankey</i>(<i>arguments</i>…) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nComputes the node and link positions for the given *arguments*, returning a *graph* representing the Sankey layout. The returned *graph* has the following properties:\n\n* *graph*.nodes - the array of [nodes](#sankey_nodes)\n* *graph*.links - the array of [links](#sankey_links)\n\n<a href=\"#sankey_update\" name=\"sankey_update\">#</a> <i>sankey</i>.<b>update</b>(<i>graph</i>) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nRecomputes the specified *graph*’s links’ positions, updating the following properties of each *link*:\n\n* *link*.y0 - the link’s vertical starting position (at source node)\n* *link*.y1 - the link’s vertical end position (at target node)\n\nThis method is intended to be called after computing the initial [Sankey layout](#_sankey), for example when the diagram is repositioned interactively.\n\n<a name=\"sankey_nodes\" href=\"#sankey_nodes\">#</a> <i>sankey</i>.<b>nodes</b>([<i>nodes</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *nodes* is specified, sets the Sankey generator’s nodes accessor to the specified function or array and returns this Sankey generator. If *nodes* is not specified, returns the current nodes accessor, which defaults to:\n\n```js\nfunction nodes(graph) {\n  return graph.nodes;\n}\n```\n\nIf *nodes* is specified as a function, the function is invoked when the Sankey layout is [generated](#_sankey), being passed any arguments passed to the Sankey generator. This function must return an array of nodes. If *nodes* is not a function, it must be a constant array of *nodes*.\n\nEach *node* must be an object. The following properties are assigned by the [Sankey generator](#_sankey):\n\n* *node*.sourceLinks - the array of outgoing [links](#sankey_links) which have this node as their source\n* *node*.targetLinks - the array of incoming [links](#sankey_links) which have this node as their target\n* *node*.value - the node’s value; this is the sum of *link*.value for the node’s incoming [links](#sankey_links), or *node*.fixedValue if defined\n* *node*.index - the node’s zero-based index within the array of nodes\n* *node*.depth - the node’s zero-based graph depth, derived from the graph topology\n* *node*.height - the node’s zero-based graph height, derived from the graph topology\n* *node*.layer - the node’s zero-based column index, corresponding to its horizontal position\n* *node*.x0 - the node’s minimum horizontal position, derived from *node*.depth\n* *node*.x1 - the node’s maximum horizontal position (*node*.x0 + [*sankey*.nodeWidth](#sankey_nodeWidth))\n* *node*.y0 - the node’s minimum vertical position\n* *node*.y1 - the node’s maximum vertical position (*node*.y1 - *node*.y0 is proportional to *node*.value)\n\nSee also [*sankey*.links](#sankey_links).\n\n<a name=\"sankey_links\" href=\"#sankey_links\">#</a> <i>sankey</i>.<b>links</b>([<i>links</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *links* is specified, sets the Sankey generator’s links accessor to the specified function or array and returns this Sankey generator. If *links* is not specified, returns the current links accessor, which defaults to:\n\n```js\nfunction links(graph) {\n  return graph.links;\n}\n```\n\nIf *links* is specified as a function, the function is invoked when the Sankey layout is [generated](#_sankey), being passed any arguments passed to the Sankey generator. This function must return an array of links. If *links* is not a function, it must be a constant array of *links*.\n\nEach *link* must be an object with the following properties:\n\n* *link*.source - the link’s source [node](#sankey_nodes)\n* *link*.target - the link’s target [node](#sankey_nodes)\n* *link*.value - the link’s numeric value\n\nFor convenience, a link’s source and target may be initialized using numeric or string identifiers rather than object references; see [*sankey*.nodeId](#sankey_nodeId). The following properties are assigned to each link by the [Sankey generator](#_sankey):\n\n* *link*.y0 - the link’s vertical starting position (at source node)\n* *link*.y1 - the link’s vertical end position (at target node)\n* *link*.width - the link’s width (proportional to *link*.value)\n* *link*.index - the zero-based index of *link* within the array of links\n\n<a name=\"sankey_linkSort\" href=\"#sankey_linkSort\">#</a> <i>sankey</i>.<b>linkSort</b>([<i>sort</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *sort* is specified, sets the link sort method and returns this Sankey generator. If *sort* is not specified, returns the current link sort method, which defaults to *undefined*, indicating that vertical order of links within each node will be determined automatically by the layout. If *sort* is null, the order is fixed by the input. Otherwise, the specified *sort* function determines the order; the function is passed two links, and must return a value less than 0 if the first link should be above the second, and a value greater than 0 if the second link should be above the first, or 0 if the order is not specified.\n\n<a name=\"sankey_nodeId\" href=\"#sankey_nodeId\">#</a> <i>sankey</i>.<b>nodeId</b>([<i>id</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *id* is specified, sets the node id accessor to the specified function and returns this Sankey generator. If *id* is not specified, returns the current node id accessor, which defaults to the numeric *node*.index:\n\n```js\nfunction id(d) {\n  return d.index;\n}\n```\n\nThe default id accessor allows each link’s source and target to be specified as a zero-based index into the [nodes](#sankey_nodes) array. For example:\n\n```js\nvar nodes = [\n  {\"id\": \"Alice\"},\n  {\"id\": \"Bob\"},\n  {\"id\": \"Carol\"}\n];\n\nvar links = [\n  {\"source\": 0, \"target\": 1}, // Alice → Bob\n  {\"source\": 1, \"target\": 2} // Bob → Carol\n];\n```\n\nNow consider a different id accessor that returns a string:\n\n```js\nfunction id(d) {\n  return d.id;\n}\n```\n\nWith this accessor, you can use named sources and targets:\n\n```js\nvar nodes = [\n  {\"id\": \"Alice\"},\n  {\"id\": \"Bob\"},\n  {\"id\": \"Carol\"}\n];\n\nvar links = [\n  {\"source\": \"Alice\", \"target\": \"Bob\"},\n  {\"source\": \"Bob\", \"target\": \"Carol\"}\n];\n```\n\nThis is particularly useful when representing graphs in JSON, as JSON does not allow references. See [this example](https://bl.ocks.org/mbostock/f584aa36df54c451c94a9d0798caed35).\n\n<a name=\"sankey_nodeAlign\" href=\"#sankey_nodeAlign\">#</a> <i>sankey</i>.<b>nodeAlign</b>([<i>align</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *align* is specified, sets the node [alignment method](#alignments) to the specified function and returns this Sankey generator. If *align* is not specified, returns the current node alignment method, which defaults to [d3.sankeyJustify](#sankeyJustify). The specified function is evaluated for each input *node* in order, being passed the current *node* and the total depth *n* of the graph (one plus the maximum *node*.depth), and must return an integer between 0 and *n* - 1 that indicates the desired horizontal position of the node in the generated Sankey diagram.\n\n<a name=\"sankey_nodeSort\" href=\"#sankey_nodeSort\">#</a> <i>sankey</i>.<b>nodeSort</b>([<i>sort</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *sort* is specified, sets the node sort method and returns this Sankey generator. If *sort* is not specified, returns the current node sort method, which defaults to *undefined*, indicating that vertical order of nodes within each column will be determined automatically by the layout. If *sort* is null, the order is fixed by the input. Otherwise, the specified *sort* function determines the order; the function is passed two nodes, and must return a value less than 0 if the first node should be above the second, and a value greater than 0 if the second node should be above the first, or 0 if the order is not specified.\n\n<a name=\"sankey_nodeWidth\" href=\"#sankey_nodeWidth\">#</a> <i>sankey</i>.<b>nodeWidth</b>([<i>width</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *width* is specified, sets the node width to the specified number and returns this Sankey generator. If *width* is not specified, returns the current node width, which defaults to 24.\n\n<a name=\"sankey_nodePadding\" href=\"#sankey_nodePadding\">#</a> <i>sankey</i>.<b>nodePadding</b>([<i>padding</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *padding* is specified, sets the vertical separation between nodes at each column to the specified number and returns this Sankey generator. If *padding* is not specified, returns the current node padding, which defaults to 8.\n\n<a name=\"sankey_extent\" href=\"#sankey_extent\">#</a> <i>sankey</i>.<b>extent</b>([<i>extent</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *extent* is specified, sets the extent of the Sankey layout to the specified bounds and returns the layout. The *extent* bounds are specified as an array \\[\\[<i>x0</i>, <i>y0</i>\\], \\[<i>x1</i>, <i>y1</i>\\]\\], where *x0* is the left side of the extent, *y0* is the top, *x1* is the right and *y1* is the bottom. If *extent* is not specified, returns the current extent which defaults to [[0, 0], [1, 1]].\n\n<a name=\"sankey_size\" href=\"#sankey_size\">#</a> <i>sankey</i>.<b>size</b>([<i>size</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nAn alias for [*sankey*.extent](#sankey_extent) where the minimum *x* and *y* of the extent are ⟨0,0⟩. Equivalent to:\n\n```js\nsankey.extent([[0, 0], size]);\n```\n\n<a name=\"sankey_iterations\" href=\"#sankey_iterations\">#</a> <i>sankey</i>.<b>iterations</b>([<i>iterations</i>]) [<>](https://github.com/d3/d3-sankey/blob/master/src/sankey.js \"Source\")\n\nIf *iterations* is specified, sets the number of relaxation iterations when [generating the layout](#_sankey) and returns this Sankey generator. If *iterations* is not specified, returns the current number of relaxation iterations, which defaults to 6.\n\n### Alignments\n\nSee [*sankey*.nodeAlign](#sankey_nodeAlign).\n\n<a name=\"sankeyLeft\" href=\"#sankeyLeft\">#</a> d3.<b>sankeyLeft</b>(<i>node</i>, <i>n</i>) [<>](https://github.com/d3/d3-sankey/blob/master/src/align.js \"Source\")\n\n[<img alt=\"left\" src=\"https://raw.githubusercontent.com/d3/d3-sankey/master/img/align-left.png\" width=\"480\">](https://observablehq.com/@d3/sankey-diagram?align=left)\n\nReturns *node*.depth.\n\n<a name=\"sankeyRight\" href=\"#sankeyRight\">#</a> d3.<b>sankeyRight</b>(<i>node</i>, <i>n</i>) [<>](https://github.com/d3/d3-sankey/blob/master/src/align.js \"Source\")\n\n[<img alt=\"right\" src=\"https://raw.githubusercontent.com/d3/d3-sankey/master/img/align-right.png\" width=\"480\">](https://observablehq.com/@d3/sankey-diagram?align=right)\n\nReturns *n* - 1 - *node*.height.\n\n<a name=\"sankeyCenter\" href=\"#sankeyCenter\">#</a> d3.<b>sankeyCenter</b>(<i>node</i>, <i>n</i>) [<>](https://github.com/d3/d3-sankey/blob/master/src/align.js \"Source\")\n\n[<img alt=\"center\" src=\"https://raw.githubusercontent.com/d3/d3-sankey/master/img/align-center.png\" width=\"480\">](https://observablehq.com/@d3/sankey-diagram?align=center)\n\nLike [d3.sankeyLeft](#sankeyLeft), except that nodes without any incoming links are moved as right as possible.\n\n<a name=\"sankeyJustify\" href=\"#sankeyJustify\">#</a> d3.<b>sankeyJustify</b>(<i>node</i>, <i>n</i>) [<>](https://github.com/d3/d3-sankey/blob/master/src/align.js \"Source\")\n\n[<img alt=\"justify\" src=\"https://raw.githubusercontent.com/d3/d3-sankey/master/img/energy.png\" width=\"480\">](https://observablehq.com/@d3/sankey-diagram)\n\nLike [d3.sankeyLeft](#sankeyLeft), except that nodes without any outgoing links are moved to the far right.\n\n### Links\n\n<a name=\"sankeyLinkHorizontal\" href=\"#sankeyLinkHorizontal\">#</a> d3.<b>sankeyLinkHorizontal</b>() [<>](https://github.com/d3/d3-sankey/blob/master/src/sankeyLinkHorizontal.js \"Source\")\n\nReturns a [horizontal link shape](https://github.com/d3/d3-shape/blob/master/README.md#linkHorizontal) suitable for a Sankey diagram. The [source accessor](https://github.com/d3/d3-shape/blob/master/README.md#link_source) is defined as:\n\n```js\nfunction source(d) {\n  return [d.source.x1, d.y0];\n}\n```\n\nThe [target accessor](https://github.com/d3/d3-shape/blob/master/README.md#link_target) is defined as:\n\n```js\nfunction target(d) {\n  return [d.target.x0, d.y1];\n}\n```\n\nFor example, to render the links of a Sankey diagram in SVG, you might say:\n\n```js\nsvg.append(\"g\")\n    .attr(\"fill\", \"none\")\n    .attr(\"stroke\", \"#000\")\n    .attr(\"stroke-opacity\", 0.2)\n  .selectAll(\"path\")\n  .data(graph.links)\n  .join(\"path\")\n    .attr(\"d\", d3.sankeyLinkHorizontal())\n    .attr(\"stroke-width\", function(d) { return d.width; });\n```\n","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"users":{"cookatrice":true},"bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"license":"BSD-3-Clause","versions":{"0.1.0":{"name":"d3-sankey","version":"0.1.0","description":"D3 4.0 implementation of the Sankey plugin","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/xaranke/d3-sankey","repository":{"type":"git","url":"git+https://github.com/xaranke/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"devDependencies":{"faucet":"^0.0.1","rollup":"^0.21.1","tape":"^4.2.2","uglify-js":"^2.6.1"},"dependencies":{"d3-arrays":"^0.4.0"},"gitHead":"c45d4676b76632f668dfbc88ff316d052c468530","bugs":{"url":"https://github.com/xaranke/d3-sankey/issues"},"_id":"d3-sankey@0.1.0","_shasum":"fc59db64682f3198a8c6f33201672285ad208b19","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"fc59db64682f3198a8c6f33201672285ad208b19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.1.0.tgz","integrity":"sha512-T04NWHR5LHj3yWdn0HV/oGfjo+0SSX7tR9YWPPcyywiuQvDOOO24au6qS25MnC1CoABz2ZPGB2+dUL1kKlzOkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHTpolWHmy/ThYIk/Sv0l/ltMDacX2Ux6cwX+Wtd1Pw9AiAfp+Z2ILLbc7+c53TSu+Gv+HGfaaNZJxrEsayenzXRgw=="}]},"maintainers":[{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.1.1":{"name":"d3-sankey","version":"0.1.1","description":"D3 4.0 implementation of the Sankey plugin","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/xaranke/d3-sankey","repository":{"type":"git","url":"git+https://github.com/xaranke/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"devDependencies":{"faucet":"^0.0.1","rollup":"^0.21.1","tape":"^4.2.2","uglify-js":"^2.6.1"},"dependencies":{"d3-arrays":"^0.4.0","d3-interpolate":"^0.2.0"},"gitHead":"c45d4676b76632f668dfbc88ff316d052c468530","bugs":{"url":"https://github.com/xaranke/d3-sankey/issues"},"_id":"d3-sankey@0.1.1","_shasum":"fc2d9024b9354a757f1202d16ab4259d5149ae74","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"fc2d9024b9354a757f1202d16ab4259d5149ae74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.1.1.tgz","integrity":"sha512-nQTYN/h63gy7hdlDZkWfydzDhkWeRAQdEj91MrKlXJu8JV8/1lZL8CijbS1c8M+f1GXNivzsxPHCQyAmHVvK1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAP5+FBexBIi1p/Ob3jjl9CGsegW7l6U0TuDdWZkHROmAiAUhNXAe3fxPgTnkv+RbpJx/h9pQlDIww49SpuNaXueZA=="}]},"maintainers":[{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.1.2":{"name":"d3-sankey","version":"0.1.2","description":"D3 4.0 implementation of the Sankey plugin","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/xaranke/d3-sankey","repository":{"type":"git","url":"git+https://github.com/xaranke/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"devDependencies":{"faucet":"^0.0.1","rollup":"^0.21.1","tape":"^4.2.2","uglify-js":"^2.6.1"},"dependencies":{"d3-arrays":"^0.4.0","d3-interpolate":"^0.2.0"},"gitHead":"63fccc1b0ad0b91fe2334cc19eb1d8eeea0a7c20","bugs":{"url":"https://github.com/xaranke/d3-sankey/issues"},"_id":"d3-sankey@0.1.2","_shasum":"d8392b9164b95eb99f2c153b2c0c89c055d7a6c4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"d8392b9164b95eb99f2c153b2c0c89c055d7a6c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.1.2.tgz","integrity":"sha512-6K/IsvBsQ48tMyyv9QcvgN3I3gwbYb7wHXMxBtFlm8BbPEA8ZjUJQGLmZPuJvvE8UW9/wRgerL/OFby0JyutiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCqx9rYSpjP6WNqQ2zSpH6qx7sU5CWLJSbpBLYMcUeMdwIhAPyUDzsdSO5DoryQYRkAkZIWWmoWLTVg4ong5jX7gG+k"}]},"maintainers":[{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.1.3":{"name":"d3-sankey","version":"0.1.3","description":"D3 4.0 implementation of the Sankey plugin","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/xaranke/d3-sankey","repository":{"type":"git","url":"git+https://github.com/xaranke/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays,d3-interpolate:d3_interpolate -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"devDependencies":{"faucet":"^0.0.1","rollup":"^0.21.1","tape":"^4.2.2","uglify-js":"^2.6.1"},"dependencies":{"d3-arrays":"^0.4.0","d3-interpolate":"^0.2.0"},"gitHead":"63fccc1b0ad0b91fe2334cc19eb1d8eeea0a7c20","bugs":{"url":"https://github.com/xaranke/d3-sankey/issues"},"_id":"d3-sankey@0.1.3","_shasum":"dcac97e5de1739120b8f458d8fedb24daab7770a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"dcac97e5de1739120b8f458d8fedb24daab7770a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.1.3.tgz","integrity":"sha512-c1W7NCP8/e4gGootBfCNrVw02EZUWl4jnxnwRbW2ljFrjOFzwJEB5ffRkL770Wtruiix3PhIXvfKXLAnokuDSg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF65qo0XLkRbDGi4Uqkwc+AGu69iQTtpzUYkYE4obAqqAiEAnbEJiuLgh76/PspfXwwnDlTUxQdGAkfHm8JeqxmpuL0="}]},"maintainers":[{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.2.0":{"name":"d3-sankey","version":"0.2.0","description":"D3 4.0 implementation of the Sankey plugin","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays,d3-interpolate:d3_interpolate -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"devDependencies":{"faucet":"^0.0.1","rollup":"^0.21.1","tape":"^4.2.2","uglify-js":"^2.6.1"},"dependencies":{"d3-arrays":"^0.4.0","d3-interpolate":"^0.2.0"},"gitHead":"201767b76bbd4d5da5e9384c9cff2e43b23c17a0","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.2.0","_shasum":"359a76eed9d87665bc8bbd728dd11bb478f12e35","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"359a76eed9d87665bc8bbd728dd11bb478f12e35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.2.0.tgz","integrity":"sha512-xz04CM+W9RAdCsqZz1TMSwVVP7TnXmPlFWVW43rJD3uXJ/WZiYw3y+20XG5cSpMddv3FaFkEPZsVLUWFw/h93w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBq5xcvLNfl2ylcKLnqtARksJLbHNHgUoKXTFrHsrvHyAiBWNANUECFDocTnewtajwBgR65OFOzjU0YNy8PLbVrziQ=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.2.1":{"name":"d3-sankey","version":"0.2.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-arrays:d3_arrays,d3-interpolate:d3_interpolate -u d3-sankey -n d3_sankey -o build/d3-sankey.js -- build/bundle.js","test":"faucet `find test -name '*-test.js'`","prepublish":"npm run test && uglifyjs build/d3-sankey.js -c -m -o build/d3-sankey.min.js && rm -f build/d3-sankey.zip && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-arrays":"~0.4.0","d3-interpolate":"~0.2.0"},"devDependencies":{"faucet":"0.0","rollup":"^0.21.1","tape":"4","uglify-js":"2"},"gitHead":"322b133d3273eb4f0715558fd496e5a16f2c62e9","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.2.1","_shasum":"860cf95ab8e19de2a7502f74542074415faeea34","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"860cf95ab8e19de2a7502f74542074415faeea34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.2.1.tgz","integrity":"sha512-nn5igr0kN/E//ZYdEEz5Qk5b5Rd0+lfCGXTlSH1jiZ7ak9R1JYpfT+C2jROSSIiSU9d88a5L+gVGz9k4562p8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbmMl5sKhBg2DKzQ9b+rvey9jWlpAI35Xr6IhUzZ1uhgIhAPNHyZVzq4bhHOVKr8O2c/hwi8dNviJI4UK1gu02CvUb"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{}},"0.3.0":{"name":"d3-sankey","version":"0.3.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cp build/d3-sankey.js ../d3.github.com/d3-sankey.v0.3.js && cp build/d3-sankey.min.js ../d3.github.com/d3-sankey.v0.3.min.js && cd ../d3.github.com && git add d3-sankey.v0.3.js d3-sankey.v0.3.min.js && git commit -m \"d3-sankey ${VERSION}\" && git push && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.3.0","_shasum":"513e63845c2e6a117cd944f9c8ed7c094fa5b0af","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"513e63845c2e6a117cd944f9c8ed7c094fa5b0af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.3.0.tgz","integrity":"sha512-Bf74HEUfsnZRmru/Os+ZQthsHPyFNwvfCa0gRicQpUCVu7atnA3gaxO+ZHJP5eIpPWwSRioKosTxcYe2DeVOSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCDlygJRmGEQ3Env6g6gTaG445aAL/8+Ebf6X/etUpkBQIhALSduLpPzSoMOIANg5gPhc0IGogvHRwLciYa27buzDLe"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3-sankey-0.3.0.tgz_1473093826656_0.9769162931479514"},"directories":{}},"0.3.1":{"name":"d3-sankey","version":"0.3.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-brush/build/d3-sankey.min.js d3-sankey.v0.3.min.js && git add d3-sankey.v0.3.js d3-sankey.v0.3.min.js && git commit -m \"d3-sankey ${VERSION}\" && git push && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.3.1","_shasum":"30da5fd63a5942fd2a97c7d1287a371b23d7099c","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"30da5fd63a5942fd2a97c7d1287a371b23d7099c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.3.1.tgz","integrity":"sha512-ZFOT/8ToKGcUURLPTcOd/cTs5JrGGTXON1k20aMJFrGBr6n5wjk2YvUSe9snwDv0C2ruW2yPXXElOzEencDkLA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCNTXAtfcsEhZk9xCPHDArseNnoRZgz0B2aIddKKaqdjgIhANKdt19otNeP27JnyKfZL4HLu1DnSnCboQOt6WGvtkap"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/d3-sankey-0.3.1.tgz_1473094182374_0.9457872512284666"},"directories":{}},"0.3.2":{"name":"d3-sankey","version":"0.3.2","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-brush/build/d3-sankey.min.js d3-sankey.v0.3.min.js && git add d3-sankey.v0.3.js d3-sankey.v0.3.min.js && git commit -m \"d3-sankey ${VERSION}\" && git push && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.3.2","_shasum":"6fc8e97014849e122e4fdf7d2bccfdb168cc2034","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"6fc8e97014849e122e4fdf7d2bccfdb168cc2034","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.3.2.tgz","integrity":"sha512-T+3Dp6dOi6X2wUaNeP14I1M86BMU0TGKVi1lZi5+/RwiaZcYcFvRCpp8pft/0f13iUBhRAJOx0W9NS4yVMP83A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCc/0oqDXNINMBuvC9J8ORhPXGE0khhwFT9ACjrEjx8wIgLaadx4IZD+cXLWghwZhlGUNzWRNzesv3EQ2DygmAu3k="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3-sankey-0.3.2.tgz_1473094359469_0.8631048081442714"},"directories":{}},"0.3.3":{"name":"d3-sankey","version":"0.3.3","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-sankey/build/d3-sankey.min.js d3-sankey.v0.3.min.js && git add d3-sankey.v0.3.js d3-sankey.v0.3.min.js && git commit -m \"d3-sankey ${VERSION}\" && git push && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.3.3","_shasum":"a3b6ef3744b727c6c147703c604160bc30d8e825","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"a3b6ef3744b727c6c147703c604160bc30d8e825","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.3.3.tgz","integrity":"sha512-Td9Qlifheshp3WV8RO4cBgH13h830zW5siVba6m+Gqj7KsEy8jmprmMJoeOyzZETgzl+cr/aHGH6E9uIC4sxvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDxQacvAyFcGbmo7rk14HHrx9kl8pAA8S3fs5AwoTOPqAiEAookDoF/goJtzOLRlD1kQCdBHrf3CWyuUctq0ONtQ7/M="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3-sankey-0.3.3.tgz_1473094401778_0.12458358495496213"},"directories":{}},"0.3.4":{"name":"d3-sankey","version":"0.3.4","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-sankey/build/d3-sankey.min.js d3-sankey.v0.3.min.js && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.3.4","_shasum":"16275973a11f51f341e7caff06ab4ab5bd51c59f","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"16275973a11f51f341e7caff06ab4ab5bd51c59f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.3.4.tgz","integrity":"sha512-ZWWvPOHTXgnTFU5RE3MJOD9mR1L6+FpJEpHILg2n/1CmFf5Y3NS4xlIvU8UpEMqwKjidbdrg3KWmNr4qZVHj3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbmQf9TZInMYUZmNbYxfpgBcQlwkLvwN3Xrij14nTQAwIge7rFfwSqUhh08aCF+ahtGxinjmoT2CPFUlhLdE2MuBg="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3-sankey-0.3.4.tgz_1473094623031_0.001589521998539567"},"directories":{}},"0.4.0":{"name":"d3-sankey","version":"0.4.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-sankey/build/d3-sankey.min.js d3-sankey.v0.3.min.js && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"59984d3508abeb92b583df3f4dcc9059fc972998","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.4.0","_shasum":"a0de4a9c458a0df0fcb84b4d67e7f3d0606c2e05","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"a0de4a9c458a0df0fcb84b4d67e7f3d0606c2e05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.4.0.tgz","integrity":"sha512-NqqBnJfTjJn4jwkjeBKV1RaF2bi2SOPpe82LyNbP5/kIkWbDi4OSBpDrVclptYRsO2geoxBzt/3h7UDwbvFQ3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEwTRPqA2J6t1m7n8ulHfKw92cp9m1G0o/Zk6kKUQrSAIgJlafhDuuRiCDeo0rgv7fbkNWVConsC2ORYauNC/0/VI="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3-sankey-0.4.0.tgz_1473094679352_0.6253739148378372"},"directories":{}},"0.4.1":{"name":"d3-sankey","version":"0.4.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-sankey/build/d3-sankey.js d3-sankey.v0.3.js && cp ../d3-sankey/build/d3-sankey.min.js d3-sankey.v0.3.min.js && cd - && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"^1.0.1","d3-collection":"^1.0.1","d3-interpolate":"^1.1.1"},"devDependencies":{"eslint":"^3.4.0","json2module":"0.0.3","package-preamble":"0.0.2","rollup":"^0.34.13","tape":"^4.6.0","uglify-js":"^2.7.3"},"gitHead":"4d2eb2b0e600bc8887f6820c87058db05a0b2e78","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.4.1","_shasum":"074b3501f0e9c9f4b05429930d0ef1cc0feb85f7","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"kshitij.aranke@gmail.com"},"dist":{"shasum":"074b3501f0e9c9f4b05429930d0ef1cc0feb85f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.4.1.tgz","integrity":"sha512-wp7Bj9VUMQKHJcvxVLlUEqDRh8qDtBl62UpEnrSOe7/rN0RcSYLzc0g8/dUwh5BqpRvvjZbdsApudxTLNWPHNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBTG+Ha1B5QJ6JAGsalnTQRwaiTpsGwqtwU+z9IJcKy7AiEA+iGlIrvhhvajGdzdpv6JaTS08AHeHpFBfzUFcFp0RZc="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/d3-sankey-0.4.1.tgz_1473098297902_0.9881360027939081"},"directories":{}},"0.4.2":{"name":"d3-sankey","version":"0.4.2","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"http://bost.ocks.org/mike"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","jsnext:main":"index","module":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-interpolate":"1"},"devDependencies":{"eslint":"3","package-preamble":"0.0.2","rollup":"0.41","tape":"4","uglify-js":"2"},"gitHead":"c343f2bee77222ba17b669c08078eed5973f0b6f","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.4.2","_shasum":"34a1512f2b4406a35f80eac7febcf5822dbec5ad","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"34a1512f2b4406a35f80eac7febcf5822dbec5ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.4.2.tgz","integrity":"sha512-+EQUnk4yFS7kvLmNce7DbjVQqsK7oAd7Cwe2MkNnPssZbELXQvTFRMCKa0Vq9rw6Csrg0ASVJRBBTFaZz2fq8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID5EOi1NKLqKo4bFdAEQDp4hW6Lx0/lSR1lpEIouSNMfAiA4uhhCTwiTJnkHr8tKYKmO47niIz93Pvk2bV89wI0i7A=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/d3-sankey-0.4.2.tgz_1487703951044_0.5638266918249428"},"directories":{}},"0.5.0":{"name":"d3-sankey","version":"0.5.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","module":"index","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-shape:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-interpolate":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"3","package-preamble":"0.1.0","rollup":"0.41","tape":"4","uglify-js":"2"},"gitHead":"e28b34b07fde95f6c1035ac4ee9b9f06ac33bcaf","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.5.0","_shasum":"42315b8a369ef763627fe7900729b9ba8a075d03","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"42315b8a369ef763627fe7900729b9ba8a075d03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.5.0.tgz","integrity":"sha512-Q8FlF3rgrN/eQbs/9Tg0aHIKTLifD1QAEg9rZoZscuSKQWGeJgP6xM5cxxoWj3R58H2YqVwjefuHrHV7Z+P/NQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDaZXBaaY3/9TxKujoi0Ky3qvaWVjeo/8DiuslbsBIuyAiAncBO8IIvAj2wNEPB06qHSQ5nXs5AQtHMfOHj6l1McpQ=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey-0.5.0.tgz_1495743907196_0.01361030526459217"},"directories":{}},"0.6.0":{"name":"d3-sankey","version":"0.6.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","module":"index","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-shape:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-interpolate":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"3","package-preamble":"0.1.0","rollup":"0.41","tape":"4","uglify-js":"2"},"gitHead":"548fd2a48bd5dae0250da9f5175f2f6959ec6d42","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.6.0","_shasum":"d2a35741c8994367a7099399b52387990cc2279e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"d2a35741c8994367a7099399b52387990cc2279e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.6.0.tgz","integrity":"sha512-pyVm5d2UY06Jp1Dve0FyXIIrzIQ8O62vb1fgvrHmllM9TSaY5++CKD6aBYgxKwaQwxVqUhtG66n7d02IU42mKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC75CGOLdk5umum65xsrO557zERk1K4u6+ccPU6+e78zwIhANou975v+GTB7ThWWSNuodynUmwr4S/yFESlTxyt3jC/"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey-0.6.0.tgz_1496422869830_0.3131653629243374"},"directories":{}},"0.6.1":{"name":"d3-sankey","version":"0.6.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","module":"index","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-shape:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs -b beautify=false,preamble=\"'$(preamble)'\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"4","package-preamble":"0.1.0","rollup":"0.42","tape":"4","uglify-js":"3"},"gitHead":"1b3a65b795eedaf86c541c4ebcffd97d6d30f7ea","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.6.1","_shasum":"fcefd314014dd65960da47f5d3d85ad7facc76a5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"fcefd314014dd65960da47f5d3d85ad7facc76a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.6.1.tgz","integrity":"sha512-DwPyqKvWVyQgyx7DxAPVZw2RfW69FMzXnchWP/rE2vC29F0lfiXKgMKxQOB3cQi2xiTHzviVSdjYfeul31RRhw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCig31n3aq0+0VwVKPS0sD/RxijApyQJ5lEWnm0cFhdmAIhAL5w6pPPbCg82GGPicsc49tSgPC8Ab62BiGA8YMijg3L"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey-0.6.1.tgz_1497287608103_0.044891757890582085"},"directories":{}},"0.7.0":{"name":"d3-sankey","version":"0.7.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","module":"index","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-shape:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs -b beautify=false,preamble=\"'$(preamble)'\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"4","package-preamble":"0.1.0","rollup":"0.43","tape":"4","uglify-js":"3"},"gitHead":"e34de7b7c011441ce7c8097df99f2e56a06077bc","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.7.0","_shasum":"f78bbc70d6e2fd7d984f8332727162ee0aa19700","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"f78bbc70d6e2fd7d984f8332727162ee0aa19700","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.7.0.tgz","integrity":"sha512-W4Gv84Xx7DQGOAoLSdcrGkkXm5LsJeHJk90NXLK025sOwhPO/SVgUkcZ+qt9+bbcY4MzukORrQ4RF/LGh+6OXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGGzfGFVQDSuAofkH5AqHVN+mm7vQRRlrMbpElDCfzSLAiAKUn+M6duUdeHGiQ+7Xn3nSHou8JMwD7FhJLXKpeTb8w=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey-0.7.0.tgz_1497373291060_0.3022833631839603"},"directories":{}},"0.7.1":{"name":"d3-sankey","version":"0.7.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"build/d3-sankey.js","module":"index","jsnext:main":"index","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-array:d3,d3-collection:d3,d3-shape:d3 -f umd -n d3 -o build/d3-sankey.js -- index.js","test":"tape 'test/**/*-test.js' && eslint index.js src","prepublish":"npm run test && uglifyjs -b beautify=false,preamble=\"'$(preamble)'\" build/d3-sankey.js -c -m -o build/d3-sankey.min.js","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"4","package-preamble":"0.1.0","rollup":"0.43","tape":"4","uglify-js":"3"},"gitHead":"40efd6564bc0096fd2cc9c34b65d9aee6a4e9407","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.7.1","_shasum":"d229832268fc69a7fec84803e96c2256a614c521","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"shasum":"d229832268fc69a7fec84803e96c2256a614c521","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.7.1.tgz","integrity":"sha512-KAyowBWtTLQxyXq1UhXcdCXKbuCQvL51FgqOS+fKlNTQ/4FfSWabRlWs2DezzwKyredAsOhBSQZN/i0XdeE2tQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC55uSaZxKxBBCJQvRj4PhIQ4xkJOhxgUJ/5pKPzqIR+AiEA7Tf/pcCrzxcXYWyb52GUfmir38KgTKZUAaxKBAOo5Y0="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey-0.7.1.tgz_1497448046174_0.8179843928664923"},"directories":{}},"0.8.0":{"name":"d3-sankey","version":"0.8.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j build/d3-sankey.zip -- LICENSE README.md build/d3-sankey.js build/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"5899b13c602cc525df89c4d274ecac1a350bcae8","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.8.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-POZ05+9KipHcPMjQkLQ6tznw0H1hh3b2YDO+qO8fMxJJn4T3zR0hLC3C3IHAhXNMCQS5ZZHCXH4soZ2/bSeWRw==","shasum":"1b4e84031d9f5b693694076defc3e332c27437d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.8.0.tgz","fileCount":13,"unpackedSize":71400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce3UGCRA9TVsSAnZWagAARB0P/RmbH3X4Bjb3vt3z1Vd/\n7WDaeoDAGbld+TDtrzH8HkJBGJvOleEqTkaWXVZ/G+s0epSOX2fB0So4BB91\nip//9JmKoixzUNnju3khxARByrYPQc8aO60a51tSAICP1G+laLpNBxxdK/kQ\ndNIhZKrtHpBqzbKt96OTr6aOodSe11OtkBDVLHa7OdM9WPt5gKLCGQlieMuO\nXe+or9CmxZsV+xdgEa+wuVKCgc4whH3DVHgo2w84Ftlg5pnB8h0gOa2lvKi1\nX5BAu3ii4w3T3rRqixaY4a6WwHNQY/bW3QYp70cSsRhxk395DwdMXz/9VxFq\nc7Nbv5CV52sVQZOlJlu/kvTLx5oboUIXUgq/ho1WqUKCJ4k3PLY30U4X5fkW\nvBqXInUR/jFDPeMjYf31wHWQ4G2yohx9MCq6QB1JIZ92Q4H/FI21XTSVD3R0\nmtbhw1HOktNo9x35O5VTWCLZPCxnmdRSMH+0MBRRGsgsbXlxbtsSfDXvcfh9\nbMDd4wFsy0HvBnw3VJIZj0P58Ve8eQ632qv1EgTgjW+GzSKNRZctclIdttxO\nZtLhIV5K9LS3dD2YNO8kBYw9CYRRo1mJGWulocbs55lIJFDYJAjZDNjUE5vZ\nWQIwx9iCz72wvgiIZ8WfUG3jGQxeMH79U1kzas6si1+wWl8cXKgt9AfLAeYk\no+5q\r\n=CBQn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzgAzZaYKVf1F7rmCknrEerOFb+2Nl/o+imwlxeon6ZwIgPK4UumeiBGtNvy0811hncjhBtzzI2GjOK//nO0xEU2w="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.8.0_1551594758147_0.017497112486852817"},"_hasShrinkwrap":false},"0.8.1":{"name":"d3-sankey","version":"0.8.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"818eca3cdf37924ddbc852a50147878a251a581b","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.8.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-1kDxwNLp9Xo/67AdXZRww24HQ2XSwD0xG7CzwqCb8leoZ8O5BqmNFus4LUGoSIxet7Bbnku+BdGFGCHI96Og3g==","shasum":"7edc3049ecf38499893e133cbf8d9a4eeb5cbf86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.8.1.tgz","fileCount":13,"unpackedSize":71397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce3gRCRA9TVsSAnZWagAA/8kQAJTfiwN3FPZTCJpDofXl\niMg9bcayKOPZbBYMUGFeNkj8x1y9Xj0y1qCNYcDBhfg21c8t8ebGtOkRKYjA\nOnjasB8n+GLZ5DuCyI/88nIyET4KH9gy8+7pY8A0PCNoBkuQY/WIjaRgvWHv\nLB7FoZBuX3lbAtrnUQlXaxbhFbJOdkIgoXjaq3XdZippCnnTRAYcejEiVke0\nzVLJMmx1Jv9BoyeKh/3sregFjI8Zjw7VDOTqTZ7gFNGtuKXoKxcBFZrjvUtu\nI1i3/HuOpOxCjKqVWWS6Tu6exKNw+z3VYpixGmpUDghry82Uk5cF21aD0Jr8\n1gUwV7WCZb4FC9rStKZGeBWkv7gBLXLjOSu3oUI81yivFleclN08/Ytfq07d\n+r0Naxykj+GEzcFxcktOSa9/ff2USQSgUr34FCZlamNZ6r7sRBNVDJRTikuY\nX1ju+qvX89yuscwIkujmtwfcrQF8Pq1ivzmCa4QyAUtCgZF3JsAFkEW4x1uE\nooDmD72pbACQM/4auCVJTkJxG2uMI6tNGvF1ussWWS2L6G/eah3z3oYYc9gS\nzar32DQ2nahzshcaXXpUhqaT2AMturiqdmOahH/AsM3POcfuX5uUd8gt51fL\ntmDFknxSScsgV1wri3glF6zaLIvDaLWAexoIdf2TG/K7q7nI8Gbxzt+s99fB\n/UKu\r\n=6xR2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKgZn5wVYtWUG4QQIa9daa/HOBNHaYAH8JD1/b3/lrsAIhAIyQezHwrWd8pl1C2vQYY7GBWq6xLmRv05pwlwfBydrT"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.8.1_1551595536710_0.3407806151372901"},"_hasShrinkwrap":false},"0.9.0":{"name":"d3-sankey","version":"0.9.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"310e38e4372d29873a51481a136de9d2609acb40","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.9.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-pv9rQ3rmQ/ogSD4W6aP6swV5S9z/uC12REn5cq/Od/4u+gjHfHqp1qKvzOzVdFbrjAZg9HEYjWyaUg/n6R7hqw==","shasum":"0b3bceca1c87acfa80e616f2d907be69feb7993c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.9.0.tgz","fileCount":13,"unpackedSize":72584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce36JCRA9TVsSAnZWagAA6z8P/3o5+rOizb1kdJEKWFXI\nLU1EOQmlN9G3ToWLls/b+PZlFzysDM7FpBVlbIHtpGJDIGVteK5rn1xs0+JO\nymbhtB1eY2TM4QcZ9RJWkBxe6XGVEhCFfmFriwZ+AIVgsrAFnIlIvbH9flsI\nlubdckoQUdWKfS2bG3AQWhKG9LSgxZCSpuugSX06N9r6GWaMARgHUuepSfVZ\nFhH2jXTXgIUPpnHlCz1xsxvDpXcX8WViMVInUY3LuC+KtSOWzL4SqyuRILDg\nkmw/sOD+8mKOnE3ziKkmqv5XlEP2SlNy4Q3QHjwSs5nIT6i4LBpDweUlH9cb\nqsJiTKDsLQZRdP4uVf/iP4R9ETHO/TTThPHog2l4WjLb2CUvD/QWkcqhty33\nSMQw7X6VHTbozdtCQJELojilzitEhcRPLdM6nzucsphZd3b+m83Y8C5Y6X3U\nvZnH0/9/QRTs5kW3CrcOG7C9MDzxhj7UXt+jsQTrLBnNNMCKskM+s7egT71v\nMwpQW13eRCTacDueTEL4AqDB665jju2y+LknuJ+e8TJztJL87NmPBJu8AFxm\nBvUdyEv/f/c8CZeZkolMPsXJWgKX35Qm6jTGH4kAUnUM+eB0YNP5ERTy3Sc9\n+e1NCBwbvYWaMVTMBtaKvFZpxWN9633HeId4aEyQtN5ElPV1Cat/aq7xRaNO\nd3iP\r\n=+KOs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAFa1pYA4peDn15iUhcbhN72l4svIC6397GJYA4BYWH6AiAWfAwf7XEvGuF/ktSruvXnugdZFbPuwcmFKuDknAHtyQ=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.9.0_1551597192419_0.18487984722512563"},"_hasShrinkwrap":false},"0.9.1":{"name":"d3-sankey","version":"0.9.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"89ed4ffcf9df39f888983486d94fe903d2d8c68d","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.9.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-nnRkDaUMjBdeuGg+kWGdA+tjG1AVTnJ+Ykw7ff7CZHVI17Hm5sy8n0UXykVffn13aNHwK5wPOdOt1gS1ZEaF+A==","shasum":"b850145a3284111636ddec90dfda8c64919bee4e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.9.1.tgz","fileCount":13,"unpackedSize":73087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce4OWCRA9TVsSAnZWagAAHXkP/2uMBlCLailiptuQQ5P0\nSXG6SWqYP32OdGorsXgWgTWJ0+iB1Lr9TGDfXfce7eaaHDGfqiW8ZRkBGuxT\niyh//FjNOwZ3C4PneaFaZ8rYIvcpGXa7+eOswFyh3Q+AOgRdt00YTtTBWTq0\nYjk+0TfEMvaN7tiI6jKOwYlRNGGqv5RDIzKBSOTKtYpTMmGEHfFg3E5ESsFJ\nU3E82Lrmy6GR4i8m80sjjJnbOFFyxdo1XtBi5Bn0TZ9A1yQpqRmriZnbYsqb\nW2q/oPlPcY/xxeKNIK0XUSz/dXgZe2Gf9tBzmDNC2AnYCrhw1/pzNqizfqzh\ntOTdl6JjFkCqzTDX0T/vfwvwqCfFjAdwCYpQsbp31L/6n6YYyWRA5cCs27AE\npxAX3JGd88voIPo1sbU/BEyWjnnc8XPSEWFFTIGyQjwHF/hRU1N0WUGfXAbM\nMMcnhyQ4YUXRLI2ouxR7r4u8MM7tR6YV0q/39C6JhEUsxD2Eu5mzgF9jcoKu\n7fJpczdiFp3CofTUHFMJyZU5WCI5SG8Lrym6lncR/MGzgUF58Efefb7hakAI\nQd8NANnXrrFjkukpewn6cy0FpiHDWKCDQF+n8E4SMwhkTXhL220w91IpR9Xg\nrQ4n+jQU/NwXZ9UEtrJaDewDlGCtcpIs95vfPWxr+aFCQ6fbWfDItDwHJawV\nF9K0\r\n=euEo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID+OkPgW4Run3SmCRLuB6ZzTrpTe+oboKKQpporwLlCsAiEA3kRQzqreQURsl6tcnZ6+8OUIpD4ztYSoZ645GS7Dnq4="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.9.1_1551598485540_0.03348450887689203"},"_hasShrinkwrap":false},"0.10.0":{"name":"d3-sankey","version":"0.10.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"4c63f1e2c7f0d3fc0f7922c48c3047a3c3212b8d","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.10.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-USKgFTQh4JgMWzr4KaVnRd99sAu5jGspS8bT1rJhhIvA5DOhDR6OUbd5+zW9Kw2xPLDGsno/CdV30KVENYxJzQ==","shasum":"31cf0b8c69822864209838e379351a3aa6c13159","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.10.0.tgz","fileCount":13,"unpackedSize":73160,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfAwvCRA9TVsSAnZWagAAAO4QAIdnCHF0yr5VwYbGnFzt\njYgTV2Zt2c7N8Pd5d2/hAX38Jjc2IZgk43K7YQgJh5sPuADrnon0x5J+JZ1Z\nOpfUzmJBrHOd4xnIg3IFAffirjMUtUkXxHvYIWnfuX3iCG0eAZrNxeA4Oa6j\nmi/Gg/oPn+zg6A1Ov3c0Fct6M/8xQwAhwdrl0oRl5AsMx4eS0vnMkhxlk8Bm\nPcYUDaldsJ4SM28gvJk5jK3xbrnLNbaLGMTtzw2135mx61GksMj4B2/LlfFl\nsj1JqPqTlgvBnLYf96IKJnl5YhN5q9CBUnYGUKk58ujLWAk1q3mV+M15S8qd\nHF3gyT3ntOb81rEHY5ko/7cnm8spqLZ4F8W8hZAXEuOX82SiheooNg9SZTY+\n7rqS73fHLGvDr5UsLvzao5S6HMA+IyiVKyVzAUCSWPEPzL6V9S6Qo+WPI5bJ\niWpHa7ybjpufQWzVhTj0xsRb8hXHVitjlocGdUq93LsliOmoo9wHe+vvyxYa\nKR6Ep4a856x16sewv/heKc7o6TBUKQijJDSGHbDHyjm4JGGXBfdLuI9l8bah\nYf/uQj4LeHKA57CUdfBv8EgSN5OF8zDqVyt5U4xILjvFDIWDlXVbYgYG7eTV\nBC5LTSMWsO0/uic/771Z16mLqAvc0OI84Lwsr3a4A0eq2yNDhAeK4hu9pyJg\naaLx\r\n=COBd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBXJ7ZTrCVR5kq6OHmbySuwfDiqppwPPNT+MpJnEnpKnAiEAq1hKXbu8USVfpREKI8xo0oZqtpAcd0VeIhmPEYrOENA="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.10.0_1551633454230_0.3812632420037476"},"_hasShrinkwrap":false},"0.10.1":{"name":"d3-sankey","version":"0.10.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"e97c1773909133fd6cdb89f24d81a05c5c5a1c2d","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.10.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-+LFHgsXz6d9CwfSSQSBEtebHEGCyuAd7+SZ5z0b/hYdFRDHvsdSaDf2rUEv9ZPmpI2ohgZh31gF4GJDsRyoo2A==","shasum":"cd00dad6a98c942ebca09689f3a8936686b5ef25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.10.1.tgz","fileCount":13,"unpackedSize":73651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfBmtCRA9TVsSAnZWagAAMdAQAJapGinnVjYAT55QUOiM\nyR7tdb9Cig5diUqf3BHSaiHJAyQuFN7bmgPrkNExwRsUrdX81WOsYmnIQbOE\nXDdwFJQ+K5ZYznetgoe9J/EFE01t7rPn2chb1dOdU9Mmkq3f9DW35yjdND8f\neBNuxN0L9RIkvd9jCkX9RXm6Pp1He0Hq8yVam+QG/8oSpB6OgbwhVfIe+joE\nzvx0b6zYZXF0qiplCt4QBsRfVPZIfR3ub6Q1cNmK0LcFjEERXNyvIZr1/Z/4\n8TuCYTSXLJfziC2Wc8qfpPaufi6hBJR0l7okDx0FP1PQU4DjVvLLia0s2Z+Q\njWTago39juZotzNnWCe2AJBSBJ3dk6qzuq1Z3rOgcvlCiYADMmzN0wu0FZr7\nzga+SiPYA19zB383J0FbYPSd+VOG3rduK1+Ms6VgUmh0Y1c4JTGKHZmMiZAA\n/8c2WYvJDxzYe6LD92vvaXkmNnV68x9X48dpD6J5ahVyv5JcJjDxt0jQdHzY\nwcjjhvPwkupZvQejg4YsRDKhTko4DUdgxWawdtrFZiht5XHz6Ye30ueJKe52\nhr5gtSJy1IX7EAzjWDjz5/nMpJ+5HdjjyHZSNxC1vRO2Pjka++T+jHanuYfS\nBOe25N+lLySV+uWXdrabuZNCxV91mT6zU200m2a+83hiP8ATfjL5UQTHPQ2H\npk88\r\n=iB43\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB5XHFYU7JBInso/uUaJIXjQNitRZs+ZL4DcAFipZay3AiAglNQS05b8QIbuJYwQG0xCujLhmKDb1BhNOAfKQxk+ow=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.10.1_1551636908349_0.252693139780215"},"_hasShrinkwrap":false},"0.10.2":{"name":"d3-sankey","version":"0.10.2","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"67ac06ccb6d639cf83f31726fd57a43ad9c0b45b","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.10.2","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-IpKSu2SE0jv5NHKluTc7L3beFfbUghzYKLAKzyEHcikZNQyhFM3SP0+lyjEvD6Gi95GZ8IFWL0O2YI5Buo4/xg==","shasum":"482555b913e9ed796ab63df4d68629c1d147dd85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.10.2.tgz","fileCount":13,"unpackedSize":75816,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfDnjCRA9TVsSAnZWagAAIcgP/37sbw+kKqcK95kDjlbl\nWAeCM7KkwqsJmyCg2Ymwd3qQTt55Ki87o8Ld+3RJ4vnxAHR4As9Eyv3X0YmR\ncPRMWoqiiKV1WikiPfnGoLY9lp0KdQ4gB/S34qhQTgvqhdw7//ctuRF74Xnn\nWASmHhE4H0M4K4Jvybfb3R2aw9m5wT+xDR3ulcq2F0aDDyxtHGXuulaS0uxJ\nwBdnDFaJC3bZ0g9YXxv8vkr1gO6uKJ20hEbXpXIJ0v1XnKlxUSb/9+RB5hlR\nu27K2R2NzR+Nvq5Ilrw8Wz0hO3iv/ziEvH2yVjfpBT7d80QXMY51fwAlvSyl\nNkAFE78Xj/D+eEH+Rz/G4L9tjW0NJw2ZOH2CaUBBb/3fhAcjotJa2/baz4Ns\ntnCisevDpUeJr/fzlM6bLEjq4cLNKUdOG2N1U2II5JVllE5VIh0+dM2Y28Xa\nTT44rq6FtD4jTs5D5kIh73FwF9Wx6C7z8OJekPEf6Qbz9REmtoO5VUMRCALe\nvn5RQip1IjOZC6UobEYlQbn7pmz9C1iNQeNlU2vXzRPQV6v3DatUNRuRiwkh\nP3+OzGA4G54pGg7ndGVILcFqJI/BsssxTF8D0YwIXNPDMjokk/AfQVrL5Ddk\nMGKtLjOrmMfWj5SVy8D3se3Ab2LUbirVn0MPhew+mb46wtOCcdT85uNOSPCo\ngUjA\r\n=KeMh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQuueIYw/crpk49dKSsbcD0rBOlGHFRKbtcNgvVYw2PgIgP6M4usbPaRz+qytZ0V5Thp8b6DvFfOc1z2IIqe/aTpQ="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.10.2_1551645154408_0.7658450378441792"},"_hasShrinkwrap":false},"0.10.3":{"name":"d3-sankey","version":"0.10.3","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"43be2a14593c3588999ab81cec6261dc19a9fa77","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.10.3","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-AwCDXvlXQkvuIlSi4fsYQPBkc4qziHTrLeFTgLxHpIjpL/25fabZ1v1S1DFqCQxfa8Q2jr4FqaFpMLUPGkg2tg==","shasum":"12d1145aa14973f8c65fe4cef234617a4133d51e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.10.3.tgz","fileCount":13,"unpackedSize":75936,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfDutCRA9TVsSAnZWagAASpwQAIw4WiVkbIHu4JqZ2L8n\nmk3QI22lvvhzrWlEJB/51+yZmzh2rklAuLyskXw7zZW62I9SteAMSQj7ollg\nCFuOT9F5RDseQ7WTM9z8lay00/A8riiRyZp7LMLxOv/IQOt4pIoXtG5TV5te\n2CiukiIB8NItnTM5drGQECAh7YV4yQ0B1ui+785Q/15Idwgvll6NvueGRcVP\nfFU5rYrMHLALYqlcxYGFO8gYHFwe0EHVmhZrje5SBPpqZ8XWBLvasZ5JZL2K\nvZxHZGYd8p6x7U/305JBYof1tVx6ZesgejXEyb5crksg6HbMa9aSqaK/4YDG\nLQNPh4CrSxhCed1YcRbO9aRcmtO4G1PZq9isFWivMC9yN7S5oL7imTPgD2tn\nBkitPttWgHGGFuLGh54Pt8d+f51h4iEbpaqVY4d4SSx/GFJr7WsubsCw2Aly\niGpRwF/m0/FuczSmDo9Ta8ZW4XWKAEweBT42Jar9P2NR419Sq3hqtOD80l/8\n/TpwJuFOXx1IGrmU11Vo0A9R3HyzCKl6I8h7niRy3hU2rbSXjEzXOnXeza/b\nIZzMRFkGgzZjf2DxQUgEkoUNRqoPLPfKs3+56ejj/sKH7JgMoV2i5YXfqznp\nXnP/0stzf1VtArKwbUvqxnApOo9JSLs6cQgQ0v5iVmaug42mSjoMbUS0OSwu\nV8CF\r\n=yYMk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBH9c0fruJDutzbhILz0fWzvZZI/rb2/OR3jzSsSyJ/sAiEAuipwfIW5b7Nelkl2V//1urbYdhx0of/QcbccTW+6Kfc="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.10.3_1551645612475_0.1688749059019241"},"_hasShrinkwrap":false},"0.10.4":{"name":"d3-sankey","version":"0.10.4","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"80df1729c510391f9e6d17ab6a04b6097e6b4b85","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.10.4","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-MU2haTa/G8dWCbBV67BBYvVaHGF6F8gPC2skDTKzwT/dKoyfmaJovMkXtKGEWr1uehLz/RzbsckYys0J9RDU7A==","shasum":"71756ca6b20bb1a074a98bdb8c1f52b5b52340b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.10.4.tgz","fileCount":13,"unpackedSize":76166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfE9tCRA9TVsSAnZWagAAgT0P/jtR77gfgANgINdROmM3\nNrwnhDymEffaTwet19a/2XMHUy0txW5enA1ZnfneOwsfROThr9Ww1MAQ6IGI\n5qSCYnaTbq8pMK+XBovpdrS7iqA/my0DKx5jrcuuwjrZAThy3yqVmVXh9TAJ\nS3KX8eUIRhsIw0tE1IsJ0tLVg+fFbZud7qvGCKXw41Y+fAHigReoWN1QD9/z\nMPU6QFGaKWbVvcdhEEyl8yVnzAvwVepgNCq7Xq6d1jUFrNiyjimlQ6KQ+FEP\nO7k5nhFgrxOWJNxPvw/pu3RfMZdwPz8EIpbMQdh4ltut2uWbSVmM6atPceBa\noERl5NMxdFFc5Wx+XSZelH2F44PLF4DfwN4aKfjwPiVNuO3OK9I/F/gd73Id\nYbhlIi6aQYDXWtQ056sWzsS/uRn6DsB28W8kL16KIGtfdj3qkrn+yW4uQ7An\nY4cQ0zeiLI9TGQSUjlHxaVql14appDLqWQgd2OWJiboizNHwjs4RtJ39sQTS\nF490SRClt5Kg36qBMdN6YBNsOJnN/3M65Vfxin/4dFRo/GGKDh0Knlhczz0p\nIowvEsKbciDgndqHFKx74GVfndYc6JJpyYyPfN+vvpl/Kun+WJCFz5KJsB4n\nQuKloKnf9UE4ZFtVik3WujJ9ViBFsSvGCMkN4vRq72z4qcMrkBeLOlfV8jbV\niAGZ\r\n=Ii6l\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrm4N+wTw+5TriUXGKg5WCsNASERo6+rtbOvlrPgyI7QIhAJ4/jV3bIXUxwNHaWQ+/Qui14sjOYPCNZHBnObTDVjob"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.10.4_1551650668176_0.456121072502514"},"_hasShrinkwrap":false},"0.11.0":{"name":"d3-sankey","version":"0.11.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":"1","d3-collection":"1","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"08c210080d44b45f6c395d74aa34be381bc8bb04","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.11.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-8EIMTyhfn44CvSHy0jtvita7hV9rEarSaF5GlbSRUcRCCeTGu5id0vr1Yh6SPjqJneaUKCXonU+Qv5XRPxZZ7g==","shasum":"1e810775273f191f51d7c3743d5258fa243e8a0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.11.0.tgz","fileCount":13,"unpackedSize":76493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchfSXCRA9TVsSAnZWagAAbnsP/jK5FAIKMStDnvsfYkiM\n5jf/M9zmYIToYUi7K2HnWdN9HlyVJlgxN+O+IyfBoBAohQoRVRRwbDtWDnEg\n37h6vU7pE2LCRGMNK1q8p74gY7fHHY5JQTMrrumfNXHo5k7KHQm6u1L2V5G/\nmjWZ0SVQ7lyaDoAV19u1dze7gK6+bF6Etfu914ljQtcW1dmxlYrqG8gqag2A\nr6VYg98L2AzW0Ht7er4wiR5cYO2wG8ojdkBj3ZGcQx34IHmF5EXSoh9Uh7yv\nks1AAke724Rl16mP32sgkGTTSZM0BMQuh2gM4R+A08jp64FOJ8pCuuyQzwwq\nNR3Sj4ChiwwOt2NR0Rg22dzLOp0x8OwVzDvos/IsPv9d9By5OqjWJZPsAUY8\nra5TBiz5xlCEp9kthcjsOUGFXpVwW+Udot9QF+qHXFt6tCctYJLm514ARqoJ\nkaHuHuO/E8XYhyTLG7v9t68FvOSZRlHJfaHFnLSkkzmYuDWiPme3N4VLWdd8\ncqwK55KljEYpS/rIJWwb2FGTjzsxGZf3l9DEBkQGYl91v603tsfSk8G0o/KK\nw/BpxVLWnOFjJgARmutNqRjtvSMdS4pvJqjGk6DrZ0PnpYLEAe3vxw49NMwT\nIb1FK2q3K51H1geW6qgygjkfVNT2EnXJBWPy4LJAh1h5KuPzL6cryyCxEoJW\n/qn7\r\n=2Y+D\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPvBZaZhY4Wv2sA1yOWT3tssDanXx1Ack072i8IzZSvwIgWytYfQPHtDScn5Wk01vyUWZ2poTFoyLoeayjrEBoAFo="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.11.0_1552282774024_0.978659606161381"},"_hasShrinkwrap":false},"0.12.0":{"name":"d3-sankey","version":"0.12.0","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":">=1 <=2","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"695b11fcdca0f0bd4134d705e90cbdbde30a8721","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.12.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-l6XDQ9W8qlD+YWDhUI9mauMRO2rZHOa/ySfwydVtyrPjLloO83PRFmY9S9vTuWTwZGdl1mLGnBZXtuDJpxgngA==","shasum":"67b252e6b46bb09b3ec7c2a72b86dc7098a34f38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.12.0.tgz","fileCount":13,"unpackedSize":76682,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchqdoCRA9TVsSAnZWagAACREQAJEdoEqcctBhLL10atrZ\nY/451QWHFd09tvh4mEjtEc8zdS9CB5d4nyd6V16rmHi6pbDrEQf+7Ikf3KMe\nmbDUV9DjiSKudT42M5kiEyG+Lw/mBDLmARHQYv3yXOdIqdqMUVw2zoVClmhu\nh+KoMQ3dKssZU4jw2SrVHq6Pu4szu7YtaVpUqshMMIraBRpfZ3gXcTWlhEA5\nifFSRM1ewQ73MCiWpb00HXd9eakUJRuKPNirPWKpLMR4/wOAXJ69pUvIhHpo\nWSpFSEz6QzrNgFdpbwwXt5ogFcxRYZMwmiWJVoveOBSUDh/BOklT2fBSDYxP\nz4RDBVeajEW/HVq8okFHa/Qi0hC17KgO/F5+/lwqRWT5UaNJb4r4CaHW55Qr\np1EQqYkhATiM1A3xF81ef7FnUZSqOiD5FMZfLnGwE360oyeExLqyGi95py0h\nHQP9QfgGKEdJkdfiBRiNtuyxHs4plbUbyghIg6OomsWKgEQuxuaBJh2u1C3J\nWOX6Ejqw1FuT/9Co9R7o2noK4n1OadMMTRJpH/WYrpwOtGe1j+VI1mMLu8gg\nClV51UCrDlM36ApfpSfBfHDobNXAyPcetDJCXKoF2D4fOACq7TQFYIr/Jaf0\n/8SHi8aUcXzJx0nuVzNs8vL1dLG2a6G1gKjOTPrroQDttaPa9bu5XNSjcRVF\nNPhV\r\n=EQgM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE/o7g2jNmotRTqYEyqgfLJxVEzWUpGZQ/XddDXbnt9TAiAW5/4e9N1L2ZgCNK5C1rywKt10MUaNkOLT77mRFzXC3w=="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.12.0_1552328550640_0.5858141097364733"},"_hasShrinkwrap":false},"0.12.1":{"name":"d3-sankey","version":"0.12.1","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"},"dependencies":{"d3-array":">=1 <=2","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"5","rollup":"1","rollup-plugin-terser":"4","tape":"4"},"gitHead":"20319c3277f767be7b7531a9ab21d9c71f3ed12b","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.12.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-2DF8aj52Zkghfl06yCsCJUW/p8ChQND0+p1Xx3DiQIvABp4XazvyMAppgGRjJGwK2tkVYtpI1IgFIlMppBZMhg==","shasum":"f4a655227ee90211befcd32074aeb275e73f92ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.12.1.tgz","fileCount":13,"unpackedSize":76743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchq6RCRA9TVsSAnZWagAASBwQAKAuffcGZFhyhFwekXEX\nJdoGbK1wS/oTSg/ztEz98b3qBQl81hSKAi8Jjf+ex4j9ZFvJCb2Yw7hYVmUR\nDhNnVfQhZ4GwZuMwygvYEebwOC6daunjCsBmDj0uktHdFWl3WDgYegPoa8K+\nynUQGWh52cxdiYsuxLrNLzj/7NLKlYXYbLQGZkknSvdX3edZmhh529x9qc4F\nLx1ULcC80mVVhrbg1oW5VYbx/g1iVINqro9OP1ZWjqvsmgGCgAr+I2Gkzyp1\nChBOqqeU/T6pmWNJm3jz8muCkz0ZFxXZdvMpTw9DIqL7L1dUVhwGX5h5Vq4N\nuC/0URlNN6P4UxLr/2AD4ssHHpaTDOa+28RphkTsxmFR1z2pdyzqE7a4ifnL\njQH+WctGWqOanQpDs5w+G8530ZPgIY48ZUqcrEYRwFIZihc0CEvnmN+e+8Dj\nsic69klqk4Hug7UTTarlS5KF9sTpUPeBC/dNRlfoJy21G27xkQe3aYHZQIqk\nKMfq42dkGrNOoNq6Y8SErWQqOQRRpaMkwUlQY+ZdWSYzO+AWSxXen48wN07E\nMynYIO4PKnIJoT9Nmh/ixbuEWPIvKxVSV0oSBu/YCaJXwQ7HdfZzzEK6ATN3\nYeMRNX6ArB/VR97feRwpNzvxpgABxVxyvq6xTqn0IV06438iomGrWOwy8JY4\n4/9k\r\n=2dH5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDABxHghzAnAR8lfjeOGwCbKimYvsa36oLdBGVJkxI6CgIhAMp6ks2l0mVhTPdF4lf+pggxuA2QyLc/l6kAf6fzxrSn"}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.12.1_1552330385003_0.4536523114768256"},"_hasShrinkwrap":false},"0.12.2":{"name":"d3-sankey","version":"0.12.2","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"},"dependencies":{"d3-array":"1 - 2","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"6","rollup":"1","rollup-plugin-terser":"5","tape":"4"},"gitHead":"608bb86bc850d32ad514de8a76efce996be23b65","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.12.2","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-X2fjpJXKMMkuEdpqAwFInxyj6S2F66sWbklzR1/ekVSuDsVzjO0WhsC2uu+FU/yO5fYM8eYtGlki1JuRJVnU1A==","shasum":"799f65998cd6f09b58cae8de968683c41d259b2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.12.2.tgz","fileCount":10,"unpackedSize":44893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbF9BCRA9TVsSAnZWagAAdacP/AoS+2kCgrIp8mHi67rQ\nkpcP3JjCCOLCaAerfzmO2+UF/TNtewnkkJsk6AC7wJyZ7TWerxZpBnay/mwH\nx8brT967CMwZWeGzFGTQ7Vx/UMml1mVxBJSPA5ywTT/olWMqu63TFbZQLMe7\n2NpAeA+gSPThNGFxkq2VrgpFS9oEqN6dVcjQ/tddDWBFbLiMoAOY4iNJmJsR\nz6G4JXiwiqb3o7ZVFQ2xMuX37yzAwLZFtCI1cjoCe/95lhB2Szb4J0t1x43Q\ntx+W3DGfDbM6dDiiysH2qQsFT52YTzZ9d/ialp0kz8TF8r8H/KWy56T3RSax\nySgrDFfUe3brSQ9UqE2mqZxRilrglz53LInv1qx7051cM0vTvyk+X6a0cEOj\nB+uUy5lCv9eyucfBUqdoKWeQfpEs3D2vJg6/ghMC+ZXNNqs75qPozeNYpyC8\nQlKQlqr0FIfMY1qPrz4loX1EXdvgqLBwQYuAUEQlabVgQ/UPAwGQAS0KD6ms\nq0JyZzGZjln9VeXI6aQy9dzCaN2cCqBZqkKOV0zdEp8plbUCu2tKPzMW4iqd\nAE/2Vt0ClI4QK0BzcfM2/2liDzlvRSRJS7lAfm94FAAqoHkqhFVRBeYd+fPl\n60PyMwBNQGCzEk6ZdF79+z0u9YSHPe+98CjJD1Sy+SWArzQmV4PUJq6XKR8i\n88MO\r\n=2peV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfKcGNHC6Qq7HlcLO9cAwRi/YZGusrtzAwN2h/s3HBfAIgA5HkeNvZUqQ5lR1IVU+oO1mHL9AySdpLURnaIIMhUXc="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.12.2_1567383360415_0.33988070426347883"},"_hasShrinkwrap":false},"0.12.3":{"name":"d3-sankey","version":"0.12.3","description":"Visualize flow between nodes in a directed acyclic network.","keywords":["d3","d3-module","sankey"],"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike/"},"license":"BSD-3-Clause","main":"dist/d3-sankey.js","unpkg":"dist/d3-sankey.min.js","module":"src/index.js","homepage":"https://github.com/d3/d3-sankey","repository":{"type":"git","url":"git+https://github.com/d3/d3-sankey.git"},"scripts":{"pretest":"rollup -c","test":"tape 'test/**/*-test.js' && eslint src","prepublishOnly":"rm -rf dist && yarn test","postpublish":"git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"},"dependencies":{"d3-array":"1 - 2","d3-shape":"^1.2.0"},"devDependencies":{"eslint":"6","rollup":"1","rollup-plugin-terser":"5","tape":"4"},"gitHead":"bb7233ea0004669878d922e55fe83084ef3cb555","bugs":{"url":"https://github.com/d3/d3-sankey/issues"},"_id":"d3-sankey@0.12.3","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"mike@ocks.org"},"dist":{"integrity":"sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==","shasum":"b3c268627bd72e5d80336e8de6acbfec9d15d01d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/d3-sankey/-/d3-sankey-0.12.3.tgz","fileCount":10,"unpackedSize":46205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbGNyCRA9TVsSAnZWagAA1UkP/jECv8oGFrwr7jKZE7OM\n7oneANooJFmYUvvEs6iL2rfvPcW55uu9LdcO3ghRWlNKx5l55Uzjy9gwsTJx\nRBX1xB1T41ud3HodAq7rIJXZjGYqK4ks2/w6hyoZLUyfjTGQQzfF2VJBSy8k\n1Up6i5VPkxMUUdzXtKdWfO+jYzFz0VpHBLRyOFOUN3/msErVwZLNv8IbSZAa\nH66t/s8XTGzh5QTm0lRV1nQnVfCJzJOYglI2EQWNulILaDveVoUa2x3hbJ3a\nMsNyW4N0zqKprM+In6gIZbvTZUciloj0xeJOTA8GAxKkkm9hg9TtAWflTWPb\nCbevcmrhZ1C//aWVJaLlFfio/QKJHftUg37YKPqaZHpCaU1DoZkprwv4K/HR\n51XppXqi+O43iKp5gtZg+wbeRg4ApIM+gmbB/rBdAFf5j7EbOTaxfmvkVlFr\nZ498rr7cm5wtH+LErLvTcm3rZtuhXCTvI1dxSwQGq9jF+ZDdhWRPqj8NgYeZ\n09zBHDrZMKnwD5dhgD27WralldHscs7NZB1//RF1abvt+7Rh1dsFj/95ysRv\nvh5MCEZYI51K7wLpafbIfetvBKn181lKIsUvsxBugB5SzxNmP3IGA8SvZSxS\nAUhIXAxkDegCJoztNpkrZisGZYhkD3Y7X0x9Y0mmpMCodqfmGQBJVstt3YA5\n8HI3\r\n=L0Fh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIExT0stpz3JnZ3U7nEqzvFTm/hg1zTMdbI/gmMsZdL44AiEA/6IqlzUopvEhuN1VCsZ197zr3YCAN8QfpBHscju5+3c="}]},"maintainers":[{"name":"anonymous","email":"mike@ocks.org"},{"name":"anonymous","email":"kshitij.aranke@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/d3-sankey_0.12.3_1567384433775_0.71357080320041"},"_hasShrinkwrap":false}},"name":"d3-sankey","time":{"modified":"2022-06-14T07:51:52.735Z","created":"2015-12-03T09:40:18.250Z","0.1.0":"2015-12-03T09:40:18.250Z","0.1.1":"2015-12-03T15:53:08.413Z","0.1.2":"2015-12-03T16:13:42.774Z","0.1.3":"2015-12-03T16:29:10.102Z","0.2.0":"2015-12-05T00:51:39.717Z","0.2.1":"2015-12-05T19:22:02.470Z","0.3.0":"2016-09-05T16:43:48.577Z","0.3.1":"2016-09-05T16:49:42.608Z","0.3.2":"2016-09-05T16:52:41.222Z","0.3.3":"2016-09-05T16:53:23.620Z","0.3.4":"2016-09-05T16:57:04.680Z","0.4.0":"2016-09-05T16:58:00.940Z","0.4.1":"2016-09-05T17:58:18.142Z","0.4.2":"2017-02-21T19:05:51.271Z","0.5.0":"2017-05-25T20:25:07.330Z","0.6.0":"2017-06-02T17:01:11.015Z","0.6.1":"2017-06-12T17:13:28.274Z","0.7.0":"2017-06-13T17:01:31.191Z","0.7.1":"2017-06-14T13:47:26.303Z","0.8.0":"2019-03-03T06:32:38.361Z","0.8.1":"2019-03-03T06:45:36.826Z","0.9.0":"2019-03-03T07:13:12.568Z","0.9.1":"2019-03-03T07:34:45.755Z","0.10.0":"2019-03-03T17:17:34.404Z","0.10.1":"2019-03-03T18:15:08.628Z","0.10.2":"2019-03-03T20:32:34.610Z","0.10.3":"2019-03-03T20:40:12.625Z","0.10.4":"2019-03-03T22:04:28.343Z","0.11.0":"2019-03-11T05:39:34.202Z","0.12.0":"2019-03-11T18:22:30.800Z","0.12.1":"2019-03-11T18:53:05.124Z","0.12.2":"2019-09-02T00:16:00.579Z","0.12.3":"2019-09-02T00:33:53.896Z"},"readmeFilename":"README.md","homepage":"https://github.com/d3/d3-sankey"}