{"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"yuki@kamiazya.tech"}],"keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"dist-tags":{"latest":"8.0.0"},"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"description":"Create graphs from module dependencies.","readme":"<p align=\"center\">\n  <img alt=\"madge\" src=\"http://pahen.github.io/madge/logo.svg\" width=\"320\">\n</p>\n\n<p align=\"center\">\n  <img alt=\"Last version\" src=\"https://img.shields.io/github/tag/pahen/madge.svg?style=flat-square\" />\n  <a href=\"https://www.npmjs.org/package/madge\">\n    <img alg=\"NPM Status\" src=\"http://img.shields.io/npm/dm/madge.svg?style=flat-square\" />\n  </a>\n  <a href=\"https://paypal.me/pahen\" target=\"_blank\">\n    <img alt=\"Donate\" src=\"https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square\" />\n  </a>\n</p>\n\n**Madge** is a developer tool for generating a visual graph of your module dependencies, finding circular dependencies, and giving you other useful info. Joel Kemp's awesome [dependency-tree](https://github.com/mrjoelkemp/node-dependency-tree) is used for extracting the dependency tree.\n\n* Works for JavaScript (AMD, CommonJS, and ES6 modules)\n* Also works for CSS preprocessors (Sass, Stylus, and Less)\n* NPM installed dependencies are excluded by default (can be enabled)\n* All core Node.js modules (assert, path, fs, etc) are excluded\n* Will traverse child dependencies automatically\n\nRead the [changelog](CHANGELOG.md) for latest changes.\n\n> I've worked with Madge on my free time for the last couple of years and it's been a great experience. It started as an experiment but turned out to be a very useful tool for many developers. I have many ideas for the project and it would definitely be easier to dedicate more time to it with some [financial support](#donations-%EF%B8%8F) 🙏\n>\n> Regardless of your contribution, thanks for your support!\n\n## Examples\n\n> Graph generated from madge's own code and dependencies.\n\n<a href=\"http://pahen.github.io/madge/madge.svg\">\n  <img alt=\"graph\" src=\"http://pahen.github.io/madge/madge.svg\" width=\"888\"/>\n</a>\n\n> A graph with circular dependencies. Blue has dependencies, green has no dependencies, and red has circular dependencies.\n\n<a href=\"http://pahen.github.io/madge/simple.svg\">\n  <img alt=\"graph-circular\" src=\"http://pahen.github.io/madge/simple.svg\" width=\"300\"/>\n</a>\n\n## See it in action\n\n<a href=\"https://asciinema.org/a/l9tM7lIraCpmzH0rdWw2KLrMc?autoplay=1\">\n  <img alt=\"in-action\" src=\"https://asciinema.org/a/l9tM7lIraCpmzH0rdWw2KLrMc.png\" width=\"590\"/>\n</a>\n\n# Installation\n\n```sh\nnpm -g install madge\n```\n\n## Graphviz (optional)\n\n> [Graphviz](http://www.graphviz.org/) is only required if you want to generate visual graphs (e.g. in SVG or DOT format).\n\n### Mac OS X\n\n```sh\nbrew install graphviz || port install graphviz\n```\n\n### Ubuntu\n\n```sh\napt-get install graphviz\n```\n\n# API\n\n## madge(path: string|array|object, config: object)\n\n> `path` is a single file or directory, or an array of files/directories to read. A predefined tree can also be passed in as an object.\n\n> `config` is optional and should be the [configuration](#configuration) to use.\n\n> Returns a `Promise` resolved with the Madge instance object.\n\n## Functions\n\n#### .obj()\n\n> Returns an `Object` with all dependencies.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.obj());\n});\n```\n\n#### .warnings()\n\n> Returns an `Object` of warnings.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.warnings());\n});\n```\n\n#### .circular()\n\n> Returns an `Array` of all modules that have circular dependencies.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.circular());\n});\n```\n\n#### .circularGraph()\n\n> Returns an `Object` with only circular dependencies.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.circularGraph());\n});\n```\n\n#### .depends()\n\n> Returns an `Array` of all modules that depend on a given module.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.depends('lib/log.js'));\n});\n```\n\n#### .orphans()\n\n> Return an `Array` of all modules that no one is depending on.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.orphans());\n});\n```\n\n#### .leaves()\n\n> Return an `Array` of all modules that have no dependencies.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js').then((res) => {\n\tconsole.log(res.leaves());\n});\n```\n\n#### .dot([circularOnly: boolean])\n\n> Returns a `Promise` resolved with a DOT representation of the module dependency graph. Set `circularOnly` to only include circular dependencies.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js')\n\t.then((res) => res.dot())\n\t.then((output) => {\n\t\tconsole.log(output);\n\t});\n```\n\n#### .image(imagePath: string, [circularOnly: boolean])\n\n> Write the graph as an image to the given image path. Set `circularOnly` to only include circular dependencies. The [image format](http://www.graphviz.org/content/output-formats) to use is determined from the file extension. Returns a `Promise` resolved with a full path to the written image.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js')\n\t.then((res) => res.image('path/to/image.svg'))\n\t.then((writtenImagePath) => {\n\t\tconsole.log('Image written to ' + writtenImagePath);\n\t});\n```\n\n#### .svg()\n\n> Return a `Promise` resolved with the XML SVG representation of the dependency graph as a `Buffer`.\n\n```javascript\nconst madge = require('madge');\n\nmadge('path/to/app.js')\n\t.then((res) => res.svg())\n\t.then((output) => {\n\t\tconsole.log(output.toString());\n\t});\n```\n\n# Configuration\n\nProperty | Type | Default | Description\n--- | --- | --- | ---\n`baseDir` | String | null | Base directory to use instead of the default\n`includeNpm` | Boolean | false | If shallow NPM modules should be included\n`fileExtensions` | Array | ['js'] | Valid file extensions used to find files in directories\n`excludeRegExp` | Array | false | An array of RegExp for excluding modules\n`requireConfig` | String | null | RequireJS config for resolving aliased modules\n`webpackConfig` | String | null | Webpack config for resolving aliased modules\n`tsConfig` | String\\|Object | null | TypeScript config for resolving aliased modules - Either a path to a tsconfig file or an object containing the config\n`layout` | String | dot | Layout to use in the graph\n`rankdir` | String | LR | Sets the [direction](https://graphviz.gitlab.io/_pages/doc/info/attrs.html#d:rankdir) of the graph layout\n`fontName` | String | Arial | Font name to use in the graph\n`fontSize` | String | 14px | Font size to use in the graph\n`backgroundColor` | String | #000000 | Background color for the graph\n`nodeShape` | String | box | A string specifying the [shape](https://graphviz.gitlab.io/_pages/doc/info/attrs.html#k:shape) of a node in the graph\n`nodeStyle` | String | rounded | A string specifying the [style](https://graphviz.gitlab.io/_pages/doc/info/attrs.html#k:style) of a node in the graph\n`nodeColor` | String | #c6c5fe | Default node color to use in the graph\n`noDependencyColor` | String | #cfffac | Color to use for nodes with no dependencies\n`cyclicNodeColor` | String | #ff6c60 | Color to use for circular dependencies\n`edgeColor` | String | #757575 | Edge color to use in the graph\n`graphVizOptions` | Object | false | Custom Graphviz [options](https://graphviz.gitlab.io/_pages/doc/info/attrs.html)\n`graphVizPath` | String | null | Custom Graphviz path\n`detectiveOptions` | Object | false | Custom `detective` options for [dependency-tree](https://github.com/dependents/node-dependency-tree) and [precinct](https://github.com/dependents/node-precinct#usage)\n`dependencyFilter` | Function | false | Function called with a dependency filepath (exclude subtrees by returning false)\n\nYou can use configuration file either in `.madgerc` in your project or home folder or directly in `package.json`. Look [here](https://github.com/dominictarr/rc#standards) for alternative locations for the file.\n\n> .madgerc\n\n```json\n{\n  \"fontSize\": \"10px\",\n  \"graphVizOptions\": {\n    \"G\": {\n      \"rankdir\": \"LR\"\n    }\n  }\n}\n```\n\n> package.json\n\n```json\n{\n  \"name\": \"foo\",\n  \"version\": \"0.0.1\",\n  ...\n  \"madge\": {\n    \"fontSize\": \"10px\",\n    \"graphVizOptions\": {\n      \"G\": {\n        \"rankdir\": \"LR\"\n      }\n    }\n  }\n}\n```\n\n# CLI\n\n## Examples\n\n> List dependencies from a single file\n\n```sh\nmadge path/src/app.js\n```\n\n> List dependencies from multiple files\n\n```sh\nmadge path/src/foo.js path/src/bar.js\n```\n\n> List dependencies from all *.js files found in a directory\n\n```sh\nmadge path/src\n```\n\n> List dependencies from multiple directories\n\n```sh\nmadge path/src/foo path/src/bar\n```\n\n> List dependencies from all \\*.js and \\*.jsx files found in a directory\n\n```sh\nmadge --extensions js,jsx path/src\n```\n\n> Finding circular dependencies\n\n```sh\nmadge --circular path/src/app.js\n```\n\n> Show modules that depends on a given module\n\n```sh\nmadge --depends wheels.js path/src/app.js\n```\n\n> Show modules that no one is depending on\n\n```sh\nmadge --orphans path/src/\n```\n\n> Show modules that have no dependencies\n\n```sh\nmadge --leaves path/src/\n```\n\n> Excluding modules\n\n```sh\nmadge --exclude '^(foo|bar)\\.js$' path/src/app.js\n```\n\n> Save graph as a SVG image (requires [Graphviz](#graphviz-optional))\n\n```sh\nmadge --image graph.svg path/src/app.js\n```\n\n> Save graph with only circular dependencies\n\n```sh\nmadge --circular --image graph.svg path/src/app.js\n```\n\n> Save graph as a [DOT](http://en.wikipedia.org/wiki/DOT_language) file for further processing (requires [Graphviz](#graphviz-optional))\n\n```sh\nmadge --dot path/src/app.js > graph.gv\n```\n\n> Using pipe to transform tree (this example will uppercase all paths)\n\n```sh\nmadge --json path/src/app.js | tr '[a-z]' '[A-Z]' | madge --stdin\n```\n\n# Debugging\n\n> To enable debugging output if you encounter problems, run madge with the `--debug` option then throw the result in a gist when creating issues on GitHub.\n\n```sh\nmadge --debug path/src/app.js\n```\n\n# Running tests\n\n```sh\nnpm install\nnpm test\n```\n\n# Creating a release\n\n```sh\nnpm run release\n```\n\n# FAQ\n\n## Missing dependencies?\n\nIt could happen that the files you're not seeing have been skipped due to errors or that they can't be resolved. Run madge with the `--warning` option to see skipped files. If you need even more info run with the `--debug` option.\n\n## Using both Javascript and Typescript in your project?\n\nMadge uses [dependency-tree](https://www.npmjs.com/package/dependency-tree) which uses [filing-cabinet](https://www.npmjs.com/package/filing-cabinet) to resolve modules. However it requires configurations for each file type (js/jsx) and (ts/tsx). So provide both `webpackConfig` and `tsConfig` options to madge.\n\n## Using mixed import syntax in the same file?\n\nOnly one syntax is used by default. You can use both though if you're willing to take the degraded performance. Put this in your madge config to enable mixed imports.\n\nFor ES6 + CommonJS:\n\n```json\n{\n  \"detectiveOptions\": {\n    \"es6\": {\n      \"mixedImports\": true\n    }\n  }\n}\n```\n\nFor TypeScript + CommonJS:\n\n```json\n{\n  \"detectiveOptions\": {\n    \"ts\": {\n      \"mixedImports\": true\n    }\n  }\n}\n```\n\n## How to ignore `import type` statements in ES6 + Flow?\n\nPut this in your madge config.\n\n```json\n{\n  \"detectiveOptions\": {\n    \"es6\": {\n      \"skipTypeImports\": true\n    }\n  }\n}\n```\n\n## How to ignore `import` in type annotations in TypeScript?\n\nPut this in your madge config.\n\n```json\n{\n  \"detectiveOptions\": {\n    \"ts\": {\n      \"skipTypeImports\": true\n    }\n  }\n}\n```\n\n## How to ignore dynamic imports in Typescript?\n\nPut this in your madge config.\n\n```json\n{\n  \"detectiveOptions\": {\n    \"ts\": {\n      \"skipAsyncImports\": true\n    },\n    \"tsx\": {\n      \"skipAsyncImports\": true\n    }\n  }\n}\n```\n\nNote: `tsx` is optional, use this when working with JSX.\n\n## Mixing TypesScript and Javascript imports?\n\nEnsure you have this in your `.tsconfig` file.\n\n```json\n{\n  \"compilerOptions\": {\n    \"module\": \"commonjs\",\n    \"allowJs\": true\n  }\n}\n```\n\n## What's the \"Error: write EPIPE\" when exporting graph to image?\n\nEnsure you have [installed Graphviz](#graphviz-optional). If you're running Windows, note that Graphviz is not added to the `PATH` variable during install. You should add the folder of `gvpr.exe` (typically `%Graphviz_folder%/bin`) to the `PATH` variable manually.\n\n## How do I fix the \"Graphviz not built with triangulation library\" error when using sfdp layout?\n\nHomebrew doesn't include GTS by default. Fix this by doing:\n\n```sh\nbrew uninstall graphviz\nbrew install gts\nbrew install graphviz\n```\n\n## The image produced by madge is very hard to read, what's wrong?\n\nTry running madge with a different layout, here's a list of the ones you can try:\n\n* **dot** \"hierarchical\" or layered drawings of directed graphs. This is the default tool to use if edges have directionality.\n\n* **neato** \"spring model'' layouts.  This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to\nminimize a global energy function, which is equivalent to statistical multi-dimensional scaling.\n\n* **fdp** \"spring model'' layouts similar to those of neato, but does this by reducing forces rather than working with energy.\n\n* **sfdp** multiscale version of fdp for the layout of large graphs.\n\n* **twopi** radial layouts, after Graham Wills 97. Nodes are placed on concentric circles depending their distance from a given root node.\n\n* **circo** circular layout, after Six and Tollis 99, Kauffman and Wiese 02. This is suitable for certain diagrams of multiple cyclic structures, such as certain telecommunications networks.\n\n# Credits\n\n## Contributors\n\nThis project exists thanks to all the people who contribute.\n<a href=\"https://github.com/pahen/madge/graphs/contributors\">\n  <img src=\"https://opencollective.com/madge/contributors.svg?width=890&button=false\" alt=\"Contributors\"/>\n</a>\n\n## Donations ❤️\n\nThanks to the awesome people below for making donations! 🙏[Donate](https://paypal.me/pahen)\n\n<p>\n  <a href=\"https://github.com/BeroBurny\" target=\"_blank\">\n    <div><b>Bernard Stojanović</b> (24 Mars, 2021)</div>\n    <img alt=\"BeroBurny\" src=\"https://github.com/BeroBurny.png\" width=\"64\"/>\n  </a>\n</p>\n\n<p>\n  <a href=\"https://github.com/olejorgenb\" target=\"_blank\">\n    <div><b>Ole Jørgen Brønner</b> (Oct 8, 2020)</div>\n    <img alt=\"olejorgenb\" src=\"https://github.com/olejorgenb.png\" width=\"64\"/>\n  </a>\n</p>\n\n<p>\n  <a href=\"https://github.com/pubkey/rxdb\" target=\"_blank\">\n    <div><b>RxDB</b> (Apr 1, 2020)</div>\n    <img alt=\"RxDB\" src=\"https://cdn.rawgit.com/pubkey/rxdb/ba7c9b80/docs/files/logo/logo_text.svg\" width=\"128\" style=\"margin: -4px -10px\"/>\n  </a>\n</p>\n\n<p>\n  <a href=\"https://github.com/Ziriax\" target=\"_blank\">\n    <div><b>Peter Verswyvelen</b> (Feb 24, 2020)</div>\n    <img alt=\"Ziriax\" src=\"https://github.com/Ziriax.png\" width=\"64\"/>\n  </a>\n</p>\n\n<p>\n  <a href=\"https://github.com/landonalder\" target=\"_blank\">\n    <div><b>Landon Alder</b> (Mar 19, 2019)</div>\n    <img alt=\"landonalder\" src=\"https://github.com/landonalder.png\" width=\"64\"/>\n  </a>\n</p>\n\n# License\n\nMIT License\n","repository":{"type":"git","url":"git://github.com/pahen/madge.git"},"users":{"arei":true,"p4ul":true,"tg-z":true,"iddan":true,"vogel":true,"dgmike":true,"gliviu":true,"abelykh":true,"lonely9":true,"sdolard":true,"trusktr":true,"weekens":true,"anhulife":true,"jrnail23":true,"sunwukung":true,"cbetancourt":true,"czy88840616":true,"kevinbird61":true,"stanleyhlng":true,"stonecypher":true,"totolicious":true,"robinblomberg":true,"jonniespratley":true,"millermedeiros":true,"akashdeep-singh":true,"brianloveswords":true,"joaquin.briceno":true,"scott.m.sarsfield":true},"bugs":{"url":"https://github.com/pahen/madge/issues"},"license":"MIT","versions":{"0.0.1":{"name":"madge","version":"0.0.1","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"1b7a377e5be80b2b726c39497c5dd6c45d282b3b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.0.1.tgz","integrity":"sha512-6aQRUD3SKKOfBeuDWzuGaduDOabrIKHnyLiPO7cPrPEqoGtrenqXsx+FukHx99KFT1nwalgonAVM6fbA131/xw==","signatures":[{"sig":"MEUCIDHi3ByrXYUzGCI0HpaK16dVE4FbKVEbnn/5XcF9N7N1AiEAt9rn/SHfgAE5JK4EcTTk4MYxHvT5qHarndCsoQAAJes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","engines":["node >= 0.6.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"1.1.4","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"v0.6.14","dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.6","commander":"0.6.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6"},"_defaultsLoaded":true,"devDependencies":{"mocha":"1.0.x","should":"*"},"_engineSupported":true,"optionalDependencies":{}},"0.0.2":{"name":"madge","version":"0.0.2","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"5d6dd0b503cea4bbd7fc4674da9909f17b2ff8f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.0.2.tgz","integrity":"sha512-XQTTaNBP4gQRqDjULd3ukyilhAuqIXw52kMbcXlCiSgkfFe+w3DetFUwtS8hZL5c1ncZ8XBvjZtp5o0qbJyo+w==","signatures":[{"sig":"MEUCIGmCjSWyxtIXTW5wm/HEzu+i30OnZD0mSUOE6lsUFuJjAiEA2Ib3BMdlt0LHB7UW7DKTrxbVFiVRpik3tYrixW9w8e0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","engines":["node >= 0.6.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"1.1.4","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"v0.6.14","dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.6","commander":"0.6.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6"},"_defaultsLoaded":true,"devDependencies":{"mocha":"1.0.x","should":"*"},"_engineSupported":true,"optionalDependencies":{}},"0.0.4":{"name":"madge","version":"0.0.4","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.0.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"ba3e19801adb869e7aaa19a52df3981444565667","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.0.4.tgz","integrity":"sha512-SUX3uDS0fyMEXgCv+Wm+Y6MVucEorTqkHgWJ+nAGr10ECOjHJGKYBWjDMk6zEcq7RL0bD/BBT5Dwbq8KqCehFg==","signatures":[{"sig":"MEQCIEQLPGr/imHYqGoRoIUo9xFzjLEjUKE6V8+pbYX/vsS/AiAyMzqbGDE61JF9pMaXq38uy6lKIbpjf/csAS5HTslTqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6"},"devDependencies":{"mocha":"1.2.x","should":"*"}},"0.0.5":{"name":"madge","version":"0.0.5","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.0.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"b56d36b7095a798a77c505aa67657f47af3d0fcc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.0.5.tgz","integrity":"sha512-eikLOrDeQ9JlWao2TmlMqhkf+dKOzvttVMTWHLrT0XVG681yGtmHASAW4U6SP43HYnrUe7ooOD8GnZ+OqvK1TA==","signatures":[{"sig":"MEUCIQD2kyJODRXW6q1CH0P9et6qHA9CgDj56jzfJ0YS3mI2ZAIgUtrxWG8P0/FIMN30b4okFhivNP5BfpG9T0BkbQ0vkco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","should":"*"}},"0.1.0":{"name":"madge","version":"0.1.0","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"b716b3c6564b5c599056926a164ade3047cab712","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.0.tgz","integrity":"sha512-oJT1UjMp8hOJaN8/vFXHbW1ZIGmMfO9lru6xobZwzfS+dJbd2jQ1wTqJ+4reSDP1vwnMec2MRXe5gQKsdt5PZA==","signatures":[{"sig":"MEUCIFjPTwB8qTyWHIyjmIWV7o2ctY+OpVoZZIQW+J4VPwDKAiEAmReVVdX6+Tw7tkpDFHXvf73nDypX0qEfcl5zdpPnm3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","should":"*"}},"0.1.1":{"name":"madge","version":"0.1.1","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"c376b72e867cbbcffb1aeeb9882efedd05c0e0c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.1.tgz","integrity":"sha512-vNmAOMucT/mptCaWIv3yrf3EoQeOaT6IjE2q8mJnxEmOyVevCbYKq8Gt1NOlwNwrsdcs4qZU78IUGMNVu8wUCQ==","signatures":[{"sig":"MEQCIFeUwMP7ILUWzlqbR3yPMKzVQ3igcGJCx0JnpphNBUcGAiBpDz/vVx9JJZuIDkCr0BP+zGHvvgKh0QM2XrvGm9b+DA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","should":"*"}},"0.1.2":{"name":"madge","version":"0.1.2","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"0113c5e469ca398d40b685ab15e541ecc47f0f5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.2.tgz","integrity":"sha512-xm92Ro0ROGSqaekapMQ1ocgz0ntSmcN8PMgA/iPWmdSToLnD8BiGVcEc8GupTsEUGA9tfn8Zdwe060+W7+3hzQ==","signatures":[{"sig":"MEQCIFz0G3mWbYG6rgNmtfUDLeyQ7DNl2Ey+VRJZhjRq3vC4AiBSzdRDJJXGqdPAaaqcXxaNZKz4S8DWysO5w7+59TpPsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","should":"*"}},"0.1.3":{"name":"madge","version":"0.1.3","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.3","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"36e6d16cd88d5006896c9d4f3f57596848058811","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.3.tgz","integrity":"sha512-vzsicJKz83NxfnNp7TWmd0+YFXZaRWnYgkuUhSDFUA+3rZY/9STxQnG8HQsYueF23g/yiG+0Q6kgSPH8rSIx2w==","signatures":[{"sig":"MEQCIBsQ6lw7EG1wraIiK9cpG6ZdW8P6hYUX/5/9SARs4RPaAiBqnNh5H8tcyGXWIuhS1unM5r85t27ifPQM8rIa8Qu14w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","findit":"0.1.2","resolve":"0.2.2","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.4":{"name":"madge","version":"0.1.4","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bin":{"madge":"./bin/madge"},"dist":{"shasum":"bc2623fc167020eb78c02e968287fe787f8ce4c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.4.tgz","integrity":"sha512-S7K++VZOaNlT8baaVvtGK8bklkBFw713df+4Ikbce9uxzqHtgpRsT+5hOI9Ro285EOApV5jcjI27A/lqRB8Cyg==","signatures":[{"sig":"MEYCIQD6Iqy8f1VbD0p44icj9aitk8w5FcAdKszd1M0p1IDDqgIhALyF978KGvfhBHnwntvbdic9xE0R1ipr9qgTE30e57gh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.5":{"name":"madge","version":"0.1.5","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"20bfaf3d5874621e271c053bf693c2ecb7a84138","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.5.tgz","integrity":"sha512-8+9wFBjMTEprmFvChZ4Yn1lKCuokxBuyQQi1S0U5lVSNPHICHGtXj3CZ/6BIINdrtVfqs/ZhXb0MRiH6x47b6g==","signatures":[{"sig":"MEUCID2M5hRivADmuCHMf28p8DNW/lT/1PKRfXA9KRcBAvkCAiEA2v9GhcB8gGHrGL2Qff8Q3rkpshJ14+RiROCQ5p00lwI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.2.19","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.6":{"name":"madge","version":"0.1.6","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.6","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"7642d970834de1798d5dbd78a853ce32008f3946","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.6.tgz","integrity":"sha512-2+akTDhyhdTgogh0ou7EsoBC60tY1o+tXKdSqzf3F6VOrLywidxhdodABo4radaYHrkw6o5fguRnc7xLbxXQhg==","signatures":[{"sig":"MEQCIHccKWYGsI++OTKpdv9mNLiIxdIrTrRFoz7Nu8S0IzofAiAQ51hC03a4bPSX/yyoUQVV5OVTW5DOUt7DABMeQW5zDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.2.19","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.7":{"name":"madge","version":"0.1.7","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.7","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"cdeb5efce8c49a5d975650d17960e3967589aefa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.7.tgz","integrity":"sha512-mEOTqMwXIvO0bAzBn67dBs4fkhl14l/aVB0zGolQ+b7ydvJQOmc4IzvMIzUMo+YNnHXcReXgZ2NhJnXscJRqHg==","signatures":[{"sig":"MEUCIDppA4ag3tDosDd51kiTEyZfJ+/si0myLcISfOgcsFsaAiEA1HTPOL0KLhV9NgB7U4Gh2Mk8xsMQH3fSjANf52MhkJU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.2.19","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.8":{"name":"madge","version":"0.1.8","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.8","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"d9c545f66793f23b2f1da1fa69103f9d95be9bc4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.8.tgz","integrity":"sha512-vRvj4YQ4q41diJJwnbqOUzSq316P0qFrbLWrUWNQ6k9Ar23QD7lAV9VMosuKqBS1dmktxM2MsBFXv2WO0WJEBg==","signatures":[{"sig":"MEUCIQDrglc6zMPmIaqi47qcBZerB/uALlezJelFpPQ0BtveBAIgB3Nt3d06auz7wbhBx2OuwDQukwM8Uov+3tjIKS5owRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.3.11","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.1","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.1.9":{"name":"madge","version":"0.1.9","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.1.9","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"333d398fd412165350af31773f16e21130a7acd8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.1.9.tgz","integrity":"sha512-MQUUONQ4aru5PPlLuwzLpIwTQtYQHYjYLzVHu7V3Kop3haK+Fzamr9uu+8Qrqg0InmRL6umSwMByOa4sg8VVhQ==","signatures":[{"sig":"MEUCIQDw/2O3etOTYthLQlwwmIZe4pAvsUduW1kN3bol9YvENQIgRsNjBgvgnxcG3vKLBFx3BD5RESPePiqudDLLgfaTstY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","engines":["node >= 0.8.0"],"scripts":{"test":"node_modules/jshint/bin/hint test/*.js bin lib && node_modules/.bin/mocha --ignore-leaks --reporter spec test/*.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.3.11","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.1","coffee-script":"1.3.3"},"devDependencies":{"mocha":"1.3.x","jshint":"0.9.1","should":"*"}},"0.2.0":{"name":"madge","version":"0.2.0","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"45bf4fa98b7c19e62d5ae38308661d75f2355217","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.2.0.tgz","integrity":"sha512-p4bAxFDetppvLO0aTVPZQVH5FLVw92fr3d6yNVKViLfzxBftMhlzaq6vjv11UHNb6LXDor8rkNPwJliZhiyc3A==","signatures":[{"sig":"MEUCIQDEihCIOJpUVRdyuoARPDNL9JWhue2qs734M4KwE0b6rQIgJHak1va3LxLN0O96JcJXtN8ikk9mLGQJgF3LlIZHxY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"45bf4fa98b7c19e62d5ae38308661d75f2355217","engines":["node >= 0.8.0"],"scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.7","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.1","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.3.0":{"name":"madge","version":"0.3.0","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.3.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"d1dedfbee72aab04d669d5b271b798f78687eadd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.3.0.tgz","integrity":"sha512-J02EMG7jcSGMKcnNY6X6rGiaoUKbzyKQV1EX3tRUillwp1SIN0ZHgF5N1plpKB+N7sexLRCTXsLlZNcSuHM0Vg==","signatures":[{"sig":"MEUCIAOrtGyiCDndNawbIRela23sTu07lfkMPHRrZX8wWWXgAiEApJJ+6nzRDSZspM10h6PBRQahlz2I1dgkZsibIbeyTWw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"d1dedfbee72aab04d669d5b271b798f78687eadd","engines":["node >= 0.8.0"],"scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.9","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.1","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.3.1":{"name":"madge","version":"0.3.1","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.3.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"f7727b4a4c7ccdd0cb546d17a9d67af31c625279","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.3.1.tgz","integrity":"sha512-Lepthliw9Tzl03S4gLEDDsWNEavRY7NT5qlNL0WRXO+HWFalWac10rbHIrHvM3WmAxGfj2PhsdXdvAjdCA2FSA==","signatures":[{"sig":"MEQCIEzrtYhcb/W+RkDPXNaiLSfcml99nOQICIFcv0sOKLn8AiAnHsRdehnXc5lWf55KCXHR74KfRXipLTCYQuhzj0xk+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"f7727b4a4c7ccdd0cb546d17a9d67af31c625279","engines":["node >= 0.8.0"],"scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.9","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.1","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.3.4":{"name":"madge","version":"0.3.4","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.3.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"39beb77687b52f1bd95022a7fbe34995d2d07cbc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.3.4.tgz","integrity":"sha512-VhOysr3SAwtgw8zvVEJNu2izX+TVzGai9DSNa6jWSwn2UhO38Bs7AtQ38AmUYAsek5e0uCgpD6vhW+qSWNuarA==","signatures":[{"sig":"MEQCIBW2knJAgikZMQgA086tTtbObmAekS+74yHpz2apcV2aAiBRp41cNu1JgdZD1KKaXp4ko8D+Z/ELgOkAIv6i162v3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"39beb77687b52f1bd95022a7fbe34995d2d07cbc","engines":["node >= 0.8.0"],"scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.9","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.2","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.3.5":{"name":"madge","version":"0.3.5","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.3.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"9af0897c466d2de26a8a135837015901e2dc837f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.3.5.tgz","integrity":"sha512-U7vCitEX3CmJODIpSnJwWAz/rdE7NO/OLknfgdey8u0OoaaFCwrRyuiJo9uO9A/brJVVnoaUHkVlM4f32qSsCA==","signatures":[{"sig":"MEUCIQD9ZXfZAt/W9Hxq4NP1FqJjRc3efFnetXO1HQRjBEG6wQIgVhilGltj0N9wvxyowONSnREMUqYS7uQxu0S54FcwucE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"9af0897c466d2de26a8a135837015901e2dc837f","engines":["node >= 0.8.0"],"gitHead":"ea4b85b729d451b21f3ed8174ff07ec0cd8460b8","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.28","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.2","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.4.1":{"name":"madge","version":"0.4.1","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.4.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"e9d1c2dfbb9a804587ac1f1e0f01d942d60e530c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.4.1.tgz","integrity":"sha512-uqV5+cAISCxPv3YdCiS5Za3TaX6PxjSjt9MJJU3uKOWe0jorYAhPXl8emlRqwHoKpm9agoz8GjuucnIeKS4RIQ==","signatures":[{"sig":"MEQCIH423Ig1YIOZzbk3JTW1H2wb1dSgMqnvcsPq/wjn3lgnAiA+RYswbXgJZ8ab/tTspRvtHKAy3Ag0ub58T/pW7SGjGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"e9d1c2dfbb9a804587ac1f1e0f01d942d60e530c","engines":["node >= 0.8.0"],"gitHead":"dc9acf5f53ddf8121dec777e289524fe463842c5","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.28","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.2","react-tools":"0.12.1","coffee-script":"1.3.3"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.5.0":{"name":"madge","version":"0.5.0","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.5.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"4da1ba55ccde09bd7642a8e721fe6cbcea32c60f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.0.tgz","integrity":"sha512-lbeyViWx73hiiKcAE3R24tmYILX8N5cpKgXjyALMiYGVJNuhiDimOHnRNeH7ehQXKzALY5Y1B6LMFa7hieUVCw==","signatures":[{"sig":"MEYCIQC6q63137WCen/7HqQ8mseWtTO83k1IJGvGHarrMmC0LQIhALHv6XjiLdv6mBTX0Vsf0FCQPRYg1VURb0aSEvo9CqMK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"4da1ba55ccde09bd7642a8e721fe6cbcea32c60f","engines":["node >= 0.8.0"],"gitHead":"3b4957bafbb12d3626d0c8412a5bdd52232e8ce5","scripts":{"test":"grunt","shrinkwrap":"npm-shrinkwrap"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge","type":"git"},"_npmVersion":"1.4.28","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"dependencies":{"colors":"0.6.0-1","resolve":"0.2.3","walkdir":"0.0.5","graphviz":"0.0.7","commander":"1.0.0","commondir":"0.0.1","detective":"0.1.1","uglify-js":"1.2.6","amdetective":"0.0.2","react-tools":"0.12.1","coffee-script":"1.3.3","detective-es6":"1.1.0"},"devDependencies":{"grunt":"0.4.4","should":"*","grunt-cli":"0.1.8","grunt-release":"0.7.0","npm-shrinkwrap":"5.2.0","grunt-mocha-test":"0.10.2","grunt-contrib-jshint":"0.10.0"}},"0.5.1":{"name":"madge","version":"0.5.1","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"_id":"madge@0.5.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"f40426a08e09218de2115b9b6eb42dd8887e456a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.1.tgz","integrity":"sha512-H2F4CYiT/02LYeg4l3qFQIS4XzNxizbsFGrKe7X2oRoBRzwTq8a3OAGDxLNy+V/LsPT/QPIlQSYGveD5jn6kkA==","signatures":[{"sig":"MEQCIGWKKVm3s17lr5JrIJ8oZQRIYsonUox6PeC5UbSb6WFgAiBFTbLFBSUEOEtufCOpjMuCjTBKo6/ew9/58j4LwlRi8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"f40426a08e09218de2115b9b6eb42dd8887e456a","engines":["node >= 0.8.0"],"gitHead":"9b4b05b63b54bc0214ab1e8469a4e40c30b35bec","scripts":{"test":"grunt","shrinkwrap":"npm-shrinkwrap"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"licenses":[{"url":"https://github.com/pahen/node-madge/raw/master/LICENSE","type":"MIT"}],"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"2.11.2","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"0.12.6","dependencies":{"colors":"^1.1.2","resolve":"0.2.3","walkdir":"0.0.10","graphviz":"0.0.8","commander":"^2.8.1","commondir":"^1.0.1","detective":"^4.2.0","uglify-js":"^1.3.5","amdetective":"0.0.2","react-tools":"^0.13.3","coffee-script":"1.3.3","detective-es6":"1.1.2"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.3.3","should":"*","grunt-cli":"^0.1.13","grunt-release":"^0.13.0","npm-shrinkwrap":"^5.4.0","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"}},"0.5.2":{"name":"madge","version":"0.5.2","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@0.5.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"43dc33f3ee3b5d33082d7aa4c7f30cfb8e33edce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.2.tgz","integrity":"sha512-EPTYbFXJ0NwT4zifVSiWNwbRkbd43WuxGSF/I3DBqrlJexEybnryknDm3XGQOz0OxMAVf1MC5E2tqARQ0uYzuQ==","signatures":[{"sig":"MEQCIHOJ9T/M6Pht4t50ClrpWqE2WLAJx9s4ea/YQzhZE6trAiBlDCnK4kdUZ5vkbn/rjP75KhQlz3nSzKpF/HgNxEAuaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"43dc33f3ee3b5d33082d7aa4c7f30cfb8e33edce","engines":["node >= 0.8.0"],"gitHead":"95faed027d21af80e58697588f061787b2f8592f","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"2.11.2","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"0.12.6","dependencies":{"colors":"^1.1.2","resolve":"^1.1.6","walkdir":"0.0.10","graphviz":"0.0.8","commander":"^2.8.1","commondir":"^1.0.1","detective":"^4.2.0","uglify-js":"^1.3.5","amdetective":"0.0.2","react-tools":"^0.13.3","coffee-script":"1.3.3","detective-es6":"1.1.2"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.3.3","should":"*","grunt-cli":"^0.1.13","grunt-release":"^0.13.0","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"}},"0.5.3":{"name":"madge","version":"0.5.3","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@0.5.3","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"4763bcd38a3205ee7b273a17c5e1a03db9b11c1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.3.tgz","integrity":"sha512-SAedEcQj4/IasU8TScxyrZ7CG7u3/x3B6NL0filirzA5CbePCmN1kNHHUJh4Aen5Hoe0ZbEXG0kjySnVTeWM0g==","signatures":[{"sig":"MEUCIAm+Ejq13NoT6rH6OHDg5JbicrbS7h/PxhNzKIYv1su/AiEAiTOTLRxEpDU9ci+WCZ4z2QO24bkQAfxN1hzryc6d99Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"4763bcd38a3205ee7b273a17c5e1a03db9b11c1b","engines":["node >= 0.8.0"],"gitHead":"c00dd70f684cb71c651a7e57eeeb89728cb9434c","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"2.14.7","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"4.2.2","dependencies":{"colors":"^1.1.2","resolve":"^1.1.6","walkdir":"0.0.10","graphviz":"0.0.8","commander":"^2.8.1","commondir":"^1.0.1","detective":"^4.2.0","uglify-js":"^1.3.5","amdetective":"0.0.2","react-tools":"^0.13.3","coffee-script":"1.3.3","detective-es6":"1.1.2"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.3.3","should":"*","grunt-cli":"^0.1.13","grunt-release":"^0.13.0","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"}},"0.5.4":{"name":"madge","version":"0.5.4","keywords":["AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@0.5.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/node-madge","bugs":{"url":"https://github.com/pahen/node-madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"7127e79618cd61faf0cc574b5b095acb8731a05e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.4.tgz","integrity":"sha512-AXMWpRyBy7jkMgsJNmcNyGkf2Pih4gtgEPiIg7vAhonPNWvDN2YFQOEnJY18jQ1Az2GxpH5EXza0Z7OE9Tet8w==","signatures":[{"sig":"MEYCIQCFhhIoS3R+4DgsnZUYfN1do4YPrc6PocBgtEDWT6bGbAIhAPjbJoI5cNqmmAyJL4NhKsxfkrkpoKHvxfIhaXn0pngZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"7127e79618cd61faf0cc574b5b095acb8731a05e","engines":["node >= 0.8.0"],"gitHead":"38c40ac17d653103187bcc1c5e2512aa3c5b0c4c","scripts":{"test":"grunt"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/node-madge.git","type":"git"},"_npmVersion":"2.14.12","description":"Create graphs from your CommonJS or AMD module dependencies.","directories":{},"_nodeVersion":"4.3.0","dependencies":{"colors":"^1.1.2","resolve":"^1.1.6","walkdir":"0.0.10","graphviz":"0.0.8","commander":"^2.8.1","commondir":"^1.0.1","detective":"^4.2.0","uglify-js":"^1.3.5","amdetective":"0.0.2","react-tools":"^0.13.3","coffee-script":"1.3.3","detective-es6":"1.1.4"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.3.3","should":"*","grunt-cli":"^0.1.13","grunt-release":"^0.13.0","grunt-mocha-test":"^0.12.7","grunt-contrib-jshint":"^0.11.3"},"_npmOperationalInternal":{"tmp":"tmp/madge-0.5.4.tgz_1465804322200_0.6490026011597365","host":"packages-12-west.internal.npmjs.com"}},"0.5.5":{"name":"madge","version":"0.5.5","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@0.5.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"7e4826c2edf177dd7114fa49034414580064cf76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.5.5.tgz","integrity":"sha512-KV50b1hs4F3xsEkwvvWQzupZWKfGAiFa9mjI24MfWOr6U7HVsl9XUT0dsJFEFFM0woigu6Pnkdxs6og4eVGmVg==","signatures":[{"sig":"MEUCICxh3hX37n1BSLdCuRY8OhO6h7WNdmt4BtowWz0t4zE1AiEArutVjVdkZOdXzTGCKzNozxOVD7rmSaimdYy/kjbWrzA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"7e4826c2edf177dd7114fa49034414580064cf76","engines":["node >= 0.8.0"],"gitHead":"c4576e9ad75ee123945e7aff957d8e06b1a6b65e","scripts":{"lint":"eslint bin lib","test":"npm run lint && npm run mocha && npm run madge","madge":"bin/madge -c -f cjs ./lib","mocha":"mocha test/*.js","release":"npm test && release-it -n -i patch","release:major":"npm run test && release-it -n -i major","release:minor":"npm run test && release-it -n -i minor"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.14.12","description":"Create graphs from your CommonJS, AMD or ES6 module dependencies.","directories":{},"_nodeVersion":"4.3.0","dependencies":{"colors":"^1.1.2","resolve":"^1.1.7","walkdir":"0.0.11","graphviz":"0.0.8","commander":"^2.9.0","commondir":"^1.0.1","detective":"^4.3.1","uglify-js":"^1.3.5","amdetective":"~0.2.1","coffee-script":"1.10.0","detective-es6":"1.1.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^3.0.0","should":"*","release-it":"^2.4.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-0.5.5.tgz_1467552713163_0.31494227633811533","host":"packages-16-east.internal.npmjs.com"}},"0.6.0":{"name":"madge","version":"0.6.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@0.6.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/madge"},"dist":{"shasum":"f4c973972ccdfe651b141af0eed88d4d291371b3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-0.6.0.tgz","integrity":"sha512-4frlc0XV4fKt/xQVYYp5kz90Pswe1Pnnd/WQKlUxaije25Y3nnr0SHeQyWzdKVJiKRrzDvmc3KOTw3XnBuq+Vw==","signatures":[{"sig":"MEQCIGAMnBKzD3IybAXloqnn4AnPvCUBlifxIAat1fRjV2yWAiBd6alsa1Re2Rmnv5u2DjJ39jdb/pQ7ec5Ap2UgUHdUVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/madge","_from":".","_shasum":"f4c973972ccdfe651b141af0eed88d4d291371b3","engines":{"node":">=4.x.x"},"gitHead":"7025c09920dd3bd3529e477f084b9f580d292806","scripts":{"lint":"eslint bin/madge lib test/*.js","test":"npm run lint && npm run mocha && npm run madge","madge":"bin/madge -c -L ./lib","mocha":"mocha test/*.js","release":"npm test && release-it -n -i patch","release:major":"npm run test && release-it -n -i major","release:minor":"npm run test && release-it -n -i minor"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from your CommonJS, AMD or ES6 module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"colors":"^1.1.2","resolve":"^1.1.7","walkdir":"0.0.11","graphviz":"0.0.8","commander":"^2.9.0","commondir":"^1.0.1","detective":"^4.3.1","uglify-js":"^1.3.5","amdetective":"~0.2.1","coffee-script":"1.10.0","detective-es6":"1.1.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^3.0.0","should":"*","release-it":"^2.4.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-0.6.0.tgz_1467798219723_0.25943967676721513","host":"packages-16-east.internal.npmjs.com"}},"1.0.0":{"name":"madge","version":"1.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"b43fb3a125b690fad513cdbb0ed6d3b1096c53ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.0.0.tgz","integrity":"sha512-K7Pwoop1iWB2ie1ufxGzJfxKASw1CCFWI9TAu3ZOw+dcmjBaDR7GCuuTYViwacp2tkq27sQzE9nhFBocvNrHPg==","signatures":[{"sig":"MEQCIDfPtlJVDGV/TFo6NrRwZonIPoI0RaDTUyX6an8X3pIRAiAN73oBOOrINAsYiymQr5R3MnTRd8p92XE5j6RgGlgO0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","_shasum":"b43fb3a125b690fad513cdbb0ed6d3b1096c53ee","engines":{"node":">=4.x.x"},"gitHead":"038492d6bbbc76d9d25b2caa99b05491559fcaa7","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/files/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.5.0"},"devDependencies":{"mocha":"^2.3.3","eslint":"^3.0.0","should":"^9.0.2","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.0.0.tgz_1471614398901_0.012314692372456193","host":"packages-16-east.internal.npmjs.com"}},"1.1.0":{"name":"madge","version":"1.1.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"616924f9a88fd3c2f3df69a1aa1550b555fc46e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.1.0.tgz","integrity":"sha512-4N5k2kmvfopxiIYXlTiKyYRseWTTnYYCVI3njroR8/RWIcwuyWh81FIQCW+fxErDNqc+rlSWqWRslvub4OSa+w==","signatures":[{"sig":"MEUCIENWq44s4ADigIAfrBvzNrO0ddwZV6TDA0y5tGDtdfA2AiEAwWzGJw6eo3HnqRlzcblca5N7b8FkpUn1xpVErNLFSrQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"616924f9a88fd3c2f3df69a1aa1550b555fc46e2","engines":{"node":">=4.x.x"},"gitHead":"9e50f293ee59fa2e10d23c864bb6662c92bacf21","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/files/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.5.0"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.1.0.tgz_1471963160985_0.44210400921292603","host":"packages-12-west.internal.npmjs.com"}},"1.2.0":{"name":"madge","version":"1.2.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"6132d999f05b5d27b99ba098c32d9192c6002cd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.2.0.tgz","integrity":"sha512-ivJNQoAxeeLqONtw6cP+JOI5XUPp1wEFRCGVWnA8tW+GPUGoinQo1blQSm7Tn0hm13EUoFZ2t8+bZbbOc/uA8g==","signatures":[{"sig":"MEUCIQCFuewrIECoggQWpWACZe8F91BhL5ovDgApUKLBiFyAewIgZz6TUBW687HVk8hZzV6UNDf+/svrmMHiqFxZakxYNvM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"6132d999f05b5d27b99ba098c32d9192c6002cd2","engines":{"node":">=4.x.x"},"gitHead":"30034892f8e1a776886dc72dfa88d96e6c4c332d","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/commonjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.5.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.2.0.tgz_1472762182641_0.9455808952916414","host":"packages-16-east.internal.npmjs.com"}},"1.3.0":{"name":"madge","version":"1.3.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.3.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"7947116722c6d3a965c69c1555de7405390e4099","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.3.0.tgz","integrity":"sha512-f1Cj6JRIj761eF+dJgAachrkGDzD3SZnc95eF3/VnkEdqZ1+LKXnsRTQYwYjXKzmS0S5/WWsxZRUeEm8GmdcYA==","signatures":[{"sig":"MEQCIGXCMU+Urzz2QJLudln+MT3MgXMeCnCCg3oevhZmeudcAiAIdW1+xtAqkn60MwqprwawEG9H/hOgxV89Yvt4RNEzKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"7947116722c6d3a965c69c1555de7405390e4099","engines":{"node":">=4.x.x"},"gitHead":"edf4484230ccc5f73dd6c2f0ae02c731869c05d9","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.5.3"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.3.0.tgz_1473185073793_0.5469698423985392","host":"packages-16-east.internal.npmjs.com"}},"1.3.1":{"name":"madge","version":"1.3.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.3.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"f5bffd0b0dc5d863cc36196afd265025f14d9e62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.3.1.tgz","integrity":"sha512-5Pe/V6trQLvxlWuiu26jt+JKj6za5rUAajUNF1ftFqujUlDQA3AIrhbrgF10SKei2NR3nJ08tpVQ2mGfVz3bLg==","signatures":[{"sig":"MEQCIHnKjvIQUmIYOJ0W0ZjK6TC3qgNpU1lkWKiL6X7nOpWXAiBHFtWxetseEWgcFkb2oIAQnk/+u1oslXP+vnbFu7+k0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"f5bffd0b0dc5d863cc36196afd265025f14d9e62","engines":{"node":">=4.x.x"},"gitHead":"a35b8c9e03bc2df4e953b845d20e319afe5bd59b","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.0"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.3.1.tgz_1475328442160_0.6454678105656058","host":"packages-12-west.internal.npmjs.com"}},"1.3.2":{"name":"madge","version":"1.3.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.3.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"2534792e1ec0afd418e31b3d36fff92316634613","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.3.2.tgz","integrity":"sha512-mRQOMb6Vu0VeIsIRyj2DkwUQsUsOhLe4EQBltDdxkvC/FB1O471ZP8S+fC77aaNGSb8Za3Zgb6wtINyX4BboAA==","signatures":[{"sig":"MEYCIQCQXNSvqIxT/Kp0Fphc1nCfxymGpVI6hK7BTgW9nYPMnwIhAL303+tJtN5E/Wmf0p3I70c7yleqp6wHyT9Lvm7rRk2R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"2534792e1ec0afd418e31b3d36fff92316634613","engines":{"node":">=4.x.x"},"gitHead":"b9258b19b204705cd41c62e12e996562dbf9d22d","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.3.2.tgz_1475476901291_0.419029536889866","host":"packages-16-east.internal.npmjs.com"}},"1.4.0":{"name":"madge","version":"1.4.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"0d5cb8449fe9f3c263503ed8a40b61c25e8779af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.0.tgz","integrity":"sha512-hVeTWgvUFNMWzk05Jvm/+bHHGqbi7EzIncsZBPBdfChmVrzHHyhGfpHFdbLMsvb+7DTJPkTEWPex7GSsU9wFCw==","signatures":[{"sig":"MEUCIQDxzHVld8xPkoqJR2MJsqN7Lb3ZKPigKsckkIX3jKjw9gIgSyFP7bqvfuNp9hLb50jBixfUx9NOE3QGV2X8erwy5ow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"0d5cb8449fe9f3c263503ed8a40b61c25e8779af","engines":{"node":">=4.x.x"},"gitHead":"9753f9e86d5cbda90bab7a86fb512d2959273c8a","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.0.tgz_1475770998123_0.26313150813803077","host":"packages-16-east.internal.npmjs.com"}},"1.4.1":{"name":"madge","version":"1.4.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"a171d3840cb6195c246963c2e51c339051ed5c4d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.1.tgz","integrity":"sha512-jpOvA7Oh8xnH1P2gdZFQe3uStk3lZpRnQaYjYzMaZDfEjmC2jksJ3l3JEpfOYvD7GX7gYDN/VDT9+Oy7idcF0w==","signatures":[{"sig":"MEUCIQCQqP0kC+mdF7jGB1Ro52bwikO7L3mrxY2IDoIe8uq5pAIgINUKMiZcuBknUZzKWk/tmDTtkHPliC+V+IcTOZMdsWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"a171d3840cb6195c246963c2e51c339051ed5c4d","engines":{"node":">=4.x.x"},"gitHead":"e7bc05d9a22b1cf6e1372a4e8de5d9d57d4878f5","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.1.tgz_1475772296770_0.7908681321423501","host":"packages-16-east.internal.npmjs.com"}},"1.4.2":{"name":"madge","version":"1.4.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"bdc0a8d0231e4f7a627d28919a2d6e95af81200e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.2.tgz","integrity":"sha512-XDmvJGOt9RZyUqoBcNuRxHDEgfT07rv8b+9BEeIEa9bnfPXeG75ugNvCDtH1UMLgMZ6b8ujCf9MjFwtkr9XHdQ==","signatures":[{"sig":"MEUCIQCqxChZrL4VH1lWU9FemoVBC5QkfoGMy35Obll2MVbqaQIgUjJnth4kZxUQ9Rxea9VTW997C5DYIZRgs6Z0KSf18oQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"bdc0a8d0231e4f7a627d28919a2d6e95af81200e","engines":{"node":">=4.x.x"},"gitHead":"faf722f277d8c1461d3f34c941c6dcfd4845bd13","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.2.tgz_1475773557260_0.5917004353832453","host":"packages-16-east.internal.npmjs.com"}},"1.4.3":{"name":"madge","version":"1.4.3","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.3","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"e51319a4b2fdee7d336a402ee7527c2da077ba80","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.3.tgz","integrity":"sha512-9E2filNEHLNPpfNr8j1nxZrn8Qtzi26ekFtH3PALDLRiDnLAA/vMKHOi/NZrOLZNU+sbe7RzH1OkQyIYc18SZA==","signatures":[{"sig":"MEQCICDHAx2VOyz1Dnb8dvyuLKNYS0qfxXSU+Ljl8SK+2htoAiBs/cQZLOCCTCzclqINOgTbwxwnvJ94nYWj7Tqjg7RBJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"e51319a4b2fdee7d336a402ee7527c2da077ba80","engines":{"node":">=4.x.x"},"gitHead":"35b5fbc8ead1de2e066ab5e11f72a79397f3f7a2","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.4.7","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.1"},"devDependencies":{"mocha":"^3.0.2","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.3.tgz_1476258792193_0.890167417936027","host":"packages-12-west.internal.npmjs.com"}},"1.4.4":{"name":"madge","version":"1.4.4","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"2df871636c83a7302c86247300b2a8237ac1c7db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.4.tgz","integrity":"sha512-AtuzQVCAtFUjC2SKy8f7gLM0XykREJM5/mkbOF80u16ZBs3KhlAyCpZFvTkaca0rLaJCAJet2G1Sk4efPXq/tQ==","signatures":[{"sig":"MEYCIQCufFNx0CE4IVwIFdzzrahki0vp1W1eLbHO6iXewl6a+gIhAP5ksr3Nea+5piLTAgRgLXWH9sx0VOZeDtT7yuuw2Cq5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"2df871636c83a7302c86247300b2a8237ac1c7db","engines":{"node":">=4.x.x"},"gitHead":"3f87baee2ba71ec4f2cab6f61cb0c9f78d99ca4f","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.9","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.5"},"devDependencies":{"mocha":"^3.2.0","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.4.tgz_1483537654967_0.46696094051003456","host":"packages-12-west.internal.npmjs.com"}},"1.4.5":{"name":"madge","version":"1.4.5","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"c4c6bac1e5dbf5a1e2e695238868f3f3d5d5c095","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.5.tgz","integrity":"sha512-ML+kqPKD9cNbJRFjlb6W1BU082gd27zMPeYrzCANacWNrz186v4gAvmW3bznZJoFPaTx2eZ/9rwQSwpeeVdrzw==","signatures":[{"sig":"MEQCIBSAo1htW6OsXJbLZ9OLwfJAGs/5BBbHx1XNpvTlsPZsAiAlfLKSZGrEy96a7YJ0VNense0hSAM0eXKkd4JPJXqS9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"c4c6bac1e5dbf5a1e2e695238868f3f3d5d5c095","engines":{"node":">=4.x.x"},"gitHead":"c97cf85e14a93cbb01d55ce3d46d4b947e6da70f","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.9","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.5"},"devDependencies":{"mocha":"^3.2.0","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.5.tgz_1483802420095_0.564824336906895","host":"packages-12-west.internal.npmjs.com"}},"1.4.6":{"name":"madge","version":"1.4.6","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.4.6","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"d0bd979326d93cdd09dd6ea1eac93acdc6faa091","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.4.6.tgz","integrity":"sha512-M+xPrg0djTrwzYHn6suKSkXU84aitPQHbTJfkZwkudCenxZ5PSb6HZiSOco2lUqC06RSpHkL+U/Z4jOKeIHDpg==","signatures":[{"sig":"MEQCIFaCDOaLZ4LWV1XuZcJYAVVFK4Nhfa2a4RqtEtJ/XFgtAiBpnHxD9dZ1yFJ0NAJBTwFZp9rTYCDEp6sk3rbQcn/c2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"d0bd979326d93cdd09dd6ea1eac93acdc6faa091","engines":{"node":">=4.x.x"},"gitHead":"e4e60d0547c01dffe74b59198110b9a03af03225","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.9","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.6"},"devDependencies":{"mocha":"^3.2.0","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.4.6.tgz_1483956612535_0.714473933679983","host":"packages-12-west.internal.npmjs.com"}},"1.5.0":{"name":"madge","version":"1.5.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.5.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"6245ff76aa0e26ca668153b9b3f3d05d62db8a8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.5.0.tgz","integrity":"sha512-eQn9Qc2RRdeTVdg9kRbaa/Vs18wgrlCA1gqfYIWQ309gZd7DQi21GolQNqInXTV9cKL02lrHGtOZWmTuOhG18A==","signatures":[{"sig":"MEQCIHsLw076cOw/nQ3kyJPWNTefmvJ/mu7U1AswIcFHT6DPAiAebgzPLBf9lsLuABWSPT8byaCtfXvgpuphg8DbAVCdiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"6245ff76aa0e26ca668153b9b3f3d05d62db8a8b","engines":{"node":">=4.x.x"},"gitHead":"c3c6b206d3a6b76944cd919cedf50984321c2b4f","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.9","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","dependency-tree":"^5.7.6"},"devDependencies":{"mocha":"^3.2.0","eslint":"^3.0.0","should":"^11.1.0","@aptoma/eslint-config":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.5.0.tgz_1484338521846_0.5708323009312153","host":"packages-12-west.internal.npmjs.com"}},"1.6.0":{"name":"madge","version":"1.6.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@1.6.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"f5d0a48027bee2eb9245b93423f9741f888aeb65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-1.6.0.tgz","integrity":"sha512-H+pv9QowGp83M8ytxxe6jdXUfphJ0PrCYblU4B3J8ToILEkmpDbk1L4FJMIBM86aUMUDqrt003f31lY78zP2jw==","signatures":[{"sig":"MEUCIQDXAS/dok7+EPe2w5TzyPl4vj50D0i7KdueQwQJLGgWLgIgNntAtD0+ID5lmWJvencSFNSih3EKIyLdtrLNOk9dH18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","_from":".","reveal":true,"_shasum":"f5d0a48027bee2eb9245b93423f9741f888aeb65","engines":{"node":">=4.x.x"},"gitHead":"20e0598e6acecba574ee72298980c15f51f2a753","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"2.15.9","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","ora":"1.1.0","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","pluralize":"^3.1.0","pretty-ms":"2.1.0","dependency-tree":"5.8.0"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.15.0","should":"11.2.0","@aptoma/eslint-config":"6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-1.6.0.tgz_1486554406353_0.8680046156514436","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"madge","version":"2.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@2.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"794170cc8a7755da2bb850d06e4219a395424814","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-2.0.0.tgz","integrity":"sha512-JT4JwbDUPQyX5lm5WZUq/lGeS8xOmL3M470kj9djjWNyUtnuAXRT3iAwmR+hRxKoP5UHEkvl2UXIvelCOYZDHQ==","signatures":[{"sig":"MEUCIQD8haeIpp+wwh/2G0taYVWVSe/KCfuJ+R2k0+MQKEpKPwIgBIHORvx8B25UGq9Pjr00X9oXdSPdcClUExzpMU7G1nQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","reveal":true,"engines":{"node":">=4.x.x"},"gitHead":"7fce4b71d05b67e2f22d88db00f5e7aad9888b57","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.0.3","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.1.4","dependencies":{"mz":"^2.4.0","rc":"^1.1.6","ora":"1.2.0","chalk":"^1.1.3","debug":"^2.2.0","walkdir":"^0.0.11","graphviz":"^0.0.8","commander":"^2.9.0","commondir":"^1.0.1","pluralize":"4.0.0","pretty-ms":"2.1.0","dependency-tree":"5.9.1"},"devDependencies":{"mocha":"^3.2.0","eslint":"3.19.0","should":"11.2.1","@aptoma/eslint-config":"6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-2.0.0.tgz_1500154459480_0.7053905485663563","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"madge","version":"2.1.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@2.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"8c91682316e05b5280ce82951c50528daccf0176","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-2.1.0.tgz","integrity":"sha512-xu97ylBtjG3srFTbEP37p2T6dlbJwgGHa7Qqt5AmcLy2KnyiyDl+il76sM6vRLIbQpnEw4zM21DhNzHSk4Bs/Q==","signatures":[{"sig":"MEYCIQD0JaHus+pEX+FDTHqlgzRKUpAclRurymqijHeNWI1mYgIhALvz2aio1Nebm34crY5bwobJZJDNBus9/BArLnE+tSKk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","reveal":true,"engines":{"node":">=4.x.x"},"gitHead":"75747f0fe6b436b9506dff1bc3b71de25b073636","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.3.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.3.0","dependencies":{"mz":"2.4.0","rc":"1.1.6","ora":"1.2.0","chalk":"1.1.3","debug":"2.2.0","walkdir":"0.0.11","graphviz":"0.0.8","commander":"2.9.0","commondir":"1.0.1","pluralize":"4.0.0","pretty-ms":"2.1.0","dependency-tree":"5.10.1"},"devDependencies":{"mocha":"3.2.0","eslint":"3.19.0","should":"11.2.1","@aptoma/eslint-config":"6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-2.1.0.tgz_1503779193783_0.9110696306452155","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"madge","version":"2.2.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@2.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"560ae7fe73a31a9e784fe402d9b3f79c039527cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-2.2.0.tgz","integrity":"sha512-5UoX9n8od0UmKPcZo4KydgQch+oKvlywsee+60ochES6Uo1UDaHnt6yx+SOIZMt007R0F/ZNq03vhxlaJPep+g==","signatures":[{"sig":"MEUCIGHHzNk1whsT5WwDJfEnU0jG2tjbBQ6shIMwoDbOI/9TAiEAsjCLdTUaS/kCIoIN9Ep9/nvw88Bj/hIlkhvbpW/WOls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","reveal":true,"engines":{"node":">=4.x.x"},"gitHead":"172db35d9a926c6184faf4c21bd5219ff05d681d","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.3.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.3.0","dependencies":{"mz":"2.4.0","rc":"1.1.6","ora":"1.2.0","chalk":"1.1.3","debug":"2.2.0","walkdir":"0.0.11","graphviz":"0.0.8","commander":"2.9.0","commondir":"1.0.1","pluralize":"4.0.0","pretty-ms":"2.1.0","dependency-tree":"5.11.0"},"devDependencies":{"mocha":"3.2.0","eslint":"3.19.0","should":"11.2.1","@aptoma/eslint-config":"6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/madge-2.2.0.tgz_1504031916009_0.2639078877400607","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"madge","version":"3.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"438e107588babfcc42323bc3fe72f7d88d356140","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.0.0.tgz","integrity":"sha512-fqMlHRGo3CHJ+e1+cHuoMC6YtpPEKhCC0JZnr+7tdXhRgXEObP7V1VLhggDJy3LUKAy0Yv+azP9dnNxAnfwHqw==","signatures":[{"sig":"MEUCIQDbN5R/il6ve9Gufw+yrCTv5NVmrousqXTr79XUVp9iRwIgRjMDQ7qVDl9mIlgDoGJd4qQOSZhPvbakXYzTb5qvYcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"4edd44afac3c019d1f1f5b148e4eb838f00a31d4","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.3.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.3.0","dependencies":{"mz":"^2.7.0","rc":"^1.2.2","ora":"^1.3.0","chalk":"^2.3.0","debug":"^3.1.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.11.0","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^3.0.1","dependency-tree":"^6.0.0"},"devDependencies":{"mocha":"^4.0.1","eslint":"^4.13.0","should":"^13.1.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge-3.0.0.tgz_1516614640990_0.9683312699198723","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"madge","version":"3.0.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"c289ddc4b0e9d8f9f22f8464349a7d643dc021d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.0.1.tgz","integrity":"sha512-6aR8+aNJMQjlmd0oSkdEPPdaLn9S0Yjyux/CQlFCOfIknWZn28Gh1HPAGMj2GfNa+Sj5ZNoqepAEtZgm49oPjg==","signatures":[{"sig":"MEQCIE4mRSxsj1nm+etv1d71A0evReTR7kE1MVamXu+AdW3yAiAP3hpCRbHDqsOGbcnqt/Hx7/W0C/Ie3VT0HVo9TEsj1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"0673978009af5734fde47d1fbfa6f165e5addc5b","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.3.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.3.0","dependencies":{"mz":"^2.7.0","rc":"1.2.5","ora":"1.4.0","chalk":"^2.3.0","debug":"^3.1.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"2.13.0","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^3.0.1","dependency-tree":"^6.0.0"},"devDependencies":{"mocha":"5.0.0","eslint":"4.17.0","should":"13.2.1","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge-3.0.1.tgz_1517822453460_0.9835665987338871","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"madge","version":"3.1.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"fad1bdb59a7ca3cd037b6a91db8773c4a036f898","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.1.0.tgz","fileCount":111,"integrity":"sha512-hBwAJQchwJhKcn0uqS+3mWaOLHPOaz64DZfsQOtiXLNqEuQkZzBXZjK5V7K0TlVZi3VehmGB64qW/xWUmkUp6A==","signatures":[{"sig":"MEQCIB9kByvHJAQf/5/MF43QszBLFi8FfiOPOoCo/aB2XGjTAiAyBVEArYypRSpbNBfKQ0p3wKc/ubJzVKT2menqROIm7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA8zeCRA9TVsSAnZWagAATJYQAKIcxjH1MJypeb+HP0/Z\neWDx2s0aTMDYGKSokeqPjMqrzT59bSqVNc0X/GO1/DLD7HGArZzAcUyNlCr7\n8ZAGZUNNX1zn6gasdqiUSyLfRFhMByHVv2dBzKlQpyE9mqYrlSAOYfsTo/M9\noi+Jwf6j65JRi3eS6ayEGdEMmVhlNzcAzootrPYoySfeFhSqKFCp3THfo/CB\nub8UA6oDGWycApeUBbrvy0UTrGfeOmituBGzQxq9Cy9j5oqT6wKSOHRoEsK7\nK9AdEVagsL7UYqT/HdNb5fbmAfA4ukigvQ2o2+JunOjGhJTHCkltyn6nLGWd\nTyv28QUan9x9+S+xHGjI/sVtAXRO/ccJZ4+X+U7ZQ5lSaxlw4MpK51Cb9l43\nnJM1Z9xoNUGptPkhROl1AWRs9qeuRj1eq+buTFIe2ctFrIyalrhmHZV743b+\njhv8jvBUinGvpdguQTt0fciX+VVy29xuwjYBQzLV3ja7Tjxo8TbC0b44Eyy5\ns+1ZJb2G5iv/be628mHLfZ9JF3OepLJ6ZcsuKrFfiCQVlvbd1KJ8cLtoT7ie\nn3gnRTc9XIPErAjA1IDAP1oWzpR0GbgUw2IdlzO0wRsd/6Sw67u83eGf/z8X\nPoncah4qyB3kqQ+mf6Qn4/g4NRIZSrhP1bboPP6Zpzp+agyIIKUVfhhwOdgf\nSQhv\r\n=6r+Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"c02d0e73e908763437c12c940d7e79b76e4d2894","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.6.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"rc":"^1.2.7","ora":"^2.1.0","pify":"^3.0.0","chalk":"^2.4.1","debug":"^3.1.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^3.1.0","dependency-tree":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^4.19.1","should":"^13.2.1","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.1.0_1526975708369_0.7369012410104829","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"madge","version":"3.1.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.1.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"53248c38482bc31e07f4c9bf8eb67b9c17b74fbb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.1.1.tgz","fileCount":111,"integrity":"sha512-pczxpfS3fQcNw0DbInBK+TT0yjw8MuwT5Du79OnPACzvooStC5chf2zvqbmwRCdMaXDwaV6JEolAD7nod7PgRA==","signatures":[{"sig":"MEQCIBFaCtruUrBJ6d56Z0OBqGjmUW5DZ6A9o+wjkipdAZGLAiB8x8BEgm6pRsIxAYdf6B9jRGD6MeybWLOdBOH9JGX+bA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBmwSCRA9TVsSAnZWagAAZ0MP/2GGxKnQOw0zU2S75G+e\nJ2JmdCDhUDMCNAuL4tPWOh6JirF7J1YzCBVT9vAJNgWDFpeNqW61xCrFAXgV\nbbhA8K7fE0bHrcw8BvkvMR+plvnRCeeQxz7Bm/yvWWmDIxMaPhGYskW9OqYY\nXHRf5N8dXVYyXqC9JvA1fjNOt31/gZh8jWNjorUwURdDy1mYFJ1XGf/4QFGu\n1dMtC7Qx3022+uDSVAnzPUH4D8TGHvuxD0x69+tD3bRmIYk5K8NTSjqXi2q2\n3SZEWhI6oI6yZ51owIbQcXKFvibiDx64wCw4rl8SWyXf3HZidKFch/gBDqzQ\n7vli29DOrc+Cg64E7F4TZIvxsS0oMCdZiRWxhqQb5/5M+8tiUZGg84Klbdvg\nvYPUrgzONgfz8UhIcHlIT1Vgqi0BHQMILgnQU7ZEcql51vDtq9vnoBEp6rkF\nPBDrYvtqd1eoUmel9eJLr2J5IFGoq7pVNYKWT8crdeN6RyfGYc02FkVpLY8x\nnTB3NRfLlQbQvqCwLHy2EBBgiNADgKdR93uaL2N64gWGAVhJGqr0Py6/slW4\n/B8JU7mIy8w7yEGhZn4f0jlTrEvU82l3DmJ6RTCMMnYJ6jUUEAEme1XcDH7u\nq7va4JAE0B12+CKaPu7uWHI9jFHh2N6YUFX7BswaQqgnUpXEDtDYpLqkqDyo\nqi3C\r\n=AyyV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"be364ceb6808ce66fdb164976aeb667044b3eeb8","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.6.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"rc":"^1.2.7","ora":"^2.1.0","pify":"^3.0.0","chalk":"^2.4.1","debug":"^3.1.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^3.1.0","dependency-tree":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^4.19.1","should":"^13.2.1","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.1.1_1527147537230_0.853880837399867","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"madge","version":"3.2.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"9fdc57fe88eed58a628bebeb91c8b46c4c93af6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.2.0.tgz","fileCount":111,"integrity":"sha512-+hD7bd39QGsY4slEiU+ohjy+xqaELIeoN1cBZhv5oRLQyKR6sOJTaFXYfb7ttLjypCHza0KQY3QopljjveQW2A==","signatures":[{"sig":"MEYCIQDYywo/0UiZs6wZTEoadQYyO50tk6LEzqJ4pepu2Z8LJAIhAO0mZM8W69rdi/4zkUFCg8tdu0aN6ygFz9hTmHh7PAar","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMfSnCRA9TVsSAnZWagAALPkQAKJNvfwo+dZGfeBjWiv+\n7mDcFJUU+5TXcVtICvrSOB65FdINxCaOtECrHX0E1UTwzcUtxgVOFS3wzqAV\nmCcXki8m2VXyHls45BCFjHQW6scEJWxwaoQD4ZU6UzOrMgtEOMvZeNmYro9N\nHAgryS6VQy7YBuYPMTqAwU5XRhlZWUcJYxTUCUi2n9wkidpFXI5qEr8kL6IC\nmRzHA86VACl5WknewagF9Z6qaE1jblPSD6gjvEs+WfC25PWVHCV+QIVsXu8h\nbsWkRaNucMf2LZTYCgBVi5RpJTQEzlspdu4DbalRIoAmpp72zDwIQeof2DZy\nBSb3SzG/HmBPZHkrA9QaomSPcVtxBs27rheXsHpTV4TmVdW3ks4laVlFXNbP\nPe0w59iu2fcRnfPxQOa3dyJtxD/gU3t2tXluq1JSNHGPZMWbKv5Xi68dx8gI\nAOHtEK+WeUEjS+VymOTlU0JI34ekRis4Ria2kQ+Vn4JfS95Bj5G0i9WOBlt9\nqihg9Vi2HVCoELRrmA54zlygipdPTMnCcStXNcU/x0lZ725kiIx+T6hUKqe0\nzUggKkAArm1dReDJ5ea7s3cdx+oDpApS+Fb1U9g2uJJfU7k462HH0Ru3V3WB\ndROwbWXfU6ofvsn3Fe4XCgDsWwPaXtBYtBjRfs/CsdpQEjTp3cXEV3omgexu\nTs3y\r\n=LZ5N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"32810d309fe931acc61dab919bb50d371f097a35","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"5.6.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"rc":"^1.2.7","ora":"^2.1.0","pify":"^3.0.0","chalk":"^2.4.1","debug":"^3.1.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^3.1.0","dependency-tree":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^4.19.1","should":"^13.2.1","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.2.0_1530000550902_0.4913445870546338","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"madge","version":"3.3.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.3.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"608ae0fdefef0c278b843b76e4cb6c309637feb3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.3.0.tgz","fileCount":112,"integrity":"sha512-AWRUIyir+ufyBgueZL+AfvsHPcATNQcwgndwC2bcdIEb57xK54YXmx3ECKCg9PK1zxp9Uc0LMSE1roO+foX7NQ==","signatures":[{"sig":"MEUCIE54Rty2yOfTyS1Qyd+WKZLQIUrmWePQJqV9aN/g2ryuAiEAnMHQfREvZHxmSvAQ3IhlMho9i8tkDWvxtoPN/Ap8F94=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":104468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2WPtCRA9TVsSAnZWagAA/CIQAIWpISTNglFFhR4TQqV7\nsSZUHtdaMbi7KZJO0ot4LCnpwV6Gmoar+tHDtKhuMFPwj/0QGOTe8YuShtma\nzM0aVW7kfjQEyj9lJi36547X5gJV44wl5vI7pxMWHnaQLEvy0cm9Up1qGg0q\nlSsqHw8p3kJSeXj36OgY+dL6iKPxN9ejAAKJ3QICOmYUk7f97j+4smm0VMGi\nv2qTOOjISXlb8CULANxf5/UkxJ4+mjC/m8gjhq1/4tcSvQthcTVK0pHfLinw\nDEPiGCGF3eJqckWm9ftQBG6N0heriNHN/c5wrZGLauEDlA/K7ZJyZ+jgZjTB\n0xO4dkBBxWqd0cV2eMntSQ+lFVdVACKbOkvcYg/x6KBkipae6Fd4fYdNvC+7\nYU2i1ytOmMV69CdCgTJLkvzMRo4v/wDVpy4kxMnBH3N44jcp1LOH5QJhJy/s\nW8pc7oeeSZp2fnoC7or0xmHdHtYmKFI3L4t1+U3cgEdCRiR7fbf8ZYsVpYhT\nSEIeTh8zojKn0mVneoS78R3gapwfcxcfe07MNdLdMGcyaU+4ao5EAJWkqGOh\nasLJ9MHg8yIH7mMoePhYjz17nst+249KBGCS9/p7EOS8VQK8meHM5QhYQkFJ\ngcU7NmAd0/bBZYSIZkN0oIH8SeYAH4RFQundGB4QCNg1zOBfBlRoT7X0L9B6\nGnuu\r\n=B1ZZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"c387484632fb4540b3f34e2ec784ffdae856383f","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.1.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^5.6.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.3.0_1540973548393_0.028348077545738093","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"madge","version":"3.4.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.4.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"308d73c09fd4222f227833b97db3547ce9b70a2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.4.0.tgz","fileCount":117,"integrity":"sha512-5vijwVXWYwssBEpKfuZnZA1WYbu6pK/B1JgajoyGWrxJeouqkVARpsNfGEAl1KMpmvv5b6daWJw3gUlhI3j0RQ==","signatures":[{"sig":"MEUCICwNNLEY9HLU5151OHfjg+fDMqCAmxn8U7IJrUljT9XAAiEA53ca6oR0kWMSK8DXQLX2XV9tW3aQ4a091B/wkRp2314=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcM0O7CRA9TVsSAnZWagAA7msP/j6/hepd6IPL+tx3OKi1\n7GFODgNr6+W0OMTzwf4a43eCJmp0KG6YwkLkXfn5thJHtOkzd+0q4l25tk47\nYDjPK6I7brZu6SZkTshZZWVgj8/keRiDR1fB0pphk2EQUeTYP/2t5fOItsNF\nIDaBR35+s25jEHV+kErFk0ea8fZVcbSEIuI+ZNS2679H/Oqa2cbjOMjL6xjS\nIR6pyiP1SqshLl98MiBVBEAWB+LXOmnyRDutLjh0ghiXbtJY23EOYVRbnjuD\nX5sS+grQaKj7fkT6rJGNtRNujlU4rbLE6g7C1CpxaY3KG4E6DTbWc8QAWCsb\n1idEOqQL4TJR0J1XdDiN7je9Fs6rH6Y9pUJBhztIMqwy6f4kNAEULlGVProW\nA58ORyenIuvPanFKZfENSZpNEp48fBu5vM8vqadTPh+zH2Z4enLVvwW/pSRC\nrCA/90XzEkZYqpa0kv5OyMmskOWI0WetWoaSrosJFAt9OfurgGeYauw5R0BS\n2hTTicNyAfcf4EeLLd/3qvqwIq3SZMAgiDnXhh7hsxTZSYteEBTolPuj9m0O\nIHqgUTJgurUvD1EnXx1TJFNVBMgB1sLpQX0FzK1zdPU/59bM7I6nTPCM3jGV\ng9xrKuvCGzxjzWUq1W5ynm3vhRlf4TLtlgRnTowWr7+mabj7rjJz3Bkt0eCM\n4Hwb\r\n=0BJA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"80de97f86baae12e397c3b7985c0c6b9433cb4e9","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.1.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^5.6.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.4.0_1546863546596_0.3925220218359875","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"madge","version":"3.4.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.4.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"516a5c956a5213d2a8366ff6fbad0f9cf1810f60","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.4.1.tgz","fileCount":117,"integrity":"sha512-h9YUHNDVQ5ZhEiW10woiM4qmfW29PFRTuyNjttO4g9R5xMIJy6tXh8hBob0BOOI2pqKALAahkVyCudfTz+PlEA==","signatures":[{"sig":"MEYCIQDjQdTE2svL0oyCMBtM8fk8QzkJUfaHysmOHmy0Ub9XCwIhAMolQsyLeaFBvtgUiq7g/wN2vJkm8X2oA742E0F9EPPr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNvaTCRA9TVsSAnZWagAAZzMP/ik1sPkbmv/ogIHA/lqp\nnalBQq1jqYu60nA6WxGiU5gCj5oAR2NGOZ3EYzRc1uvCIfGLsysOenjjLzbP\n/XBXEqBmjaWDCrd4Xm2pw8Zg/8gvzrHDnZz2CjDD4OSNLqYgmrMbhGOD0bnS\nfILuCBww+QlXvJckXxwPaQwLkvZiEwavwtX6/SdoA0J5Ei24Fu1ENdZf9BA4\nC3PHY9+cpeaDNvtlW6DVbKyl70DR/ybVW3MMvsQ0wGB4ZexTrhvgzkKhUIZ7\nvDhHhoO6kR7SU2Qx0VbNpz9Y/Z4OlYffEwWEnXSE+ZWFihpD+S6YIXShAujG\nI6H9ZJKuknmgNAZTDeIdEklxKRcNZB0NzbuNeu37S3RbEgUqlUMiGgXaSx/L\njUlN7DWmUoEx54N2CfoyOh2eAz9Qq5E5y6ohBnt2PBfLHP3OQ1vQCZEMgO5n\nO2+Jz4DjdK9N1QRcFbqe1B9GJY65gH3hE4LBuLlftPVwaDQYVR5r3xRHLvFq\nHpjjKbvTu1LSgG3Yc6MYZV2678B/rWUxGAsJaygy4v+ykHbKzGg3z5quhpJW\n1XfAguHKYaM2yObxm6MgbBFJIqtuJiu/A9MfoXss9GyFbtcnJ/EF5FyzRhjN\nZ3zq7sKCbAMnaZXSPlUtXl0AluEra4Yq3oE54A5Sr6uLGYhC2L8Ibp6dz6UN\nRs6G\r\n=qIRW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"53b9571a31247cd194bd32b43f37afaa7c8a68bc","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.1.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^5.12.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.4.1_1547105938615_0.8816263637937818","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"madge","version":"3.4.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.4.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"7cb0bbf79b1a866453c290a5d3bdd23dbe0c181f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.4.2.tgz","fileCount":117,"integrity":"sha512-xDj9/PClpoZGQZ0yKEiObN6IHJ/KDgVbQSqP/olmJPb+ThWSzA0io2qujPILbvjs3v7LvlS6BQlIaNQdVHq4gw==","signatures":[{"sig":"MEUCIQCQ2t0PQXptMSpkteRNt4+k2CF7M8zZOpfMXfsyW8AimgIgHUsMoC0tFCToC/duFNrpCV6XLMl/LpJk6Z157058QK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNvf+CRA9TVsSAnZWagAA6MoP/1Fz6lFW5krHSZjRw6NM\nKozxtVhf2DKsW1twWAww+js2iBce8d+eQ0oxmWtSk7iNYFObZZpq/lwIdTps\n4D/VSxzGTbfVd7mXceXUipNITlWp9ZVPb6Ou2eIjTnJKoykfltRL/PQ08rFV\n1gh5tQsJsTNghWfBOtKyO7iRPGhToTyPcHvnni0XRcVxuKQAwvIxLqmCS3pB\n9PTfSnUdc+R+JFGbUd2P502KH3mO4sXT8bCpR/T3xL2enN8Hz/Jur37DHBD2\nYclB1I2NIxwPqD3QG/MLSsXpcF6skQkFTJ1ihC4jCLNpHzF0YhtiTdnW2BWh\nDrVUIFGWXLVt23TxcydpC3WK/mTTaleC2vUXZgIorHsNW1aiEbxmYNwkRTGI\nhLbRArHrEZrgpxEw1j95J9ZDSaZt+566rNiMJv9FL5KiAb3qiy/iv9IQEvYy\n4INqgGFtfzhHqENMSW/xgA9KCOXmcU0mOtBbf+QfCc7Ec5NqLR1HxQEFmfq1\nizyK1qKfMW99ZXsuiJaaMQr/A1WbycB6Ya/SGsWgr1fOBwZgm2BhlfU02/wq\nUZCY22scFBrRHckwc444KHG3KlHx/gTzdTph+jAx/PJVxHwUWhrmi6tvC1XE\niUa4UtoMYEkcMzhfowhYrR4q1Lz2incm3DdefCIZ/MVzTXIfnxXltOuZE9wU\nt9/G\r\n=t7TH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"bf00c403ad1849bea1a31aa879241820daad5b9a","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.1.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","eslint":"^5.12.0","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.4.2_1547106301704_0.5031683806022187","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"madge","version":"3.4.3","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.4.3","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"66bbde7b94dc6bedbc32e073f9f320d067832fb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.4.3.tgz","fileCount":117,"integrity":"sha512-oeB3VrWyEA8JuJk00nYgMdqwr4NFGrxam9MEb+IsNjrKuNFK5HLYFMziBGkfLBANxfxRMDB8kMMylB2q7OnwhQ==","signatures":[{"sig":"MEUCIGvyNLDrv5GS5va2WnRoNeE1K8ARxBGCw8eIGQUgz7w5AiEA5yFFQsJMFWW8zmIc+tIgbLzFGJi+uZyMjT9OL6Qzwjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67046,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQDacCRA9TVsSAnZWagAAReoP/Ax68RGToZRxFFwCpEiy\nL2eYKCHPEfCR2E8jfmtqEFMXm2kFJc9e+B4W0+DLSaN7skXg083ktGgJiKF2\nFTTBhJz6r7R+qX6xd3bXuQdoHZQOukaaHTcMBWBMvkscLB7lm4thF6IK0vTv\nA7jNJ8LxQJP9ce+JjWjTJ4UXl1610qHlcT8XpJ2e90Oy4Qy2cWOeXRV3fMxC\nuWfY8pH+mCHV5wdS47dLp1l1nPRf3jYmWljPhxM5SiogtwwKOYh1AULyc4Uq\nu2rxtKafkkD0RJqrinWBwD52ahJehRCAfpiLrZE2BSnWazvEgESq9fN+cLtB\n+v7I6poASxk9gcBv+Q6eDbV+f8fa5ZI9F7KIpM5sTzctbmqxaw0QHWBB6bf5\nCh+0QL9Dn+h3qkxNkSEoZVZH316JdvvXRfISvjYlHci8tVFljM7Z/C+9d3mx\nDeDI8XU+zHwubeXxUkwYigDHV6O9jfv9ZWfmaWWZd58+Eye7AtqbvhzW+6WH\niHQF0AEs3xuzwoML6nHpF8HRtFxjJf+DQ0YWaeD0rw0c2NIjZj6SPurlkJAm\nQB387DJ8EKPP3Ha+0FxvPk2MZzlFI6arBHMpQkRlV/aHzl6ZtrYqBz3kdYAH\nMIOTAG0K0lSSoSVoVVwTQCH+Ez//uIujbP4y8o0+YLG5o6m71LqgrhOGbrmd\n/HW+\r\n=xviq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"4aa2cff19fb9f30aedfc79adfed28c183e63bcb2","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.1.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^5.12.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.4.3_1547712155750_0.9690131652043981","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"madge","version":"3.4.4","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.4.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"f0b254a78f6e0fb54bb8dfe5ffdee3caee280b3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.4.4.tgz","fileCount":14,"integrity":"sha512-ywk2Zca1Qn3FMH4btNcJN9q3z2+AZhJeUCzUMbUwSL/xmevCC4CzBQNF6i22V1SJ8cbXLKrXrJ6k0QQPtd9/KQ==","signatures":[{"sig":"MEQCIBRev02hor5XHUNCmfK9ZotGJVePTclbRr2qcs7ktemnAiBMpE6w2Y+R5h3MllmrRHVXARTGzwrPOUvrF0n78G3tDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYq65CRA9TVsSAnZWagAAViAQAKIhcfPK4CFt3UKRJ6w1\nbQQO/ULcg5dH3ahLQBbmedhBUt2yryZELJcEb9UZkTlJAs+H7OuMgFwmD9gy\nd88UP5lLtKzjrINhlGbKuEj0Ii6icMtireYKXNWNJg18z4mBiADHzAf5FNMC\nDsQTrLW7CrZFjngmIbL1RSAQvdB37l1OMOb1fFkf8JBQAjFfnzvrZXxV4x0U\n7V88EYttV6rL/YLkudca6tC2w7pEBuBib3XGrfzUwpXiXjxluTSW4BjkbMY3\nwFBpAGpMyabGJZjuftQUNady4VIETUrqEAemfCY66fQ/MxF5z09TIl67ZyIq\n2Sk5ekqbYq4grJJeAdRN6FO3qRMGGVSy7AFF6X3bJyR8UYMvxvnFno73f2qy\nKUs6B4WbEtlek9LmqXhYK2N/bGr/QWnjdp9XK9YLWBLaunj7DbgtDQOaJXry\n8XJ9pWBBcQakNqY2N+qDGx+nRk/Gyk+KjWKrkohDkUT/0kXcxzsYpHSjlMh1\nqmL8gLsTLaDeTuppO8vEobAgX16zDSZnumKjun9HdgHfE+mfZRu6Lc2F/6Bp\njxgrQWPj4dhGwCwzFKwZtK4+6R3xubJyz9Uzfu7YG8YJb7nzSExSMZINqotP\ng9RyXrfO0GgZVefZnUBAU10HTaNKGdnXLxdDn2qQ67Wwn6xbU0+hwcfLJJFZ\nIuGO\r\n=qx+b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"d9e5aac241f7d19b4e0f1e009ab5dff634b337a1","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.4.1","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.1.1","eslint":"^5.12.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.4.4_1549971128301_0.24699560540533794","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"madge","version":"3.5.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.5.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"04c30de311b885c5148ca376fe5a4e7488148846","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.5.0.tgz","fileCount":16,"integrity":"sha512-zi60Lvq1Mx4ORzUZg8GrB4Aw6B91FDzvS+oSahshZY2lfFWI5o9xTyIkF81mIHJ9BsqKoZSnwi/uykXSXUNZcg==","signatures":[{"sig":"MEUCIGuNEpETg5T8B/UOIPO4h8PvdDxL3iyCjrBBsc80Ea6bAiEA/qUXeGMySC2M1AaHArQChCq3Pj4KwaYM0zNyRlHFlZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtt6zCRA9TVsSAnZWagAAKG4QAJDkaA7+gGgbY/97Vgnk\nFpFyi0V99ecvTvj1otyg9MFwkLHyL306vj8dX4gRlgyOT+8MmpzH03BRXSVa\nbRZkdKTbJulTn9Q6LkGYG33xRAXfiksG29PVAlCEa848E6uc3RyP0kgQYgYc\n+nk6NBYyreuDyhNw/KaQvEurs7i2StTqLU5iPE6CpMVqcOnU06hq/XHwn3AT\nDIe4G+cA0TWneZj/bnDuoAXjyP/w91ygthloEm5QLgP1Nn28V8IlVqtRWii4\ndbQbTfkaGEdj/3UdXimtJHksjGLxp18ZytXyl2cmLZdwwl1QGNb1CTr/2oqq\nUEOcSs1w4FX96p4tdvdGQEd6iZkUGTYkA451smNJHPiSU8a1LKw6ovwWduv/\nfVsQeBPl3BP/j/jnIe9LQkQXRhcs9td6GCQbyFAhkvfvtH+yu2aZSThUiB0t\nzT/49eUbmSKUg0XxkWsY9JMx4d0ssW8JtCiwRXkZcxwOAdeo8wrucXVGkg7L\nxXA9+2m3HfZaCB8GCNJK+IS76dQYWBcw49XKLBbZMAQyCCO1wTwlNoTYoCCI\nt91NGGw7rbsCxBGo4L7ZSSGwZHW6k0VFsbJIOMOY2flbgvLJudJPiq7Blwkz\nFOgQGLy6wdV6FXA7XZztvjdbLhljgFkFSiW43c021gqjRiEAnpLCgdyJqoT5\nfieY\r\n=89Ph\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"gitHead":"4bd836684e8535791c558f4553e97977294e1d36","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","postinstall":"node -e \"console.log('\\u001b[35m\\u001b[1mLove Madge? You can now donate to our open collective:\\u001b[22m\\u001b[39m\\n > \\u001b[34mhttps://opencollective.com/madge/donate\\u001b[0m')\"","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"collective":{"url":"https://opencollective.com/madge","type":"opencollective"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.2.0","eslint":"^5.12.0","expect":"^1.20.2","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1","expect-mocha-snapshot":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.5.0_1572265650720_0.14773840300412266","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"madge","version":"3.5.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.5.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"7ede4237c11954e5121fe0424e5b98b2720cc819","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.5.1.tgz","fileCount":16,"integrity":"sha512-xPgppbKQh2ClXlad5fllT1nvrVegEcxEHugxBDi/mHJ4RBc7PP1QFdBRiLwbTEU4YkBnQZO8IjkB1WYnrslnBw==","signatures":[{"sig":"MEUCIERAc0TB2Tbb+PHDYs3YjYJ+ob05lEL1b2o6KVvWAlTEAiEAyzT8qVDewrXgtmebEX0ifB/RJTfexvS38WMoI2+ZiNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxCJ2CRA9TVsSAnZWagAAupkP/2TV0QTnwjSBycy4NeEm\nVnfD+I6SIwajlB6GEBUudszZ4wO9bIuxIZZ2e65EbJ18KYGueHLrLoM/XdG5\nm7Gn1tnnwfGyIK9pIffqlnCS4mrUOVe6n4pwXZx2p8fiInOpnNYbnWkn5tIc\nO/c97kiT1dvGqol19TdWUaM0kMgvE5YDyERjA//Udq7tpWgHDipScwElAl8P\njzOjykJJ08cSZ/+uLkmwMNMKfh3lPPlObiwyBGs9A3zZ3d/uxksUD2H3p0yO\n0bPZb/2iSD7HnWcW1Qjx0o1nYyNqRBTUqFMkhNV20JSlaV7+1tcHF0zUn6WD\nkZz6uOXHRBQXW625GLybFAPtwrNIDJi7prgUpspEuIKQT8DuhD1rFUSnSeud\nWJt25zsd/V/boJhH4AaVT84wx7bF9BIY536age16sWk4mKn+1BOjfqbVt+cv\n7ajgb2rFaXJFgCT3aHJi+w8qIX0bX5f2PpgLqy6ftz6JJsYEXdBw0OoUU1Mf\nrMsVu1zv6lsk8jAhLixsUfF7SozQykLtjWltHuNOrBqpyrOo1fpeuiULSsqU\nABU3IDo7RMZefgq8ASKiab2dQMGvnCANMDip2fLcdVJ6tSNdFzWNOIV3T+EV\nfR9kTcpndA579vfVuG8Z8T3m6QfHX8n9moyF1ZV/nNITyH8rnB+3UGOaW6jS\no9ej\r\n=+7Rb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"funding":{"url":"https://opencollective.com/madge","type":"opencollective"},"gitHead":"389ea9103e8e27a642f484cdf242c452667920f4","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"collective":{"url":"https://opencollective.com/madge","type":"opencollective"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^3.0.0","pify":"^4.0.0","chalk":"^2.4.1","debug":"^4.0.1","walkdir":"^0.0.12","graphviz":"^0.0.8","commander":"^2.15.1","commondir":"^1.0.1","pluralize":"^7.0.0","pretty-ms":"^4.0.0","dependency-tree":"^7.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^5.2.0","eslint":"^5.12.0","expect":"^1.20.2","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1","expect-mocha-snapshot":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.5.1_1573134965623_0.08383715053763185","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"madge","version":"3.6.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.6.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"f69e7c3e15a18a195e6bcd7942cc36efabcd9b9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.6.0.tgz","fileCount":16,"integrity":"sha512-r4pCwKmihtzemQq8Y7edfkAKVKFqWU/AXTnDckwf1D4HOnX/uLAyWHQ+NgEo+FqBappi8wBzWJV5sFyQO2m6FQ==","signatures":[{"sig":"MEUCIQD1GKx2eBBBsRPcZysJpgjRFv0/WxsFthSQdojsgYz+rQIgdkx4RM8WLqjwHcGeiqnck4CEM6cW0Aw6KaAZbkUr9jE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyboLCRA9TVsSAnZWagAABMEP/1OIBbbEQqlrEj3sqJL+\nvWRcvuA1fGfOutfquqJL2l/gi+VKfGYPp1o38F06k1C2t11O6CFjEcU+AIo+\ngPAxnuhmHWB5c4yim6tSUe5oYbqqX42M4A9x12sjiVXx+wt7uaH+ZPHB7/9D\njLSdC+WckaRihr2uIVz8eOI3gqzYAt8Zqmv0CHgC7QYlO01H3+CeWpfoRBFZ\nyRYhIQrMvuOzgQF8HFIOl9vpXJpOduq2gbNd5MkGAJwD6QgsWEMu+nmy7rB3\nk7DxbTSKOev+1PYN5bOc2xoGLBIfRgH2pygxZV7ANN12Y1OdE/AuLPh86gsO\nPxZuHDeScGinjkfdrgH4+MLO3n8fRKZzIoNB5MBp38ofbVWn7dPFkh9FgCZ9\nmoeiEFDFwexAXqzBaSD7yd146KlwtIgrh7jkZJON0WBMnoKbgMhvu1Jo9C/0\nAzjPb9cojm/3YWScFrs3hoO/nrauE+mRvADkxo04BQNluRQBeNP6bTjilXMp\nSLEpIbdA53/x/NfMHug0a3jO3fhgkXnpgdqnc9NPuD0ceHMANMzbfrNuj4wR\n5g6nfkYom5S0FiFnrvKdqY8pHPvaz69OD1BBJW5B+x5RJ1Cjx+KT7DngNaB0\n0tNIBKGP98r6BT2v7yQycVtVeVblg59U0e0a9hlnxvIfaDtrECLZyDwW7AWy\nXoJM\r\n=+lA6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=6.x.x"},"funding":{"url":"https://opencollective.com/madge","type":"opencollective"},"gitHead":"aa4f81d55e7fc56ee731a06936a8154d10da6dc5","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"collective":{"url":"https://opencollective.com/madge","type":"opencollective"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.2","pify":"^4.0.0","chalk":"^3.0.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","commander":"^4.0.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^5.0.0","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.0.2","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.7.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^6.2.2","eslint":"^6.6.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.6.0_1573501450849_0.8287314589447117","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"madge","version":"3.7.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.7.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"b652081c8eadb57e8f9fb9b82b28c699307a1057","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.7.0.tgz","fileCount":126,"integrity":"sha512-Qxv0lLgarPIptxD8PHS2nGyuYcyu21Y2dOSBH8O7hF8UEAEkMjjYpECYquBTOMoKNe6hKo1VnC3mCE/fn313XA==","signatures":[{"sig":"MEQCIDgqj31wDzxk9COzA2VT+No7MoaoxqiQEtYedBU+sHqtAiACCIU+bjnN02eegoRAi1QSOp/igXJNYegjYdGaepY3Dg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMnTOCRA9TVsSAnZWagAAGTEQAJyriDtuICdFSwMWNJnj\nCRgVWfRpydv23dTDvYMsyYnEvuDLeWPWwh/Yj1ZaSgK3nbtmXqn7QQ+B4pcE\nYY4CGvgvECswpOTn//L0yHucJs2ANDy8oHwwXE/bcSFNpTmm/oTa6IXQhmI3\nFGNhVwEJJbeUHm/vfis0a0ve/Bzc83iy+3f+7c5k1D4Ei/s/T1O1ntAwxFZ0\n2caTasyisUR2Yl3eH1LScjxtGSyo4IqmBYyTijMUxQo0i8d16zFG0UKfPccd\nK1Dxwz/jsZTLNeIL3sZtkMLMptMa0Vzs4WlPBClH1PowKQ7RT5zFpNHb6Qn/\nhBR2oFJR1EZUu4GF0zJlLriGv3/jwFHErh4zn2f1GFm4jB9hn7GwLBFMLyW5\nhPvjt0tpJxvClsksNTZ6965kZjQhhUMAymP32ay3/CJDVin77VuO1kI86xJ/\nWPyEj00Dtg+Tq+0XQBvzi5gZ5jUYhSw9T1EWzl95gLQBhL2pMkuLgE5yBQIF\nQYd0yWakCsuXCdsjPWIyfUxNyomI4PkbPOIiXK+D+D7B7fC0AAMsGEmVCRgZ\n3Hg4N7UL8pVtfXw4beoeO8F8CTOhgze4x7rGGtevYvh6DTqILzbNEpOzc7bb\nanL5ptoYIdNUeEXjBlMtUg4o5+PLrGTa7ZjQGhc8im1LYgosibZ/TlH2TH90\nPKBA\r\n=YLXX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://opencollective.com/madge","type":"opencollective"},"gitHead":"8a6803c9f85c364600a4cbd54705b526a092194d","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"collective":{"url":"https://opencollective.com/madge","type":"opencollective"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.2","pify":"^4.0.0","chalk":"^3.0.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","commander":"^4.0.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^5.0.0","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.0.2","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.7.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^6.2.2","eslint":"^6.6.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.7.0_1580365005543_0.8514373846322056","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"madge","version":"3.8.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.8.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"c76538c1a8accda297009a25ceb8b29b20c99b86","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.8.0.tgz","fileCount":126,"integrity":"sha512-bcX2QxiTwWvZrNM+XkmZY1SPl18C2HGaQGhroj3YzqSRxQ1ns7WXCYDyGCfZwp/uLibnNd6IOWrRLOkCS+lpAg==","signatures":[{"sig":"MEYCIQD0TQiWJ8j1Us+8k9Wg3RBi+tpmrwxpUTjEuh7DxMbumAIhANVCG6ZOJGm6PqGhriPV3uXYb0W2FtAVLeKuZnxzZNDv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZlfNCRA9TVsSAnZWagAAVtkP/0RxhBTDdHlpeG+T621A\nxkmt6IAVOUllJl7NAesrk0Mal3K+2wEPwRosjauyR12tjXL24dVb6MhEnV5E\nw/poRoRCPTbLYJ80KJShts36p2yD3VX24yv0G2dTAHNQ3vvmPM1COIeQ+H0X\nnsmLpignMuiVbjDejj4PlRKKo3tgYJcioGtmyt4UoZnfU9EGlnU3O5QpzaxO\nGl9epuJv2TgwfSZrTrDV9ck7WhzpC/ueZvOsYI/PIGUtyoLNZ4/JSCziSEvI\nV5Ufs+1I2PjZw2pQy/r81E7IpQr/LwI7AERgJTqYVbkU2YEx1lz78xMpWi4B\nIFfAxphGkIdiTZDJC4aWof26fKxajTO1HeFTM/AumjW3JedFiF/ST0nlJ0Oi\n/KmwlG2nsC8NgqVbWemqhUuA2T7QonaNyThtsrZFx4d2VyYeqaNTeF/M/M7y\nhU7TTXJoOubQw8XKPWmdaHc3XHaNBClDRYWIzEpWYDZv3BOJf9W6M81UK1cc\nTRZ6Bp4BlZNrujmG425vpz4eTPY5WgWz12v7Kxco6Q3aK9zagvecijQZymUW\noJ7r/E6g063to1W/ujhzzNIuUqP3dNO8PeGK0HqPXcs7iEqiSOhGoPGr1N+T\n5kY/MZirGo/JC79Xt4wIDve5R+rNezPOQGy0CfW7FJ/ZB997R3+GueaZdWw0\n9Hio\r\n=+klB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://opencollective.com/madge","type":"opencollective"},"gitHead":"38c3a64210248cf5619a4893b38be14d6035d295","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"collective":{"url":"https://opencollective.com/madge","type":"opencollective"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.2","pify":"^4.0.0","chalk":"^3.0.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","commander":"^4.0.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^5.0.0","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.0.2","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.7.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^6.2.2","eslint":"^6.6.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.8.0_1583765452636_0.15079918641307422","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"madge","version":"3.9.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.9.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"7bcc6d6265e88049685cb5bb075cd1b16b90fcf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.9.0.tgz","fileCount":126,"integrity":"sha512-ABR2ZTFga+TPLzlu2u46lcv8WwOzoI6VMTMqe3DyaY0igzyGpXiOIH1vAtziSKC4UHuyTpwkfhjWN5qOYR/5OA==","signatures":[{"sig":"MEYCIQCOtxIefmcYv5KJT0sxhaJ5t1ETSJ/ng4KK122GAYQ6lAIhAKbw8VEIgmP2Oy2GD8Jlcb8cmrT4xxXFIu/wscdtA5br","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75175,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJes4emCRA9TVsSAnZWagAAmeoP/iCCE0ZbxVowbYYq5uXL\nPvqC/AbUo+7hPZQ0PGzh6WzRTQTaIz02wrcK+6yUC1WjfFms/Yf9sdTtk1I1\nWTx3MjC663Hzjx3BOFKv7tQ6zIch6fYV3+dbzu6y5POv2OnqY4vT0kuk6uof\ncAeBFFg22wV5LyVYwHNLRgW8aNImCk8zQT6RPWXvriTh6yeTPfzeI2VqIbSI\np8e0g0RIDhlj7DqwBTAz+UJDqssAGZ38/WJCiL5bPmLzylvRO2aKUPhkerDd\nrG4oV2ap1Tg0xqvAK1xbxbMy+33RvnIDNPiueJdvyORKH56uHQRGFpve/Iz6\nmIwqUxXQICqzTEjEtU2qVTSvzh1MCXKsBvJYIoN8cvw7ydla0ABfn2nXKClc\nl9KpKhWDb7E9YhKml/24oMzIlWqa48yMSq+2ybSUKIlsgpJ4bo1WNzPJwj+G\n7Oo/C8gP7bCVXClYeyojyaKjKVpkzp4xg2TLoTYMy5xrdiByXbgXfPyNjyXS\nqCsD1TFq8+Tw9+QTdBh5F+hWTo6RRdquOoA9xhefzHIT1bs36Cc25D9RazlX\nkR0J51gg1Hv1g1aYMhn+AHqCL7d146on6uL1LenfgYdg1IZkz9YnufuCdK2b\nnehhi8JlDQ1sSHhS27KB0zMuvbh3fP8G+xrj2SAMlXvGCqf86TDskccA/mHh\nE4bw\r\n=sAmU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"c0a0b911eda27a18ec36a2585fdf72bfc11b08ff","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.4","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"rc":"^1.2.7","ora":"^4.0.4","pify":"^5.0.0","chalk":"^4.0.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.1","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^7.1.2","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.9.0_1588823974358_0.5086519796716036","host":"s3://npm-registry-packages"}},"3.9.1":{"name":"madge","version":"3.9.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.9.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"a9c96192cc42af59705ff43b1f06531072ee2f02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.9.1.tgz","fileCount":126,"integrity":"sha512-odgd7EhFNrr0Opl3QAzevAcql0KL430A/9BgwgN0IjYj830AboEK2QPTmuJHhSCrt4miEs19x38ToGMqYVzKiw==","signatures":[{"sig":"MEUCIDuzDfRKvFg3fGQARnKc2amOddyIz0nspZ1f2DHGGYSTAiEA0/YM5oOZT4ACtmibPOwRHPCFQNExm4LtHPYiW4Sn5mI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3ebUCRA9TVsSAnZWagAAKhUP/jhezjKp9bI7sbocB2pX\ntXInCgulbkc+R8fGn8Ns3VHFZkBDBexY07VQsjkPeT9crN6TnRSgs5A3olfR\ncVxJ0atdoDJwoVCWNu8HsRWhgmrvWbkWznyl4JQspKSDtGkwSjJsW2MtQ1DZ\n9S4QyrXpqz+cRC9Mq/V2zKTwtqp9CFH4gEyzcLwUz1rjtMDZSVBveESrfurc\nPXh80yeRlscb98mPbkmXkJ7NEBuGxFiXj+jWtUQl9kL4CU+monGAyaoArFz9\ngari+ZHMsBVykoaSVYC1O6ZuSSxZQHkBMd+M4UyEobhNLXirZNzBZx3Rs/1V\nKcTk+uZyrPJ7D8syjNoLw1AfsS0Qzcifno4i0tgz3pzkR+FPhBWj3LaAEMH/\nUI/Dfwd7dUGCvMM5nfRRHUhGAPRAmoWCAZBtvdR3mfwHfVbko5Yts6pVg8Eu\nhs+D0OhQ68Ff15g6Ti0DqHeVDfO31zh1qjEKkAnIoZTvRrkpj3cH7KWULhso\ngR6YfGTYwrXnvWAXezj7ZERFr24aK/YMu0dp8q5jxRlf0D82ljCqusHwzKsA\nQ/NUbD6MJlDaexisBHHFWAI/9mb/mBfTitQZ5n9hw4r6d/4bA8hIvmQ1CFuZ\nV0QZ14CtXWA4KZUKzXOmSjmiyeK+4KXjmsRl8dIrJU5DxxB6DrwOjdSLrpMc\n6SKh\r\n=dvH0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"6fd62eaa04d69ad82e9771df90cdad7420ed3ce9","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.4","pify":"^5.0.0","chalk":"^4.0.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.7.5","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.1","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^7.1.2","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.9.1_1591600852141_0.43093824594918173","host":"s3://npm-registry-packages"}},"3.9.2":{"name":"madge","version":"3.9.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.9.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"a432de2c858092d379c2910a21a622ad2b1b24c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.9.2.tgz","fileCount":127,"integrity":"sha512-6ZvyKinAOOzcRpvpm1iyOuds+LvWIq3o3GmUYAHMJdIpDAgVY3mphxVzeWNo3agIOv0X0T/zbLycXQm9Rn19nA==","signatures":[{"sig":"MEQCIAdvfYU4FjVkLjMtcYYuK6nfGHuiC3WpfA5gCwDgCroBAiBRlK0Mb8mKiuL5lus4b5RCCRw+bCYe1zEdnKhQUHW24A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":76070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6DJlCRA9TVsSAnZWagAANN8QAJTdorf/beRIaAQ3nIQS\neuR10dW+9v00fQ8q4TBuo98qLnugYU4jfVQz6ty5YJd243jDrmn3H+tMstCx\nfTzSbiY3MpjJcwJ6jw1zDduwiWDyTgfidQFW7RCB7S9CeItRv0JVKO71A2lD\n5fM6U69qTXMw3oUjTRA0WGWiWtitt0L0lqSJCDm2tAXBFAantFx0BCBdBGfD\n692tWh+R+j2j+He/BdrbAjwD4OTe5KXUEycTbZ9IhraN0CS7tliH42F3Nfb6\nJSFLFvCXOykIMNG25ON7+85n2HY5m0FRt7HS2oENGRIQxwoZRgInBeo5XwFY\n9gr/3qBcI6Ibx9n35xo9QVzp7KrQFLez12UVxtN242e2v7k/v8cxQx7TgQWU\nB3gD1TKeSe89i2aR/MYhUm2NKZ3nbVXFxW1dWpykAEulxyCHMutqWIWRhWIi\n2Emj9G92is6gTmr4i8M/Dx2Sz7bCjD/NNzLcpbHgVNbnAscMXBZ4VHz69HD3\nkbqAEaQBlyTiT3BrvTXYdJrqn4fgc9z+sNUjHUziL7mVwV6RDz725QR9mVys\nsy/XTWRv1IwPVsBYJXEByi6myilk0dtPc/09OLrXDiESeG/GVHzTxV7RpoCI\n1oCUuklsR8ceF3luRfFSgkE0/xRKAln7jlQazMbDlXpsyGKdeacmVcwtwRNG\nzjjm\r\n=Ya9S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"8a44776578b7683e380a2ca64498661766c5afc2","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.13.4","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"13.6.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.4","pify":"^5.0.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^6.3.1","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.1","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.9.2_1592275556934_0.6754829479256665","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"madge","version":"3.10.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.10.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"950ddf0d14b642283ad8d9c5663bf13f92270705","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.10.0.tgz","fileCount":127,"integrity":"sha512-SzYOVX3HdxutdFtKv729C9zpGyysjRA5WszJueM6GEUrnCkS1v2KuFh/vF4DOpk04sfW10D73aJ7vL21de+lgw==","signatures":[{"sig":"MEUCIQCR1j4KzjpyTcqwyhYQkkfj5bTiVkzTNxA9InkkE+02kgIgdAMLtl31U9LpPe75zJxeoNaRo6V1+CHrdZONhlBRSao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfX66RCRA9TVsSAnZWagAA/48QAIwYoUeIVUdqQF+2QGTW\nKgRmrTZCwrAe6hP6BdE4HDM3PgdMt6pW/Dl5dJki4kUcXzTIo+JZuSvCbjz4\n+VoOWR5uf2pZ0+oBhUo2SfV5/yYjADOhds5d9CN3lUIvJIGvljJsCERL2AHn\nMB3p2amuCh3V0SMj5wZXtBOoO+Ya2gi1qDHLrCraf5kKoKCU8VKc5quwD4W0\nH1904RZxPJSFpMvrSBB8YsE3cjjHcV/yZhSmOZyXmTpQbAVxdRHHfuPfWTyA\nk4Oq6M207AZCbYfsextjVaxnpeQjMxBLZoeaDAtURFELcyIYTknycym5jOlX\nDclBPdpBILxDa4mZVVWmNXkqGD+N8Don/di90jTQlw26fNjXSwomZOWgBIog\ny/ZJrLHtekxs//R84aNxb5NgdI+pOPhAUBmrFvDo1uuclPYNPeASm67rV2m5\nX8X14+UHEO21j2iLyJp/4qsB+CqhLHfIZvYxiCs+nzyCqv3kh0PjpmvOb2OU\nZci0BVbB67xqltShZRvSSF343wnHO8WmPzfsrDBaMy9UqyPk+6cS4Fj3rNBv\nfXFMX87XZBo2F+kYdjf6XXqTnWL1c0fYOXJf15jEeUqeh5HtO1YfzVKyo1TS\nSpq6OD6GeMoRRLQLuSRgNmDd6EAMFYG+HDzi6oQN/zc9+OT9LxYwSq90OAub\nQQyf\r\n=zLef\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"f9863aa9696064ea50b5dbb29892e77c54262fc3","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.13.4","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"13.6.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.4","pify":"^5.0.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^6.3.1","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.1","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.10.0_1600106129515_0.5083856616724982","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"madge","version":"3.11.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.11.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"293ec7f2a70221f11e326c768a2166c0681a7ad9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.11.0.tgz","fileCount":127,"integrity":"sha512-1CIyV2tL7H3qTFtAARwS3uaJzqBH8a7e3dvABU5ZTIuT1j3aBDYRy5KIhkO8o5mUrYa0+9eBWFaqqvpOQsPssQ==","signatures":[{"sig":"MEUCIQDRMzaxkpNg3kxaBr6XPNyBQgJoaqVhogOZr9ZOgbGjqwIgT0MvYE+F9TUHJgDp6kgQPxHSZSHwyyf6ShAMZcQac/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdbwECRA9TVsSAnZWagAATjcP/R8k4Pk5I6xcQwk57KSF\n+1z4GU3I49uMMCXksjtB0RKXUmPSDfWOdF8ACSsS1LXlgue2Vp44nyTUZnu9\nGWp+hmqUIrdGhaLMda2q7qLI6TZKItBPD1EbC2LrJit9ndZkzFrnTbFtK6Tv\nsITcbu0I1UcrXDygwY5scWc/4gur1XhnzzjUeaxMz4E7lJWLntUrQpPVXV/o\nVRH/B6gyJqfhjnf+P86Mi2MOJ3K3VCgkNVwN98aJM3tHIcyDjucgn5DJS94L\nK0S2uwf1yFW1cy/npIdChL+T3RWCAb/v61heunwy/cUB2/W5M5D5HASs/SwD\n0MWLxLGnMgZ59tJSxZ/5veM20uOCEfQtg03SwZMn0PyvPuG+G6y8+Qm7jFDB\nf44im+l+3ktSZ25s4fxCxgKxC7TIJOicQSgu4pvsMATHSIlGcyrEJl84STN0\nT5MwYw+3I6EYrZbZY0UhYmMcKSl06T+elo08nGqhl0Ku8NHmPg6chOQb6Bgb\nnX2NXrJxy5TQTGnBI02xiSnZy8OHilLXcnd70suy0A5417ELGOQGJcX1VVEv\nrFaqTu/+bQbKSukWpaL/HO7IuqNmYR5a9hnT2yi1A37y88oERaVCWywIPKEJ\nMzCUhFDBMiVIsOQma97Y7aEKAyl4VMifuDf4K82KerXc9U5CczwpjskhfZJV\nhdcB\r\n=5wUE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"c27a399435f3cfca3d8b5cbf72eb5eec79eb7ad3","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^4.0.4","pify":"^5.0.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^6.3.1","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.1","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.11.0_1601551363769_0.8614932004515359","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"madge","version":"3.12.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@3.12.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"727c1ebb268150d52e6d0c3ccd382b4c7bd0bf19","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-3.12.0.tgz","fileCount":127,"integrity":"sha512-9kA2W5RIbvH25CWc8tzPNn1X47AOcHEEwZJxWAMxhEOKEziVR1iMCbGCFUea5tWXs/A+xgJF59o/oSbNkOXpeg==","signatures":[{"sig":"MEUCIQDvHkd29iMzBfamTp7i+N80zLZKfqyQTY90QSUsnK1kbwIgEKitO3k4EovmPYDzayYghlt9B81XHAlx8jnfyEq3AoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfn8HnCRA9TVsSAnZWagAAMNMP/ReK2lh+gPWSaJMq4vrp\nCsVKynOqnO6pGi51gsXSOWjcibYkE/JJcakme+DQoO1UX0m4Oc4+FDYDXmrL\n6sI+FEt9WLdVZA5Fki6eSLJZghTSujTPzl3E8CE3pd4+bTZy+kJMFs6cgKaE\n0NGzVO+JlT6CX1oPasEIGQuWWvubiNYhZnj6hQFsxWxX6JKQny8w9f3RRMCl\nxBkbh1Dl1W6qexEXEfacYRWeWc75v8e9kwX3A4XK99afSIJRxpkK1T1L4NkU\nmUZtB749Q4rodvnSJIHREZbe4kw6ENyq8vygAaIkbcARIAuz6pqm37qBzG4W\nUmcqjc/Mmo4R+3MiCtDM2Bb4QkLnSj9OKOQH9OskyDjyvPf4OJ2MOq/TLqQG\nux0Pjnb7Jo4BZuXk49N/SIf/xj6mB5JwNfiuZ3cN3dV8uuNOpgk5ovbkDWaH\nN+/B02XcclO998uDZWl2yHnelXsNmkdNiCWNqP7Y7WTlv1y46ei93ad/0UqS\nKobJQqIC9K62DWHFSnJm3pjIJ2bZeR6hPKmZwqh/0yjO9hOpp6pmKT6ldThI\nfeiWqRIhKFUgTGwlfP1vjgvW7lxopwOrzVZbsploMLXxKbezUrfdfkaR77h5\nL1zIOqZUVAYe5H+IQ+GI7SpyYfiZJu0BUIRTk1axxDMjvZONOaj9epgF3KhC\nUKBl\r\n=83jY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=10.x.x"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"e135916cc64e93ddf9aec43b876d63ffc1df9ff5","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.13.4","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"13.6.0","dependencies":{"rc":"^1.2.7","ora":"^5.1.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^6.3.1","commander":"^5.1.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.0","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^7.2.2","detective-stylus":"^1.0.0","detective-postcss":"^3.0.1","detective-typescript":"^5.8.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_3.12.0_1604305383176_0.531299794263433","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"madge","version":"4.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@4.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"./bin/cli.js"},"dist":{"shasum":"8930e0e0310451b049a43b3a86253aea6cf7d03e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-4.0.0.tgz","fileCount":127,"integrity":"sha512-BQbYl2HTFnTqOTJQQwVGJPBuD7ScafYvWa2GGGIt+qBFQ2ZpYhSWQJp2rk3EdazthyAOhFvpeuIEOXTBVB50hw==","signatures":[{"sig":"MEYCIQDatrjkYg1axLrkGbEqn0AElqZ78FnUIa3IJqI6IRrdQAIhAL9Gq/b29AUk6RK880Vha7fcQE7AH3p5Y0SAEm38oYsW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9HnOCRA9TVsSAnZWagAADSoP/A7iiWYW+duzd3CHIQ+Y\n2iM5/SU958MMtQuJGwRUCBForcaxRqQDlH/YN3hX5OyTpMyvXzNuMo4iCg4P\n/toKKhYbz2YbyrC8YnS9daoIPqHCb8R2SL/gU+AmHoPyAjcz71kf6m+jRf8J\nBDJFj0YdMACWroFsLMxvUe5OATHGqtOW9oRejIodrTcX3mEEMhPr0U93zMFM\ni8/BPzdBVMAZwn4YoZdvW0Plip/Dpbyg9h1/C8GXP2x07xL7De67H9Lomkwv\nUadrXticRD6bDYKkGmaWmStelIBn7pih6kfxeWDAwICEkmUnqaYeLAgI1jd2\nV42hkY8yFDf1wG3Z2PK2ief5v9R/BvEkkL/cvmgKPD1CuY8x9qNMP2id7bbD\n5yEHziC8WHwgbgHRP6IUNp4igQa+7A7BOEvdL2vMIemYZd/MWA4RD6+itOQV\nndArVbry64FekCtZBOBniEwgR6xN1S3F969vHM636tm3GjPl7Ro6scVKxhtq\nlpOPLnC9+aJuFkTEp0nlFNjUJGQxJ///SB/WOanb8AuELXPf+924bT5SVQ3s\n220U5yCIePazhsBsJa/TawtA8kfCkaXwdX5Vi+XHcIyKnF0GKBtTTXSRzPv+\nYH0zFhxBmDEo1XvLSLNi93fntz9Mx1khK8Go/Z+jDKCKg+hE1c/Lz6Q038aI\nWXea\r\n=uAx8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"c0600c4df24779754e1cbf79af33944fea649aee","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.9.0","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"10.7.0","dependencies":{"rc":"^1.2.7","ora":"^5.1.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^7.0.0","commander":"^6.2.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.1","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.0.0","detective-stylus":"^1.0.0","detective-postcss":"^4.0.0","detective-typescript":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_4.0.0_1609857486101_0.6548236677800063","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"madge","version":"4.0.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@4.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"d6d7899a83b7aa86e07074bd8a718a232029bcb2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-4.0.1.tgz","fileCount":127,"integrity":"sha512-bcZDGa+cweRJ0XFCWaVlPTJKw2lB+EBBhUsBOqGv84jvlC6G1syKxCiS15+KBarwsVXNEtEEAs30r7EYn4ccNw==","signatures":[{"sig":"MEYCIQCzIUEPZHlMhUOwSbyJb78+RQdvvoi1gkY0m8YgYmz4NAIhAJ4S7FWhB/ujyfcrycaCXPEm0c7dNYY7XwE5hOKgsAwl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQkPaCRA9TVsSAnZWagAATCEP/0m6rXbMShJmacUx0MFc\nAH9g2D+lPEYvKxmP3haD8Wscnf4tD7EYh8vRTz+xyaTG8HEKWbyrxOrkpCUt\n8Oj3I71XMuayLc08CMQG5xsMjTlWNtHP+apTcXQzBZMdGfc9IQn6aoZJOOid\nTYKHr+Biel5iuAwY7bjd+2dGwAQafWvi9+Zko9vytCWDkTPMyzQBDPSMNHrh\ncYfeaHYueTUrhKwlcQYs9VyiBWLkbRf7r8Lv0t5tHgpyvf7ZRIZ8dtpS7vZj\npI2lplovkBDo2oqF38Fyqn77fsGqSXJo9qR7RD1nZkEF5TG8z4jZxoSOSt9P\nOhxFc73qWPNF6nNuhP8AfOluR1hYyq5j2y6zNghyzyC/phfu3u2efWomejF6\n71TMqXcsEaiLMRYsfDNeBqU8/DgdIYMgCPCl+1otma/OIMzJ6U2pN4R6Ui1A\nUvAoxcVvXVAAtenAG3/VTSaKh1fFwEB8xHDQW/orIjVYgT279EQdB69N905/\nLYiSF/LHqLK0kImiGO2xTHXvBSOLKnqqDpfxd/dMVZqzqUPy1Qal6hCUhZQJ\n0Y7fgxVvX15hWv+yu37Q8nwqe+gKKOqRdvMBv2SNT02u6lQvRR49oEBqncwI\nUX5Jpqard1yd2lFN68hmwHHdRyevoYmivDDDOEZevH1CchjZieM7pScRVrjm\nXdRn\r\n=Vegq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"abae6d0dfe0c96218545bfe7fcffbb60322af3b4","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"14.15.0","dependencies":{"rc":"^1.2.7","ora":"^5.1.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^7.0.0","commander":"^6.2.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.1","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.0.0","detective-stylus":"^1.0.0","detective-postcss":"^4.0.0","detective-typescript":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_4.0.1_1614955481570_0.7741092266751823","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"madge","version":"4.0.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@4.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"56a3aff8021a5844f8713e0789f6ee94095f2f41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-4.0.2.tgz","fileCount":127,"integrity":"sha512-l5bnA2dvyk0azLKDbOTCI+wDZ6nB007PhvPdmiYlPmqwVi49JPbhQrH/t4u8E6Akp3gwji1GZuA+v/F5q6yoWQ==","signatures":[{"sig":"MEUCIHbL4EChJUgU1XDqxgO23uKzXanhDhx4jxGRTX7m5ZVmAiEA+O+GduezwrEes6O514IMXIL3lYe+CZhycLDhPvuW3sI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRibPCRA9TVsSAnZWagAALuQQAIxirLULB0TO5FgR/Yub\nyI6/xo0D9lTLOszvKMMmT1aXCJmOGWnF3jql6EfTVhIlcSw2PVXVKNHSKpT6\ndMl0aFQ4JxnTp4tkNKU1VcytutuuLCS9TvBSDY74ib1vmAkNt52bMMyI6EXf\n+1mf1FReuHHpoJZvfDkOyz4xR+NcGIqY/mtgcQCNBD4I9/qAeep8taILwMTf\np+WBW/nMmbWLvq/VmyASumxl0TZ0ETvPSCjW/W4AZXYjglrpo8icSKbW7wns\ncQUciKn9OcAnOv0eurqOq5RE/ZoN4+sZ3MZbASMKAlJ1qlNwpJ9DRsQpUDXb\ngjPoId0mAKa0HxuVOxBHj9hKjbH7iz9teKFQ6vsF2UEq6JspCy8b7K3EUBD7\ntkHkPUDXbrpquhuCir6tOrRm6PPayh6694LnTP6DsNZGxLom20/rW8khBvF5\nd6ukFI9LXG4VCJ9AiMGigGDBqQ0+xzrsMyl9mpEPftRVYWFHiM1ucomk/GHh\n5pHwP2ZDdUzZOJ6Zhri7n+RVkLEExQVc0YqEK0m8OffqGPbk7C0iNkxx6bQA\nfTp6mlhkbE4G2GIKWXnTLoRIdpJCuQOf8T0gGS14pVCo3V5WyJHeO/vtzno1\nAxF5hBzZ3ulzyVovxl5wjbrE9KIZDRfr5YbFPkmwL0dYiqbTUT2f9M3kjSZY\nG48v\r\n=FEO/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"03b7ba01be2e2856fc084888a92972f556412467","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"14.15.0","dependencies":{"rc":"^1.2.7","ora":"^5.1.0","chalk":"^4.1.0","debug":"^4.0.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^7.0.0","commander":"^6.2.1","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.0","typescript":"^3.9.5","detective-amd":"^3.0.1","detective-cjs":"^3.1.1","detective-es6":"^2.1.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.0.0","detective-stylus":"^1.0.0","detective-postcss":"^4.0.0","detective-typescript":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^8.0.1","eslint":"^6.8.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_4.0.2_1615210190689_0.24909559934097691","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"madge","version":"5.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@5.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"c05e18ff84c0e9d3601b967099fbf9d5bc0c4701","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-5.0.0.tgz","fileCount":127,"integrity":"sha512-mS4cSRNP5jrJHhYKYaw+Kp+BJvwZBycK37Rpl2k4IcUJALNrn9WOyx88F1OgGnMWlxIawkhkUZA14Akrq1CtyQ==","signatures":[{"sig":"MEUCIAyD7/FimUmJkzVQ1jecZm/qCYmAK/zfrKGxwTlLv+uiAiEAqCN8/0Bbpdw9XExwkqquXtIXGcAx2hx1lpY+ferskYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0jiLCRA9TVsSAnZWagAA8DkQAJJrRjWSj5oqZU0xH04k\n+eIL7YT+Qp3LfBBy3ROai331KM8iS/UhmUGZzyp9mPy02sebzzgpS2W33vXl\nHBhEosHxvbqgHw/SUCLRNcA6euJdYBfBf+GfK/fJwhV7Gm0VnxSzCj1W26ho\nIOJVLTIzXc2CXmXylsTjUKpwKBql5hMKYicFksc162YNrje2sP1x2YLGnilY\nJTTKDSWFBbR55a9KojVIo2aglFDbV2k5S88PTssxh+FX3KPg/928XlrFKM2I\nlzOJBr2Pep/KuMgb0aqEVB2MBy4xTwG+Sc/EUfmWHmNw0rr1KDkrDKlOK1Nt\niX8G5cJwYUTyA77T6hQC6tembnEXNdlgOfpiQa0dYq3RiaMH/KIrtTuEIPuz\nFyDq1bdUj/Xl9riq0QBQ4twdjmH3FXXxWiAbDPeFlT8pNNSIX0MpBUiPbENl\n6o0/SgpXGyVKuuzJtYEau5yj7chUH/EjbBfycMZG8sIZil7Q5Tho7DXYY+dB\nfmO3XybYzNLEIcdUDH/dw1Axt1SUHsGSarIY3t/B78g+hnISH2oX/2bj2ge4\nIFNt7W9Y1yLwcvFyTMqDQ4uQEWJPKUg8onc3O49+HfSKZbfQBOpvuptuatk4\nnPW0rMW5XoRsxQ0g6dDxOHQYsN3ibXa0cP8WeuxYv3dSPHmAkGm8Pj4VTatv\n27oV\r\n=ePMH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"17a922da7ad882fe9fc214b8965b055d85dfea4d","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"14.15.0","dependencies":{"rc":"^1.2.7","ora":"^5.4.1","chalk":"^4.1.1","debug":"^4.3.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^8.1.0","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","typescript":"^3.9.5","detective-amd":"^3.1.0","detective-cjs":"^3.1.1","detective-es6":"^2.2.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.1.1","detective-stylus":"^1.0.0","detective-postcss":"^5.0.0","detective-typescript":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_5.0.0_1624389771396_0.08949812380187971","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"madge","version":"5.0.1","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@5.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"2096d9006558ea0669b3ade89c2cda708a24e22b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-5.0.1.tgz","fileCount":127,"integrity":"sha512-krmSWL9Hkgub74bOjnjWRoFPAJvPwSG6Dbta06qhWOq6X/n/FPzO3ESZvbFYVIvG2g4UHXvCJN1b+RZLaSs9nA==","signatures":[{"sig":"MEUCIG4J6dWQCreDLlhVnxDVTzIlQHjb3ig0IOdDFbNy26Y6AiEA4zcMvXAfbkiNZdnJFMHvbPQM68cUK9MfZX3ojqA0OJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg03t3CRA9TVsSAnZWagAApMUQAJPly3EMJpY36X4LLkGA\nqxt0L1m64CmWLxbuKy3/sGD+JEAUWBR3TN0TvHVtEjF/GkkaAmxWUkHMoQ55\nNPHuj2yLpzRCcswS88NkWXYk1RXJkMSQVGt3PX6N5xnj4DxorrlDqTQVoojU\nIMDvfuUMb9DYg9gzvYkZSAMdHQnCo/8Bvf8r1z12gUVP/kuw5vV7qjHTYg5r\n+Lm8tEwo1o/jZhvdKIyXoq0JJl+rPgDYhDjbL8naFXv7bc+6P7qzUKo8pDRB\nGlJaHKOCFfqPe5yhRZtxcJ+N+GkDwIdpwRgLiuM59Y4eCxjKrCbYJR4zIp37\nlxZcPcNszpfvZwMOrfqtOVEZUHLbDH71g4nO8eCvdndZBafGgIpcVEU1RAPT\nttW3/S7YF6Fqt8uJYWYtvA9D48Riw5s3FbUyV4pPTQ0LmskFfbl9dFwFro7A\ngQ8E+EDIIwJ1xuj5kflPwiSbzIqw32jNNgE6td3sGeS92AVSoST9MvPnJiF2\n1KgHMCKsZLgxAyRP0amD5qKgO0JAERyvVW05G5/58E+VhhG/v56w9dmD9PyM\nnBmBwePJtbWEjQ2NymXWkG8qt4a2OjRymqbm+1DWpa7NVW+U3GMaS+2rHZkQ\nVVgysm3UJ7XmQm0TxZgp1GOLs2Gd72Y+YJ/sxptOC7pBW0E/F1LM7Dzw1VGv\n0mhs\r\n=uZWh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"bf3bc92197f8fda7d235f6fc22a9c34bb97fda25","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.8","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"14.15.0","dependencies":{"rc":"^1.2.7","ora":"^5.4.1","chalk":"^4.1.1","debug":"^4.3.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^8.1.0","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","typescript":"^3.9.5","detective-amd":"^3.1.0","detective-cjs":"^3.1.1","detective-es6":"^2.2.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.1.1","detective-stylus":"^1.0.0","detective-postcss":"^5.0.0","detective-typescript":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_5.0.1_1624472438672_0.5228597251629534","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"madge","version":"5.0.2","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@5.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"d34527af7e96de9625e8069902667c4c5a073ada","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-5.0.2.tgz","fileCount":128,"integrity":"sha512-OeqFIgugINbVqh6keLWePD/N3u1EEYS3O9gCTD+EjcuaJa1TH30jcCxr8CEl3+neS1VM8sDCQSYoln/2li3ceg==","signatures":[{"sig":"MEQCIDB61S9pmvBEvKV+vd1iXT6BA639HYg2Erf7L33NH1sZAiAW3fCeyC1v4GnOkEYW2FtJrHuc4t+9ivjSnYg3u8g3Ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":96890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1B9ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDlg//cLCBSamcN2eIfSeGIgr3jCrSu5YJSjcYueKIhubKaP/rjnis\r\nvfgkeDr1mDcty12ej7yfvdLtQSZaluo4iC23pGZyZVqN1IIgwrIHOYFHCghY\r\nT/bzgUnqZpWQlXUzZxKE1VaJvgvecytDZxYQV5lsO74vY1OmPIYNmC5qXYd3\r\noh6WXmjJXVQjncZyP+aWoM9NvzhFufJGZpiC634EG7MQHDZLk3ltiu4LvloT\r\nT9zg1lQwisW/Tf1O88qZ9p0aLenHjQMdqD0BUH3AS/wyUoELBRKiNrODOR/b\r\nq77cjXu5z7fLXz4vjA0G+WDRVGHtViu87RVW5LNTGzIrUgMSdATkSoXN/zE+\r\nfT5voku6Hwo4+PMf568Ea23SJEGMIKaqMvbQ2nqhIT8IePY35fJfyLLAsVSy\r\ny3A8nx3mcBviWlHaW63avatTx8OTml7mp3THi/2sgvGHBVCrG3w3ImyDcBR7\r\nuwguAgBnmJ4ytF23wFJIpZvJuW06ZJURAi6zWfmjkULCtwACXFAqO0NgNrBq\r\nl0YPqioVnnv4wFyqQ1xrQ85+hhF3EWSZCokvmE9MZ7PWfFQde1IvxS0kJLav\r\nHG3uXZ/HIifdxWnBeZlhegR1hUXfQC/HQXmE+Y74GikQtR0JKzBLPD5zHcBb\r\n4ojtgOw3cCjjHxfT4TffYZpkb5YIWqAbN9A=\r\n=ordy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":"^10.13 || ^12 || >=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"614d44d5f1ab3cc9e9875e67d1e46f4b971d660a","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","release":"npm test && release-it","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.16","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"12.22.12","dependencies":{"rc":"^1.2.7","ora":"^5.4.1","chalk":"^4.1.1","debug":"^4.3.1","walkdir":"^0.4.1","graphviz":"0.0.9","precinct":"^8.1.0","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","typescript":"^3.9.5","detective-amd":"^3.1.0","detective-cjs":"^3.1.1","detective-es6":"^2.2.0","detective-less":"^1.0.2","detective-sass":"^3.0.1","detective-scss":"^2.0.1","dependency-tree":"^8.1.1","detective-stylus":"^1.0.0","detective-postcss":"^5.0.0","detective-typescript":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","release-it":"^15.6.0","auto-changelog":"^2.4.0","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_5.0.2_1674846040945_0.6575101749588679","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"madge","version":"6.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@6.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"d17d68d1023376318cae89abd16629d329f4ed0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-6.0.0.tgz","fileCount":131,"integrity":"sha512-dddxP62sj5pL+l9MJnq9C34VFqmRj+2+uSOdn/7lOTSliLRH0WyQ8uCEF3VxkPRNOBvMKK2xumnIE15HRSAL9A==","signatures":[{"sig":"MEQCIHM23qRBOTTQXzOitUqE+0w4EQskzZfCqYC+9XQKlDG2AiA2iUWG0J4vvzoVoZMQZmrRrw4MggtQPtMeckriKzX5sw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99218,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1jqpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmraCg/9E6SqKGwk7bnEEo8ZhtupTULDo/acWFbuP/hGmnN06/2eHRjY\r\n3ry3CuLaWFN5tJn0lXQVersQ8M3weJz2lQ81PSN921D/PUUv6xXjFxHUBPy4\r\nAkJP5kNZt5BQZqH9tlxIHB1RE0slTmFRZ9XuncIYxRcLfIMuhfYpU4341iu0\r\nstxFpYDHyt1huPBb3tG94rVddleV9QP+5FVZdVZpJsyvSd8ALBxZXQ315S4Y\r\nO3JB5e0DvQJKt2c8b/qFePJ37M0K8kGhIUPT32SNSR7Lvd2BhR5Ag/zYAKA4\r\ns5ulnXZQhSd7FDTqSC8QgJ4wDxLv3aMj6f1yz3iNzkKC3lqy98BG4AyUtYKh\r\n+Q+rk9rL9YLSnLH3nQIgyVj4uqWRhbtrTDwGJYBHdMPEyh+MGYXOlYm5uOik\r\nKDxKWvO8Sl8F2j0JeIBlkbAq3c6Ib3jJrvVKQUQawXHWQ9CGAD0J9F92io7X\r\nlfreXs0NqOhAr9A3iUv0TU8xdzerbIvldAYuEVV7an41opq3s48i07yu0+3S\r\nqoSqi3udu6cYKqLj8JvXVOGQWbp4Epck00R/LmtThy9BWQrh96Uly6yX3ZaY\r\ntSrQW927+IYjcwOydiN+dCtYDDN26baJ5P3iwse7Ik/2VylM5v4L0YGqSOJf\r\nYBVLZVARWo+Z5J/rD09A7M1YTlhv6THmF+A=\r\n=dnDM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/api","reveal":true,"engines":{"node":">=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"2aa75b2aba279d02dd7cf7640a0fcd6236322228","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","release":"npm test && release-it","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"6.14.17","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"14.21.2","dependencies":{"rc":"^1.2.7","ora":"^5.4.1","chalk":"^4.1.1","debug":"^4.3.1","walkdir":"^0.4.1","precinct":"^8.1.0","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","typescript":"^3.9.5","ts-graphviz":"^1.5.0","detective-amd":"^4.0.1","detective-cjs":"^4.0.0","detective-es6":"^3.0.0","detective-less":"^1.0.2","detective-sass":"^4.0.1","detective-scss":"^3.0.0","dependency-tree":"^9.0.0","stream-to-array":"^2.3.0","detective-stylus":"^2.0.1","detective-postcss":"^6.1.0","detective-typescript":"^9.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","release-it":"^15.6.0","auto-changelog":"^2.4.0","@aptoma/eslint-config":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/madge_6.0.0_1674984105258_0.11056960447171149","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"madge","version":"6.1.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@6.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"yuki@kamiazya.tech"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"9835bb53f2e00d184914c2b007b50736a964d297","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-6.1.0.tgz","fileCount":131,"integrity":"sha512-irWhT5RpFOc6lkzGHKLihonCVgM0YtfNUh4IrFeW3EqHpnt/JHUG3z26j8PeJEktCGB4tmGOOOJi1Rl/ACWucQ==","signatures":[{"sig":"MEQCIDax24H2+oAvm5CQDqc72xlIIHoPE8QDOVqdKoZjx5P8AiACd3CWx4Cous/x1rGY63TdGS/c18R4Ke7c2Kk8RhUnqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":100032},"main":"./lib/api","reveal":true,"engines":{"node":">=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"c48c5165f1c0c79f24bb7382a5c6c4acdb95af15","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","release":"npm test && release-it","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"yuki@kamiazya.tech"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"8.5.1","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"17.6.0","dependencies":{"rc":"^1.2.7","ora":"^5.4.1","chalk":"^4.1.1","debug":"^4.3.1","walkdir":"^0.4.1","precinct":"^8.1.0","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","ts-graphviz":"^1.5.0","detective-amd":"^4.0.1","detective-cjs":"^4.0.0","detective-es6":"^3.0.0","detective-less":"^1.0.2","detective-sass":"^4.0.1","detective-scss":"^3.0.0","dependency-tree":"^9.0.0","stream-to-array":"^2.3.0","detective-stylus":"^2.0.1","detective-postcss":"^6.1.0","detective-typescript":"^9.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","release-it":"^15.6.0","typescript":"^4.9.5","auto-changelog":"^2.4.0","@aptoma/eslint-config":"^7.0.1"},"peerDependencies":{"typescript":"^3.9.5 || ^4.9.5 || ^5"},"peerDependenciesMeta":{"typescript":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/madge_6.1.0_1685841751004_0.4380942815152078","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"madge","version":"7.0.0","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"license":"MIT","_id":"madge@7.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"yuki@kamiazya.tech"}],"homepage":"https://github.com/pahen/madge","bugs":{"url":"https://github.com/pahen/madge/issues"},"bin":{"madge":"bin/cli.js"},"dist":{"shasum":"64b1762033b0f969caa7e5853004b6850e8430bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-7.0.0.tgz","fileCount":132,"integrity":"sha512-x9eHkBWoCJ2B8yGesWf8LRucarkbH5P3lazqgvmxe4xn5U2Meyfu906iG9mBB1RnY/f4D+gtELWdiz1k6+jAZA==","signatures":[{"sig":"MEUCID61ppYWg67cbHYnCayGEMnlOwfQT1ntYFEwcHLPvnqiAiEA0DUu6vnhSmTKXbiJ4BLwhAhGx30DdAwSKhC2S0NriYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102114},"main":"./lib/api","reveal":true,"engines":{"node":">=14"},"funding":{"url":"https://www.paypal.me/pahen","type":"individual"},"gitHead":"48f3432da41e3c20fc0d6f5170fc629bfa3b4b5b","scripts":{"lint":"eslint bin/cli.js lib test/*.js","test":"npm run lint && npm run mocha","debug":"node bin/cli.js --debug bin lib","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","release":"npm test && release-it","generate":"npm run generate:small && npm run generate:madge","test:output":"./test/output.sh","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js"},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"repository":{"url":"git://github.com/pahen/madge.git","type":"git"},"_npmVersion":"9.3.1","description":"Create graphs from module dependencies.","directories":{},"_nodeVersion":"18.14.0","dependencies":{"rc":"^1.2.8","ora":"^5.4.1","chalk":"^4.1.2","debug":"^4.3.4","walkdir":"^0.4.1","precinct":"^11.0.5","commander":"^7.2.0","commondir":"^1.0.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","ts-graphviz":"^1.8.1","dependency-tree":"^10.0.9","stream-to-array":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"mz":"^2.7.0","mocha":"^9.0.1","eslint":"^7.29.0","should":"^13.2.3","release-it":"^16.2.1","typescript":"^5.0.4 <5.2","auto-changelog":"^2.4.0","@aptoma/eslint-config":"^7.0.1"},"peerDependencies":{"typescript":"^3.9.5 || ^4.9.5 || ^5"},"peerDependenciesMeta":{"typescript":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/madge_7.0.0_1712578136935_0.07263410417358585","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"madge","version":"8.0.0","author":{"name":"Patrik Henningsson","email":"patrik.henningsson@gmail.com"},"repository":{"type":"git","url":"git://github.com/pahen/madge.git"},"homepage":"https://github.com/pahen/madge","license":"MIT","reveal":true,"description":"Create graphs from module dependencies.","keywords":["ES6","ES7","AMD","RequireJS","require","module","circular","dependency","dependencies","graphviz","graph"],"engines":{"node":">=18"},"main":"./lib/api","bin":{"madge":"bin/cli.js"},"scripts":{"test":"npm run lint && npm run mocha","mocha":"mocha test/*.js","watch":"mocha --watch --growl test/*.js","lint":"eslint bin/cli.js lib test/*.js","debug":"node bin/cli.js --debug bin lib","generate":"npm run generate:small && npm run generate:madge","generate:small":"bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js","generate:madge":"bin/cli.js --image /tmp/madge.svg bin lib","test:output":"./test/output.sh","release":"npm test && release-it"},"funding":{"type":"individual","url":"https://www.paypal.me/pahen"},"dependencies":{"chalk":"^4.1.2","commander":"^7.2.0","commondir":"^1.0.1","debug":"^4.3.4","dependency-tree":"^11.0.0","ora":"^5.4.1","pluralize":"^8.0.0","pretty-ms":"^7.0.1","rc":"^1.2.8","stream-to-array":"^2.3.0","ts-graphviz":"^2.1.2","walkdir":"^0.4.1"},"peerDependencies":{"typescript":"^5.4.4"},"peerDependenciesMeta":{"typescript":{"optional":true}},"devDependencies":{"@aptoma/eslint-config":"^7.0.1","auto-changelog":"^2.4.0","eslint":"^7.29.0","mocha":"^9.0.1","mz":"^2.7.0","release-it":"^16.2.1","should":"^13.2.3","typescript":"^5.4.4"},"gitHead":"6e0acb27b68b305b93b85d3fe82c4b11efa0a118","bugs":{"url":"https://github.com/pahen/madge/issues"},"_id":"madge@8.0.0","_nodeVersion":"18.14.0","_npmVersion":"9.3.1","dist":{"integrity":"sha512-9sSsi3TBPhmkTCIpVQF0SPiChj1L7Rq9kU2KDG1o6v2XH9cCw086MopjVCD+vuoL5v8S77DTbVopTO8OUiQpIw==","shasum":"cca4ab66fb388e7b6bf43c1f78dcaab3cad30f50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/madge/-/madge-8.0.0.tgz","fileCount":140,"unpackedSize":105058,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBofwqtzMigxgrHWwkyqEvGaPNk0NNorpnMA41QH8oKCAiEAuPQ59l0coixbJq5yf3inO0JTPeWieIvq+L1GXMD6zj8="}]},"_npmUser":{"name":"anonymous","email":"patrik.henningsson@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"yuki@kamiazya.tech"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/madge_8.0.0_1722844175514_0.6327079478957747"},"_hasShrinkwrap":false}},"name":"madge","time":{"created":"2012-05-20T11:32:03.832Z","modified":"2024-08-05T07:49:35.895Z","0.0.1":"2012-05-20T11:32:05.502Z","0.0.2":"2012-05-21T18:13:38.760Z","0.0.4":"2012-07-17T18:47:38.286Z","0.0.5":"2012-08-03T20:29:54.603Z","0.1.0":"2012-09-03T17:09:26.750Z","0.1.1":"2012-09-03T18:00:31.258Z","0.1.2":"2012-11-15T21:12:09.027Z","0.1.3":"2012-12-28T13:13:47.933Z","0.1.4":"2013-01-10T20:31:05.168Z","0.1.5":"2013-09-04T08:11:56.343Z","0.1.6":"2013-09-04T08:46:11.931Z","0.1.7":"2013-09-20T09:16:59.924Z","0.1.8":"2014-01-27T22:16:47.047Z","0.1.9":"2014-02-17T18:03:51.587Z","0.2.0":"2014-04-18T11:52:50.207Z","0.3.0":"2014-05-26T04:39:28.091Z","0.3.1":"2014-06-03T02:14:25.035Z","0.3.4":"2014-09-04T14:50:40.273Z","0.3.5":"2014-09-22T07:01:56.161Z","0.4.1":"2015-01-03T10:45:39.667Z","0.5.0":"2015-04-02T10:02:25.770Z","0.5.1":"2015-10-15T13:02:55.866Z","0.5.2":"2015-10-16T17:33:13.501Z","0.5.3":"2015-11-25T07:29:54.543Z","0.5.4":"2016-06-13T07:52:04.779Z","0.5.5":"2016-07-03T13:31:55.269Z","0.6.0":"2016-07-06T09:43:40.593Z","1.0.0":"2016-08-19T13:46:43.874Z","1.1.0":"2016-08-23T14:39:22.821Z","1.2.0":"2016-09-01T20:36:24.921Z","1.3.0":"2016-09-06T18:04:34.807Z","1.3.1":"2016-10-01T13:27:24.154Z","1.3.2":"2016-10-03T06:41:42.663Z","1.4.0":"2016-10-06T16:23:20.583Z","1.4.1":"2016-10-06T16:44:59.266Z","1.4.2":"2016-10-06T17:05:59.791Z","1.4.3":"2016-10-12T07:53:13.893Z","1.4.4":"2017-01-04T13:47:37.187Z","1.4.5":"2017-01-07T15:20:22.314Z","1.4.6":"2017-01-09T10:10:14.663Z","1.5.0":"2017-01-13T20:15:24.137Z","1.6.0":"2017-02-08T11:46:48.461Z","2.0.0":"2017-07-15T21:34:20.733Z","2.1.0":"2017-08-26T20:26:34.884Z","2.2.0":"2017-08-29T18:38:37.047Z","3.0.0":"2018-01-22T09:50:42.081Z","3.0.1":"2018-02-05T09:20:54.605Z","3.1.0":"2018-05-22T07:55:08.539Z","3.1.1":"2018-05-24T07:38:57.298Z","3.2.0":"2018-06-26T08:09:11.055Z","3.3.0":"2018-10-31T08:12:28.548Z","3.4.0":"2019-01-07T12:19:06.736Z","3.4.1":"2019-01-10T07:38:58.809Z","3.4.2":"2019-01-10T07:45:01.847Z","3.4.3":"2019-01-17T08:02:36.013Z","3.4.4":"2019-02-12T11:32:08.427Z","3.5.0":"2019-10-28T12:27:30.962Z","3.5.1":"2019-11-07T13:56:05.800Z","3.6.0":"2019-11-11T19:44:11.023Z","3.7.0":"2020-01-30T06:16:45.659Z","3.8.0":"2020-03-09T14:50:52.808Z","3.9.0":"2020-05-07T03:59:34.534Z","3.9.1":"2020-06-08T07:20:52.326Z","3.9.2":"2020-06-16T02:45:57.127Z","3.10.0":"2020-09-14T17:55:29.614Z","3.11.0":"2020-10-01T11:22:43.911Z","3.12.0":"2020-11-02T08:23:03.330Z","4.0.0":"2021-01-05T14:38:06.248Z","4.0.1":"2021-03-05T14:44:41.786Z","4.0.2":"2021-03-08T13:29:50.820Z","5.0.0":"2021-06-22T19:22:51.503Z","5.0.1":"2021-06-23T18:20:38.854Z","5.0.2":"2023-01-27T19:00:41.115Z","6.0.0":"2023-01-29T09:21:45.421Z","6.1.0":"2023-06-04T01:22:31.206Z","7.0.0":"2024-04-08T12:08:57.257Z","8.0.0":"2024-08-05T07:49:35.718Z"},"readmeFilename":"README.md","homepage":"https://github.com/pahen/madge"}