{"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"dist-tags":{"latest":"11.4.0"},"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"description":"Get the dependency tree of a module","readme":"# dependency-tree\n\n[![CI](https://img.shields.io/github/actions/workflow/status/dependents/node-dependency-tree/ci.yml?branch=main&label=CI&logo=github)](https://github.com/dependents/node-dependency-tree/actions/workflows/ci.yml?query=branch%3Amain)\n[![npm version](https://img.shields.io/npm/v/dependency-tree?logo=npm&logoColor=fff)](https://www.npmjs.com/package/dependency-tree)\n[![npm downloads](https://img.shields.io/npm/dm/dependency-tree)](https://www.npmjs.com/package/dependency-tree)\n\n> Get the dependency tree of a module\n\n```sh\nnpm install dependency-tree\n```\n\n* Works for JS (AMD, CommonJS, ES6 modules), TypeScript, and CSS preprocessors (CSS (PostCSS), Sass, Stylus, and Less); basically, any module type supported by [Precinct](https://github.com/dependents/node-precinct).\n  - For CommonJS modules, 3rd party dependencies (npm installed dependencies) are included in the tree by default\n  - Dependency path resolutions are handled by [filing-cabinet](https://github.com/dependents/node-filing-cabinet)\n  - Supports RequireJS and Webpack loaders\n* All core Node modules (assert, path, fs, etc) are removed from the dependency list by default\n\n## Usage\n\n```js\nconst dependencyTree = require('dependency-tree');\n\n// Returns a dependency tree object for the given file\nconst tree = dependencyTree({\n  filename: 'path/to/a/file',\n  directory: 'path/to/all/files',\n  requireConfig: 'path/to/requirejs/config', // optional\n  webpackConfig: 'path/to/webpack/config', // optional\n  tsConfig: 'path/to/typescript/config', // optional\n  nodeModulesConfig: {\n    entry: 'module'\n  }, // optional\n  filter: path => path.indexOf('node_modules') === -1, // optional\n  nonExistent: [], // optional\n  noTypeDefinitions: false // optional\n});\n\n// Returns a post-order traversal (list form) of the tree with duplicate sub-trees pruned.\n// This is useful for bundling source files, because the list gives the concatenation order.\n// Note: you can pass the same arguments as you would to dependencyTree()\nconst list = dependencyTree.toList({\n  filename: 'path/to/a/file',\n  directory: 'path/to/all/files'\n});\n```\n\n### Options\n\n* `requireConfig`: path to a requirejs config for AMD modules (allows for the result of aliased module paths)\n* `webpackConfig`: path to a webpack config for aliased modules\n* `tsConfig`: path to a typescript config (or a preloaded object representing the typescript config)\n* `tsConfigPath`: a (virtual) path to typescript config file when `tsConfig` option is given as an object, not a string. Needed to calculate [Path Mapping](https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping). If not given when `tsConfig` is an object, **Path Mapping** is ignored. This is not needed when `tsConfig` is given as a path string.\n* `nodeModulesConfig`: config for resolving entry file for node_modules\n* `visited`: object used for avoiding redundant subtree generations via memoization.\n* `nonExistent`: array used for storing the list of partial paths that do not exist\n* `filter`: a function used to determine if a module (and its subtree) should be included in the dependency tree\n - The first argument given to the filter is an absolute filepath to the dependency and the second is the filepath to the currently traversed file. Should return a `Boolean`. If it returns `true`, the module is included in the resulting tree.\n* `detective`: object with configuration specific to detectives used to find dependencies of a file\n  - for example `detective.amd.skipLazyLoaded: true` tells the AMD detective to omit inner requires\n  - See [precinct's usage docs](https://github.com/dependents/node-precinct#usage) for the list of module types you can pass options to.\n* `noTypeDefinitions`: For TypeScript imports, whether to resolve to `*.js` instead of `*.d.ts`.\n\n### Format Details\n\nThe object form is a mapping of the dependency tree to the filesystem –\nwhere every key is an absolute filepath and the value is another object/subtree.\n\nExample:\n\n```js\n{\n  '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/a.js': {\n    '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/b.js': {\n      '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/d.js': {},\n      '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/e.js': {}\n    },\n    '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/c.js': {\n      '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/f.js': {},\n      '/Users/mrjoelkemp/Documents/node-dependency-tree/test/example/extended/g.js': {}\n    }\n  }\n}\n```\n\nThis structure was chosen to serve as a visual representation of the dependency tree\nfor use in the [Dependents](https://github.com/mrjoelkemp/sublime-dependents) plugin.\n\n### CLI version\n\n* Assumes a global install: `npm install -g dependency-tree`\n\n```\ndependency-tree --directory=path/to/all/supported/files [--list-form] [-c path/to/require/config] [-w path/to/webpack/config] filename\n```\n\nPrints the dependency tree of the given filename as stringified json (by default).\n\n* You can alternatively print out the list form one element per line using the `--list-form` option.\n\n## How does this work?\n\nDependency tree takes in a starting file, extracts its declared dependencies via [precinct](https://github.com/dependents/node-precinct/), resolves each of those dependencies to a file on the filesystem via [filing-cabinet](https://github.com/dependents/node-filing-cabinet), then recursively performs those steps until there are no more dependencies to process.\n\nIn more detail, the starting file is passed to precinct to extract dependencies. Dependency-tree doesn't care about how to extract dependencies, so it delegates that work to precinct: which is a multi-language dependency extractor; we'll focus on JavaScript tree generation for this example. To do the extraction, precinct delegates the abstract-syntax-tree (AST) generation to the default parser for [node-source-walk](https://github.com/dependents/node-source-walk). Precinct uses the AST to determine what type of JS module the file is (Commonjs, AMD, or ES6) and then delegates to the \"detective\" that's appropriate for that module type. The \"detective\" contains the logic for how to extract dependencies based on the module syntax format; i.e., the way dependencies are declared in commonjs is different than in AMD (which has 4 ways of doing that, for example).\n\nAfter using the detective to get the (raw, like './foobar') dependency strings, precinct passes that back to dependency-tree. Of course, in order to find the dependencies in './foobar', we need to resolve that dependency to a real file on the filesystem. To do this, dependency-tree delegates that task to filing-cabinet: which is a multi-language dependency resolver.\n\nFiling-cabinet reuses (for performance) the AST that precinct made node-source-walk generate. It then does a similar check on the AST to see which module type (commonjs, amd, or es6) is being used in the file (again, we're assuming a regular JS file for this example) and then delegates to the appropriate resolver for that module type. We need different resolvers because a dependency name in AMD could be aliased via a requirejs config. Similarly, commonjs has its own algorithm for resolving dependencies.\n\nSo after the appropriate resolver finds the file on the filesystem, filing-cabinet has successfully mapped a raw dependency name to a file on the filesystem. Now, dependency-tree has a file that it can also traverse (repeating exactly what was done for the starting file).\n\nAt the end of traversing every file (in a depth-first fashion), we have a fully populated dependency tree. :dancers:\n\n## FAQ\n\n### Why aren't some some dependencies being detected?\n\nIf there are bugs in [precinct](https://github.com/dependents/node-precinct) or if the `requireConfig`/`webpackConfig`/`tsConfig` options are incomplete,\nsome dependencies may not be resolved. The optional array passed to the `nonExistent` option will be populated with paths\nthat could not be resolved. You can check this array to see where problems might exist.\n\nYou can also use the `NODE_DEBUG=*` env variable along with the cli version to see debugging information explaining where resolution went wrong.\nExample: `NODE_DEBUG=* dependency-tree -w path/to/webpack.config.json path/to/a/file`\n","repository":{"type":"git","url":"git+https://github.com/dependents/node-dependency-tree.git"},"users":{"shanewholloway":true},"bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"license":"MIT","versions":{"0.0.0":{"name":"dependency-tree","version":"0.0.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@0.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"dist":{"shasum":"1a17b95feac9ef17407c025f274c15558d17e3a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-0.0.0.tgz","integrity":"sha512-wHRxfM4CelYPreOGGWES/8H0j31PtDG65uWvJjnFYRGwt4iPA8Gu40k9uXyu5VyL4wCIdAtXCJI+k3KSCCNQYw==","signatures":[{"sig":"MEUCIQDTw6SEh7DUDryj6UhMqotarRpxx8SuSDWE09amWQWT+wIgS4Qf57B5NLn5AlOlyVHPYKJStHcQQL3l67JGcaAdNUk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1a17b95feac9ef17407c025f274c15558d17e3a4","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{}},"1.0.0":{"name":"dependency-tree","version":"1.0.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"9c5a5cbac0b2b77413b9903a23a57d067cd99a00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.0.0.tgz","integrity":"sha512-KWAuauENfNuuWcAE6937SNJshChpMqYsjhsrP3zQLQ6JtCwShzueK+WI9zy2Phr6f8bR6w2viSkqQizGFHHlwQ==","signatures":[{"sig":"MEYCIQC+G/Hy4mXzW/zEsNtyjjiuSas6Y1E25LHxHUl3LTvfvQIhAK1GSv7VUx+UV3Vhcmg18DuBKMtONIHnBmQDoyEP9Rh3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9c5a5cbac0b2b77413b9903a23a57d067cd99a00","gitHead":"e4fc75b3f579f658df8ad79b6604b5fc32fe96ca","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"^1.0.1","detective-amd":"^2.1.4"}},"1.1.0":{"name":"dependency-tree","version":"1.1.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"fc662d2555e0506bb08be444a6af1d36fd41ed82","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.1.0.tgz","integrity":"sha512-tMqxA4Rds5UHSp1v01AxUqsKzxqj/Jd+R55S06pL15+yWgJP/Iuh28UTxtzkGkPyiqSg/KJqZF6AYImTFRAZLw==","signatures":[{"sig":"MEUCIHYdJD32irOVBoP92sGXuVWi5BU16UFX05m32bh0EqLQAiEAhWFBCvOC6DCYRYC07oyLQGqx/KYqdlyyiSI4vh8uKb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fc662d2555e0506bb08be444a6af1d36fd41ed82","gitHead":"c635453b2be46dc35dc159078279dc50f2643d0b","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"^1.0.1","detective-amd":"^2.1.4"}},"1.1.1":{"name":"dependency-tree","version":"1.1.1","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.1.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"cb669e43d225cd50ce5213d5817c86f7f8409185","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.1.1.tgz","integrity":"sha512-iF9xjUJc+R79TbASt0zRViTG3TyM7PDIdYf5nPhgtj355xfsYClMr43ZNuq51sp09dXg4plkoxFwCitC8dq19w==","signatures":[{"sig":"MEQCIE8YNyLkKL+eyOK6dv8974RfM2t35Y9iVjTtXt69ep0CAiAfYSG4Q3qh8qwqjvO05ah/+G7xzukckoURoNanq+x1ig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"cb669e43d225cd50ce5213d5817c86f7f8409185","gitHead":"ff21b9d776d88f30eeda4f2dc644709d7dbbe01a","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"^1.0.1","detective-amd":"^2.1.4"}},"1.2.0":{"name":"dependency-tree","version":"1.2.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.2.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"4a1dcc166513a1f7c2d33a0a4647bd6168f9858f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.2.0.tgz","integrity":"sha512-r6iY2vIZ3gQlQj1eeU2BS3UW91hZho061EB9jc93wWllLSKDwOncGiYHs+4QblP8jP1BMt5hKGUKPOBx6GEx5A==","signatures":[{"sig":"MEUCIQDiCkKRu6+bYriFGRDEhRNQqh0pfgQyhvpeOmNnXVCVYgIgKC9AadCz8JiE+nI3NremEJxAndJZFMXjubkt8b4F2Os=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4a1dcc166513a1f7c2d33a0a4647bd6168f9858f","gitHead":"10219c49628d973ede2ac9678b88c0031cd69a3a","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.1.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1"}},"1.3.0":{"name":"dependency-tree","version":"1.3.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"6dbe2414a9ed1c1324b97d30bd258c9413444ec4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.0.tgz","integrity":"sha512-zwnZCKsbgpbXiPzdNXDwgtrNx/tf6bwZ+SclZelc5Rtiv91bmaMwG1wbTJzzFeGcRbbIh9TmtOn0Un0uF7mbxg==","signatures":[{"sig":"MEYCIQCsnuFvFRpYpbE86mI+A+Lb6Doog0njRNodsfF0PQQc+gIhAMbIXpjuJV8XMXVvN74LN+VPM8q0yhstFx5urHac5me2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6dbe2414a9ed1c1324b97d30bd258c9413444ec4","gitHead":"d904ab7f4bc73dca340f1f536e715a6cd0e4a713","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.1.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1"}},"1.3.1":{"name":"dependency-tree","version":"1.3.1","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"ed0e2cdf86559c0e56b45d0e403320beed493121","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.1.tgz","integrity":"sha512-PEKGF4LnypKIB0MQ8cnySymZc96YZ9BkvlDjhnwhUMrUgOKzGhyQgrEe43vxc21pnNj3l/uA+lUsHvbEb7t05g==","signatures":[{"sig":"MEUCIQDEYHzu4gK4y5fkU6T1h0m2AVGO+v7+ZBKZnxwLwyBIvgIgJL9NYq06qMlZpvyskSZFmhyB5nMZzkUUb05gWPxRbAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ed0e2cdf86559c0e56b45d0e403320beed493121","gitHead":"6c5543dcf736120dad215d77048c8a44d7a06a77","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.14","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.1.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1"}},"1.3.2":{"name":"dependency-tree","version":"1.3.2","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"e2bc2235159962af970ffa96894c097d33dd305a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.2.tgz","integrity":"sha512-zbrPIAV+x03avXbvskHPM+KnV/F0g8ttOXPms5rCFRGBQIeRlLqha3hso32nsL6h9uRtbQwkhzeEO/5eTqGj8w==","signatures":[{"sig":"MEYCIQDLVcDNR0aQlwvMeMQ5ABRLo0u7eMpvt+Xhk815H1t8HQIhAMJs2X2iOGfNJLvnM/LJPE5nJId0rZwPrzdLYDIIZybi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e2bc2235159962af970ffa96894c097d33dd305a","gitHead":"0a70f148c5dd3f6a2ffd97775a1df098de7e9a9d","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.2.0"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1"}},"1.3.3":{"name":"dependency-tree","version":"1.3.3","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"d0f2c87c56ebe8834ac1777452b93768543ef003","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.3.tgz","integrity":"sha512-Thh+ixLV4IIJKvLlZG6XcobJ4B8eXbOiPzCsXmRkuHvPaMslYYSBfO+mcXpaBZj2Yv+wazPPbPfRf6HGRTiutA==","signatures":[{"sig":"MEYCIQD9lLSELLOF/X81KiFuYUbQlBFo5TG4bq3Q6ci43BUc4QIhAKiyP1ME1HZX+6kE1Nnq4B8LaECIxsTTHk2nKEc9zR5r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d0f2c87c56ebe8834ac1777452b93768543ef003","gitHead":"cbbae22131aa9e45e2fc9b85aedce350c7faccbf","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.3.0"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1"}},"1.3.4":{"name":"dependency-tree","version":"1.3.4","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.4","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"0d4447e7e09818d9816038f8e970f727b10dbf94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.4.tgz","integrity":"sha512-lcjH+Kwqqz19QCMbf6xpMIHrEmPf0KExlJTAoxY052B2MQgP6NFs8oquGkIkHDWTVY188KEaRTU/z0xc3vhkRA==","signatures":[{"sig":"MEUCIEyqWJA8nLv38A8zTHpgJPQ3GJgw0FQ//xsBeNYqklNEAiEAtYT8NEaF4BQusiyoUvDcKV24E5IAdNho02aF7+5Dxfw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0d4447e7e09818d9816038f8e970f727b10dbf94","gitHead":"7e705f6ec0e50dfcf8ac3d4fa9383dbb6870fc2d","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.4.1","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"1.3.5":{"name":"dependency-tree","version":"1.3.5","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@1.3.5","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree-as-list":"bin/treeAsList.js"},"dist":{"shasum":"b6bfd1223f0939b0c1c16171fc2e974d2823f3ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-1.3.5.tgz","integrity":"sha512-9hoW/O8NRl1qVu+80815/mij6je/yEYmVG+JRI0gHvU4Ral2Vq/bu+yZ5zRtVRDws/DrRP2hPBovyZuwJesqHg==","signatures":[{"sig":"MEQCIB8LzFnoLhyJAducbM17dJ23MNWljzoG9XXyieRed84ZAiBoLUnDgZ4RRetp8ySPnewUnY5DZBFQTfj7coZt/xIG1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b6bfd1223f0939b0c1c16171fc2e974d2823f3ea","gitHead":"ab3d73dc5b06a5bbbbb018bb5e177e95206180c6","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Utilities for interacting with the dependency tree of a module","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.4.1","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"2.0.0":{"name":"dependency-tree","version":"2.0.0","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@2.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"aa1ed4c2874cc636e49ecb9e711f0132cab1929f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-2.0.0.tgz","integrity":"sha512-mCtYXfmJ5Ww6DoZ+Z4Pb+lF7HY229bIObUdabCEBsNJMvTaFIYo1MM8TDaUwfM7UK5Y+4jLDfOaU0Y7DZWB+gg==","signatures":[{"sig":"MEQCIFElrtsoz8v4+3txyvClk4vGgTYh9yZnnUVIPUEpnkCiAiBrcPeAzTpxPyMIJmN9/iQ6Cs++V4BBZSFq6QB9nR5UYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"aa1ed4c2874cc636e49ecb9e711f0132cab1929f","gitHead":"c1326328b113a529b115f67cc2f49654179476b6","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Get the dependency tree of a module (as a list)","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.4.1","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"2.0.1":{"name":"dependency-tree","version":"2.0.1","keywords":["AMD","dependency","tree","module","requirejs"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@2.0.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"fff78f2becfdf438708ee4f115f006dcd6349f14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-2.0.1.tgz","integrity":"sha512-JWJ4GngQT7xelsi6SNgUE9SGql7d3hFYUFw4ThZruse594CFjBA2jCm7Vg2XJAWa45LlHaE4ZV0cQw730tGElQ==","signatures":[{"sig":"MEUCIQCWEoTU/P20mk0Ozkbi0PRtwXkQGCAvVccE2SGcgcRkbAIgRnE7h4kzRjK+nv26yjgYUPOPOhnzIkS4jn8KorlYfGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fff78f2becfdf438708ee4f115f006dcd6349f14","gitHead":"6072e5a46a3bef5d752cd9cd424b49e360ebeda7","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Get the dependency tree of a module (as a list)","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.4.1","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"3.0.0":{"name":"dependency-tree","version":"3.0.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@3.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"053de46f9a7ebe230e92680f2839f9ddb60f8883","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-3.0.0.tgz","integrity":"sha512-uzVfwTvHmdgqI2E3pTEpBlZpM2fjp9ckz+WiU7cqUUKmNHamzge1l9/qFFBScNnfnHLaaXY6hEpAeo+k8qm3jQ==","signatures":[{"sig":"MEUCIQCKQkSzPhZB16I2LbuMhM5VFsESBvnvxRrYujw/v7CxkgIgAMRd3UHq3jaMl3fqNrhVZuutq/qA7Mw5myIY6Z5T918=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"053de46f9a7ebe230e92680f2839f9ddb60f8883","gitHead":"e529b1f27b1fdeb88cbbbf26b9e28e6b36fdd4ae","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"1.4.28","description":"Get the dependency tree of a module (as a list)","directories":{},"dependencies":{"q":"~1.0.1","precinct":"~2.4.1","commander":"~2.6.0","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"3.1.0":{"name":"dependency-tree","version":"3.1.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@3.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"98068dffb8da11cd774177835747b92492c42972","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-3.1.0.tgz","integrity":"sha512-ZDAIHvMaMMSNhKLGIpoxs7YHXCzIspLnnzMmJr58QGvjan7oZKa1Ttc5uS2DPSQDDl22yZ/qAREmMc/7eiLc7g==","signatures":[{"sig":"MEYCIQDYrAiSh5elfb4GJgRBKMQbwMVLOBnU0flToD2fd1/y9AIhAM43W8VDCLiLfiRshVgYvfam9NQScoEpIEyRvKpA8d6o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"98068dffb8da11cd774177835747b92492c42972","gitHead":"30d2b9b1f3181c027d7f37cd68cee13fdacdd2e0","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"2.7.1","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"1.6.2","dependencies":{"q":"~1.0.1","precinct":"^2.5.0","commander":"^2.6.0","resolve-dependency-path":"~1.0.1"},"devDependencies":{"jscs":"~1.7.3","mocha":"~2.0.1","sinon":"~1.12.2"}},"3.1.1":{"name":"dependency-tree","version":"3.1.1","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@3.1.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"5f3e577cc6a8af8bf272e2ecb4af7bbd3b28071a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-3.1.1.tgz","integrity":"sha512-mdBjBgR7QuAhAt1rX2tbXvPKFNr58Xi+VLwwfTluS809+BGq7nseMhoj313Lc/Bh9oK2hiQtc3ZkzAyU1j8h3Q==","signatures":[{"sig":"MEUCIQDY3Foy9FgGfaK+RaZldazVc3PlXDlqfSdvoXwKeZZjxwIgIABeGm1am4UetHt3h9rDROXXqnCWm2fCi4W9KXh84j0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5f3e577cc6a8af8bf272e2ecb4af7bbd3b28071a","gitHead":"268e50d0d746853e0041c44bcb340d482aa13939","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git@github.com:mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"2.7.1","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"1.6.2","dependencies":{"q":"^1.0.1","precinct":"^2.5.0","commander":"^2.6.0","resolve-dependency-path":"^1.0.1"},"devDependencies":{"jscs":"~1.13.1","mocha":"~2.0.1","sinon":"~1.12.2"}},"4.0.0":{"name":"dependency-tree","version":"4.0.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@4.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"tree":"bin/cli.js"},"dist":{"shasum":"db0523b0b24450c837312922c923ac0b0838ce89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-4.0.0.tgz","integrity":"sha512-AeoM9oJcQ4JvTRbNXieshmUBj2ow/TZ0/pYdSq6qmK2BfES3SjUCwOFwcuBJtx3LoTVXy0ymFz9YlEevLpI7vw==","signatures":[{"sig":"MEYCIQDO/sp07qn1xqMvy0+AHgdW/hBrjno73HoDnIjhrLDDaQIhAJl9JkQYiXw/fzVWAbtd+JKJ/uF3H3dTTXE8zBOirSAV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"db0523b0b24450c837312922c923ac0b0838ce89","gitHead":"0ad612c02a8111add426192ca527c9650e20c7c3","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"2.11.2","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^2.5.0","commander":"^2.6.0","filing-cabinet":"~1.0.5"},"devDependencies":{"jscs":"~1.13.1","mocha":"~2.0.1","sinon":"~1.12.2"}},"5.0.0":{"name":"dependency-tree","version":"5.0.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"19adce9cb96f1b0b47c68bc57aeef7c83cd97cbc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.0.0.tgz","integrity":"sha512-2d1QngSRsjYFJr7YgdS10dE6erOjlXL2Y/I+xTIVo8C1IfBb961OkX6iE/Sz7HFu8MLsdPisZqbmMb5D+3nR8g==","signatures":[{"sig":"MEQCIF3ILzA4bfzOrxQWIhqwaD2TqZLHzMmBcxZ3thUOX4OaAiBQFuBbjs8L2Hcz5TXJi7XwBXhgMfNZiq29/upOQVEMIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"19adce9cb96f1b0b47c68bc57aeef7c83cd97cbc","gitHead":"a89d6870de341e49fd0c2b947a15475407ae1d93","scripts":{"test":"jscs -p google index.js test/test.js && mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^2.5.0","commander":"^2.6.0","filing-cabinet":"~1.0.5"},"devDependencies":{"jscs":"~1.13.1","mocha":"~2.0.1","sinon":"~1.12.2"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.0.0.tgz_1461840911527_0.07316148630343378","host":"packages-16-east.internal.npmjs.com"}},"5.1.0":{"name":"dependency-tree","version":"5.1.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"5afe5be83b682331214e61b54ddd0403816e3240","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.1.0.tgz","integrity":"sha512-Q7F4W1M67uAkWTxlhXQ/++uj53QhHRxl8ePo1nqoWJklkNf9f9ejyCkwMpQQ3S/m3m6t2Ku2IZv6Z8Rucet0+Q==","signatures":[{"sig":"MEQCIFwAp1PTJVT1b4Ywn+tlYgkgWQw/1FEm3CbC7nRxLBUSAiBwhEyT6wwFivljovO1DiXZfqg4clTzma3vZH2oBaWebg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5afe5be83b682331214e61b54ddd0403816e3240","gitHead":"6a4679344d6aad4b0e4a2514eca5c9bfa656cde2","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^2.5.0","commander":"^2.6.0","filing-cabinet":"~1.2.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","mock-fs":"~3.9.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.1.0.tgz_1462996488612_0.1691172569990158","host":"packages-16-east.internal.npmjs.com"}},"5.2.0":{"name":"dependency-tree","version":"5.2.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.2.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"4638c6a972cfe7a8c120810ebba220c3dee0da61","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.2.0.tgz","integrity":"sha512-e6iJyUTQheSjOTnT+HUgYij0ILQz0Zqudb8Tf7VxjIsjRHp7JawGnMU2E3RcJprgjCLA7mmPsb8AZrR6XbQIHg==","signatures":[{"sig":"MEUCICPL47w7IMdStsewULy1p7FDnLEf/PCY4kcHT0G/N3iwAiEAj+8S2qtYm+nl5STcfMg/KvDq9UhLICrQ07qwNRNGsFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4638c6a972cfe7a8c120810ebba220c3dee0da61","gitHead":"3576b087b9de02cae50a48234bc24d28b85f36b8","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^2.5.0","commander":"^2.6.0","filing-cabinet":"~1.2.3"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","mock-fs":"~3.9.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.2.0.tgz_1464984374814_0.5170840960927308","host":"packages-12-west.internal.npmjs.com"}},"5.3.0":{"name":"dependency-tree","version":"5.3.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.3.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"6ae18452eae2f51850cf1e34325fbaa938c5162d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.3.0.tgz","integrity":"sha512-hV9lxHcpMUn76EGwx/WPR/lXDZ1w7qgnPz76Ix9soeJ43xy+VyJlRXpnXyyKNDdUGOLUzi/p4ZQothx0FI9Dcg==","signatures":[{"sig":"MEUCIQDI+ye28KatTggiiZxtlnUoSU9HZqRARO740qPOpUlAnQIgOhxOiMzNQ21fiWLzZlbDuK8UBHn3xNcCusC77otq/Tg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6ae18452eae2f51850cf1e34325fbaa938c5162d","gitHead":"cc19bc7f33f30957b73dc14424d3cd17744baf48","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^3.0.0","commander":"^2.6.0","filing-cabinet":"~1.2.6"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","mock-fs":"~3.9.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.3.0.tgz_1466308819630_0.9741187633480877","host":"packages-12-west.internal.npmjs.com"}},"5.4.0":{"name":"dependency-tree","version":"5.4.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.4.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"b458bdd693c582f5610462f127091877ae4c238f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.4.0.tgz","integrity":"sha512-s+JAgI0fEg3fEVMLB04+zJPIhoWvV4uoU5Hu5+UxdVuew/k7keaCslehWCfanY35bBi8+0/AVXyc9dxexO9poQ==","signatures":[{"sig":"MEQCIBs5+05prLW5HTfhPpBHah+5EvcG0an9ppJQqHokpgHaAiBBKbHornOT5ohmg8iTwWKbUZy1Q4E3+dLEp0QGZFBdLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b458bdd693c582f5610462f127091877ae4c238f","gitHead":"242b668f82892bc18f716d130440c346e864d267","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^3.0.0","commander":"^2.6.0","filing-cabinet":"~1.2.6"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","mock-fs":"~3.9.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.4.0.tgz_1467681480306_0.2551644267514348","host":"packages-12-west.internal.npmjs.com"}},"5.4.1":{"name":"dependency-tree","version":"5.4.1","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.4.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"7385a447eb5326ca190e53aac9268dca496b11df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.4.1.tgz","integrity":"sha512-5DgSL9xLFqAaG+sfSo6tRJHZxsKoJoEGG2+aNpmaAXDaEkqHgFlsFhkjTwT6+eGMvwoYxpUX5xbPxZMNoSDBKw==","signatures":[{"sig":"MEUCIQDyqEgxYOHGVP6u1pV6lXs5Jw38tXWJDS8+aVEW4Mve/wIgHC0lw/ENViyNCt33zXT0lpJZpfqXxlKVz7HmBdGOkyw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7385a447eb5326ca190e53aac9268dca496b11df","gitHead":"99a3debe7be88dbee532f62528b400f7ddb21681","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.8.0","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"0.12.6","dependencies":{"debug":"~2.2.0","precinct":"^3.0.0","commander":"^2.6.0","filing-cabinet":"~1.2.11"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.9.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.4.1.tgz_1468499760067_0.3676187575329095","host":"packages-16-east.internal.npmjs.com"}},"5.5.0":{"name":"dependency-tree","version":"5.5.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.5.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"7a145ce400fabe7d659d8512c89df23526a974b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.5.0.tgz","integrity":"sha512-+WKWnGN3MNuRh09MaqwaH/MFbVAu6cMcuxIHrHYL9Ee3uoni42YTeGoRCkpYMxf9sTiiqeN3n9zR6CYKhlGrGQ==","signatures":[{"sig":"MEUCICQXS74GlJJhISCUZ7WdMM5oxnSQ+SXwVE0pE1zm3/eeAiEAn+3N51ha8QA6cexY9QdzEtKp6Kq+9hK4meg94TodQ10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7a145ce400fabe7d659d8512c89df23526a974b7","gitHead":"e3bbd45a7cdb387cb7ece6179049d1e643d7c80b","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"^2.6.0","filing-cabinet":"~1.4.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.5.0.tgz_1471312278770_0.2081271146889776","host":"packages-12-west.internal.npmjs.com"}},"5.5.1":{"name":"dependency-tree","version":"5.5.1","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.5.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"896ce4fcb46af612a09a2ce3a270f9afda6bad40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.5.1.tgz","integrity":"sha512-Nw/nYYIIYaK2a0bOLkFi2JOeziG+DqDtLA3Sjq+5Hc8ZyjC/igXR2caixsKIftpjUFfaHiIE+nUbTmIBOcSyqA==","signatures":[{"sig":"MEYCIQCTWGmCI0LCb/v4RoHxoqc9n6Y90uW13Y/BHMPFrf4UcwIhAIngKZsW9AZL9LdJrWudwjXa1ASfCNwHtnKBkBXIs/S5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"896ce4fcb46af612a09a2ce3a270f9afda6bad40","gitHead":"d7c232dcbe68938a82c4041ca36acf2493ef484a","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module (as a list)","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"^2.6.0","filing-cabinet":"~1.4.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.5.1.tgz_1472619741433_0.8820527496282011","host":"packages-12-west.internal.npmjs.com"}},"5.5.2":{"name":"dependency-tree","version":"5.5.2","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.5.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"4c80d0f0e536546b5a87cbfd8a54efa07e355687","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.5.2.tgz","integrity":"sha512-dbVQZu/0YFDI8+KfGtiehqK5BaQtZ3EUzXoiGJHzBODbJGb+n6qA80lZrEs+vInYwanxb6lInKPRsKa/WAnOvA==","signatures":[{"sig":"MEYCIQCK4l550MIBqT9+Bp0y426Jv25VWglB5+8h3hHRWxBIDgIhAND8v/BLyNu/g2znGDTZ5hrzDDX/v9lgTYdH43Vr7vXd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4c80d0f0e536546b5a87cbfd8a54efa07e355687","gitHead":"d6b33d9cffbdc946dd70adf1c446b061b6e5c7a3","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"~2.6.0","filing-cabinet":"^1.4.1"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.5.2.tgz_1472783645778_0.5318633066490293","host":"packages-16-east.internal.npmjs.com"}},"5.5.3":{"name":"dependency-tree","version":"5.5.3","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.5.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"4bf194ef9332cef6b4dafe9fc9229f9ee1fdf7a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.5.3.tgz","integrity":"sha512-ReZmHGSq4rlGDXKAjMwZazhyANcbBbnxCygbPFQfYZ5f97xzRSSoRXTk9tV8Ls8NrGYN1gb6vdwbnJDAr0U4NQ==","signatures":[{"sig":"MEUCIFdPgXbjG+GghnL1S/UySaXDW1hIa6hFygP3NaY2gOdNAiEAn1D4cqqbJZjz8K0jImdqPuM7+tEKD/sS1lmTftEQXrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4bf194ef9332cef6b4dafe9fc9229f9ee1fdf7a4","gitHead":"f943e5c5a8687144c3db421f37732848e49d05c1","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.5.3.tgz_1472871783012_0.029549487167969346","host":"packages-16-east.internal.npmjs.com"}},"5.6.0":{"name":"dependency-tree","version":"5.6.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.6.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"a320ff9d839e3c0f730fe3d781c67587b983be20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.6.0.tgz","integrity":"sha512-PXDEoy4LN6Bk794K+YX9hoQhBzyyV0+IUBT4r1jAx4SbM3MjCwq4maWyDr8DDxvNFgojj//jHt9OP3PFH7ROtw==","signatures":[{"sig":"MEYCIQD2Obgdj/mRrjbP5dax8VReqmVW3ssqeoki0FH7QABqTAIhAKjp0ZJm1eFdeMYNSv2vPKmCpeO51sceUKToHKub/SLc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a320ff9d839e3c0f730fe3d781c67587b983be20","gitHead":"47a55a2abf778abff25026964c4b20867c86c914","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.6.0.tgz_1473302172774_0.6446243252139539","host":"packages-16-east.internal.npmjs.com"}},"5.6.1":{"name":"dependency-tree","version":"5.6.1","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.6.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"600380e169d526c8db5454655de96cc5879f23de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.6.1.tgz","integrity":"sha512-402fPuq8NZq2rxgQAchUixN4hZar5QR61oHyIN8GYsg+XsodeM+nsn+6oiV1CB0wwo8Ncyq2/Y5AWjHJcpG19Q==","signatures":[{"sig":"MEYCIQCmviHhxtKOs34lYrPcHKSFAYQABtkq5o5EaRZovaYBcgIhANsArcg9Q7xQ8OUS4qkOGBbCgiUYsq+o/iqjGHrUdwMA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"600380e169d526c8db5454655de96cc5879f23de","gitHead":"753d3bf0aa41f6ef04b7b9e7a522ff215184d5a0","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.1.1","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.6.1.tgz_1473304265552_0.33944998611696064","host":"packages-16-east.internal.npmjs.com"}},"5.7.0":{"name":"dependency-tree","version":"5.7.0","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"369f982fbe36b23738650d3ef92fdfe045d1ab4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.0.tgz","integrity":"sha512-6P37Ysr9/3nKzW7c+5Kok1uTF9/YPntGHaNpp4bhNjKt9U9bE3J8kSsvL4GtYllEoNb0VUcnJYeT214TdcQ2Zw==","signatures":[{"sig":"MEQCIF4KbVhTS3Ezf6Lb4Xw8YZvrZcxsJ+oFUFtdBVhmf2aLAiBs0VdzwSjbsTvxsN8HC5hmkaDzqy7NZIVpPPp/8DGNkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"369f982fbe36b23738650d3ef92fdfe045d1ab4c","gitHead":"384db14da966747c432e0d8a68927f8c27c2ae7d","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.2.0","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.0.tgz_1475288207209_0.7535415659658611","host":"packages-16-east.internal.npmjs.com"}},"5.7.1":{"name":"dependency-tree","version":"5.7.1","keywords":["dependency","tree","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"9959f05883f20018399f263dc598eec4d6e6e26d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.1.tgz","integrity":"sha512-s7yhmrEhZrsDx1e+eAvSNbcNXfjBxDX5nOdalJXcpcow8nbnxn7MemX/g+299+0dbeu3ISJfad91Hm/R1zE8CA==","signatures":[{"sig":"MEYCIQCGDNCgzzGTTGWYg4B15l+DQykxS5PnW6QOmU/q0rQYvQIhAI7NwdS/ut73kNohoSWOJ1cNmhPz6cUQJNxfTwssBrCI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9959f05883f20018399f263dc598eec4d6e6e26d","gitHead":"36d32125fc9f986cc6229ee835e0ecd52b6cbc74","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.3","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.3.1","dependencies":{"debug":"~2.2.0","precinct":"^3.3.0","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.1.tgz_1475463415321_0.8276160999666899","host":"packages-12-west.internal.npmjs.com"}},"5.7.2":{"name":"dependency-tree","version":"5.7.2","keywords":["dependency","tree","graph","module","requirejs","AMD","commonjs","es6","sass"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"e7385ee9ec69074d77636c231fca96a16dcf9df8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.2.tgz","integrity":"sha512-MuweL33O73rapCdNimVjBev7EKEmJUkVyu2ihlQonUuAjoSpWOxfEjxMcCFtLTuna/a+iNS7FSCmCAnUVtvm1A==","signatures":[{"sig":"MEYCIQCpeLJ+k9trpnHw3p/pRBjNyuMdletHAi0VWoMcpnvFygIhAIBAL5kjwGrtGYTVP6KSMKgBBu5UModiEWNHhj69JY7w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e7385ee9ec69074d77636c231fca96a16dcf9df8","gitHead":"7e6a02f88cbd19951ca8e5e818341dfde228c938","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.10","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"4.4.5","dependencies":{"debug":"~2.2.0","precinct":"^3.5.0","commander":"~2.6.0","filing-cabinet":"^1.5.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.2.tgz_1483132952413_0.9138538774568588","host":"packages-18-east.internal.npmjs.com"}},"5.7.3":{"name":"dependency-tree","version":"5.7.3","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"5adaa0a4c24ac272251bc8766997f81413b5eb3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.3.tgz","integrity":"sha512-aWN8nB8IVMLGOwfxVG4tqNEdu7oom0bipmgi9Aeoxc4r9NYuFeDhZ6cthUsVsYZwFaox5bBaHyJLdVatYKXQNg==","signatures":[{"sig":"MEQCIF98+0vHvraZir13hNomRsdCJK/rqmOgi466P++HxTZKAiBsBaSa46lE8lXPzgKUScI56MQhKtVgMUADFlg7QHptVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5adaa0a4c24ac272251bc8766997f81413b5eb3a","gitHead":"ab0623851a3055f6fa01488540bb3f161c62f3ed","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.5.2","commander":"~2.6.0","filing-cabinet":"^1.5.2"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.3.tgz_1483158649828_0.10390984662808478","host":"packages-18-east.internal.npmjs.com"}},"5.7.4":{"name":"dependency-tree","version":"5.7.4","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.4","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"13843df089086f5e04bf415520f71f4cae3e5180","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.4.tgz","integrity":"sha512-pJAErZEKMc53Aa7qxO8XcX+HxeNnddPgrR9N2gM/0dNbFxz5FH76tDy6W1SP5WTQHSWQggQm3boDnQUIXlCBAQ==","signatures":[{"sig":"MEUCIDDmTi768FHpLL5jxEqDKPEt2YekKv4zg+JWg/Tcli1bAiEAlJw64YVVptU75cxcIpZT3EAJyfXJbtiLv+TT63jRhSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"13843df089086f5e04bf415520f71f4cae3e5180","gitHead":"aff0f36cf6d58258ea4e8c7bc4e0581aa3362e00","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.5.2","commander":"~2.6.0","filing-cabinet":"^1.5.2"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.4.tgz_1483159955866_0.24963009962812066","host":"packages-18-east.internal.npmjs.com"}},"5.7.5":{"name":"dependency-tree","version":"5.7.5","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.5","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"4259860e7d56aa16f6c2dcbcdba9f78aac5a67ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.5.tgz","integrity":"sha512-DkgbeGXCVz7tBrhFejG3pFHJ34G+iH+Gi1RgFyeE8+LuBvDxHFgk9NfcjRw6trguSRZG2WeZ6Sky4WYvPJ9P+g==","signatures":[{"sig":"MEUCIDAk+j5CpEMgMUdViva0NtZ003/VzTx2dI0ZdNEMohoOAiEAlhKbPKXq7zPKCCFcQo39eyJmpB8trZLKRtXR1pvFm5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4259860e7d56aa16f6c2dcbcdba9f78aac5a67ff","gitHead":"48ce5c07615cc570ada76e045f98c71fe1496252","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.5.2","commander":"~2.6.0","filing-cabinet":"^1.6.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.5.tgz_1483537101848_0.001847029896453023","host":"packages-12-west.internal.npmjs.com"}},"5.7.6":{"name":"dependency-tree","version":"5.7.6","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.7.6","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"e4f6f26fe580362e6cf2d3c5f9fabddc81580ed8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.7.6.tgz","integrity":"sha512-at9E2mP9g6936b62YUhdI3zc1p9fwrJnyE284UQUkpe548SO7BxJBP0BFp4K3saQF8pQkg3k0+P0ROgB+S/HkA==","signatures":[{"sig":"MEQCIDED09MSrIWKLlQZCl7swLFs6wv9Tz5YKuC1cvg9rkinAiAIdqdiA47bMWDIgcviW4pUq20X61C9ukbURTbgGDkIOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e4f6f26fe580362e6cf2d3c5f9fabddc81580ed8","gitHead":"16132d33fa3a8e8ad6a41d9c1eba1355df9f0ea9","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.5.2","commander":"~2.6.0","filing-cabinet":"^1.6.1"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.7.6.tgz_1483908438362_0.6829909929074347","host":"packages-18-east.internal.npmjs.com"}},"5.8.0":{"name":"dependency-tree","version":"5.8.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.8.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"0abd5aee789b49be5121a92cf6697bb7a1332d70","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.8.0.tgz","integrity":"sha512-a+rW8heppc5ElHwgjNhiDzF1+7NWu06mul6qyZWGv3VwY9xdunab4DZh9bYAQnSYXbtJRZ4FJORqPJ2gVg7Xlg==","signatures":[{"sig":"MEQCIDdalBjkAl7s7NIutVbn/r3z/unwZBzL/F92f5I3UM7KAiBZ6aJkieDFhU401+UhVoGCsn5mCqm2wSqUIMI2k2AD7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0abd5aee789b49be5121a92cf6697bb7a1332d70","gitHead":"531b47004ccc208a257a1d57b570f1c7ade0acc8","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.5.2","commander":"~2.6.0","filing-cabinet":"^1.6.1"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.8.0.tgz_1486238231640_0.1671114747878164","host":"packages-18-east.internal.npmjs.com"}},"5.9.0":{"name":"dependency-tree","version":"5.9.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.9.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"4ec89f9ee8cd14d50e87eda9860fdd1aadeb63b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.9.0.tgz","integrity":"sha512-H/T0tXnN7wioRoadKuhtXyi802uXTtO/dsLBoedaZEUYxDQG2c7H7boYtXs6ASf5DT5Lpqf1DfWckcJFAlycvw==","signatures":[{"sig":"MEQCICV/xCJgwX2J2783u/9xHV0XYmuRArNQ9lEfjca4sWe2AiByfx7Ni183CWqkqypkOmZnVXAa5mm2yIF/HaM3qrytvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4ec89f9ee8cd14d50e87eda9860fdd1aadeb63b9","gitHead":"0cf5267fbb483eea7aff6f4ffee6d52c3c5a0395","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.6.0","commander":"~2.6.0","filing-cabinet":"^1.7.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.9.0.tgz_1486837151763_0.5869728648103774","host":"packages-18-east.internal.npmjs.com"}},"5.9.1":{"name":"dependency-tree","version":"5.9.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.9.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"0bbcb3e06b14b69a04fb97efd19ea00d92392a26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.9.1.tgz","integrity":"sha512-snUBYHp70K30Gnhjh8NPTgY+RDf9kr3hnXaksVlkpMWWxqsjvBoi/LwM4jyBZE7Yk/2FK94/YbrfaWEcAESP5Q==","signatures":[{"sig":"MEUCIQDRk2siQPD78KCd1b2wntr8iWuxdO0phYptTJTakrjAygIgfA8v9+GXvtNDS+BUHkE7QbnQMVogqwdnl2oFBB/v4Dc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0bbcb3e06b14b69a04fb97efd19ea00d92392a26","gitHead":"b65e6dc5df41761049f78eed2ed5c962ef5a20bd","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"~2.2.0","precinct":"^3.6.0","commander":"~2.6.0","filing-cabinet":"^1.8.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.9.1.tgz_1492603854434_0.6144903730601072","host":"packages-18-east.internal.npmjs.com"}},"5.10.0":{"name":"dependency-tree","version":"5.10.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.10.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"e99765d2ec30f90e9a2433af402bb48ecff1ee96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.10.0.tgz","integrity":"sha512-79V0DzM6EM+MVOy40zd299RbRIxXysn87S7ae5CpFGGDd8GgKcjArdTcJ0dW/cYQZDqWofTApz2J1dXFWBB+nQ==","signatures":[{"sig":"MEYCIQCbpNuyHm9iNOWPwG/J7TO/9GzzcWLgHEPHt4UOk+XGIAIhANx9LxuIX/ndUv2U2Jr3WMVTBoqZha3UeYdtL8OKdbjB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e99765d2ec30f90e9a2433af402bb48ecff1ee96","gitHead":"6242df2718b170f520ab87e3d22e2c2bbfe2d333","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.10","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.11.2","dependencies":{"debug":"^2.2.0","precinct":"^3.7.0","commander":"^2.6.0","filing-cabinet":"^1.9.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.10.0.tgz_1503767428670_0.7215998384635895","host":"s3://npm-registry-packages"}},"5.10.1":{"name":"dependency-tree","version":"5.10.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.10.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"3561314b5e582c05bcafb3111a35975c15e9c2a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.10.1.tgz","integrity":"sha512-NEtuXc8bpP0sD46ksaQdZ7YqIyANIWDO8LtDMKyJQ1qLMfpcMWCigbsfJximCEODFF+fKtfmy8koYJz1AQLjIw==","signatures":[{"sig":"MEYCIQCHfd/usOzIomPPg73Lx1z0VBuP5ivavvU078VjwNWcxwIhAIVXmwMLTsKJuN8E9ywHORd5v7Es3pg3Wu36GlEltNfu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3561314b5e582c05bcafb3111a35975c15e9c2a1","gitHead":"3904ccf9e481ec59b4b8ffd9e4f513f5b576c47e","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"^2.2.0","precinct":"^3.7.0","commander":"^2.6.0","filing-cabinet":"^1.9.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.10.1.tgz_1503769000436_0.9527297974564135","host":"s3://npm-registry-packages"}},"5.11.0":{"name":"dependency-tree","version":"5.11.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.11.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"928464d6f9273607d3f66b9a57e259e635667755","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.11.0.tgz","integrity":"sha512-MrSKVf0dvG2BSc2H97CzeVPIjCIldhw7n//DwYf3XVKG1zQLcT9H/8ryHfdI4xMBvqUighsez16SFp7r9B5lSA==","signatures":[{"sig":"MEUCIBF2P7knyofsSpcmLO3gjy9jvInV+01OwB56e+GWZuVPAiEAioQJr84NlSviCmxMoN+zmf8oTcP4dMoEAJ+nAaAhIGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"928464d6f9273607d3f66b9a57e259e635667755","gitHead":"6832476cbdb4f65352ce2c7234b9da2cb2aaeb7b","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"^2.2.0","precinct":"^3.8.0","commander":"^2.6.0","filing-cabinet":"^1.9.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.11.0.tgz_1503874342786_0.9218429238535464","host":"s3://npm-registry-packages"}},"5.11.1":{"name":"dependency-tree","version":"5.11.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.11.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"7d07f48f7c6e4adf90cf9be57eb4c337d05af5a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.11.1.tgz","integrity":"sha512-J+WdoBSJz2Vf9In2SyacHc+bmBRP+on6tv/pMFwxOgkTqUvpDelV2amEWvuRdo6MQf3G0Bt+BSaG8LFq2Byosw==","signatures":[{"sig":"MEQCIA7S81lFUJE4lUH9XSjUSwHfYDmzyL8sRhlB9GJrkbQCAiA3zZAoJT/BPc6ptnAq7W4yLoIy+ADc8NGv3da7U7K7bA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7d07f48f7c6e4adf90cf9be57eb4c337d05af5a2","gitHead":"ef3bb6420fc7f911090838fda3e6631011785178","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"^3.1.0","precinct":"^3.8.0","commander":"^2.6.0","filing-cabinet":"^1.9.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.11.1.tgz_1506736527564_0.03526182984933257","host":"s3://npm-registry-packages"}},"5.12.0":{"name":"dependency-tree","version":"5.12.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@5.12.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"a1b7a625428a6e09bc4ce5c133fa5f6bcc9626d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-5.12.0.tgz","integrity":"sha512-lpp7ganty6VzzDeAuBQ/n8yOPSyJ21zaI2XUf2TDvlA05pffdHPJM0e6MSo2WuqjUBoxAuyLa04ij1L4fMC+dw==","signatures":[{"sig":"MEUCIQCJ/Z3J5+pjap8otd6mfkZ8oE+XFWsXcM0sjkDB37GnmAIgJ0LAdItzXBIF/zJ/DGSPVw+gXvisYG1uusIGb3vKZl4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a1b7a625428a6e09bc4ce5c133fa5f6bcc9626d3","gitHead":"3f71a88c23c4a60fa94244fa62bc691dfd469f77","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"3.10.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"6.8.1","dependencies":{"debug":"^3.1.0","precinct":"^3.8.0","commander":"^2.6.0","filing-cabinet":"^1.12.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"~2.0.1","sinon":"~1.12.2","rewire":"~2.5.2","mock-fs":"~3.11.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-5.12.0.tgz_1510056844642_0.9700395450927317","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"dependency-tree","version":"6.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"88577c5410356b11ddec84f457b0609a24ff5d39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.0.0.tgz","integrity":"sha512-/F1jMkrwkdQ69GVOni5a/4YK8OItKr1TeWAk9ctN38K70ciI9JJF5Y92oO6sScEkAwAF4m/lv98kbtf7tFV7Mw==","signatures":[{"sig":"MEYCIQCAF/nkNrmGSTB9cHeMKw9kFt6EbmAP67x/Tx+HU+vEgwIhAPcnUeyt2lkqu9MESYyMLbZIzTDtpI74GkwwzeZU1BZK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"c715b0ee39e19a70add05b943a5e93e2c45e8e12","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --compilers js:babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"5.6.0","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.9.4","dependencies":{"debug":"^3.1.0","precinct":"^4.0.0","commander":"^2.6.0","filing-cabinet":"^1.13.0"},"devDependencies":{"jscs":"~2.11.0","babel":"~5.8.38","mocha":"^4.1.0","sinon":"^4.1.3","rewire":"^3.0.2","mock-fs":"^4.0.0","resolve":"^1.5.0","typescript":"^2.4.2","module-definition":"^2.2.4","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree-6.0.0.tgz_1516366362639_0.6213748117443174","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"dependency-tree","version":"6.0.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.0.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"c4330046894df51453f0b8e0648ebf654852167b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.0.1.tgz","fileCount":21,"integrity":"sha512-ojIIkcxcjVkmi2HBrhInxmclkIOH/WlbpLBhdPUVsk3doo7e+9qif2UOItAYNOmX+7SP85KiuJdZxJimaVsi9g==","signatures":[{"sig":"MEQCID0sRitofD1juXoS3nzDoHfwkBdisaBtMBMrL3BpIi7kAiAmX/tvhPoLNHWPUAEA4mK0Ht+zTICtRmT55UOMywneiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41060},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"e34a9e3a0075285bb3ed099535b18a4a759fe038","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require babel-core/register  test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"5.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.9.3","dependencies":{"debug":"^3.1.0","precinct":"^4.0.0","commander":"^2.6.0","filing-cabinet":"^1.13.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^4.1.3","rewire":"^3.0.2","mock-fs":"^4.0.0","resolve":"^1.5.0","babel-cli":"^6.26.0","babel-core":"^6.26.0","typescript":"^2.4.2","babel-register":"^6.26.0","babel-preset-env":"~1.6.1","module-definition":"^2.2.4","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.0.1_1520203437184_0.5303062796654021","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"dependency-tree","version":"6.1.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"bfef43e1236778f7f8c387a3a718a79eec1d1a29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.1.0.tgz","fileCount":21,"integrity":"sha512-UgkDPtveJ5ivm+h3TysJmzhhnWLfgY9KVFE2i+w6M10+1BmE6W+lzoGnG94w1Dy2PCfy0E8h0T9A0XlNxifPhQ==","signatures":[{"sig":"MEYCIQDzWZNTDnrtCGiDlQT3rcLc5pjAc5Y/cKaTSV+TSzTKAAIhAKVQN4VaFPLM1KKdeatD5ohl9nVGHWKyUzKT/GTk6hSb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41075,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa0h4pCRA9TVsSAnZWagAAJV4P+gJlptn9mJ5gIR0Dtz25\n3g7YIIc7PJpW4S/8cVMq18iVRo+8I7iMbOpFkf1dEf4BE4Vb+Kxe1LFK9cRf\nS7ZnKnssYSByGrLP1C9theVbSn445UXnVMyWGh7BFahrUWTp7RPZ9Ak87aPr\nnrXTBZU2UEbMuljADKxjvn7HNTBI5Jr8+qV0C0ryr5urzGEqzCHyIgkOEfvm\n6OfuKGYV38nNFT61jyLGtkOTpah/dUZ9fsUTGL9Kf+DLCf3I6ONqPUWZMgBq\nSo761sedOH4SQqko2+ZhCth6kA+1DDfdfWRRNw7I7yk/s/SQTwH6c7TO9n2s\nmnq4XcV1a4lrCL1LE57Ek8pQb33yRjlFk1lHpdvcz0gP47vLgkIMqHajXbWM\n7tTNAQugqNDDkn6w/m50g3zLPQ+q3wP+vxvjRoFve0VAMF7Eq++qkJysLWzN\nauZex/2Y6TedbBNy7GUtDwNiDGdE9U2GBpcQAV421RvqYbmO+dQKPBzsvniC\nP/gWE+iRQYhWBCA7PgCEXFabc4l5JmjlukAmrNk1QFFvkQ7MPk5/6CVG+f5H\n6UdW6Y3MBBzXWKGX9rU/dAQgjT7eY5OHgqucW3NSl4e1szqmoUC68XnD3wCd\nWhE1+ZjdjIaB65L3pyAG/xnLyvqRdKwI8wbD9R8N9ssDNmC5MDDt7rbi93Y4\nM/gd\r\n=Jftf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"55971561aca08b14885fc5fafcfd6d65515a2324","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require babel-core/register  test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"5.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.9.3","dependencies":{"debug":"^3.1.0","precinct":"^4.1.0","commander":"^2.6.0","filing-cabinet":"^1.13.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^4.1.3","rewire":"^3.0.2","mock-fs":"^4.0.0","resolve":"^1.5.0","babel-cli":"^6.26.0","babel-core":"^6.26.0","typescript":"^2.4.2","babel-register":"^6.26.0","babel-preset-env":"~1.6.1","module-definition":"^2.2.4","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.1.0_1523719719666_0.2878925093656639","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"dependency-tree","version":"6.1.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.1.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"0ab9153ee2b9115aa76feebd8e7c5a32cae93f57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.1.1.tgz","fileCount":21,"integrity":"sha512-jnemt7VLwdZKlbzmw1HSevq3ybtTczduk/jvv4x4RWx3vStMZ2yeFL2GZ2KJT0ycJWll9N3ZmOIoKziMnvtC2Q==","signatures":[{"sig":"MEQCIC+N4wTtEQ8J7BKQHbejEjotPUNLPmsPGThGy052swyaAiBd51CX1HHK8yn+B7AWzDfTnR927hXyikVT3yPW8GMgcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQi4UCRA9TVsSAnZWagAAtr8P/2eQS5Iru8/tCYOqoE+6\nzBs7d/+JfLC914B4WMXUur0pldH7GwNdNxI9MqXd5v/deomVADEgjWrR+D6E\n7AvUu7BhaVuEaz7/ixnx9qJ8oCA8yZwHmJ9mNrxkAgHlrd2Kqc/metJHhBPO\ngXwMhERfR8mzJ10fxrOvPL+Er+/meDV21SgNPmqVG/hCvO/TowxUBFFnx/8L\nSGslcGK2XF03L5gpyvaoiVe2ITnjmFJzdlU/q9OmCdECs9X+ji0irvqkPCib\nrIZ5HjM7GF70jt6Des74Vcg6Z2QLfJLz4W3kGFLa/Dqy5yuq174oENivX2Uv\ndC1amEftFEAOKmpFdtNw+2xm4GQLTYvD8Ney5cTar60mofWeFmbKkhSEqqY4\njEXP0NEJWPprg47d4w0RNFkvwtu99RMcyx95elDadwXFREgeE6Z45/TWyKMp\nru0/AeR7NX8g8HwCjjQtNtB38uBIPqnfA+ZlVndYVcfqwfXiozjxkRXuJP31\n0GnX0Hujb390BfDqP/qkgqVrxeMItm16Pk8w1Wg0xRj/qrYjvZlMqxe0ITye\n52id5smsJvmckxLLIptLZutFhrD4AmQAqQIG0WJ90xDoMxIfgjnJsYxvPZsL\n9PnjfWXx81MJzpWp6/X9XfRVEWx+Ckl7BRu1+ZHoU0MEIog8zW+EaU/iI8bG\n0N0m\r\n=6WJB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"a73036f92a5b82fc6aa2185c883be733c1b45f79","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require babel-core/register  test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"5.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.9.3","dependencies":{"debug":"^3.1.0","precinct":"^4.2.0","commander":"^2.16.0","filing-cabinet":"^1.14.2"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^4.1.3","rewire":"^3.0.2","mock-fs":"^4.0.0","resolve":"^1.5.0","babel-cli":"^6.26.0","babel-core":"^6.26.0","typescript":"^2.4.2","babel-register":"^6.26.0","babel-preset-env":"~1.6.1","module-definition":"^2.2.4","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.1.1_1531063828642_0.19008463196395886","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"dependency-tree","version":"6.2.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.2.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"a85635ef524fc48468400825bf05acc3c5a5243a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.2.0.tgz","fileCount":31,"integrity":"sha512-hvtvILwcodEyvSUejoDYfdnYATws6PTWUBThcKuKwFN/aD2MGCwWU1jYao6eVsHDmleDygV1qAX2LLv3vOU+WQ==","signatures":[{"sig":"MEUCIQDwex84VpeEdJtciqAygNmwrY2DGVkHFWBa4WRGUbVsvwIgReuOVVIvSXPwM/Xzk/qzCnqnLJX4Kt250UC6/m8MvBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpFqCCRA9TVsSAnZWagAAIcQQAIsKAB8+w559WOELR36N\nEBIyQcpucdYtm5lEXYTBjftPu4ssZVZR41OwGXO6NOyMwafvNkqxtt8akDYO\n/aDzsBwmQINsGeqIpFDTTLDIhKtiAvy0XeboRRmjttSpgHeNRQdeQC7wbcS4\n+Pzz32LERkII+VhUMmRfmuWyt2HBC1av44Ss5rA7NLPDxlPf9XRQsOMX5tl/\nOzT0kULwOFP7d3rccT2ZVL/wOSAYOGgIDiZQldhZ72n3rhGRf3wzJGqqc0vK\nsayZicB5r9B69LqFyi30PemFABPc5vrRW1z346fyll4p2hCEJCjPz5vpQCUN\nu6RUxIXbYs4dQhmKcIWcWU1TU8hPt+J+lyIHMY4O+dq8Lti0xzfd6YIZnocg\n0KiTZ4hWDMFsFlfAx6Vf1dvr08OeT986H13eyzyUPNjMqJurt4Jt+IuJXi7F\nKqgYKNZWn6GfSV9d9Yp6a914B5vzV2qUwC8U5uL/WqslFBuF+O5F3hpBHxPB\nak9UxpLKtVVRawxCZlMqVQFnkzzxe04JEgKmngNDLmDPitd1NPC1H7tyU7oq\nvgFOjzjATrx3aBFFT6jaWsEG/x3yRW52cJk2MEotKZtyq1i+ztk0TO099P/c\nRl3WuNy+nIROZr/SaGXoShgfi86I7LdL/fd6p/QVxZQoYhDlWvVc14UH+61k\nZIEP\r\n=z85Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"42c74065ccf58df16dd145503b6d6eabc404be39","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.0.1","precinct":"^5.0.0","commander":"^2.17.1","filing-cabinet":"^2.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.5.0","@babel/cli":"^7.0.0","@babel/core":"^7.0.0","@babel/register":"^7.0.0","@babel/preset-env":"^7.0.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.2.0_1537497729741_0.98905426030652","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"dependency-tree","version":"6.2.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.2.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"81bbf27b2ae103bf41d18d8d29537e02979619de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.2.1.tgz","fileCount":31,"integrity":"sha512-XkQ6KFHiO+VTM71zLtZ1KuCL6BWMW7GXvFWTCWOPOMgccYp68CBpSSqKR8trw8HsniSAi7hBjPcBqNCYMVzUWQ==","signatures":[{"sig":"MEYCIQC1/hJV2usfxPif84xj6kcEvC3pCbaTwlZiFl3L/YOukwIhAPN/SaxyLKBxSmbpz10A8jHfDtEGY9mpiWyLZkt7d+LC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpFtuCRA9TVsSAnZWagAA7XoP/joghcpxFwveMQkQzHfr\njKmjezoGGsr86oyZgTws+Vke6i07dkwTSh/3i3pYTXh/0Aj0aY3bOyrxlrKb\neM7k0KiitVpWk3SIs09ekY/w3UwquE1TTUwFinNYAPyCIQVKcOFpG8PCzv5i\nxc0sQuKvittmpSBwxvXYlbqWAXbMAJyjBUm4MCwadhJA8VTH5b7eMv/1Ay8D\n+uuES9wD4/u1ArQUkvZ4HlDVdT9oUUG5wIOUw/IwsPD/VY+tPRfaUH/VpKRf\nVzvouFKoRO5zT9tVx/xyFQ25EZQg+PVlkxF13PGkdKRC5LI3OJ9VGQHExNm9\nB/Je0IlR34LjyXakoE+LI3uNVxqmkVKpyz716P1mPw0pvdd2gf9nJMorLTk1\n7PlKqaah1Y77bBavm0ckZY01vCKGt3xaocNQw98/N/NyMXGC+P46w4qFM8+1\naiCJCpQmFWQkRvOpFS3rdgmOCHK9eDHulZO7ivjL/6lsmkupNhSZZPfvLz6D\nytlGN0jcEzzd+7WepXwqHOfWofoTFftPCqrxbD6Hs/cOsv8S2Vo24f5hy7zs\nI4kEQzGG6p1F57rDHJ9gXYpGsM+rE3GI5TFOW9rP4gdJ8W96wa4wg/s04/lg\nMOJz8XNqO1w0CeWbIfVP3Ob1otSVG1xCDKLZopaWt3nyLHsZ1o6SqUFv+Q29\n2x1V\r\n=xQtU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"02cbb438dafc325c4fcd343784edd9a39bd0eff3","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.0.1","precinct":"^5.0.0","commander":"^2.17.1","filing-cabinet":"^2.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.5.0","@babel/cli":"^7.0.0","@babel/core":"^7.0.0","@babel/register":"^7.0.0","@babel/preset-env":"^7.0.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.2.1_1537497966012_0.7275006842358431","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"dependency-tree","version":"6.3.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.3.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"6b61699e9644c9dcfcd2a733d927c2d5cc109ad1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.3.0.tgz","fileCount":32,"integrity":"sha512-sYU7S55hbt0ld0mqm7LDCX2qk+kDhcFXTZ5dUPB0kTS+kDZ8Ob57Nl+/W3ukhQ/mxHtDSN9WxMXaZMwGufYwVA==","signatures":[{"sig":"MEUCIFxmbmWz+ITImmrQh2/zYbycv7VvgzFU08y+qxlE6IsaAiEAojMXYgWgpwkYN5oVI8ve/55TRwArXXbZlKpuAiCTuFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41125,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8ww4CRA9TVsSAnZWagAA9LMP/jpVFUThsEfyxqP/tnIg\nsMmvP8ZYPxMRvnLUVW+WTCQmi37DJPJ/BpbGeaZUBj33Mq4PkHYs8FE1yOYx\nLiHc3vnH9tZkqK0xIyNZ1Nor3YZPOVVTDi+b+t+CtkxRFWUv9XxyQei46ByP\nIkEDRZhU+toOB2TGMB+TOZqXUHYV/IboVOGa7eRFIskzpLxE3duVHhDTQ1ol\n9Mo6I01j83qTEDkxflltTkEdpluMM43GTq+PJ8sntYPvlpo/Ull1E6xrf58F\niF6u0MmfaabcsT9ZuNeMH0nAnfun7U/tXdsf3KCHQ5dBZR4q9fT/mGiXavcf\nFb1d+8ZLT+ic8CyWmBRFEVYxnfYGRAM2WEStBNsul+xXHU4VPm07MVUlmp1Y\nqt5FjTl9t3SRf+rmn65neLRvqMkf139Vh0WUSA2NuC5Hq1bgxJnVSlfZIpGT\nl3DFJgTLYPWt0cgL+LPFEQXa6rMdD8/6c1uWQUFrApumdxka55EbDwNTfucw\n8BUpm/4k/R/KMCu6nt+q4loJCNFrJGWt1H8Bgu9V+62j6lWz2U+lqmzKvNZN\nV72bEEuZwV/+ImnwcKEinoPYATqqXffPTrTrHp0y4xeUzKLHKl2bHNeRKAEL\nr0evo4AQLH9zzdROxQ/FOsty9WX5NMrRY4UWbjFI74NlKD9gw/+ftSCdho2p\nIdwR\r\n=UX23\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"e1b8f5cc3548649d96cc5fe77fc8c3a01970a3ee","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.0.1","precinct":"^5.1.0","commander":"^2.17.1","filing-cabinet":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.5.0","@babel/cli":"^7.0.0","@babel/core":"^7.0.0","@babel/register":"^7.0.0","@babel/preset-env":"^7.0.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.3.0_1542655031718_0.29373701683318254","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"dependency-tree","version":"6.4.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.4.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"561f21902179ffd6ca710f939f411c691e1759fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.4.0.tgz","fileCount":33,"integrity":"sha512-X+OZLeKocu7Rp6QX5rHOF/HnHQbOccmzULMyY9X+DCvyD5kTG58N6CV8SYPkcDs5rs3uQ8hSQ2EsFS8s+wC9cQ==","signatures":[{"sig":"MEUCIQD5Q8h8CSthvkm15PWxkbKqAHuj/o+4KuHg7/L6HhnoQAIgUIpgISieTTN16O3sFTtBPWF6bbf3m2HXY/WMVCyszws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIQZvCRA9TVsSAnZWagAA+38QAKA93PVySRsT6u0GBzqC\nzEWokXGF9LO9RRRliIH8D6VmijDYTNe3v6S9Bp9Qvz1O5WanljLc5dkpmN5o\nzCQwsJs9vT+ag2jneWLL+kCayw+SwbhrBEDEC453UoWd7cLihjxXvaMkAqIi\n3ougMgwHhhijd/j5HzdZ+ds1OV2ykEfXhNXgRqB7UDfRv/qkbgvXe/SRiIfA\n0B/edi1iq6PtVNlCXbOHnjXo8UO35UcekDxDYK7GJ3SYipEk1lT6OHqbU5xa\nRJcsI/7oEFMqo0y+LBGF0IcA6jRXqSkhpbPXE1kpygoQl+6/waYdvCuQ04UA\nRHe/8VpHbz+xW17xgW4XCdiSI/udDVrzTTYwvAiYPUgwRGZqTBh93QIaUkaL\ntC/h74zKAe6CMvmYFhqHBwVbunvHtASh42zdVuggm6/b0HWo18ByOLW/lnME\ngAleJIa5oXtVXASgUA12zDHa1k1VouHFl5LuqI9KGL34yiA7Q3xBHO3qyp8w\n4r8uR78yWYDfslbbZpHYkCU2wYyllGayq6VhcevJ6typnQtBpiQ/v5/pg0xI\nrtQWcXgzQGNFtl4DYuLvsadSFcIY6bjH2ElJp/A3cIaNixNiabAyS8s7RWPU\nMWL0W/akGoFUFCjPGvdVjCN6mX9w7X7zo2cXyfWuES2QedmUur/2j67atQ9H\nO+OF\r\n=fBYm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"aff424220100d9fa4af4476152ad54eccb44d116","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^5.3.1","commander":"^2.19.0","filing-cabinet":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.4.0_1545668207056_0.8488275568641177","host":"s3://npm-registry-packages"}},"6.4.1":{"name":"dependency-tree","version":"6.4.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.4.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"0ea2c78c2a65520c7104d285e745a63cc724bc5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.4.1.tgz","fileCount":33,"integrity":"sha512-7KW4venTKfqn5PiDl0CBnAKDmLXKKmW3QX/tKD3NAa5+fXOzBN83Q04PAvYktmv/oO4q0PEf6Rblxf7V7NjtVg==","signatures":[{"sig":"MEUCIQDtk3xhnX3tf84gzlWpOKFeoHDciA7wU1rbtk2NdgNevwIgPY37cKopLvOYqKumXYAtwa51OStzT3MWQiqw6txgXhI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLsqECRA9TVsSAnZWagAACUoP/RSi5Bgy/7QMJTv07zrw\nrE56p683SN7i1hDXKhKBDbeMTdCvF0SU5UG7qXy1ITJ3dDU10XAvzve9y3r/\nyAQ+cGWZj+T/P5zErH7zMEiNcwafzxi8qkYGG6Q6BcPfpwTmbYzOf13VPQOB\nSUdWoaW/hfVVyHGdlXwsL6qqZax8PgUBRsgCRP4fFkQvlg3uz0dswVjfgzxp\n29ASTavfu3EhgMpt/7Y4D594yH3GHKKWtBviJoyfcOcAbUCxcr3NIMESjVlY\nF8QgncyGIrtLV7eFACARwEaWZug0zwsXq/byaDrMgckkLy+/5IfMnwem0S/Y\n/86zq6HaofGcVt82hiv1gKNRrcNxMg7Wg9qUNC/m4lKRM+7ql/Z0cIKrUNrc\nsdO/MXrE3n/fIn2e2xpq40a2GLJrT2cRKjFLj7MU4BU9On3Q3QqTSLlYRPOE\n15q+1mTmOBXnDnp0f3HN6VPa1+C+U9AeBIAh76qHMnfxNZd/Kb/9VSmIae4Z\n4oBSYaeaSKacHNr9lVD/rVVN8hUmm1qmVxCZ77XxRJCqYDdTdNVoULEn0Ye1\nkW86Tx3QNfQzWGrMYmbAh8W98I/WCG0Fk5jrY7QsQMGckq28PVcpD+a9oTpK\nT1PfQMw1pgOCzILcAKfYQFFXJ7vZLdjj98QnChPyT+rjzhoQgo12F6Q8l5gT\nFxXn\r\n=l+xv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"04a50e4baeeb5e157981c532b2509b0e51f030bb","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^5.3.1","commander":"^2.19.0","filing-cabinet":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.4.1_1546570372189_0.7136880223339777","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"dependency-tree","version":"6.5.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@6.5.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"666d6838c2d8eab0eeeb2e2d19eafcbdda336cde","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-6.5.0.tgz","fileCount":33,"integrity":"sha512-r0KO5BkQy8sMbyTD8NxSDOexsySbGpSH5fIsxCLZjarFTXMryiZoR7+Ao6OWkwLz6OeQPYCOIjUDh+knWitMEw==","signatures":[{"sig":"MEUCIFm93Su9ASG33ZmSBfvvLYYyLfoinXaYubpzUWw4DQ6YAiEAuI96fzdb/aGjHiBrkpG8nO08UEvTDBCVh9x0srKkQNg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLstPCRA9TVsSAnZWagAAYtUQAJSncy6LGvR8+7c84riB\n2bom3U+yBseAj5mk60T1lL2WKJF2BTTJktz0gYc7jJ6VFvqjBSLxpmb2J6ei\nn+mOGWqHRQ09J7GKWNnLRszNfRU7iawO/sCAbglLAasJ2/x5bXhmVyuHVvEy\nzB7nrKbVe2xRzaYmq9a4Gp/p2fWaAYfifDgHoAfNeUcC7RB7cuUcxlJTKvXP\nJmTNGZReDY5FaUwD52JATminimQyjKVpl9+ZhqwpBnM7JjOBCcEyQdCWqPxW\nKi7dGzPBg0WoZYsM7Z1TwKeLLBXYsS5zshr/ce4e7bs9NGqQbF0LxapbQOtx\ntFbv7YX+6oSMbQsgRSTD36nPjYeWZ3G1CBca9MszCj3E7Q5pltxGoMyj8Bow\nvSWWHvMyG9DjRzPnk7OmuKMbENQtNeIYBGtEGSooKDpb7IIZ70TgGKwCX8xM\n6R8uDimSjgvexASDjN2z1D+Hs1dwL6iN/9ipYLUxkFI2oabEyGhPqPD3+cG/\nj3xUuHMgdnd23Gfk4JJKo9eXMhOXuusuQzAB9SU3EpdShHhemCRoLp35zsyH\nWsdF0PPt1ngLvwxiFkdEi6Vk36EL5p6AFs4qpHrkIAphN4bYEbB208dBp9Wo\nTM8ABGESeqQJL2Wy0Ij99/1D+q6F1BT5yrg3ny0YsdL4XCSkYXEHreaGQGv/\ndBoM\r\n=imr5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"ef154ffc864ead7c500d9663d53224ba9f6b565f","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^5.3.1","commander":"^2.19.0","filing-cabinet":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_6.5.0_1546570574852_0.07152859669188527","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"dependency-tree","version":"7.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"9d95959736f96ce603ea587e34164bd295410e10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.0.0.tgz","fileCount":33,"integrity":"sha512-ttEPDL5JzWu96sV3lZT14/Y26brdNYkZFSk3mKpZVzkgoeOmm4aHzkTPgqXZPQaqED3e4BzlHjcM9xDhl8BrXg==","signatures":[{"sig":"MEQCIDGHGpbky8gomkd9scevLjO1X0XA/SXKoh5uFAl+QuyOAiAlK3HfxH5xuvHPq1GbrCMb89VROdcJ1hcNYse9Pc8f4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMN5+CRA9TVsSAnZWagAABa8P/29XA1fbrOaRl08mlYIU\ncLj3AxZm9FlZeqhKiOklXoKz4IzZtPP25Xj49qqCCbwiqlDu52a02Piae279\nySpbf9VUiwsjxOOkItuPKTO3jriuWzF0/ULCVfD2TP9jB1SNysiZTsy8yPN3\n3qNOXVklsRmOT1yZsWxbwOtgKl6ql2X/w22uPQYq4xY0w76q0+BpKLQ9oe49\n3LijDQwZdd/YVnDODuqEpe+kKPCsLLdOG/EwJ25dmYgnEfSk8GvOqESdf/Bg\nC8CHMFZyip+V0zNzPVQGDev9ZCHoJGWE3DdTyCb6uBjM6iIr6A4jgbWMfj7j\nbtqn2LnLTt3GkRPIlbyGw6HjYCvJM8izctdFkOzBbrgYx1ltGHDwJXFkDU4f\nWVUSIQQtXhXsHbOSKa+ntUD57b4nj6pDGeynxwokWRmFyq97+4WznTEgAVjp\nQcMaMH63GNWPdf3nX4Xk7yLo54ZHKZSYAESjL+lK8d94RT4YJwo7HsQ43fZt\nDSggKb6Dhc0m5rA0mzDBl1a96me5RCk2ovv5PZNxdylehllzQpkc0qRx+MAS\n6edZrI2c4uN4ERE8ChdT8U+0NJOsZTP+L1XB5VlEY7Hu9IXGgPRrUQEQxodE\noLwMYY87V3NFLcNb2meA4nbyEXYkTGQJqh06VCC9/4uleQAi1yt8Z08oxA6c\nSbW0\r\n=cFdk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"436b5286c29bcdc0a035ea6c43cb085ef91e1d36","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^6.1.0","commander":"^2.19.0","filing-cabinet":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.0.0_1546706558272_0.07640321075169942","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"dependency-tree","version":"7.0.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.0.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"b84e7a5a399e4f60d32312124465bd4caf43ec17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.0.1.tgz","fileCount":33,"integrity":"sha512-K+qBZJn9eMG2pHZr1MZPrGqIbsij+tLhYLCZ6Rls845I7gSl1HLIHUlmALOQowq7Z2kggmQRu/deaCeNwIeB/w==","signatures":[{"sig":"MEQCIFWjEDOIuhBwXrhF+uTFHnmJm+l/UyZiEki7ICsMpR6lAiBOIxkY6L9JAX3LqqB3YTq6Q2TZlzSxWg2iUkitZOC/WA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP9+tCRA9TVsSAnZWagAAYYIP/18wuWlYQqD7Pq0TWk2o\ncF74QcroO6kXdoJe1bigoobToGgmyigmUoE273XFrwswccn3C1DiUmOOJhqt\ni6w6ZsxX+paus7CXYTe8UsOqwGBP4w4LNLY15Az5WYlUZh4dFfShBAYTKIZD\nfdj7B6XHwziijq9sdfWzAOSCYujnWM05E7d5zMLbafrZ4G9FdyXv7FzWkJ4f\n3xnJCTdUMF5vgog5TV0rVCvw3AqKXWW5yaBpmkwrGbx3/XHBJaRvmvWojCeS\nl01KVtCLzjxYKh1Ypr0kgaTa1p4ZIKkeCWWiSo9fszt044tD4K4h914INXO9\n/LoRyeskeYJeHn5l8pdp8gq8+qA/uGvrh2modnmmjpBGE0SmgsoGW6edJyTC\n5ebixeUBCscKdDSfODOYnm7AdNbdtj0xPw615TcFO0vBgnFzzUXaqhgOaJD1\nMfQbz1iCfuF/emSh6FpeXqYHnW2cvOr6SmoOMr3IuoFStS3SkbnbVZeOLeuj\ndwxnnVtU09PtfA69BpyMcTHHSofEzkXpdP3aLJEq8XqPeX9XaRo04mDUOFGO\nyVF/RlYyh+U1kZ6YbhMlQm/8GphY4TO75kspn3H8lQqPqQzNJG4aiuvH1Re9\nLTXdOavhFSP5LPV5zqRHP1yf3HsNuOHW4G1+8Pk0qBPfw7rYvUU+GBlkQPV8\nRvSH\r\n=v8no\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"8635f1e236e7ea140fd6356753adc49f26397ddc","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^6.1.1","commander":"^2.19.0","filing-cabinet":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.0.1_1547689900686_0.8520366802343657","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"dependency-tree","version":"7.0.2","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.0.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"01df8bbdc51e41438f5bb93f4a53e1a9cf8301a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.0.2.tgz","fileCount":33,"integrity":"sha512-yh3qCLHl/o/ZUPq14HUF6AGEbNTMyCAu92D6AmY3SEynJHkB25o3hTDzvt3Tu/KpR0093ATyrhr4aGwcx8NnVw==","signatures":[{"sig":"MEUCIHdqKFp0dsQJsxhy8jp46iZA1UqvkGQGRR/qZLeHB0ccAiEAkUtpNuc0q0qLM4fiEaZY8fzXV4egeSyqzOrl8eswZ/s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP+JDCRA9TVsSAnZWagAAuDkP/jxfj2St97O1/9LcemnB\n4a4PXGPm/W0RjZUaR0ItpCb4RxT5paXmzkSDpSb2F8+ovVb2G9dn8kB8KEtb\npmzJgJ1DCiL5FXplRuD99HzcW6ULRRrVO2gkJi17n2Fl4BGKtN2/RLiNC2s4\nNyuPELPutCEiLerdhYc2zCWbdMpQz8XH8yt2+IkUZd2iNBtlS8aeuwNwnZRk\n75UtN5TZbm9i+sMsYEWGCd+Fxilj6EXv+7lAMuX+FQ74r+7tHwx3rF3hr2cl\nX3AIDZQ0aBF4n05LpHgWART9tqPLVXQweh9PI86QV8sIOPHpVsxIjfJxThxq\ntOcOSubuU/yOrXPz5du1nwtlwgMQPog1Qq+2TwFB2EhS7X9VyKINGpNxDWpe\nsbBzllUUKocukXszfHikzrk095I2AAtgwUbVu2wH67KyUDsvGODQHGHSLc97\n5c7E6ZZ19pySIwfreGaN7Fezfbq6JjIHTH4Y3+C/pxVtq70OcWLwL4HCIJIH\nxGbjkWeaQNqHl6FldCIam6RTInXZJ3OtGsXtkOQGsUrU8R8zO4m/UaXcQW9a\nN35mAj/9eNF5Y3uZ0tKt/LJoLVZEjSrjo8dsc4yUqzY/nF2LKSWvgM0kHfKD\n7CeNLm1Y+NTSFyFP60JAlQ+wW9hIT9+mGQC+qPxyRAEXHWXnlExME79XUKYG\nLhk8\r\n=GAaH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"bcb7d304c15590be4bf7d4a533aaaa2f109e5bb1","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^6.1.1","commander":"^2.19.0","filing-cabinet":"^2.3.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.0.2_1547690562987_0.1300542239752287","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"dependency-tree","version":"7.1.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"7110af9a94ded4785c17d69e48b6968c214d9a49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.1.0.tgz","fileCount":7,"integrity":"sha512-emsssimgZFIsTL1d6eaDoipwIIjMENwUODjOwv0G7V5mwPMmeiTmvKpHjYes0/oH3PM7Yjl85D3jIzYHh7w31Q==","signatures":[{"sig":"MEUCIH2HLAOaJBLdYPZKXTIJzhdc/w2sdO29370qvV8xVhIjAiEAyRMZJluOdmY9yc8jCZKFKUac17/RpA44iCpcLf6iieE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2Z3WCRA9TVsSAnZWagAAFxkP/iG6QVIihVuivj/SKy4p\nxT+bq/QqihOn07grAeJBeFSnTllkA7kRjLml7UwLDO66hGaG+q+HBfwqrHg9\noYPPSWV8FF1eyCChDak7ZtiktG+b14SkngtDE5mUzHt8Fo1KS9FnVO/GCjEH\n3gK68kdEkD4oYBIRYlazbMotwb7M/Y6GvOsZv0IKviOKMo+mNF575Xu7GA7v\nvLNnBcXWdab1lA8hdhgrjVfDIsoyXqE+v/dKqeRUyNFqym6zgjHmI2KI3FW7\n9GiU7VIcbbmGUmZAab6mK/Srf0bXR5o5XXoLq1qeCsigPNDYUIlrFHhkzPV/\np088gCG7nrKaV4f1PAKY3s7DC/qSnmQQXOzz6z2ptF4TI9nIZl/yo/e64BHZ\nhe2thjbGNpDtKEjOF8xu8byQ/j12mqZ/88tvzIkZu8iAxlNCxjKr6V8fh6Bd\nX4LLbELbhFRrJii/kV5EcTpYbXNpNu7koixhyzbh+/80vz9omypIDxIAmKDY\nTA0XZ7MdOFkeh4XVF8SXpujSQ6FmUQuH/6EFfqsFWgZ1h+4+/6CbKNUJfubi\nRotGIF9nOZi1NArngHI/3rUetgxR3I67t1kTDBFGN+t8MRtpz1yB2KU1QNQe\nES9ProdUmZzXJYLJHbcJDPdS5MCdb3N5U/+Tbr3RYHTTtuKr+zG/+GziyGo2\nPPmQ\r\n=20tw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"ae0ec57350cbe16617c39c3ba97dd164b960964f","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","precinct":"^6.2.0","commander":"^2.19.0","filing-cabinet":"^2.3.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.1.0_1574542805607_0.06031464164980238","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"dependency-tree","version":"7.2.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.2.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"1dc8ea13c5623f5eab99b28a4fd4f4eca0809168","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.2.0.tgz","fileCount":7,"integrity":"sha512-41LepYuMZNfd/wk7ppfhaOp8dzzd37t9hLP8XKg9WDQZ3u2WmNCR3eZOF/6jDatV+3OL4ChOON9a/UIeC75bYw==","signatures":[{"sig":"MEYCIQCtxynDnYooUfqqiaM2r1eVEQdJNE4n5IVpq74hh79ZrgIhAK6mcpFAh3qzfhbNGVYgA4L/JTKHLxRu+HQY8zs93XuB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4SGmCRA9TVsSAnZWagAAuWkP+wdYQ91CUSpnJ483jTwx\nZCOUrG5bXWVlM/rIixLCI5jBu2x8uVeztLtXyYwQNlo9+CfuWgSE3RYPB6a3\nY+D3+6grE27W0h1rxqQWQLxRYjeTOC2TvLcQ2xOkkw5WD5G6XP3G7UIJT7It\no4DVG9SolTTUrKH8CbsvW1lsuTQm/fCmtM3qq+WE5GuoqpD4ga2FCJwTUHSA\nGgbLIccksS+pKw8tkwLOOMKPK3imhOhm0V+4NQT3173K/r8qoshQHRW9/uWO\n+rzdq1A3yEygOew3uiiL6Xq8J4sfFHYqQMGZpQl8tJmtx0KjeXPEQE+sN9Ko\nW0+f6cleSXvAqoxNh6D1J9YnONdFDP6dlujS5nfYcWCvjzUcO0VB4swT3tbA\ncnmHYa0I9d8WvjhP0xkprOjcaMAqexSfhlZS29I1ZhlbJRBVPSkwWccbUZJ8\n0P+7JKLl0FQb56mQ2YAA7yx+Iy86E1IVoghHsLLLKJw5DH4KZ5VQmbBUTpMw\nUjjJqlM/S/8djl757S+Yxd+kHKYUuKmF96VJuJ2cbeNFCtQ2IIdXIgqK9AeD\nQuBYIetmhV/Jtfmio1BQP/VW6P7UV1tQdq5dA2VH3iLsNsl/h6Gzae9QPO+t\nPnotd1jn6Q6bloPWhbuCjDdfLGb2tsHgRANnsrUWdH9l0OGVQewVFyd1zIN6\nOMGB\r\n=S8bd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"7f0f2419303fbde6d290a10e4803fbf59cf90451","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^6.2.0","commander":"^2.19.0","filing-cabinet":"^2.5.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.2.0_1575035301507_0.5494812188050411","host":"s3://npm-registry-packages"}},"7.2.1":{"name":"dependency-tree","version":"7.2.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.2.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"41c8f6feb54a2ae32475c0158e8d2c2696bb7f54","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.2.1.tgz","fileCount":7,"integrity":"sha512-nBxnjkqDW4LqAzBazy60V4lE0mAtIQ+oers/GIIvVvGYVdCD9+RNNd4G9jjstyz7ZFVg/j/OiYCvK5MjoVqA2w==","signatures":[{"sig":"MEYCIQCL+R3rlpV9eexcsU8UbGgjGYSJB97WTaPVfBWI2gU9tAIhAI88aOQuMWqqFeISHJe1/u3/i9Y2bLr8PKtorZrDzM6C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeV9BPCRA9TVsSAnZWagAAHYYP/1vgl/nqCD83NGr7ZY69\nchX3Pzw1ucE4tpLquhU7hr+m8Bpu9EKQktDJsBsUb6ke3hjpNId27Smif8EV\ndUcSuSoPjPGA8q8LIURf/xL236ZsQt6XQMxR1+vXqWql3QxjnMRxrPTwDiKd\nfR9KINv++YMnKZ4OiOHdMRZRL2Fbqran6dNFvaH8x+T8exkJA6+1aRiiHgqr\nLTAUpEPQQm0PjPkNbE8d9RiPCyaFsDg2WSp+yT+aO3dGVwB9+mJvQ17eCkkz\ntGZRvRujriMcqa3Ziqcu8fEv53w7laVNpfirDgK7Zne36hsq/ZGvP9DJfGZO\nkXtKSNEam+irMlS3gto+7uKzzzDSVBf1p/YSJQc/Kc5bFllULWU11HAyKYuN\nxx43Ul+9A3bo7oXgur0zH9JV4aMioet5SnoVLSnZ97AVGa4DlRX+cnds6xdz\nTdr8tyvO903eIbW/2up4JqNK0qAxlfs3/ZcJoDQ7Vu1uS9gEWO19hmFlbDvo\nA/t7P+m0UmOplTu5DBcad5QhD5TSdINS9f6xWLCnZkgCBUVb9TXUyfmBvP8T\nTaNbEGW2nADydN24C1nogDH3nkdCOBCO2zhvr5NF8W0oVgT4GyeBUGrj8bDy\n3kVUXqXQ0tDdY6nOR22xlRtUAl9GnOQ8yIfnm031R67jVIoo+xEbKZkjiLCQ\nT/PY\r\n=/Xie\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"47923b817bbb4819aac23d5d7e710e06a737267b","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.1.1","precinct":"^6.2.0","commander":"^2.19.0","typescript":"^3.7.5","filing-cabinet":"^2.5.1"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.2.1_1582813263345_0.21584757958502188","host":"s3://npm-registry-packages"}},"7.2.2":{"name":"dependency-tree","version":"7.2.2","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@7.2.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"2366c96c0a905adfc19e9ed8dcdbfcb93476dfb5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-7.2.2.tgz","fileCount":6,"integrity":"sha512-WWZJpNuMWqEM97CGykmyKLjjUWGVGkRRMSIEBWk5izmugxmivnItg4MMHkDzuvmB/7vglhudEoc5wyMp5ODD+Q==","signatures":[{"sig":"MEYCIQD60hedVReOjzz2it0qmsk/sVZRYzirye5cPmx/OwG+pAIhAPrVOmikVDa6mlpJsh4Lwevz6x67duTRaSoe03gli50f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnv58CRA9TVsSAnZWagAAENQQAKMbBUrYRr+xXR5SLzXn\nInE7i+FUqfPS6QAS9AxKYZT0aNL/v6O8QnhheAiFQInLTVHy5QKaUSZ64DBS\n2sDG8Z4HsJlUj5ZgCWNufHkT80rK9Vv+UbUtIWVrk3YlkabVyJQ3VYFw9TOk\nK4cA5RN5fXLlVoz3gRNbuxZHMI2fbNYLMu/BuHJr/F8EXCY63D6QLJPTE6rx\nkBDenRFQ8gyT5PVEWBXaDvIK48Ax8fy+d2ts+n1Q3a1Uc0VMWTrQOW3zAAh5\neUG4H0XqkW8JxHDQLiLgjdxvMZEKbXY9URHGqcOuOdJkiPMnC2Rgq+CEoYpr\nvA5S2gs1TpCranIqGzrBC3oMdg3PUr7PU5OQTxL605KRv60/hxqsGCGNWAvB\nbivS5qBt2Vt3iU7rEgCVGTk749CFUKAEIImGLx34rObXMiiO+fwWX1anlO7L\nqqj6H+p03/9kv/ZgLAEK57ZJVQ+a7sObWYQgtczR4fjvCcG1DzeQ3x/XAenc\nTways95A5MfFMjGQo++z6Q4PXYKrQfmnY8LIBXjRv2fxOm1n71U8UCdgcys+\n/+SRGFGUvjVzR6HUTs4Pv8Mc9CxwKxcQXAbXCNcc1L7N4PNQytlJJZZq7xc8\nzlqLyZcOQaFu9QNFUFszRmIL8NTnNIXM2ViVeNLUhnUYbW40SHyeTal2BKd7\nx9bk\r\n=BwVI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0.0"},"gitHead":"973f9134695d7ae21e34cd571757b36adbbc507f","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.4.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"8.12.0","dependencies":{"debug":"^4.2.1","precinct":"^6.3.1","commander":"^2.20.3","typescript":"^3.9.7","filing-cabinet":"^2.6.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^5.0.0","sinon":"^6.1.5","rewire":"^4.0.1","mock-fs":"^4.7.0","resolve":"^1.9.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.2.3","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_7.2.2_1604255355651_0.08055276634312136","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"dependency-tree","version":"8.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@8.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"59d141bcb53ca59f54e7f7b94013820ddd49b7d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-8.0.0.tgz","fileCount":6,"integrity":"sha512-zagnV3jgizudEWY3FIFkGCrRr3+GukSMLlw1snIWAOL2beceC22hBXdeNjCnnfPZvbHIPB9DvacSCfD+IoOG3w==","signatures":[{"sig":"MEUCIQD8CwbWdfqaZX2OK6Fow+p6ua2fOo7hrjym3ZAxIyir2QIgIo1xOyvhvLuyE/kFrKR3sO5zqxibER5yj5S/gXPOaKM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18394,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf23ATCRA9TVsSAnZWagAA8SoP/330KfPDuq7qPF3MRasd\npOBATFnjJKXql1C92eZ1rdJ7t9cCqLaKyBwcJYRN3M4BeqShFsyyyXhTyDg8\nTfqm6708CnknVyQADRfKJLa+QiBm2R1zK6oqY1JGwvwjwSmtWY8wmg1tWi9H\nY9U8pnpYGd17iIDHXBtvq4xl/a4++FoYmpP+1zf7EdKuke4QXUoA5z0PqMqf\nOsejwuhqbSNwM8Kn57rjSxuUx0xQkE1uA8tZza4wVZlcur/RTcFkV1y0sPrK\nWfa+/IS1OrcAXTqF1YHuwWiz4GmqZenQ1smtblrHVx84WRL3azqBlz0lbEKp\nD0TvvzmALLcCj5wnSo5viE39V86tzQqVyyNm1oOxQNZrovjWIoQ4RSGI/mAA\nuNQ9GfNqX3i1HUfuBwOenS5VRTFGdvHJ/5KmLxx4SVqrFMq1NvFrYXASM3xa\nUPkZ7jsVk8bJeOBIatsdxiWBXW/xUzO+wwuMyeyZkI3p6gqOgiPgGT+NfjyB\nYrDR5PTPnsXtxpdLQaiqgCF1bYnAUQQIn2okSgrHudKbRUsI0eORn/vIbqgR\nG291x4R1sC1TYHrW2FkfjTfS59nD5tFDuL5ws2ni+eASA+vb1o63PLTCiDa9\nIIXaxJXvhTB9g9nkfPM7tfJkyG4cN7BCAK9YBr+G7GNt2lO04thgraqakVu4\nwLuf\r\n=gH++\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^10.13 || ^12 || >=14"},"gitHead":"a1430ea9ea1906606d86812460b0a5dd3d4a720b","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.14.9","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"14.15.2","dependencies":{"debug":"^4.3.1","precinct":"^7.0.0","commander":"^2.20.3","typescript":"^3.9.7","filing-cabinet":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","jscs":"^3.0.7","mocha":"^8.2.1","sinon":"^9.2.1","rewire":"^5.0.0","mock-fs":"^4.13.0","resolve":"^1.19.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_8.0.0_1608216595043_0.7283224327487423","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"dependency-tree","version":"8.1.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@8.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"1b896a0418bd7ba3e6d55c39bb664452a001579f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-8.1.0.tgz","fileCount":7,"integrity":"sha512-YKFK+1KXJOqVpsW6MkrIl/DyiW+KVG25V8NfRs27ANe+oSeCkQx2ROW1mBpp1bcm++5zj3Xv8wyFxHgX6TbM1w==","signatures":[{"sig":"MEUCIQDH99oVj1ABPNeYFgBJWDvwisMRgePHthv9c5PSmALNDQIgUG9ZRSkhP1r/kiL33P6Uj5s/nr8Bhh6nNriD60Z6Gzk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgewjsCRA9TVsSAnZWagAA6RsP/3VM1Nt5I1LpRD9Uslrl\n+GugtdJEYbrJ4rloAyCtMffi4/KYTCCiEDqIDFBdY374g28xEH3MnjahNfK5\n9qrQg+6m6jK2bKOZEq7wZdLslRWmMotNxB4WMDGfo9ei7gKdrpcfaEY7CMoQ\n9+iqwA0LKiIhk0cvtssQ2bxNgNMDOJHwaF0FT92fBs95hp4bCMU9sB2AKQ/A\nPh3yiXq+6kDSQ/ySulAfKy3G5vLiUgQivR2KR+glqtzlilDrcwg0/KeSTg/9\nqojKiOTC1YjJAvthkPE0s66R9c4jzxcNRS2KKyhpDXKExV3LtdWYjdkrnu8S\njYVnTwBxrL46V7OmFoEYCwFxPmvSh7fDxcE5lOM+fh9eJ5jUBAkaU39iudCh\npWbGk2Hw9nKf4J8cM07CRKNQd4XmwtDdJI6ZKvTli87bkKIiKDjhtDhMWJ0L\nmwRzOx6VSBQxRL2sEIW1zixDZqDgQ3mk9zuUocWrhD44tuMeN2DWAy75jJsT\nxdFRoW5TlTRQDbRgeUuxY++peta7xUr8ec69OoQ0XNCMpLN86GTrx0GeQF8S\n02rWobgOQaKwDg5CHef6sC3d79s9d45Mcw88dY7M2yVvmtwiuzEJ+5Jo3H7K\nU77TcQ+arzbFSellspgALJ2LGtZpqjte6+4UB2ZgLcjTuqbUE1UKUJlsUZL5\n4YqQ\r\n=xBCM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":"^10.13 || ^12 || >=14"},"gitHead":"45616c0fbecbd478df99ab88e21d9a303ca02877","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.14.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"10.23.0","dependencies":{"debug":"^4.3.1","precinct":"^7.0.0","commander":"^2.20.3","typescript":"^3.9.7","filing-cabinet":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","jscs":"^3.0.7","mocha":"^8.2.1","sinon":"^9.2.1","rewire":"^5.0.0","mock-fs":"^4.13.0","resolve":"^1.19.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_8.1.0_1618675948099_0.8400681530970402","host":"s3://npm-registry-packages"}},"8.1.1":{"name":"dependency-tree","version":"8.1.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@8.1.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"1a309f5a860b3285f7b1638c98ce48c8906ae6e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-8.1.1.tgz","fileCount":7,"integrity":"sha512-bl5U16VQpaYxD0xvcnCH/dTctCiWnsVWymh9dNjbm4T00Hm21flu1VLnNueKCj7+3uusbcJhKKKtiWrpU0I+Nw==","signatures":[{"sig":"MEQCIHr4KsPn/HFxR2ls2P8Y6H44BGYTXxgxF9/v77F2gABBAiA+gy7nsafnbJx9GWGWtsZJGHo9AjJDoTdK3fUf6cJQGw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgu5luCRA9TVsSAnZWagAAJV4P/jvO7UD4J9MpzqH6sOfw\n51xZIYyhvA8jaID8AQj3rGmCs1/emvZMGR9SZnpu8U0OdhD77rqvb6S0hWrM\n3mWRcYZHnqZh3jJdxRnwG8gixI7GBH+9sV7ANBg3HHfymAEwRQyXueP5lFzR\n00ZY8Qwnv7jfGBskpJxdaI6nJMykHx9g58SSdKxu9pkH4sSJMdQ7i0PZbR/s\nxJbatDIu9qw+YmXN3xy3tH3DECuh+RbLm0cC98WVzxCqPHanDGZJmeZfV1E5\n2omGboBYfsTq9cxpDB7UgB2v7sWI1E3UEXDPTdNX0jXho+n2Avmu0vniIvKv\nBLd+iia2k0apltR7pcy1auPfR6DyfeHzpkG7x+w6ubAVLEklEtj5PJy0ek0c\nI4vt/lnRwgm6RRAbspzkJyRAcAQ2+cAbJKkji0+uXZ5CafbTC16h90QfDq01\nCe/7rK45IwoKidvyyrWIVyiYHm/Ps7YyEckEkdy7TiXnQU+HIxjPC5WNP3c6\n4TJ7zgZAmul0wXslF1fdjxJAju+DSHcrNShE3nKMJm6Oj0BRrp1Eyan28RX/\nWOyytMUVbr8FKlBqD4qA/+T0sznWHXUt+F7m1Btb3jVAMqa+zab4w351PkWH\nqci9s5JoPqoQErstM/kLH3rV6HegYQLyHSi3ALbXUHl781Pvmh0ys+VKMZmM\n5DZ2\r\n=mHKU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":"^10.13 || ^12 || >=14"},"gitHead":"15618513bc57ab4bcb26cb9993cf925f974a5d0d","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.14.8","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"10.23.0","dependencies":{"debug":"^4.3.1","precinct":"^8.0.0","commander":"^2.20.3","typescript":"^3.9.7","filing-cabinet":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","jscs":"^3.0.7","mocha":"^8.2.1","sinon":"^9.2.1","rewire":"^5.0.0","mock-fs":"^4.13.0","resolve":"^1.19.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_8.1.1_1622907245915_0.93871620748516","host":"s3://npm-registry-packages"}},"8.1.2":{"name":"dependency-tree","version":"8.1.2","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@8.1.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"c9e652984f53bd0239bc8a3e50cbd52f05b2e770","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-8.1.2.tgz","fileCount":7,"integrity":"sha512-c4CL1IKxkKng0oT5xrg4uNiiMVFqTGOXqHSFx7XEFdgSsp6nw3AGGruICppzJUrfad/r7GLqt26rmWU4h4j39A==","signatures":[{"sig":"MEUCIQDT9F5OHBQFHzlLX+edhOnwxl7m2vegLn+VZOpSHRE9hAIgF8sW38ZPUEYz9UGgAmBa0/9YViDGACMdZNFRkGEmOss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2oEQCRA9TVsSAnZWagAAyMAP/0srNPmFQ3MnmXkACNKo\nUyzAGbaJFKEWUzTP6BBb5Y/SOx9N7sO54x2/paApGcOADXGNtInHrW1O5xia\n5q2npGGw3drZczfLkuUF3L4ypSh3g+BEf4hmGGfoBQHF8LWuQOp7/g1L0mvc\nwo46G5qxnSvkQu6VD6STGYZ2gET3Hgf4jdiYWBxWJ5racG+9mulajPAiX0w0\nqar9/KOaxFIqmmwDI2uW91cdcSK5DQcsujKMQ1onLFP9Iu5CUqT4sDw5lsfU\nRiCN9VSAh7Cwa4bx7zF7xDg/CpuheDfw2ZWzfO+j7WZ+BYrJXON3h2lD6k+n\n3+y0NSgyuL2bSN2EfDjl6zWOfHHUEjd32TTJ7VzXMj/eTUklfF52CMY2SM/8\nqgkfj0KfU4czRqK81ScUcx6pJz4nYla1Fm0Dx7t3zSLliSvwXTS3uiYVRzsY\nMp6MIxE9PE3INQesTLSU3Y3C6gax+ldyREEH5TkxiurICWxWCHtq8FauAKI6\nGtlXtM+hoCltK0N0gcXxg9wObwju40haorL9dTKGzB3f2zM2xJ9+swbpQC1j\nB3vv0NkpZologzDC7ZEtH31XNED1ptO4Tpflw8qf7uL8RJPbJE8B69yDpqmb\nDhwHEnTPT1H6lMmXMFL+/QHrhFFkHbRT7koaVEWFf9f0vwexXOt/Q4o+eDdL\nmRow\r\n=LOj0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":"^10.13 || ^12 || >=14"},"gitHead":"9337686fc087a9c1063f9869a5fba1214475ae4f","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"6.14.13","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"14.17.1","dependencies":{"debug":"^4.3.1","precinct":"^8.0.0","commander":"^2.20.3","typescript":"^3.9.7","filing-cabinet":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","jscs":"^3.0.7","mocha":"^8.2.1","sinon":"^9.2.1","rewire":"^5.0.0","mock-fs":"^4.13.0","resolve":"^1.19.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_8.1.2_1633655479375_0.4958175247836192","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"dependency-tree","version":"9.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@9.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/mrjoelkemp/node-dependency-tree","bugs":{"url":"https://github.com/mrjoelkemp/node-dependency-tree/issues"},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"9288dd6daf35f6510c1ea30d9894b75369aa50a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-9.0.0.tgz","fileCount":7,"integrity":"sha512-osYHZJ1fBSon3lNLw70amAXsQ+RGzXsPvk9HbBgTLbp/bQBmpH5mOmsUvqXU+YEWVU0ZLewsmzOET/8jWswjDQ==","signatures":[{"sig":"MEYCIQDRjPcUjOWCLIkTzv58Gebj2x18stzyRV+6T/HcHb2LogIhAPlhGiVe1yKAHyJdB4N9QJOoI/5LE6meOeThpzba0TQd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjpIVyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2EA//Tu1IKRjlNziWXAHeqHzG0YiVCTKu8mL3hq2K/c/1kjhxvwB+\r\n9Dn5GtjMwy2mu+qCvZtUWoj2qShmKfYB+5GDhsYRCksBx7B3WwTN6BR5TH7R\r\n+eSD1ROg4sTEHCchAYvsU3xRczKvQSsSS4MI6U9vby674RpORgoqFwFWpZ5m\r\neryUEGVgfmS72wrT6eJ3Hge7nOqYYqxExiZKkz8Nsonh8/HzvZcP7P/PvhJr\r\nea006kF9E8xI67UX6BlCrsC+k0rAChhZyCHoUnxLjJdaW0MHUKObx7JcvCwo\r\n5Nz9Kk0WuqDnwwXsC3U1SvqLEx6KQU1FUAFDabe2CsVvgwLmPy/oFV770T0Q\r\nWSccuBKndxTNOPklDn4d2FMXtBONWYluh4qrsU7hvEkHUAbtAgruPBjaW2Qv\r\neRtfLmg+3/Ln9/r/YyIJh5icW+O23OyOWlWI3HHV3B0rP09H6tc4jMoDYnJp\r\nJCkOCXA62nY2aQK/RyEOoYrEUgpL3NY8+ZdpqkW49XPeIM3nXlxY+K25ZdO4\r\nD1zV1S3F3TNOPwv5wM0ESW1p50iWdYn8XZV4TQ0NNwgjflv06eNUBFrSZnBX\r\nZnQYMosPO/bSTZeStWZjMQuYUksLB/IQpNMJbNJD2XV7QcbdVK/IqWxFXATl\r\nxt8AQtq78ekFQJWDTDjMSnl4VptPpoxI3ok=\r\n=bUGY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":"^10.13 || ^12 || >=14"},"gitHead":"6358873a2ccc735d2f1dff1fe3e6acb1ca1bd8e6","scripts":{"test":"jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"},"_npmUser":{"name":"anonymous","email":"mrjoelkemp@gmail.com"},"repository":{"url":"git+ssh://git@github.com/mrjoelkemp/node-dependency-tree.git","type":"git"},"_npmVersion":"8.8.0","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.1.0","dependencies":{"debug":"^4.3.1","precinct":"^9.0.0","commander":"^2.20.3","typescript":"^4.0.0","filing-cabinet":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","jscs":"^3.0.7","mocha":"^8.2.1","sinon":"^9.2.1","rewire":"^5.0.0","mock-fs":"^4.13.0","resolve":"^1.19.0","jscs-preset-mrjoelkemp":"~2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_9.0.0_1671726450292_0.9576258229056724","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"dependency-tree","version":"10.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"3f8c70b5bce98778f53d165346fce8f48f32376c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.0.tgz","fileCount":5,"integrity":"sha512-RAKNykuyAHgv1MDK2Un4fb4sNG2tooZwpURcMG6SGa75ppxAtahr9k8Y5QHH/kvSxAopIzv/Pq1b2fnPJN1Mmg==","signatures":[{"sig":"MEUCIQCLcEwEy5XNbQMjkUwQuSLtE3XY9ibND1pTUN4VdI+HswIgSEy/oEVNNhXEhub6XpqsFRdEsbsfEMXAWFkOe2a5glU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkVK4jACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqOGQ//cpdwHb/RXWQwVLuP6HLAc7BXVlWFQ7hcZybPWnY+VcTGU1Yy\r\n+8H8H9uUNn+602vgyx14h6c0ODgXLr3ZVxvj+DKoBVGDRNGC2jVR6enLOEmx\r\n8tgUpSK/8XJzSgT49jm0lxF5ABbPYw3UjPvOJFg4Ka9XdNKC70rywI2jn4NM\r\n/Xv+LQ6dJyrpyCq64fJf8Yl3q5ZY56RVipXqri5N/O14XCjtCEefZ+vrzWid\r\nrHFPh32+lhvDXhoJDbFZzzv9ZRTTLWVdlNjA6pmD7Vza3SVFHCbO9bg90lEL\r\nt7Tp36E0KF3Qb0x/hYD6YCiE48c+EdhYkjdodWJjni9VCIfm4Sl9cNMesSx3\r\n0iwXjBXWWUTjvQ12B+Dv4Q7a1UDQ1AZrQ/dwJOydfbG3PJ3eR4ZlVh48sdvC\r\nl5alW5Izxxa6YGCjiTdv4A462KJknXUS8hdS6w5gd934CG47TR1EOpHnrazt\r\nJz1Fz7nQykLsERE6mY5O135h4VssnEzKMgcywq0Y6ysdNktswfVjrmcAxhCS\r\naZbwY4QlgKWCfIAdztcG3JWiW9UnBzCmP/M9nik/07nonUPkBjMuDhQk0nCN\r\n5oBYI804QgtFqmIz/TbGbxD+1uSFdaAQ5/j3Ebor+w9ULLHwSoxTJ8kpWxqJ\r\n0S4pvI8IvF/Xtgp1B6ebhlbXaYXH93t4V0M=\r\n=W0DN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"16fa3cb7aa5d5ddd116e34a6955f190d769cab9e","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.0","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.0_1683271203188_0.2716099032879198","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"dependency-tree","version":"10.0.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"79a6c52b8383309c30423310be2bb7fe6ac11e2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.1.tgz","fileCount":6,"integrity":"sha512-x30g73ClKct6tSBsGYZwcWcLDCEaXGQLzasYJXqLkQriTY3+sSIGunJyu2/HjQCD8gxg5b1Od4DkmS+GoTNGbg==","signatures":[{"sig":"MEQCIFeJOlKo4z2iVNtAE/M0I9HxRg7FGq2sITlQtScxD0S3AiBH4Gmi+sh5QJC0mbhRATpgo8j/+ezalQLcDrjKuAAcbg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20201},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"37b519daaef890ddadee0e71ff9213f5598fb3a2","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.0","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.1_1683383989530_0.346286329337234","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"dependency-tree","version":"10.0.2","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"49bd6db0e965b83ad59485e36a1b46ab9c99f368","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.2.tgz","fileCount":6,"integrity":"sha512-FVNE5Vy46NkvAG+rl3A/Vn1C4ZQSeXuUASPih84YC7NTggEMhc71kNVZbB+RUUl7mumhVoNu8yjeTYoL/cAYPA==","signatures":[{"sig":"MEUCIQDiR/K96ZF9VuTV2C4i/6E/BViHKEVZZN90Etul4k+vqwIgKyKzCUBdCZ4w3VziXMssgrW/6PqU257/YRxUhcsLV8E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20201},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"3d5c343540d359bf9dd3f2f7592304be163140b2","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.0","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.2_1683438838766_0.35912693347938895","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"dependency-tree","version":"10.0.3","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.3","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"7fb99d707c24aacaef47ff92cddd104999636d05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.3.tgz","fileCount":7,"integrity":"sha512-RoDew8bJHMzC1IKKWaSfnUvtW3diFDYz1ByI3pbY/uF96PrJlGMgIIUCMr6R94NBlSlshy8A7QI6/J4Ri989+A==","signatures":[{"sig":"MEQCIDubGvZ9Nu6ghT71nkmfy0tOtD0ryD3rd2EqzQwI9o2FAiAHNU47kT5I0ca98TEMdXN4/pmY7LZhJ288Z0YTX/V+Yw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21043},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"c23a06aec305236633980c8f7a67efba98f1bd70","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.0","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.3_1683457861334_0.18729627175129537","host":"s3://npm-registry-packages"}},"10.0.4":{"name":"dependency-tree","version":"10.0.4","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.4","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"a5ede632100dd9546bbf995d1cd476789486f5ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.4.tgz","fileCount":7,"integrity":"sha512-9POrumDL5sz5ZC5vbsaC3A13RxRNZOKRBTsWm4hG0ynv153aROisXCfnEsLY0nuestmPYUqWdPmGSkZfxq/2PQ==","signatures":[{"sig":"MEQCIF3OWWNx1GESq4Q8c1GQcmxqd0lXjrj8jtgWA+b3BqLqAiAzgPBi5/FkCs+f8B3XuMzNAqBTRtwR3yVb/fL/MJyRFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20859},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"338cc0ff90966191078f8a1d432357d4d2538d0a","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.1","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.3"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.4_1683484175555_0.4190623634987318","host":"s3://npm-registry-packages"}},"10.0.5":{"name":"dependency-tree","version":"10.0.5","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.5","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"97fd219491bb70b17ad14538f19a2a85d626960d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.5.tgz","fileCount":7,"integrity":"sha512-3ddLU0rI7kc65/b4vskkNLCa/ol/MSc5GuJq7Nhi1a9yXQ36NcP0yToj6wqtDhM0/arVCfTmnYXmXPTvrZwX0A==","signatures":[{"sig":"MEUCICWKM3/pc/JWl9ir/hKIZDRNfKw0a5ZBCxTe6DmHCH44AiEAyVKtHtjv3fyJkjQxWnbLPVvNYQEtkd7JE2mcYRZUj+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20859},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"3b42322ae1e996ca798617f6c9d95c99dcb7f3d0","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.2","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.3"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.5_1683555452652_0.06362152218441564","host":"s3://npm-registry-packages"}},"10.0.6":{"name":"dependency-tree","version":"10.0.6","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.6","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"08657228dd1be7413371fd010e8a0cc321a1bbed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.6.tgz","fileCount":7,"integrity":"sha512-BYyqfkfIgv8tnJNZbSd1SZJlvu+SeMvSfthRkJERIs9bRxBfINBUbgX7xTlOKCGcipYAmhZjZws1HoUf5cd7RA==","signatures":[{"sig":"MEQCIHu+Ar9h0SsBib1tMEQtyZLJchh054Qdku/8znrqTkKLAiA2P6H2MPTZCTEh6ldIW9GRYDpBJq0dzrQsPUqhwxRbtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20859},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"290c357bfff98fea1a5f7410eb8394ccecf7a0c5","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.3","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.4"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.6_1683904411104_0.7215122774895333","host":"s3://npm-registry-packages"}},"10.0.7":{"name":"dependency-tree","version":"10.0.7","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.7","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"ed14e80b7580c1b423dae69289b3b1b8611d27e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.7.tgz","fileCount":7,"integrity":"sha512-8jI7jSoWqc7pZI72qAGkHeKADLNgXuqDKRSmtPB9yafcY5ixUy49XNzfzn4NAAukMBuXql+fIJUVpGAIbUrkEQ==","signatures":[{"sig":"MEYCIQCWPRL4QICnxRDKm12M8ApgLqwoDhAwboB4tTvU6kGqxgIhANwHJLuvFueRBOSq3c67G4Lb4l41Yjz3ERSWwkwunivU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20859},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"c9ee24e9f265c4c20c5140180e9788019d7ffee1","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.4","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.5"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.0.4","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.7_1683978763595_0.906548004606617","host":"s3://npm-registry-packages"}},"10.0.8":{"name":"dependency-tree","version":"10.0.8","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.8","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"58d27985e500b1658fb2cc42d7cacbf88d1cd1f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.8.tgz","fileCount":7,"integrity":"sha512-hdc2yHGeqoH5gRZW5y+0pY9LVlP5LXLupfp3O4eS8LESsVezxBPm/iWa+ukur8oaUmlIB7IL+iK9A/O6G6k6og==","signatures":[{"sig":"MEUCIQCcC0p8ZsbF37S+nyiqjjOn3ZW6Kh5I10oJn72nkOZqEwIgXlFyjplL6g19B3E2OCRUgdfdxE0/5oc+4BG89kU8WUk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20860},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"19f9ccff362e582ea1db70666bf70dd13e7ddd4a","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.5","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.6"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.1.0","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.8_1684992710847_0.1294309666301341","host":"s3://npm-registry-packages"}},"10.0.9":{"name":"dependency-tree","version":"10.0.9","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@10.0.9","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"0c6c0dbeb0c5ec2cf83bf755f30e9cb12e7b4ac7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-10.0.9.tgz","fileCount":7,"integrity":"sha512-dwc59FRIsht+HfnTVM0BCjJaEWxdq2YAvEDy4/Hn6CwS3CBWMtFnL3aZGAkQn3XCYxk/YcTDE4jX2Q7bFTwCjA==","signatures":[{"sig":"MEUCIQCjaLMtjrglgd0W3J+2jiuR78TAukfTceClaKiwcvKAMwIgMntcGLyAZcVlhiEZHxEWOKfifIw+2ITr8T+2v5eJBsc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20922},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"ff486aec5c596460a2cdeac9cef61d3569bfab14","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"9.5.1","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"18.16.0","dependencies":{"precinct":"^11.0.5","commander":"^10.0.1","typescript":"^5.0.4","filing-cabinet":"^4.1.6"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","debug":"^4.3.4","mocha":"^10.2.0","sinon":"^15.1.0","mock-fs":"^5.2.0","resolve":"^1.22.3"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_10.0.9_1685187947059_0.42846544925334107","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"dependency-tree","version":"11.0.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"297dde95f10d7d9aecfbfeddd3c4405594b958ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.0.0.tgz","fileCount":7,"integrity":"sha512-MHIa2ahQO++7VcLSDfeRqfZg236LDCc++OvXCHXbvRDix8kJc0TYbHzMux35XJZe8xkMA9njgnxmD+BkdishRQ==","signatures":[{"sig":"MEUCIEQc759cng1l/hpWGWmAQ453eKuxw9BAOPgYTnlCi+EIAiEA2WuB+KGbU4kC8u0dPMqEnoQpgppmf/yDHGSZNGaus2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21024},"main":"index.js","types":"index.d.ts","engines":{"node":">=14"},"gitHead":"4fa218f54df9ed23301ef9b778e2433baa9e4f6f","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.2.4","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"20.11.1","dependencies":{"precinct":"^12.0.2","commander":"^12.0.0","typescript":"^5.4.5","filing-cabinet":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^9.1.0","xo":"^0.58.0","debug":"^4.3.4","mocha":"^10.4.0","sinon":"^17.0.1","mock-fs":"^5.2.0","resolve":"^1.22.8"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.0.0_1713096422443_0.5561261925517289","host":"s3://npm-registry-packages"}},"11.0.1":{"name":"dependency-tree","version":"11.0.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"319c27652655f0ff63dc90809322156e90aa2a55","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.0.1.tgz","fileCount":7,"integrity":"sha512-eCt7HSKIC9NxgIykG2DRq3Aewn9UhVS14MB3rEn6l/AsEI1FBg6ZGSlCU0SZ6Tjm2kkhj6/8c2pViinuyKELhg==","signatures":[{"sig":"MEUCIE0GaSsj1VdIA9r4Z4QmfGEgc1gt8cfemc27MgBe6lPRAiEA7GTvfOv1EtRYnYIvpBcv+e9rd315P+UtJxoi9mGbbCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21024},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"b699b67d6a357220300e0681594a0bf6be98ce6f","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.2.4","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"20.11.1","dependencies":{"precinct":"^12.0.2","commander":"^12.0.0","typescript":"^5.4.5","filing-cabinet":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^9.1.0","xo":"^0.58.0","debug":"^4.3.4","mocha":"^10.4.0","sinon":"^17.0.1","mock-fs":"^5.2.0","resolve":"^1.22.8"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.0.1_1713638640470_0.38554736937338974","host":"s3://npm-registry-packages"}},"11.0.2":{"name":"dependency-tree","version":"11.0.2","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off","unicorn/no-anonymous-default-export":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"8840dc3668a2803282384e727e0ae53f0cc42aad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.0.2.tgz","fileCount":7,"integrity":"sha512-eQPTn16WpphktLNvG/h0vQyKCCDpR4x6wYdQOM1aJBiCqWzCRYV7Yr9F7pv/o0DcMpamazd5hE+B2RvITXeNaw==","signatures":[{"sig":"MEYCIQCRmWK7praVn233mgdbuFB/9CiHIhQePTDcfTwEFoK4ogIhAOLcBnU5BIux52rQ/eEI2AIckWV04oaDpHJrI/XF3QC/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":21078},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"4f67af2908d706f6b823150cf4c30424fa7670b6","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.8.2","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"20.18.2","dependencies":{"precinct":"^12.1.3","commander":"^12.1.0","typescript":"^5.7.3","filing-cabinet":"^5.0.2"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^0.60.0","debug":"^4.4.0","mocha":"^11.1.0","sinon":"^19.0.2","mock-fs":"^5.4.1","resolve":"^1.22.10"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.0.2_1738416585831_0.01842492843755794","host":"s3://npm-registry-packages-npm-production"}},"11.1.0":{"name":"dependency-tree","version":"11.1.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off","unicorn/no-anonymous-default-export":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"910490f397fa936a95da072c64a5ccf136a0a588","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.1.0.tgz","fileCount":7,"integrity":"sha512-Qu3zvy2JrcSFtvB1gf1iVnbm+PWoVtTKxgs5Lc6+QCs8FPkxe8ezAVnp8O6a2/qMg0yrVNdy2f7oV4DsVUJdUA==","signatures":[{"sig":"MEQCIHAK7pCTwLHyk3oDarDGA2L7kaIITOWQQynxZntdwxgsAiB5ReyVY0P3qf5GiwMQrAwtkK4McBddY4PGtAua9IecfQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":21078},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"f4f3844ca504ff148ec2c32d7b79c996dbd10ad8","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.8.2","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"20.18.2","dependencies":{"precinct":"^12.2.0","commander":"^12.1.0","typescript":"^5.7.3","filing-cabinet":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^0.60.0","debug":"^4.4.0","mocha":"^11.1.0","sinon":"^19.0.2","mock-fs":"^5.4.1","resolve":"^1.22.10"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.1.0_1738859795035_0.9967436080594905","host":"s3://npm-registry-packages-npm-production"}},"11.1.1":{"name":"dependency-tree","version":"11.1.1","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.1.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off","unicorn/no-anonymous-default-export":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"5ab5fbb223fb32a9b03ed40952eb04bf09929ad6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.1.1.tgz","fileCount":7,"integrity":"sha512-pnkCd8VGOq70EVaEQxDC9mZCjCwYj4yG4j8h+PEJswuWp+rdE6p8zbtVvWk+yPwaVimOjlhNi782U9K5KOU9MQ==","signatures":[{"sig":"MEYCIQCWRSQtckR6ClGcg0qXrIJlgPizsWOP5m62dZHLASPJUwIhAKJ0C0NnV0lPfT8c4MeBSY6sL+6HdTwwo2YbB8s3x65T","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":21580},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"8b6ad1b1fdedcc94da0999537391b4e4c0301139","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.8.2","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"20.18.2","dependencies":{"precinct":"^12.2.0","commander":"^12.1.0","typescript":"^5.7.3","filing-cabinet":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^0.60.0","debug":"^4.4.0","mocha":"^11.1.0","sinon":"^19.0.2","mock-fs":"^5.4.1","resolve":"^1.22.10"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.1.1_1738906360148_0.1046449409057435","host":"s3://npm-registry-packages-npm-production"}},"11.2.0":{"name":"dependency-tree","version":"11.2.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off","unicorn/no-anonymous-default-export":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"ae764155b2903267181def4b20be49b1fd76da5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.2.0.tgz","fileCount":7,"integrity":"sha512-+C1H3mXhcvMCeu5i2Jpg9dc0N29TWTuT6vJD7mHLAfVmAbo9zW8NlkvQ1tYd3PDMab0IRQM0ccoyX68EZtx9xw==","signatures":[{"sig":"MEYCIQC2lP4/8/Stb91U6m9knP7t6wM5m91cu8Y1jjzuvyh01wIhAOO/uTjqA/B7xhi8o+NuoJBxd2YtrO6ivaPb8yzksLXi","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22537},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"f28da920f23aa90c4c076f74a7419b4c82841622","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","actor":{"name":"xhmikosr","type":"user","email":"xhmikosr@gmail.com"},"email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"10.9.2","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"22.16.0","dependencies":{"precinct":"^12.2.0","commander":"^12.1.0","typescript":"^5.8.3","filing-cabinet":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^0.60.0","debug":"^4.4.1","mocha":"^11.7.0","sinon":"^19.0.5","mock-fs":"^5.5.0","resolve":"^1.22.10"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.2.0_1750316014602_0.71767036848565","host":"s3://npm-registry-packages-npm-production"}},"11.3.0":{"name":"dependency-tree","version":"11.3.0","keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"dependency-tree@11.3.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-dependency-tree","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"xo":{"rules":{"curly":["error","multi-line"],"camelcase":["error",{"properties":"never"}],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off","unicorn/no-anonymous-default-export":"off"},"space":true,"ignores":["index.d.ts","test/fixtures/*"]},"bin":{"dependency-tree":"bin/cli.js"},"dist":{"shasum":"515a4e2478dc4a2b1c431bdbb1b052b7963fff7d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.3.0.tgz","fileCount":7,"integrity":"sha512-T893F3p48rblazo45S/5jkFEvU8mzZ8obtNSyP2S1QCA8e9PpVH+hIakHnQYdnhitwQ8wo9btYJpQxnjiGm0Qg==","signatures":[{"sig":"MEQCIEB0bNC0IvlIfpu8hIi6oJDTYZpqOSv6XoECtili3EopAiA19sb3n+GK2c8RqDW6id0C0De0FreZ8245VyQd6xMZSw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22537},"main":"index.js","types":"index.d.ts","engines":{"node":">=18"},"gitHead":"0d815abefd0b930cdcd85346a35215f260d046ef","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-dependency-tree.git","type":"git"},"_npmVersion":"11.6.2","description":"Get the dependency tree of a module","directories":{},"_nodeVersion":"24.13.0","dependencies":{"precinct":"^12.2.0","commander":"^12.1.0","typescript":"^5.9.3","filing-cabinet":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^0.60.0","debug":"^4.4.3","mocha":"^11.7.5","sinon":"^19.0.5","mock-fs":"^5.5.0","resolve":"^1.22.11"},"_npmOperationalInternal":{"tmp":"tmp/dependency-tree_11.3.0_1770617714594_0.6866655844717837","host":"s3://npm-registry-packages-npm-production"}},"11.4.0":{"name":"dependency-tree","version":"11.4.0","description":"Get the dependency tree of a module","main":"index.js","types":"index.d.ts","bin":{"dependency-tree":"bin/cli.js"},"scripts":{"lint":"xo","fix":"xo --fix","mocha":"mocha","test":"npm run lint && npm run mocha","test:ci":"c8 npm run mocha"},"repository":{"type":"git","url":"git+https://github.com/dependents/node-dependency-tree.git"},"keywords":["dependency","tree","graph","module","ast","requirejs","AMD","commonjs","es6","sass","stylus","less","typescript"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","bugs":{"url":"https://github.com/dependents/node-dependency-tree/issues"},"homepage":"https://github.com/dependents/node-dependency-tree","engines":{"node":">=18"},"dependencies":{"commander":"^12.1.0","filing-cabinet":"^5.2.0","precinct":"^12.2.0","typescript":"^5.9.3"},"devDependencies":{"c8":"^10.1.3","debug":"^4.4.3","mocha":"^11.7.5","mock-fs":"^5.5.0","resolve":"^1.22.11","sinon":"^19.0.5","xo":"^0.60.0"},"xo":{"space":true,"ignores":["index.d.ts","test/fixtures/*"],"rules":{"arrow-body-style":"off","camelcase":["error",{"properties":"never"}],"capitalized-comments":"off","comma-dangle":["error","never"],"curly":["error","multi-line"],"operator-linebreak":["error","after"],"object-curly-spacing":["error","always"],"prefer-template":"error","space-before-function-paren":["error","never"],"unicorn/no-anonymous-default-export":"off","unicorn/prefer-module":"off","unicorn/prefer-top-level-await":"off","unicorn/prevent-abbreviations":"off"}},"gitHead":"12632150d2c0f5301192f6a55ddbb0cd7290aeca","_id":"dependency-tree@11.4.0","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-r4wZ1pfv8eQrnoWbIGdrJTVmlb0dkXdwBjKsotKO4gmfqrOsAMG+0+cfA5EZ3NO8umc85twXOl1eO27E5pjTzw==","shasum":"5ad4db1e8a0285f6129d5ef65f50b5194cb9dfc2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/dependency-tree/-/dependency-tree-11.4.0.tgz","fileCount":7,"unpackedSize":22537,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHpO5g+6+XJyjoF3B+75dnMIDoSffqNF+PDMnNdDJChrAiEAjBODWInDh5h/3o2Gpy4tME2m4/NIoeV6bE8pnOYH2b8="}]},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/dependency-tree_11.4.0_1772299954492_0.8071326785211372"},"_hasShrinkwrap":false}},"name":"dependency-tree","time":{"created":"2014-07-18T18:06:29.215Z","modified":"2026-02-28T17:32:35.061Z","0.0.0":"2014-07-18T18:06:29.215Z","1.0.0":"2014-07-18T21:03:36.742Z","1.1.0":"2014-07-18T23:23:04.712Z","1.1.1":"2014-10-07T16:16:14.778Z","1.2.0":"2014-11-24T18:16:03.798Z","1.3.0":"2014-11-25T17:24:40.654Z","1.3.1":"2014-11-25T19:23:40.922Z","1.3.2":"2014-11-26T19:40:10.043Z","1.3.3":"2014-11-26T21:01:06.064Z","1.3.4":"2014-12-24T07:02:15.979Z","1.3.5":"2014-12-24T15:52:23.095Z","2.0.0":"2014-12-24T16:43:04.498Z","2.0.1":"2014-12-24T16:51:47.853Z","3.0.0":"2015-02-24T18:45:04.875Z","3.1.0":"2015-06-29T19:22:27.600Z","3.1.1":"2015-07-04T16:16:21.692Z","4.0.0":"2015-10-01T11:12:13.256Z","5.0.0":"2016-04-28T10:55:12.643Z","5.1.0":"2016-05-11T19:54:50.140Z","5.2.0":"2016-06-03T20:06:17.120Z","5.3.0":"2016-06-19T04:00:22.291Z","5.4.0":"2016-07-05T01:18:02.258Z","5.4.1":"2016-07-14T12:36:02.328Z","5.5.0":"2016-08-16T01:51:20.758Z","5.5.1":"2016-08-31T05:02:23.332Z","5.5.2":"2016-09-02T02:34:07.947Z","5.5.3":"2016-09-03T03:03:05.322Z","5.6.0":"2016-09-08T02:36:13.987Z","5.6.1":"2016-09-08T03:11:06.730Z","5.7.0":"2016-10-01T02:16:48.465Z","5.7.1":"2016-10-03T02:56:57.307Z","5.7.2":"2016-12-30T21:22:33.007Z","5.7.3":"2016-12-31T04:30:50.406Z","5.7.4":"2016-12-31T04:52:36.441Z","5.7.5":"2017-01-04T13:38:23.895Z","5.7.6":"2017-01-08T20:47:19.076Z","5.8.0":"2017-02-04T19:57:12.332Z","5.9.0":"2017-02-11T18:19:12.407Z","5.9.1":"2017-04-19T12:10:54.957Z","5.10.0":"2017-08-26T17:10:29.730Z","5.10.1":"2017-08-26T17:36:41.381Z","5.11.0":"2017-08-27T22:52:23.963Z","5.11.1":"2017-09-30T01:55:28.498Z","5.12.0":"2017-11-07T12:14:05.516Z","6.0.0":"2018-01-19T12:52:43.594Z","6.0.1":"2018-03-04T22:43:57.242Z","6.1.0":"2018-04-14T15:28:39.815Z","6.1.1":"2018-07-08T15:30:28.707Z","6.2.0":"2018-09-21T02:42:09.902Z","6.2.1":"2018-09-21T02:46:06.150Z","6.3.0":"2018-11-19T19:17:11.891Z","6.4.0":"2018-12-24T16:16:47.242Z","6.4.1":"2019-01-04T02:52:52.264Z","6.5.0":"2019-01-04T02:56:15.038Z","7.0.0":"2019-01-05T16:42:38.469Z","7.0.1":"2019-01-17T01:51:40.861Z","7.0.2":"2019-01-17T02:02:43.226Z","7.1.0":"2019-11-23T21:00:05.731Z","7.2.0":"2019-11-29T13:48:21.780Z","7.2.1":"2020-02-27T14:21:03.503Z","7.2.2":"2020-11-01T18:29:15.778Z","8.0.0":"2020-12-17T14:49:55.168Z","8.1.0":"2021-04-17T16:12:28.257Z","8.1.1":"2021-06-05T15:34:06.055Z","8.1.2":"2021-10-08T01:11:19.507Z","9.0.0":"2022-12-22T16:27:30.445Z","10.0.0":"2023-05-05T07:20:03.390Z","10.0.1":"2023-05-06T14:39:49.722Z","10.0.2":"2023-05-07T05:53:58.945Z","10.0.3":"2023-05-07T11:11:01.501Z","10.0.4":"2023-05-07T18:29:35.736Z","10.0.5":"2023-05-08T14:17:32.876Z","10.0.6":"2023-05-12T15:13:31.258Z","10.0.7":"2023-05-13T11:52:43.776Z","10.0.8":"2023-05-25T05:31:51.071Z","10.0.9":"2023-05-27T11:45:47.218Z","11.0.0":"2024-04-14T12:07:02.635Z","11.0.1":"2024-04-20T18:44:00.649Z","11.0.2":"2025-02-01T13:29:46.034Z","11.1.0":"2025-02-06T16:36:35.251Z","11.1.1":"2025-02-07T05:32:40.306Z","11.2.0":"2025-06-19T06:53:34.770Z","11.3.0":"2026-02-09T06:15:14.740Z","11.4.0":"2026-02-28T17:32:34.633Z"},"readmeFilename":"README.md","homepage":"https://github.com/dependents/node-dependency-tree"}