{"maintainers":[{"email":"feross@feross.org","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"thlorenz10@gmail.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"blackhole@livebox.sh","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"javascript@yosh.is","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"shtylman@gmail.com","name":"anonymous"},{"email":"lukechilds123@gmail.com","name":"anonymous"},{"email":"raynos2@gmail.com","name":"anonymous"}],"keywords":["dependency","graph","browser","require","module","exports","json"],"dist-tags":{"latest":"6.2.3"},"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"description":"walk the dependency graph to generate json output that can be fed into browser-pack","readme":"# module-deps\n\nwalk the dependency graph to generate json output that can be fed into\n[browser-pack](https://github.com/browserify/browser-pack)\n\n[![build status](https://secure.travis-ci.org/browserify/module-deps.png)](http://travis-ci.org/browserify/module-deps)\n\n# example\n\n``` js\nvar mdeps = require('module-deps');\nvar JSONStream = require('JSONStream');\n\nvar md = mdeps();\nmd.pipe(JSONStream.stringify()).pipe(process.stdout);\nmd.end({ file: __dirname + '/files/main.js' });\n```\n\noutput:\n\n```json\n$ node example/deps.js\n[\n{\"id\":\"/home/substack/projects/module-deps/example/files/main.js\",\"source\":\"var foo = require('./foo');\\nconsole.log('main: ' + foo(5));\\n\",\"entry\":true,\"deps\":{\"./foo\":\"/home/substack/projects/module-deps/example/files/foo.js\"}}\n,\n{\"id\":\"/home/substack/projects/module-deps/example/files/foo.js\",\"source\":\"var bar = require('./bar');\\n\\nmodule.exports = function (n) {\\n    return n * 111 + bar(n);\\n};\\n\",\"deps\":{\"./bar\":\"/home/substack/projects/module-deps/example/files/bar.js\"}}\n,\n{\"id\":\"/home/substack/projects/module-deps/example/files/bar.js\",\"source\":\"module.exports = function (n) {\\n    return n * 100;\\n};\\n\",\"deps\":{}}\n]\n```\n\nand you can feed this json data into\n[browser-pack](https://github.com/browserify/browser-pack):\n\n```bash\n$ node example/deps.js | browser-pack | node\nmain: 1055\n```\n\n# usage\n\n```\nusage: module-deps [files]\n\n  generate json output from each entry file\n\n```\n\n# methods\n\n``` js\nvar mdeps = require('module-deps')\n```\n\n## var d = mdeps(opts={})\n\nReturn an object transform stream `d` that expects entry filenames or\n`{ id: ..., file: ... }` objects as input and produces objects for every\ndependency from a recursive module traversal as output.\n\nEach file in `files` can be a string filename or a stream.\n\nOptionally pass in some `opts`:\n\n* `opts.transform` - a string or array of string transforms (see below)\n\n* `opts.transformKey` - an array path of strings showing where to look in the\npackage.json for source transformations. If falsy, don't look at the\npackage.json at all.\n\n* `opts.resolve` - custom resolve function using the\n`opts.resolve(id, parent, cb)` signature that\n[browser-resolve](https://github.com/shtylman/node-browser-resolve) has\n\n* `opts.detect` - a custom dependency detection function. `opts.detect(source)`\nshould return an array of dependency module names. By default\n[detective](https://github.com/browserify/detective) is used.\n\n* `opts.filter` - a function (id) to skip resolution of some module `id` strings.\nIf defined, `opts.filter(id)` should return truthy for all the ids to include\nand falsey for all the ids to skip.\n\n* `opts.postFilter` - a function (id, file, pkg) that gets called after `id` has\nbeen resolved. Return false to skip this file.\n\n* `opts.packageFilter` - transform the parsed package.json contents before using\nthe values. `opts.packageFilter(pkg, dir)` should return the new `pkg` object to\nuse.\n\n* `opts.noParse` - an array of absolute paths to not parse for dependencies. Use\nthis for large dependencies like jquery or threejs which take forever to parse.\n\n* `opts.cache` - an object mapping filenames to file objects to skip costly io\n\n* `opts.packageCache` - an object mapping filenames to their parent package.json\ncontents for browser fields, main entries, and transforms\n\n* `opts.fileCache` - an object mapping filenames to raw source to avoid reading\nfrom disk.\n\n* `opts.persistentCache` - a complex cache handler that allows async and persistent\n    caching of data. A `persistentCache` needs to follow this interface:\n    ```js\n    function persistentCache (\n        file, // the path to the file that is loaded\n        id,   // the id that is used to reference this file\n        pkg,  // the package that this file belongs to fallback\n        fallback, // async fallback handler to be called if the cache doesn't hold the given file \n        cb    // callback handler that receives the cache data\n    ) {\n        if (hasError()) {\n            return cb(error) // Pass any error to the callback\n        }\n\n        var fileData = fs.readFileSync(file)\n        var key = keyFromFile(file, fileData)\n\n        if (db.has(key)) {\n            return cb(null, {\n                source: db.get(key).toString(),\n                package: pkg, // The package for housekeeping\n                deps: {\n                    'id':  // id that is used to reference a required file\n                    'file' // file path to the required file\n                }\n            })\n        }\n        //\n        // The fallback will process the file in case the file is not\n        // in cache.\n        //\n        // Note that if your implementation doesn't need the file data\n        // then you can pass `null` instead of the source and the fallback will\n        // fetch the data by itself.\n        //\n        fallback(fileData, function (error, cacheableEntry) {\n            if (error) {\n                return cb(error)\n            }\n            db.addToCache(key, cacheableEntry)\n            cb(null, cacheableEntry)\n        })\n    }\n    ```\n\n* `opts.paths` - array of global paths to search. Defaults to splitting on `':'`\nin `process.env.NODE_PATH`\n\n* `opts.ignoreMissing` - ignore files that failed to resolve\n\n# input objects\n\nInput objects should be string filenames or objects with these parameters:\n\n* `row.file` - filename\n* `row.entry` - whether to treat this file as an entry point, defaults to\n  `true`. Set to `false` to include this file, but not run it automatically.\n* `row.expose` - name to be exposed as\n* `row.noparse` - when true, don't parse the file contents for dependencies\n\nor objects can specify transforms:\n\n* `row.transform` - string name, path, or function\n* `row.options` - transform options as an object\n* `row.global` - boolean, whether the transform is global\n\n# output objects\n\nOutput objects describe files with dependencies. They have these properties:\n\n* `row.id` - an identifier for the file, used in the `row.deps` prperty\n* `row.file` - path to the source file\n* `row.entry` - true if the file is an entry point\n* `row.expose` - name to be exposed as\n* `row.source` - source file content as a string\n* `row.deps` - object describing dependencies. The keys are strings as used\n  in `require()` calls in the file, and values are the row IDs (file paths)\n  of dependencies.\n\n# events\n\n## d.on('transform', function (tr, file) {})\n\nEvery time a transform is applied to a `file`, a `'transform'` event fires with\nthe instantiated transform stream `tr`.\n\n## d.on('file', function (file) {})\n\nEvery time a file is read, this event fires with the file path.\n\n## d.on('missing', function (id, parent) {})\n\nWhen `opts.ignoreMissing` is enabled, this event fires for each missing package.\n\n## d.on('package', function (pkg) {})\n\nEvery time a package is read, this event fires. The directory name of the\npackage is available in `pkg.__dirname`.\n\n# transforms\n\nmodule-deps can be configured to run source transformations on files before\nparsing them for `require()` calls. These transforms are useful if you want to\ncompile a language like [coffeescript](http://coffeescript.org/) on the fly or\nif you want to load static assets into your bundle by parsing the AST for\n`fs.readFileSync()` calls.\n\nIf the transform is a function, it should take the `file` name as an argument\nand return a through stream that will be written file contents and should output\nthe new transformed file contents.\n\nIf the transform is a string, it is treated as a module name that will resolve\nto a module that is expected to follow this format:\n\n``` js\nvar through = require('through2');\nmodule.exports = function (file, opts) { return through() };\n```\n\nYou don't necessarily need to use the\n[through2](https://github.com/rvagg/through2) module to create a\nreadable/writable filter stream for transforming file contents, but this is an\neasy way to do it.\n\nmodule-deps looks for `require()` calls and adds their arguments as dependencies\nof a file. Transform streams can emit `'dep'` events to include additional\ndependencies that are not consumed with `require()`.\n\nWhen you call `mdeps()` with an `opts.transform`, the transformations you\nspecify will not be run for any files in node_modules/. This is because modules\nyou include should be self-contained and not need to worry about guarding\nthemselves against transformations that may happen upstream.\n\nModules can apply their own transformations by setting a transformation pipeline\nin their package.json at the `opts.transformKey` path. These transformations\nonly apply to the files directly in the module itself, not to the module's\ndependants nor to its dependencies.\n\n## package.json transformKey\n\nTransform keys live at a configurable location in the package.json denoted by\nthe `opts.transformKey` array.\n\nFor a transformKey of `['foo','bar']`, the transformKey can be a single string\n(`\"fff\"`):\n\n``` json\n{\n  \"foo\": {\n    \"bar\": \"fff\"\n  }\n}\n```\n\nor an array of strings (`[\"fff\",\"ggg\"]`):\n\n``` json\n{\n  \"foo\": {\n    \"bar\": [\"fff\",\"ggg\"]\n  }\n}\n```\n\nIf you want to pass options to the transforms, you can use a 2-element array\ninside of the primary array. Here `fff` gets an options object with `{\"x\":3}`\nand `ggg` gets `{\"y\":4}`:\n\n``` json\n{\n  \"foo\": {\n    \"bar\": [[\"fff\",{\"x\":3}],[\"ggg\",{\"y\":4}]]\n  }\n}\n```\n\nOptions sent to the module-deps constructor are also provided under\n`opts._flags`. These options are sometimes required if your transform\nneeds to do something different when browserify is run in debug mode, for\nexample.\n\n# usage\n\n```\nmodule-deps [FILES] OPTIONS\n\n  Generate json output for the entry point FILES.\n\nOPTIONS are:\n\n  -t TRANSFORM  Apply a TRANSFORM.\n  -g TRANSFORM  Apply a global TRANSFORM.\n\n```\n\n# install\n\nWith [npm](http://npmjs.org), to get the module do:\n\n```\nnpm install module-deps\n```\n\nand to get the `module-deps` command do:\n\n```\nnpm install -g module-deps\n```\n\n# license\n\nMIT\n","repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"users":{"dexteryy":true,"kael":true,"simplyianm":true,"wenbing":true,"stringparser":true,"nickleefly":true,"brandonpapworth":true,"youstrive":true,"seangenabe":true,"sorenjin":true,"rafegoldberg":true},"bugs":{"url":"https://github.com/browserify/module-deps/issues"},"license":"MIT","versions":{"0.0.0":{"name":"module-deps","version":"0.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"git://github.com/substack/node-required.git#source-and-cache"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.0.0","dist":{"shasum":"eecb6844b521fcbd8cc40c184a5cfb51022bc5f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.0.0.tgz","integrity":"sha512-uSbmHSnPUJ6IsqI+7DhCbAZQeeFm2nzolG3ZD/zoRIOyzSq3NRcRBz3FnwYbPfCx09QqKFHBETdbkDQISol7FA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICajIrfseNtSNzlIrQFB5FbZCvdsm57ihg/n/0LmyeYNAiEAj+d0zOqOqG4j8PsMFI3dF4tlMO4FLq8kBInVR2vQXVU="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.1.0":{"name":"module-deps","version":"0.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.1.0","dist":{"shasum":"95282dac8265031e8645f977f90a4a6509c52916","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.1.0.tgz","integrity":"sha512-zMC0Eq2ZVQwo25QZZvwJIMeOKqaj7QYxFyTRdcddKc1I/acpLS4pXskp3qFZ1ERAf/nHiDfVFSJUK0x56JK1ig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMKYUg8qhM1oDpvF0RzYXIxR68v6F1poG5WL55RsFWggIhAKPDX2/Y2hbQhgxtVP7zbk+mubBBox+XahR11FTOA8df"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.1.1":{"name":"module-deps","version":"0.1.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.1.1","dist":{"shasum":"cd50f21eb82793b34743e15879d12e6a81be8439","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.1.1.tgz","integrity":"sha512-TMEDfGKDYar2oXDk7g8yxpRz6P8Zz++ao3C/+vLozxVvKUYsPkJuX8oiqSkuK3XuUrNAP2ftzlw36WUfynQnJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAeMmC1KbL2SuTRgp0Rxg2UoBFja1gKWNzXRHRlbChwAAiAewIZ1dD63iw6njO6E2CkqlgGXhzvLoXelmlydD9aPxA=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.0":{"name":"module-deps","version":"0.2.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.0","dist":{"shasum":"7b82d607dd6782ce553a99c98d8d2e9aa80afd71","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.0.tgz","integrity":"sha512-paALjdm+SdEMOWubdfFyNDPUJidJbbcUsU/mUSL6MD70Bls5oO0Xbmay9rmXFrL3Vpi/oB8C8v5VY9KWmZ34dw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBmKbPP4K23aYNXgZOiHkOQbkjlQyGbDJg+Ob6gB9MXwIhAN2XgF7aIG28Bw6OvbkAQhEJwMOO/NGiRzYrjhJmXIJs"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.1":{"name":"module-deps","version":"0.2.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.1","dist":{"shasum":"bb4b924059b5e76c2b6685a9e59a7d660fea396e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.1.tgz","integrity":"sha512-mTmI0C/Bk2EQ2TEoEGis8JXMv9p74HrueLcVXtlZXTKW2W5MNu+uVg4SywpJBziiJNlgBVuI9kMaHopbPNl0lw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCIH0IDhFD7Kg28RjVcdD8+azXYyOpgOJ2YQt1QxwazkGnAh8+oy9iUvGX6GtJGwWmztDrvU/eeSXCFGaLXdJzyC0T"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.2":{"name":"module-deps","version":"0.2.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.2.0","through":"~2.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.2","dist":{"shasum":"273b3cc4bb8a7dc293098036d36cf03ec321296f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.2.tgz","integrity":"sha512-a58xFvvczhRNlPH9s5LfVYvyPg6cSptZQsrRNiRbL+ggUb0QLYKm5SOv4aSz4GI+XqEH2yKJvvxSTkEE/r0bbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHV1k/PDCBMxcxUOZ8Qvou8gf8iXKic1RzsnSMiUz9fgIgQQvLnlh3mSjPCD7olofEV9slg3tiV8oiSnt8q+uzt00="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.3":{"name":"module-deps","version":"0.2.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.3.0","through":"~2.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.3","dist":{"shasum":"65f2b319e19e519b6b190b0eafd694912eda1936","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.3.tgz","integrity":"sha512-kUhGzogUz97gfMVtAWV/ukLYc9f+rqIoEYIMltHSH3DH82EJPpbAfAMe2ehFPKHjD+ksISLfaGHFYIdbzLdm3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8Yt0k/q+ungDOjozVTAXT+CWdfMzMhHnU1Qfcbf0w/QIhAJb0OUwZlC0UhRkJaFoy0mimS1pF9BNr2faEAjpjZ+0q"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.4":{"name":"module-deps","version":"0.2.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.3.0","through":"~2.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.4","dist":{"shasum":"6a7d5c7a9f4d3f0d108bb3b16174e376bb35b097","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.4.tgz","integrity":"sha512-8oRprt2WRpUgZRMu4s0s0aMTzD56UcDx8Dkes53kPZ44ZQJPs7fe65bbYPHT/TR599DxoEvcVdypTCHGgBo9Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHKQjOfhnOedC9Tg0wmMNtsQ2eVAu6j9U2wf3l+69oqUAiA4wMczEjNNYOIrwhUL2fiiYEQeQIq/NaJuB/TnFzoMrA=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.5":{"name":"module-deps","version":"0.2.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.3.0","through":"~2.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.5","dist":{"shasum":"054352aa763e101bbfeef0d0e95a042b21eb8ea6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.5.tgz","integrity":"sha512-1JmTWgxF1haog+n8Oem/QaparNStFn6kIqNUzNRjQfNX8wH5NhXGhIDogZX6qEsvGK2ksgbOJnSSLJA7C4B4Pg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCemAtmYSm3icEGSXO+ylIXYRl03qZKpxf9g5X+qXWlagIgCI4rJvLG7xG1jvOS1hcgx/HXw40/jBFbcXWe/Ey21r4="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.2.6":{"name":"module-deps","version":"0.2.6","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.4.3","required":"~0.3.0","through":"~2.2.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.2.6","dist":{"shasum":"d8498051ca66947a95a805356b66e751475ac213","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.2.6.tgz","integrity":"sha512-vzdTNTZSJYtht36wRx29HMZOrCT8eLtOkxFRxmF1bIXRZw1B97vfemJuB9CImMTIH85bze7Z17Ic0W04Z3A9TQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEF27ZBtsg76CfwZ8mXURntKMa16tniST8k4D8hSxCBwIgJxH2brdEeC47+tkhBDLDBjCQoYc+BAaj4Gjw8Ojo7yI="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.3.0":{"name":"module-deps","version":"0.3.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","duplexer":"~0.0.3","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.3.0","dist":{"shasum":"be80f0c96c3242b5c5750938b614bbe87f8a6047","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.3.0.tgz","integrity":"sha512-954E2zy3EayCSHePUwcJv2i0oGmqpS6WrAmM8E8AW2UEdznptB88r/JenzMosC/6CUfP5TE+X/9rbnTN7Qkp9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEeV9N3uFUnmrl4xNa/8Ems7viNYN9BjLNtDI/e4N7W1AiEAoUCP/cwT/901U9TJeRGJYnFX8zHMR421M4FWqfYQpAU="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.0":{"name":"module-deps","version":"0.4.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","duplexer":"~0.0.3","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.0","dist":{"shasum":"e8d833c0fb66a70765d57f05911a2bb7ca9aee88","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.0.tgz","integrity":"sha512-zOHI7NPmTpdx9RAruXt4II9EYPIBXRTPcHR0Siychq4vnJj/GC6/n6DFO+kyaIi7SLxli9IzsZcMF6SA+VfwJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEMwVTOcod3ryBp4nD7bywGXb6QrFbNub99I90uzSzSDAiEArDXcqprILUX3nzVa1h0o2nmX0V64D39ZP9a6nADS+LU="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.1":{"name":"module-deps","version":"0.4.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","duplexer":"~0.0.3","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.1","dist":{"shasum":"1f852207fb7fd9763af920ae7e53864565e869ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.1.tgz","integrity":"sha512-9yw1WyMvryteDIuxL/DVs+4L6avDB6e2fnhnqTHOXbbeqwvMGqFwdhjlwynfKCDTgeaOaCATwgSg+jtKr9DNOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA33uy1bsq65kdax11zR7Q5AF7v+u+BLZBLYuDOj7XGUAiEAn8sJLSuMI8mCLkgPiQjcCTHgWVVK/8tUVa7E9k4avGI="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.2":{"name":"module-deps","version":"0.4.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.2","dist":{"shasum":"de00bc69120c34a5f3979be5d042420bf635b2ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.2.tgz","integrity":"sha512-L/PFRr9YkyTXxlrSnBQ0FJhFD4AnQ6VqiUAhT8wKceIkl/erSWLiVueAd2VZVcoSgl7DT3CIPf8GFELY459gIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHPhADRQAtqsB1nIN9xz41b/zQgFLiXgefRnFz0kYKD6AiEAgiHfPcK8md+p0enmtxkxPMkBo4mp2HKK/2WIljA0zc8="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.3":{"name":"module-deps","version":"0.4.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.3","dist":{"shasum":"7d784d85107c732c1b11ed7ba46627458de4a025","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.3.tgz","integrity":"sha512-H3aBz+8iH1nr3kHmj68Ic7l5k+vy8+BY6fjjM3ZppECqpRtsoqi9+KehL/0A5xM5Yz3pp1d+7twSmVx+JAHVZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEaJVwB61ZZSNvbc7JSqxu8uI7GkLH05oqu2yY1DKhxtAiEAufYyTMGedu2OMow6cU+5yrOE2RGx7yntHYXnmNwgKt8="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.4":{"name":"module-deps","version":"0.4.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","shell-quote":"~0.0.1","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.4","dist":{"shasum":"dab1a2ce7771e525e5a68e4100a7f59c6af8a0cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.4.tgz","integrity":"sha512-jVmUMsKC1qXq5i7s0UYOgcYnweszFDMAFlig7fTI7Qfexay5B4xYfSlxNO/W9uTRz0HpYKioK8N5acDq+rNUuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC53rikoB/Po3otV4p4j4+o2vZwogMmdStF8cbFP4ENjgIhAKUJU1mgtt2g7E6QjRYbovRYlDDej6HU5vmPRx0vb++S"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.4.5":{"name":"module-deps","version":"0.4.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","detective":"~1.1.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.4.5","dist":{"shasum":"b9e12b0a0b653642ee1da27ce484202e4d18c744","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.4.5.tgz","integrity":"sha512-O3+NT/OmEFUJD0Rl+MrSrPCI1HCIYr++MH0kLbAdnE7w6pm56fEKlhsridHOqSQpiNzf7IZIQp4dWGtew54u4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFJg/xoakEBOPXwC2XohjFpEkkBjxBZxH3Nik9lvOhQRAiATUjilFfXe/BKN3mujsB9/DqcWNvQDjR1fFmDf2sM2Gw=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.5.0":{"name":"module-deps","version":"0.5.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","detective":"~2.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.5.0","dist":{"shasum":"296224cceb87d412183eb1d05b1959670b9d6fc0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.5.0.tgz","integrity":"sha512-yQse+5OAahPQyA5DelNxFvv2FNU0ewvnFGnWH27uMtOFmG7Qr6YZSzikYYnry+4JUfY+584VfHuFFYhCJBcRjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEsHpqp412BdUcqLk7x3mCqetF4hz4lvnFZSJnM8pozOAiEArk7HEB+3gOEDrN9zILgJO2yRYcMpOLqCvlXR1nUhve0="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.5.1":{"name":"module-deps","version":"0.5.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","detective":"~2.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.5.1","dist":{"shasum":"e95c5a884c70aa967066aeca1bd4bd4d7ff5d8c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.5.1.tgz","integrity":"sha512-FYKLObeqbeg+J8hnoHLwoMWnte2Hb7SUTk5H70A3ieb3XiKs8CBkk40mdSzKX28GAnI+kwLy1DegPkZOrsJyaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHOkWSid8Y7LZtapPmgRVlk2c/7DMPk4BJRkvd3fH6GSAiEA+/Wzg2h/025Q7l1p9PVH5xLpLe/XxZR+pKK7LwBtUwQ="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.5.2":{"name":"module-deps","version":"0.5.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","detective":"~2.0.0","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.5.2","dist":{"shasum":"a228048d87717bef26b0ea610486e41295b43f02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.5.2.tgz","integrity":"sha512-BnKJw111jXrvmLHY3JDQDiABOS79RuePedZq/rFE3V6Zi3MUTRjeNTB8jbv6oAN/bIWcGhVH7i2ETTf/q8NiIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICvqYTBHIiH3DMm3l7nAm9tmEtzBF+xJWtyrn+83sf3GAiB4ovs5LiB/khRKNAhJrccR47nVrLPEyRlu9522md+jVg=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.5.3":{"name":"module-deps","version":"0.5.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.0.3","resolve":"~0.3.0","detective":"~2.0.0","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.5.3","dist":{"shasum":"dd9415d781c2ca6c27c150b5263e43cc7667d792","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.5.3.tgz","integrity":"sha512-vcPrqfcRioDqDk6rL8hZMC9knTK08Gyg7Bv5jx8pBoJkMtflb8UfAfwXHJLmh4ONg7XyweSDt0HcGyEKe7i4xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDX1S1S7L8Hrsxr4e13sptL76xLhLdQCVX4ynPkWLmJywIhAPHpFcO/jCDJQT+zCSMIty+0kgudfoys42o+xQIQwwpu"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.6.0":{"name":"module-deps","version":"0.6.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.0.0","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.6.0","dist":{"shasum":"7091d02661a3a7df508a7b605b4cc72bd75be7a4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.6.0.tgz","integrity":"sha512-NiwVe7xfySVzc6P2X3sYrfciuwlfOxAYwRWy3KJZFYPvOC6ucXEBQKumkJ7phOKeUf8jw+I5owtTYiny/gBDLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpOP8fkAl2JIMV1KYwObTW4It6xlW7VVT/u3eEXc6XaAiBN0G+lVdnRxaKC7cvBLEnLwki+3NC0Z3i/5LtKdV/I9g=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.6.1":{"name":"module-deps","version":"0.6.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.0.0","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.6.1","dist":{"shasum":"91b3b6e477532491cdbc0958d7cee5418a9d9a60","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.6.1.tgz","integrity":"sha512-5ueIw+pdWT82S/jMpc3KQwTBe3MrEy8HjDn89fwQMd8Py7Ax44u35Pzn2WNjJ1+GUqCV8Eo2zOROjIc8KyXBRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCu4KgQ940nRm/s/CGfeThtuPhZPyOsbIc2LpwRNTAOqAIhAK5yJtZhUyGyNXHjMPeBjXdqihqsM4cmgFLzO6hbvYHc"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.6.2":{"name":"module-deps","version":"0.6.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.2.0","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.6.2","dist":{"shasum":"0aa5413e90858bfea3da3e0ac09b028f78989c27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.6.2.tgz","integrity":"sha512-jTZyz5C2wG/B6OpbchYgKaOEiCN8KFXZKF6GM/lWKtvdnoXn90GAjB8n42S4LpMiVsqpVFowB/nJrkgqKa12JA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGOp9Ef4t8/JKMKUgLCXpIVpDOSzBLlcrFbFKqas3LHNAiBeQnXtUwP8UIT+jHwCWYCtb9baE7Iw1Q8HlroU+iUELA=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.7.0":{"name":"module-deps","version":"0.7.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.7.0","dist":{"shasum":"edfe947a29d5d5f25290c01cf26803928474abe0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.7.0.tgz","integrity":"sha512-SpkV3x4S4qlLd5LxhzTmx6YoebA/prWt2IozXXyS2s/bIqj9BLCYxjl3sHWh2CI+V3PI9kx3L3PNxERSPWbveQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEj7j0U5TmnygvSw6bgjma4HLVrEifVvqzlQlILLeRdMAiAc/JHJx17IgGxMQ/AHCrG7xUWL6733TcvEVQD2/rR8xg=="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.7.1":{"name":"module-deps","version":"0.7.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.7.1","dist":{"shasum":"cc0becca0133d303f8b57418de0714c02afdc7a4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.7.1.tgz","integrity":"sha512-2PS3gY7M4pq+uA9OGB3kGH5CqVJQ7Mu8DTCcDtcmMgn5ctFNKCyAPGqj4gurlRZEskNtItqI4i8cbH6k30+BZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqQiKa2TMHXKCk33GXhEvcV/D+74lKhUEmcodEhtzZ0AIgchoVZBkoj6W9IYBbH/Ur+sSQg0h8M9uZCXy0bET8AL8="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.8.0":{"name":"module-deps","version":"0.8.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.8.0","dist":{"shasum":"45990f62f5fec3510ea02f5499d28a143849037a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.8.0.tgz","integrity":"sha512-PzXmDLqLNloHGeTI7Wm8m2AuK0VOSBzRhuN6CZCsvUfr8PO3FBK7S9rsUbAoqpC11ff0i9z8HjdUze+VherN0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBIAwb2DhPfv/GMx92lkGn7MW87CQgmkpx9q1uwkiviwIhAM4bjtkQH/x0GZ9yp8CxSw/S8x9A85UM9hrgAK2N6etQ"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.9.0":{"name":"module-deps","version":"0.9.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.9.0","dist":{"shasum":"fb2d75e5d0c3ed1eaec2cb09b7fc8255be5344b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.9.0.tgz","integrity":"sha512-11CkLds9aqOd/nsJjrFrYQWbllVtBk5OoQ6vAootzvZsBl2+nIAGfL7zBlm7vQBOPJXBsKfIlSvEjbGNUhuBCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4W0QFoXZNv8qnLcx/3aWq0TQ2b8TFm5+kmDmsTOrY9AIhAPgDjuOCeSxkhvOiMfDEEtvvR1CJ0H8tNrVXWJrMJpmA"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.10.0":{"name":"module-deps","version":"0.10.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.10.0","dist":{"shasum":"3d6d5d1e2f5a83db85bbeb51a6ae07e743b02926","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.10.0.tgz","integrity":"sha512-XHvqr1HY35TqgvhKT2w9tE+GmTAjAdEyAqNt91SksG/6qAdfVxSAn0k1HUKSBmdZGlfzsuVsiI5zhXE1XmHbKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDoM7MGzGEMCP+jaRV/Mhz6CgTAcEVqGm8Kuvx/Dw4lhAiEAn/3GP3QbV/CjdqQwS5ryJmwqw53D/KqC8ybXY6zGyBA="}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.10.1":{"name":"module-deps","version":"0.10.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.2","JSONStream":"~0.4.3","browser-resolve":"~0.1.0","resolve":"~0.3.0","detective":"~2.1.1","concat-stream":"~0.1.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.10.1","dist":{"shasum":"ccab2dc37a452464dd4cb542a0f24b50b1f1ede3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.10.1.tgz","integrity":"sha512-dmaJ0byplrPZ0mTMz05IguE21nJkfu8XJWcF7QQNU9UcgJt9TBkCDiL3VOwFDVnAlGPLg74Mk4Iex7VimpFcbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtUVxxB8dx/SBmG5FL5LdPd/PJ5tB3j/g+iQHz0/Dh5QIhALI9oQceczMOvPBknxOjiCtlHE/XP+y1QDPHSjmdn7lf"}]},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.10.2":{"name":"module-deps","version":"0.10.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"git://github.com/substack/node-browser-resolve.git#dir-replace","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.10.2","dist":{"shasum":"6e491781ce58874eff6653f52b9854fbb7d5d388","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.10.2.tgz","integrity":"sha512-LFm6uyXn5JwFT7QrVJvFPDpEbbXvVp0tcGtqpDI1iwaaKC+Zhrp9EhaU8JcJjLX/Vk2TtohK8RkBxZr2kjvPwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG4w5o0dy4iJw2MdQgKhAK7o9p7dywI7kt5lY/3XHp7RAiEA5PgH+0+spr9NeS3SzrTAgAhhDYEBqd1ju8IT8kPZG7s="}]},"_npmVersion":"1.1.71","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.10.3":{"name":"module-deps","version":"0.10.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"git://github.com/substack/node-browser-resolve.git#dir-replace","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.10.3","dist":{"shasum":"8d68f413fea5bb7687faf16484d4b91c3a473a5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.10.3.tgz","integrity":"sha512-T6vyEQoCn3EHl+bMrI0eVcarMnGLubgmmSi+SXgm3gP5fVim/znW+4VZR054yOgq/bICDuGNSXEDbZF31yD+dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbBoFE5m11dJSYSOBurOl7Hvq+v/TfrAOjAnd4RzsLgAIhAPaMXY0+SWshwGyrr5rDkM3AcOZpwu7A82wL/Z0fLvXd"}]},"_npmVersion":"1.1.71","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.11.0":{"name":"module-deps","version":"0.11.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"git://github.com/substack/node-browser-resolve.git#dir-replace","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","_id":"module-deps@0.11.0","dist":{"shasum":"9714fe807d397e112983f5f078ab76dc9407a735","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.11.0.tgz","integrity":"sha512-/TSV23lLzy2T3PM1m4MEWuSCTS98QR1NVfpy1HhZ98E0gemGvAZwqrJ2PNQWB7YYiCJkUKXGYE7WVioGkMH6cg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAK1lbKUf4z3IB6ZdRxnefLuNgU7Tkt4o9Kgw4A9kvCCAiBNt6EeDdJLaORwmO8l5W8jUbKoCt68PB3DwzWy99c20A=="}]},"_npmVersion":"1.1.71","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.11.1":{"name":"module-deps","version":"0.11.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.11.1","dist":{"shasum":"876f9b26a0e912f4b22f744ab60c9d6b23350423","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.11.1.tgz","integrity":"sha512-h2Ix5XR2N2A2TaBACko3ZBBz6WyUDaYiKVKRrwP0s7y16PPXkW4pMWF4mXz/PLQy9kcvnrpYsiRA2G7yjArM4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1oyFBsT1UgUw/SWkzjtvMxSaoRzU25Kb4Kvu3UTE3TAIgBI8Jedu/wlgvdQJkFC9SGxVoLjvuxunyVinzT0GCLFk="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.12.0":{"name":"module-deps","version":"0.12.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.12.0","dist":{"shasum":"1fd2ce09a25d123d883fe90ef3cbafb9d4bd479e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.12.0.tgz","integrity":"sha512-yBRCJOgtIDxLsclrS6J9jD0sQs08SkREaqp8cL/aCSqcCUd5UISzv+OHExhUa9u2RqTHJbWISnGCqZqDRy+HQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAl0rw8cy/GzOIzHDZmR1uXE4gHpWzwhCz6qMrP+dLxUAiEAqxYK694N3KyyJ11kWt6gdRGdLFsFQ/VlB0SD2F05r+s="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.13.0":{"name":"module-deps","version":"0.13.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.13.0","dist":{"shasum":"b00526846b4eeb647ddeda9be906303551d8fab7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.13.0.tgz","integrity":"sha512-jBif28eeUKCgdphVybd58t7rkuKwDLG8sssSUr1fvb4nvFN946H8XTVAMZEkp1GN2I4Q1dYRyKhSe4AobvdIeA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEIW2vU5E1UiJ6sRqfpK+NXEAgMI7NW6jrCH+Y+1N6ZIAiEAh55u2YuiKR5SuoUG2ahuPMkC/aGJqENGtgtWlTbXTFI="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.13.1":{"name":"module-deps","version":"0.13.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.13.1","dist":{"shasum":"6d31708b3d463854f874034ae519f1b2249180e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.13.1.tgz","integrity":"sha512-yflja7mboZy8vXJcexcJlJU++WZ9AQ0hw9Lr7NAVKPDcyrIH0GuXwmofKYyPMK2bjMTqTXhsj7GZoRTCa3zTfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFVhRpU82F2l28Xw9u1YlJL7l6qcoHxqy300li6NJkZQIhAKI5gdiHYwMSEvGzCVmJYT3VBObMfbUwBc+B0+iTpM8L"}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.14.0":{"name":"module-deps","version":"0.14.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.14.0","dist":{"shasum":"181eb935efc1b224a4f9438c7d0325e71b7aea1a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.14.0.tgz","integrity":"sha512-L9dVIOb/4/NRkx0TuGhVXqfzIJ+JUwULpMK07oKsuLOICVLRrFX+qcNQO0C0Z4aLD9ffzHcVR2TH1+CSM4c7Jw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxh+r7/s4KCh4o2xmlVS1FqzG7WM8zVeKSIGqF5Uy+PQIgWdIKV/p0BZ8p8EaZT0zPabqbBkF73fP7GdsuoNgCVlU="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.15.0":{"name":"module-deps","version":"0.15.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.15.0","dist":{"shasum":"1513a9bf890ecffcaa3e5083f0b358c3430b7634","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.15.0.tgz","integrity":"sha512-G6GVSCr9hzlrBWzCkaPpTeRysU60RTV6gfuJjqpmbR4e/2tVH8Yop7w4X6aVFGkxeIdfICHJ0IFTF/zDOSrD+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG8nsbvGsc3dKC87g+fmeYbH10t7NhBNErDBafrrbygKAiEAoZPYvd1MF/ipnfu1KurQYch8kaS9y//NDLYKXWNpP8Y="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.15.1":{"name":"module-deps","version":"0.15.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.15.1","dist":{"shasum":"9f8fa001169f165d5c236f24d91b5d3d5f9033be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.15.1.tgz","integrity":"sha512-v1po8KJg3jjSCllj/qtB8LP2aNbHINlDKXUtUH2gWCDoqaAyTStVrSsOXeWb6wGG0lTAz65fN4STd5kJWS1eKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE2wczDSbbHkxzisvLLmy4cXet6CGQ5qSKIWYSLQBe4qAiAZ8sQoVRm/7euLBRqEpylEnD0gv2BbFe9X1uAY4Kd+SQ=="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"0.16.0":{"name":"module-deps","version":"0.16.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0","minimist":"~0.0.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@0.16.0","dist":{"shasum":"baa220959579715659ccb0255556615b285a9619","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-0.16.0.tgz","integrity":"sha512-neh3dWgbYQwwmunLEDugNfWig4ZRltOniWbG42z3YDwnndxP4pggi3Ul3lZKx/Xr+uuP8pSSm3GXfsKNQsY6yw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaX/oQ7ICQJ+wBLauMY/zfakc37ahqx6jo4mrKpV1WQQIhAPbOLpEfRGBBPPNsO7kNF0tRUEzF6bNNHWEnIH5brBz4"}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.0":{"name":"module-deps","version":"1.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0","minimist":"~0.0.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.0.0","dist":{"shasum":"a276617404e574520ed2ff0d7e03ef7d3d0c8d99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.0.0.tgz","integrity":"sha512-1oh5VRrD2lleDQ+KEatevBEIBZB7trDr+M0Mz/UpKN4gZduZkOw9JqME3XoD/ZduahJYzhrwvCaZ/IjbvezYcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDuVO0le4qvrnwQk3tYVB/QNR5LjJKd47KufCXnKgpGqAiEA761uOdx0X7uyPkwIVJeV3w2P2IvVGc2xiS/3gFt8nJ8="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.1":{"name":"module-deps","version":"1.0.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0","minimist":"~0.0.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.0.1","dist":{"shasum":"d63530eb4fb307b24b2f5e94820201014fbc9dfe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.0.1.tgz","integrity":"sha512-nkVtpv687nePNIXSRcp3xHwlMgCkyfdhmasMyoBKHY/y2+Xcv3zq34/tBaE4aQsAKOXefUZkImb7heKSjhaDIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBD4t+VHWHpwkjabBGaru1R6A+8VXKcIQe1ny2olZrraAiABAHeddGV46d5/kqtczyZVX3I0GThTrTKstFQMjlVRmQ=="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.0.2":{"name":"module-deps","version":"1.0.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.1.0","resolve":"~0.4.0","detective":"~2.1.2","concat-stream":"~1.0.0","minimist":"~0.0.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.0.2","dist":{"shasum":"5ee83cfd70ba883869fa6cbaeb82334a8f069fcb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.0.2.tgz","integrity":"sha512-ArcVFLj57xBmTDjBNRacFDAhF9YRwtnBpUv62MiBkab3/G4QCJblrguvcZayYztn+vaIVx5/qtYmdeb8qrKhew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBUviFS/lVAiutXW4a44sSeiecv77xKYX/JJd9Qc1apdAiEAn4LVbnJgSP1VX4K9Ji1Xbl/L/KbCbCd09XHNWLnZyjM="}]},"_from":".","_npmVersion":"1.3.7","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.1.0":{"name":"module-deps","version":"1.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.6.4","browser-resolve":"~1.2.0","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.0.0","minimist":"~0.0.1"},"devDependencies":{"tap":"~0.4.0","browser-pack":"~0.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.1.0","dist":{"shasum":"3545e2d7a57f4072d4da442bb604d04b144094ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.1.0.tgz","integrity":"sha512-4qswptt8+jZMqT+a6SOSfIrDjmlgQ9DTzl3iGdOoPa1SkGJZtje5Gc+g4+8F0NOW5fqyr6W8fhYc3IYEUK6FlA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID/4MHKvkpfdQguN3UQqK57YrK04HGY16lF/W9LQOOMzAiAnvCcbyXnfMDK9y40vPzYy9gCDegyUzb0aD90GbFUEHg=="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.2.0":{"name":"module-deps","version":"1.2.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.1","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.3.1","minimist":"~0.0.5"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.10"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.2.0","dist":{"shasum":"42636ec3000b7751f126aef38f23dd063a29ba1c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.2.0.tgz","integrity":"sha512-wN+KJxAR60hM8dn4yzlV4rIoxb9Thw4Wfs7STAAggsp9jDjmFpnGiXLvMDaFPffbXkgKpQqnSQjoLqYFq6B5Aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDKnw23H/7KPHQ7pztUsi4CpIk1nEyLh2LGba9XxOtXKwIgQ3Eo52FVlyuaLxCX4IC25J42w9j9TjtN/TxE1vhaN2o="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.2.1":{"name":"module-deps","version":"1.2.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.3.1","minimist":"~0.0.5","parents":"0.0.2"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.10"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.2.1","dist":{"shasum":"666d2b6b91db9bddf6c67aa2ac4a4efa645b06dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.2.1.tgz","integrity":"sha512-hFjBv0oRfKVupoGhP52ilGMTuddJ3Qv3YadXIC47w39zR6Tyr/FF1VEE4w7jJIOh51o959ulN7KCiiIscsa5Rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLeSJGguJiEP2wnTfXH39xfAxL+SBQblgHEyrKSDq3SwIhALsPzBqFWUeMus86KdKLcOwmU7FYn5pJf5mHxqpAz9Ke"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.2.2":{"name":"module-deps","version":"1.2.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.2.2","dist":{"shasum":"6e73959b7973af964de33a02437b76a8edfb2fc5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.2.2.tgz","integrity":"sha512-d9AMI0YwFLzhJwdFXm9sMK8g1e5Ldx1Isu6lsWrHIhWct6v3JApkaKqZHfbrQLdXf83rglcQcSi735GZgFxPOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICPCFC5kgF+eBJbjet3jlWQaOcpv92EDHCkb13Wu4SJ6AiEA7OWeFpgW3/2Tl2Bto6rzeC/E66eR3RznTCDGOhg8we4="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.3.0":{"name":"module-deps","version":"1.3.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.3.0","dist":{"shasum":"0eccb9ac7ac786c14f95193175ab9f2c7b9d2b23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.3.0.tgz","integrity":"sha512-rz2n5OiFxufJwiv4cBC5XKTkYkaUjuKCT5VoW3pMRPeQerpkt7hwdz9iWBbo+xZQzUucaKg5RFrj72qtNDelYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEK8ZYp9zd+elGbxiRlRxfFgSO/slGQ8cv+bowrh+c1AIhAITncrsUr7G/YYW7Me+MKw+Sk5TwKSin2hpnr8cB2Lzu"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.3.1":{"name":"module-deps","version":"1.3.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","detective":"~2.1.2","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.3.1","dist":{"shasum":"fdc342ca9899eab9f3c5162c9620d898023cb48f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.3.1.tgz","integrity":"sha512-VuNO1AzEhTkr4yUurXnboOzD9bGYBPCEZW2mRtQLctXtzdxxtVo/AeN/eYX11F87nESHV4sxvSpXhdP2VkXbiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFsZb1CCAM/arRffLOZmcHL0WNnHavabBpd7J2Gqewr2AiBUtw3BzRbLIw5UjI2IWMfPJsRDkCv6M2S0S6spAcitBg=="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.4.0":{"name":"module-deps","version":"1.4.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","detective":"~2.4.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.4.0","dist":{"shasum":"cfa85f4d520dadfc3d801f98643cc4ef50c02d24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.4.0.tgz","integrity":"sha512-sCv8TFFH/CtC1bqoi/GxRULozZIrTrNq9L3rTl9rW8jNPxYZI1P/xPM9Z3CaIta+EE6tcPvCkz1FkN1WwWvCeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDiRxv17xwktSoz/TdqU4xFTk3GXiTG6GcvZ1bJYTQoXgIgAyd1C2h08hGD4qT3e+UjGVIyhx/pHulnBQAbqmZqBCo="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.4.1":{"name":"module-deps","version":"1.4.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.4.1","dist":{"shasum":"3020e1f7cb57d4afae75ceb4266b22232a115b0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.4.1.tgz","integrity":"sha512-JAiqwQOFkWPGOIj8J8aPg4tdEbk9AJisttpfaIbZRiG1HqH+xhU1Bmrn/Ttbz0stOwglm+CiY+/IXVzZ1c1S4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID9aNkQEW9i+lzJptLhk89nk/RWSt5igSX7OL3Q1bD3FAiBCKvBp/zeDgA80SJIli0P4xYiWE5CYyq6SfymH89KZ7w=="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.4.2":{"name":"module-deps","version":"1.4.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.4.2","dist":{"shasum":"cc48c5f88a087c6d9ec1973167c2c9fee2f80314","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.4.2.tgz","integrity":"sha512-Al3VzdK3vfKK/0tePzHjcV0JfK7i2Wsm6muz8esleQw8dyJb2x15JNaZ4uWkt5rLV23dLKVv5/rBbxEavTxzgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2L7gLOT599YIscr7AEluNre9X7Yc/sJRgmEgQG0orGwIhAL+ePCb8NxjVQo0fEAWl3bMqIbGYyeFEAFDqN+lerRzM"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.5.0":{"name":"module-deps","version":"1.5.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.5.0","dist":{"shasum":"da47cbe67fff4d432afd80d0dcf069b97b2e03db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.5.0.tgz","integrity":"sha512-wHbpoi1hiH4L7TA4w5i/hE4AnA+YSEsPjWgu9GLbgqxBItWtoLp+kAndEpOMdOrlo0TcnyxLIgZnBDUJFvOosg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCWfH4pYqYgNHFc5L8DkrmFty9v8X2AoyD/cYacnlTjrwIhAPGV21eFWkLLhWbzr+MSMXGObcmlLmU2PqnUrx9GAWtn"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.6.0":{"name":"module-deps","version":"1.6.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.6.0","dist":{"shasum":"484a2127f295722abd66ce8c92b02070487f8dc7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.6.0.tgz","integrity":"sha512-shKruHCg7QWC50fsUINnAF8MspVi9ZPvf6lkx9by1Wp9Fj+XUShjNqIQP3BhRSDMsDkm5syaGFX7USc5o4volg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9EKWcGnutBFM1/Pv8Q9gptMM7DoHCBkCKEIj02BBkDgIhAOsHS2O/FoNFAP5PLpbzdoy329CZERP9ZhCr7/vsWKiv"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.6.1":{"name":"module-deps","version":"1.6.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.6.1","dist":{"shasum":"1c98559d09e1d4af92deec570f92e732b444d3ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.6.1.tgz","integrity":"sha512-hSCrgWJWBJJWn4+uDk5dQV7ZRfVSUA/pZfDkwbQde9JUYgh3/O/9SlA6VBK1cUYAtHDFDkbRTB+JRPCNvofFLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFLFSs5FYeVS9jIKjt4pZwsCGj1P5cyserNnop86jcW3AiEAic5fg30UobBYI313n0TMk41prtgS61/UAHeVxF6/Jvk="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.7.0":{"name":"module-deps","version":"1.7.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","mine":"~0.0.1"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.7.0","dist":{"shasum":"b40060e233fc398acfcfa43ee0d50997729f7290","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.7.0.tgz","integrity":"sha512-3KBP47aDa92tdnNBUkLcCXV2s66Bxf+m9axDXnXr/fiAaweohzALWpbBWUvqGuVfboxYvb/lGdCzWewuk6rOBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjW+1hj/OVDPSbQV53+IdPdQuKLJS1cOT5SKtdbiKF6AIgXkVQSI+nkkrhkgOp4exZVCIR0nSrJHjlGvNFOdw1eLQ="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.7.1":{"name":"module-deps","version":"1.7.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","detective":"~2.4.0"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.7.1","dist":{"shasum":"1e9a6809727282323abf1d5eee5ce8860b2e7bbf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.7.1.tgz","integrity":"sha512-jKYPcqOnl4mi2Atb4ZXPTA92sUBPPBcYHnqupdEU9aL/qyP/ro6MMJo6wsQYzUxv8gso2MJC7ntMGDKkMMvD7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCINgN01UpvRu7gVZspjdjUZPO0gs0zGfvJIQHZa7DaXgIgclTzLJmeclvah8JD4vFnAFKszYaI4VGROK6+W3Gw5A4="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.8.0":{"name":"module-deps","version":"1.8.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"through":"~2.3.4","JSONStream":"~0.7.1","browser-resolve":"~1.2.2","resolve":"~0.6.0","concat-stream":"~1.4.1","minimist":"~0.0.5","parents":"0.0.2","detective":"~3.1.0"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.8.0","dist":{"shasum":"c8563329ffa6642893e54617392ac2cff5ea954a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.8.0.tgz","integrity":"sha512-SVYQVmcN7UOJI3HRLAGicDV7nZMTO2WABOc5QIAJXFHmavg8Df0x9Tep/owc4Ba7OTQjOuamA+r678VQ0Oq70Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG3VNIbgcmLFhIlXAqhCCwxwbwgmpTy75iTblcaA1zDwIhALRDNNMzJ+fbiUz7yY9SZ7OMWXMCG1LnzcRb5ZmJ0P7u"}]},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.8.1":{"name":"module-deps","version":"1.8.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.2","concat-stream":"~1.4.1","detective":"~3.1.0","minimist":"~0.0.5","parents":"0.0.2","resolve":"~0.6.0","through":"~2.3.4"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.8.1","dist":{"shasum":"9d603b286f87cf62aad9e3f7b65a2f8bfa21de5b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.8.1.tgz","integrity":"sha512-KD0zv6fIRMOySMY2kl2YVA3MMtbEudMwI24AM+RPIZl0r2FJn+LCRVzFBY8+lPfPmemG7bWstm+v/ROzeNwCqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDWDI7Br35EG2/AgPW5OPcek4bXQCg00bCecMV3N514LwIgEyS/KK738kKvTpwk6CV25yRimLXiGPnlG7wMhfKfy68="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.9.0":{"name":"module-deps","version":"1.9.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.2","concat-stream":"~1.4.1","detective":"~3.1.0","minimist":"~0.0.5","parents":"0.0.2","resolve":"~0.6.0","through":"~2.3.4"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.9.0","dist":{"shasum":"81615a356cb6877c4e19b82690629e1500ce1651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.9.0.tgz","integrity":"sha512-8RTevFsmY/HIkjoGaz1jEhjznCygBEaFadWWBqMbP+Qg+X/wJccg7YTbk6y5Qr+QtovxK85w5V0q4LzE4uY4wA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRySdh5CG1nAd6TWM/Yi9tHO2QVK6dhHXoPNxFEdQFFQIgIlrXDknC945S1qfWToGSwTpPoWEeh2Hdjn2MSHCkALI="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"1.10.0":{"name":"module-deps","version":"1.10.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.2","concat-stream":"~1.4.1","detective":"~3.1.0","minimist":"~0.0.5","parents":"0.0.2","resolve":"~0.6.0","through":"~2.3.4"},"devDependencies":{"tape":"~2.3.2","browser-pack":"~0.0.0"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@1.10.0","dist":{"shasum":"57a9cac9dbd092428ec5249f6cf37fb249d77db6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-1.10.0.tgz","integrity":"sha512-+WqLQZqFf3iCzDQfwHDlqJnwPIs5J8zb2RYMeOpNL4X3uV4Uz+41FTeE8wqrpsejf3oEugIQedhGqNNtW1r3kQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvJ6gKj6FgwPsY9bARzM3KLxMXkXRqBwnsmRM+zCG9qQIhAMj3gsIQyOTrbquGVkQ8hEaNOgtTFYNPsb7j8wD7uafe"}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.0":{"name":"module-deps","version":"2.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.0","dist":{"shasum":"a8e186f60a7e755f017ce2e81d71a6922349800d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.0.tgz","integrity":"sha512-hczi9UvCQV8XgleaqmSAyKGIGLa5wqKB/ZAkI0k/cGnmzZ6fRCwo1hA+52QIIsxtQkMxcTRiY+ZIukxBpHa0AQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFTzaWL7cGL2uBzP7dlnsOY7GMAgNGz6M3ZMjcrv9KOoAiEAlYdn1BxFZjb5atT/FXFwcUmEGACRuiJ7Z0j2rZEfQ50="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.1":{"name":"module-deps","version":"2.0.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.1","dist":{"shasum":"a55d57c6723e151e373092396684ccf0b7d43e46","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.1.tgz","integrity":"sha512-m5RfvGwqwEu94HNhQ7q54zlwkDKDwCnKA4oyx+mXGi+I2G+vZcCU9+TTBmIL672IHMoUQtH++VDBpsg0laKTLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDS5tAkx3ubgjcH97R0RzZbdZnFSrPoRXAymuv6tx88+wIgcz2IkgSfZ26XcD56EJujClis4U4LxFs6i7h5u2kbolA="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.2":{"name":"module-deps","version":"2.0.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.2","dist":{"shasum":"0372575bdef1cc758ccff12b1d6f278d1ef05d4d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.2.tgz","integrity":"sha512-sawwEtrC2Pq1hdRodCEt8hG1ByvZhSOx6qnNzK5+mCZ2c/5hVBL12orf2a1BqMcR3tIF0KHr5dJKkZjmd9X9Tg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHCQAnMaecYlvlmjjl3nQ3VSAMSuB7umkJw5pGL9XT1QIhAO4ZIT0Rotyo248zrTeMNyVsYl9MwQoR8O9ZvOJYJ86A"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.3":{"name":"module-deps","version":"2.0.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.3","dist":{"shasum":"e3634a180a968614fe57832eb6ac5e0d22ae46c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.3.tgz","integrity":"sha512-LzZpKeMVdw+8DLG3UUpVd93EfF5huVGC7pVQK5PfdhubqgCM6Y4DmLTiwmhHDwgZqQbepUp88MVGFsGiFXQsgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnkJvMw/tx+mtxyxynXoLitxvOWwfKG4pRn2ryPDtndQIhALKnFSrdoETNvAUTNGAWAbXkrScBwMqcIIC7PJpK5AWv"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.4":{"name":"module-deps","version":"2.0.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.4","dist":{"shasum":"7249f7d8893dbfa7854121b15858bba51f8af579","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.4.tgz","integrity":"sha512-LhywV5gmtM9qLId5D9FboP3vN7ITAh/0sreXG3Dt/pZ85RzvZvphqZxtiNv9qq1kWR6P3Gd09sKVlYNY7RYrtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVwRqRmQouZLv6Fg9ynyaacJJhNYOC8jy2xfVSg051uAIhAMlHs2aZ9MaGca5AqTGjnU1K1t5O1MyyQze6/V4awbbD"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.5":{"name":"module-deps","version":"2.0.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.5","dist":{"shasum":"308473b3d5b9991f4a135f22e062313e898e8de3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.5.tgz","integrity":"sha512-CqpBh7ulpSDJ3ZDpdOuRgICm4DtOF8X6t7JAe32X1DmTZso9BHGPYDCKetPrg1HloFpT1BsuZH4SNl/xXzMG8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICx1JymRnlBXJcbXXuOCM3BmGHb+ioyc2FGEGP7cLmc6AiEA7gQctAqvgajej5jE8GKVgF3TiztX4IZIhWcF9aph80I="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.0.6":{"name":"module-deps","version":"2.0.6","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.0.6","dist":{"shasum":"b999321c73ac33580f00712c0f3075fdca42563f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.0.6.tgz","integrity":"sha512-k1pfAH9sicjEbMnj2fkorHZgwZ1PQ6OzgiYVq3jYtk/u7S8qkERjYXin+iY8FQSGdNAdqXGTHi7aHyGKBSSUng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEfgQqmlgQ8DcQ1ew5Dg6PivjA2V6J38yFHwC0eF7Sd2AiBu15VXCS6RBv5EPnAfHPdbtRbkgqtTDtgnQ9NG8KOnfg=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.1.0":{"name":"module-deps","version":"2.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.0","dist":{"shasum":"264f8687c68b367e4f331020ed96cbeb35792200","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.0.tgz","integrity":"sha512-IyWYjycmDQApitVqc/DbyAoWN3BdmSThV58raPSYOJuVlH11xpaffnK9C8ZjsVm5gDj5pabzzssbK3pWW9synw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1klAljd5wmq5kxmEHzVRYO//n/1BV1LJOt1aO8F6NKgIhAJ4ntEJR9WnmmaWOZgXeuj+4wudHmnix1WzVsUoDJBX/"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.1.1":{"name":"module-deps","version":"2.1.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.1","dist":{"shasum":"645cc25401e921e3828f42b8e6fdf0a2da7aa05f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.1.tgz","integrity":"sha512-NRIpWuBD6LzRkk/7iCCV2xyL1GfMdzP/8VzJ2i7XgVlxBCyr1QYIOqgQYN5xQsGhEp3VNmg7zA5lTHTu9Yh6GA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjw+IAwROvYrXth9fYyEpdtVHuq9pczuFZ3pqytLpdWQIhAIdbgB8c9L5rYlqqQoq+jaydpa9pqRiZj1ivlKqf673r"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.1.2":{"name":"module-deps","version":"2.1.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.2","dist":{"shasum":"9cfb8cc4f2b13d648c5baa553d0cbc79692967c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.2.tgz","integrity":"sha512-Rm/fXWgvWvMD5nGPrh4qNt5Q+pXrcW+9O3aDzxpFYNGCXVghay9aw19u2kz6+h1MNkV+TfLnrUUsYMHxeMcjCg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGjsag5lbZzFOWr2OE1C2XI2BU4ehCWv2MxyWp8E5WHyAiEApsH2C7XBu8gUq7zo21qoxmfvtbUX6HBSkG3Y9vLVYs0="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"2.1.3":{"name":"module-deps","version":"2.1.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"19374dd776fa8669e114a988cb992bed6baf7268","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.3","_shasum":"05211cfd29bf60e64593b79b976c6d57410318e4","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"05211cfd29bf60e64593b79b976c6d57410318e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.3.tgz","integrity":"sha512-j/RyE8X5t4UUKaUZs0WssB/s4f4GWY7Z0/wun1vsrQF7kwTL32pywChzclCyR7XW0aeAthcuh8iOssHQk2vzMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGl5jKFM5hs8ianLNeG4WPnH7N0wzHapGnMOTXprNeODAiEAtbhAvo97zGRVImurEt5iVakKGhNy2erI7sSoLVEU9pE="}]},"directories":{}},"2.1.4":{"name":"module-deps","version":"2.1.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"ed96fc86e7ac96a08ebe5735cc17f6a123d3d1c2","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.4","_shasum":"e8f0f1dbfb3ce608a93eda0626eb39c20a8219ac","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"e8f0f1dbfb3ce608a93eda0626eb39c20a8219ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.4.tgz","integrity":"sha512-oVOSM98MB32xinxaBmJq7XezPkRXNlfcVYF4lYz8w79uiT3Ck5R5WVt9Wl9x2KqpCCVNgosahRcSiLSNE40ADg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0MuUBlCzY+aRqJjI1NmHxXaWcMXiNBV+1wRY6uFw0qAIhAPBQ1t4jEtWt5bsXHPhvFGn7Q/E1x86o7+XjM5vU/8iN"}]},"directories":{}},"2.1.5":{"name":"module-deps","version":"2.1.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"~1.2.4","concat-stream":"~1.4.5","detective":"~3.1.0","duplexer2":"0.0.2","inherits":"~2.0.1","minimist":"~0.0.9","parents":"0.0.2","resolve":"~0.6.3","stream-combiner":"~0.1.0","through2":"~0.4.1","readable-stream":"^1.0.27-1","subarg":"0.0.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"9bbfa2ae34b680c29536c7ed6a3ff92d2814ae00","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@2.1.5","_shasum":"375a9bc804ccd64cebb3c62ee643755f0b3ccf29","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"375a9bc804ccd64cebb3c62ee643755f0b3ccf29","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-2.1.5.tgz","integrity":"sha512-5xDKabxJZpz8+NsSeSmHxr6ZUwsbrtG2zdKUOyj/9RNOKFF4HFSOnWH8ZJWbLJO1F3pDcpj6dmpvPXIiJIydBg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKjm/Qo3sbq7PT3vXeLjFfBCIrP5RyMI7/i7Lza7iFbgIhAJ43OzIoey1Go2uB69J7Jp3+B6scUQosi5gPbvJNMNTZ"}]},"directories":{}},"3.0.0":{"name":"module-deps","version":"3.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"0.0.2","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"7fb71a76cd902609d9d63db7bf91572687045900","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.0.0","_shasum":"0c8805b917b7bfcde31828731417a918a129c78e","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"0c8805b917b7bfcde31828731417a918a129c78e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.0.0.tgz","integrity":"sha512-Y+3Qpgft0n7qaLnLbTIG5oaSgGJ1/eYBUqzmwKeK7eus1iMf64ChReqzY/4T/h0FiEkOirZOFlscogAgsKlnIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHtdLrhmyiMhVr53USQ3HZRMCrG7DUzfqYPvy8Dg6sIOAiBojoEO4mCeVBeJj3DrfHeOxLi/VxW8SoIupYi6qH6uiQ=="}]},"directories":{}},"3.1.0":{"name":"module-deps","version":"3.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"0.0.2","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"76e84b506ed527651b8e3ee3783002ff2761aea2","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.1.0","_shasum":"ec501e6ddf789a2fee80aca77d04046eecd25536","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"ec501e6ddf789a2fee80aca77d04046eecd25536","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.1.0.tgz","integrity":"sha512-vhEaZr3mha3RYWYjRpQrZRH7Ys47cS6wQw11si6n88FCwe7vsnVjtbY4/oPw+Wtj4gKb9iw3r4xSsWVJuek06w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB2ntoMlc1lEeIhlZ2Ar6GYx9iE/icrCdqzoS9u7oJc+AiAkhOWB1xHukLaNzKLnj7BzQtgGGgZl7fmMb7k8/iLzPw=="}]},"directories":{}},"3.2.0":{"name":"module-deps","version":"3.2.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"0.0.2","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"d75bffa1bb01645f74ec9411b901afc0b32c53cb","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.2.0","_shasum":"a132cf38b2255d13ac9beb96a060bceffda4c3cc","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"a132cf38b2255d13ac9beb96a060bceffda4c3cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.2.0.tgz","integrity":"sha512-KHFZohUmvtsLqizCtlziyrJou7lFaHKMO00LkAKE81RetdIcL+pT9XAt0abJH5VMSC8cuC+xUFNUofa5eekcBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGFGfZPoblQ+mcaZcAGvZLiSuYeO/TDDdOgMYzcIvSFYAiEA0cDX/U70GZGB92O4v0XcyQtIyzRmBL56dD+q6mEYNLs="}]},"directories":{}},"3.2.1":{"name":"module-deps","version":"3.2.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"b214d1b2eb41a883fd819c772d31921c57b02787","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.2.1","_shasum":"59655012ad33a59d982b3cce110c9d86e8493e5e","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"59655012ad33a59d982b3cce110c9d86e8493e5e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.2.1.tgz","integrity":"sha512-J4XXU1rZwUHVZORo4dzEosYpOC8v2JMIePOkzT+eJaeywQQIFkmINsqK7TsXIfHsdBhjFjFF3yQXi70SZzDR7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCap6IWCn1IyQxoP652VB9zkkPqPXYo2OudBczewQLkkgIgZHaA/iO6XZ21sWZF5pVyInXuxXpYZAAfHKqCQUDsyiY="}]},"directories":{}},"3.3.0":{"name":"module-deps","version":"3.3.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"3f6a8497af7dfb2a88d526f1ea3fc7a3375a6cc4","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.3.0","_shasum":"dfd0631d2d680e2cbe2fb4f0902be933b666e989","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"dfd0631d2d680e2cbe2fb4f0902be933b666e989","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.3.0.tgz","integrity":"sha512-wiT4lp5WDp7GpcESYYQihM6XJTWadmAngP/zojuWzOcdlaQhAnyOa3dRUwD8Osb1lXxr3i/nEht9cDqevmpQlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZ1q+R7ZFSTKjFgRo64Yf4VjwuhvnuEOgUF+fHze6rfQIhAJQFWQ7YaRLTpMFq6ClRAJnyucSF3X3H3m3hOMx1pCBO"}]},"directories":{}},"3.4.0":{"name":"module-deps","version":"3.4.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.6.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"87242c6e9eddd6b5721ace3c94caf03279c05283","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.4.0","_shasum":"361f7bc1469ce581f4bec57a4954cea59287b4d9","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"361f7bc1469ce581f4bec57a4954cea59287b4d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.4.0.tgz","integrity":"sha512-CiYpWQqiW8F+Jtk3FTjsMBumMKSfguI+iMPah1Dbe0pLZHjwdCWU+3x/MvF/NRfiVECvoTs6ipFb3CR1MKPaUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDkrtYg6HD03KYNLLWJVtSgSSYHn0ROocPkN/XAhm9vggIgLmcyMQRJbwWtJ3EDnGtsrahCkUq9ws3tlJBWESqUIRU="}]},"directories":{}},"3.4.1":{"name":"module-deps","version":"3.4.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"797f05c732ceddb76ee0c4fcfbe4f2348bf580d0","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.4.1","_shasum":"d06c03682884661ed70e8e6f63fd028f0c81af03","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"d06c03682884661ed70e8e6f63fd028f0c81af03","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.4.1.tgz","integrity":"sha512-ASzPrGL5KNi5sjhPDz/N3pTfQ8qTntOcsNml4wliLuAZegK/mnS3v9SG6qORj4Zs7/ySb+wEBj0YM1gGcyyuFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFUmjeYuU9zxVqtea2+2JzSpFR33W1K6o8b+OJlLFjinAiEAmJqjnhfak6ot9Iy4rFxrM3dPwrLIiKbCCa5VQMQJohY="}]},"directories":{}},"3.5.0":{"name":"module-deps","version":"3.5.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"49c4a5fdbfffddfb9fc0dc3081c1842127986815","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.0","_shasum":"e6889393edbb0f3caa7e0d3c0a0b468822b506d0","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"e6889393edbb0f3caa7e0d3c0a0b468822b506d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.0.tgz","integrity":"sha512-0Wk8KBN2btY82iHSp8je/KWnGB5HtYOAGDcV/kXrbmYX1rmrrdwzExpJihbnLcJJSdF5rFw15szJYdM+wyj+MQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFhhcmDZjxW+NP33pGl/zeBtDLrWY6JgNAB8GtutFBblAiAQWrLTPqgo2offf4s2gjeXw+WwDbxS7+0jCz+CeraOUQ=="}]},"directories":{}},"3.5.1":{"name":"module-deps","version":"3.5.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"46c89be287c287afab84e43ca859c68d4d0cdd84","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.1","_shasum":"57d72e1a1abd0144fa85e8c9fe2008080a354a5a","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"57d72e1a1abd0144fa85e8c9fe2008080a354a5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.1.tgz","integrity":"sha512-0znyF7/q7hzMK/VE9dwt0VU1Q+wZnq6XJf//Aft1WjVCxTTJfbjvCbOtCYh6kp3+xz39Prr4ta9nrP35gfWyPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC+qfaKb7nzCX4GP5l2UYunb3cz+qJTHIw1Ba4nEtuTYAiEApkJ4QSHhNl3xAF9SiSIpXuHnNGI1eZvBH68YlhLnlKE="}]},"directories":{}},"3.5.2":{"name":"module-deps","version":"3.5.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"235f17a2ac15af453880f2cc6b5c89ab9955a465","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.2","_shasum":"bca502c4d78e3cb389914373025b27b879c3988a","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"bca502c4d78e3cb389914373025b27b879c3988a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.2.tgz","integrity":"sha512-doli2t0ddfaWoJg+a7PuH8m6l/c6sudYmIyvJsH1D1Bgrs8lxl9slJU8DDBzRP7CDdil5MAxpLwXsocUOQ+Gfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbQWawBjbtys7GlZy/0JPQt1Cb+cuAxaVqr1kTbIsH/gIhAIl3vDwhjsQCMvpo0/kixHzfzrJ5Fquo45702EUahCti"}]},"directories":{}},"3.5.3":{"name":"module-deps","version":"3.5.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"01eb6f466c08c02788fc51031f37a85088952f8b","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.3","_shasum":"1439d5c7141c9d2b91221b6324cbf506626ca12c","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"1439d5c7141c9d2b91221b6324cbf506626ca12c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.3.tgz","integrity":"sha512-cJ6/Ja5PvVG+KQQMYqzweIMjZglNnA5y72NdmB8/KfW+Wc9IIsqlqQSk1bEbJGIVaoA1+FNyaaHEQeGyfgVolw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjLDgcFygVIRiQVae/ebNnXEjO0oxFdXeASDWSISBv9AIhAJ8h3ouMb3KFlUYnxP964o2aP6swcX+9dQyhXRdMNCgx"}]},"directories":{}},"3.5.4":{"name":"module-deps","version":"3.5.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"42eec5c4501db4a3c4a8de22069d5189b693d607","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.4","_shasum":"0ede65b48bee13c440733feb6b8c0db8556ac0e1","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"0ede65b48bee13c440733feb6b8c0db8556ac0e1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.4.tgz","integrity":"sha512-lqhclu0ZRdOVsuRMgti/AuoKPORj7RhF/DtXfPnKODpjf8MK8XIy+ClUBShx5qYhkS58s68/yK1AvEVoZo1nUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCS/M0dXWVROekoLyc3U77t42rQP1N95NJkBXr1kXhU0wIhANGHjnqzAlPEKjjZxYtutf4FCcf/0mqBBwEM33W7BILu"}]},"directories":{}},"3.5.5":{"name":"module-deps","version":"3.5.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"79ca1a481d682a62c84fdde2cbf7fb1f955d15f0","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.5","_shasum":"08e52113552fe72a6f912b1bbe58e9e84ff1ac4a","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"08e52113552fe72a6f912b1bbe58e9e84ff1ac4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.5.tgz","integrity":"sha512-G49VW/qxRg9XtoYg1pTZTHFXB0BQrobQTSw9SFVWma+pCHW/FSjYpeoJsHRf8D0VWzIul/9z/Xsi67aitKPK4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHrsVf3q0GeM/VvUIQ2JHdZPebwmrVkLxdq/+m8y66beAiEAupnRkTTYsH6xIGbzRDCVWGsCFCyNdcBqV4GZR6OLxxM="}]},"directories":{}},"3.5.6":{"name":"module-deps","version":"3.5.6","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"60d1848b0b3247dae1ea56f8c013636b6a677007","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.6","_shasum":"3853bb0be43b0d6632d25d96e4099abdfdf989d9","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"3853bb0be43b0d6632d25d96e4099abdfdf989d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.6.tgz","integrity":"sha512-UVJ8y51jrHR20fmea53LT+ErmRmzDuiV9hWVAKCOyrDgS/XTVTRoIHKQYWdNdUzYJrRxjHDJiUYo0KdimvHPIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG4YRyDCff/iqejYqXor012WNxbiKwm2qNaSvCb/u9yjAiEAvPlhE14y3Jg5vEfGs4YjwsNI7eM9L9rVm8jEr6rYdks="}]},"directories":{}},"3.5.7":{"name":"module-deps","version":"3.5.7","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"aba056b62d224d16efa0cd21d6f747a297375398","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.7","_shasum":"a3db5d1fd25d1de89d5c849061eb84a1563a46f1","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"a3db5d1fd25d1de89d5c849061eb84a1563a46f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.7.tgz","integrity":"sha512-Uiyn5fgKn2wqC/tnc8ouw96JG1OTbe6jhVqfpDKgyo2xUmdJdgdCuncFlyp5hP6Z/kIjW02gCLfLbARZ7raz/Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3oHfcA1SxCuBaGAKcUzIdzU4Vvwc2j0UkyR1LLy6KtgIgfLSiOReQj4yTx3HmbQOixz5Fgw5wn1Ca7COEg9ecnIw="}]},"directories":{}},"3.5.8":{"name":"module-deps","version":"3.5.8","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^3.1.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"91f5c1c145786fcb1e0e72fe9c406e0ed46d67d3","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.8","_shasum":"b4c17812a4ad9314cb25db8882bff5d52ca652e9","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"b4c17812a4ad9314cb25db8882bff5d52ca652e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.8.tgz","integrity":"sha512-IGrAkJnujkxn7KRvEqOxvGZJhyAhPbFTsIkTx1jsII1iy0ZYRmjzcgu5eUKuliOUnf3Sso+bv9mEZFohSKcI7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHmxlHyScSs9XO+AMuVvy6qnnYyJfbptkCc2VWnJECFAAiAOkOMwV3EW8470Cm/0f5YIbP0UOIkdXVhUlQPVWJmb+w=="}]},"directories":{}},"3.5.9":{"name":"module-deps","version":"3.5.9","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"a1e0473c92b2b1521521adcf09f8170cc5e03d52","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.9","_shasum":"e4d751034c620f4101b60662d1cb2e2c65e4f76f","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"e4d751034c620f4101b60662d1cb2e2c65e4f76f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.9.tgz","integrity":"sha512-9KW1tc/IJg9l0oBbzg3cXr+HHkCxMX5GSlusthxog52x6I88B79fCufeiB+CY0EsItOQI0x5SWtcH3O3hWwnkg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8ecMhj3Tj8LpOUQgfJXxHpRMhHdSPGmKB7pYxgE0n6gIgdJrCRkdeUCwJTUlB0fdf3OJSNEfbkSa8X9jixwaCKV4="}]},"directories":{}},"3.5.10":{"name":"module-deps","version":"3.5.10","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"99f302371837c0268e66dcd1fb80bfb59280d3c7","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.10","_shasum":"2754737d4f9e52b60daa4abb242ade6c85ecde99","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"2754737d4f9e52b60daa4abb242ade6c85ecde99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.10.tgz","integrity":"sha512-orWAj76GUOD/rz2RIePr9pXOlA7M1G/YXxPN7b5bypjxTc4oQjaGGKZwGl0WsZFc+ucawTVN8QKa7Q0L61rb+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVSU7PtnrtA9Pz8/MCsJ+QBopt2Rwyoe1/MUR5qYoszwIgAJ3sN+b0zbN0valEE5LgrkS+H2/Uld8z7LeCNqKrFRA="}]},"directories":{}},"3.5.11":{"name":"module-deps","version":"3.5.11","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"3a413f651c6c623fcfc0b8bf15fcd6fcc65a0387","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.11","_shasum":"2d5969fb249a7c892582a0d5e5ca44f645c53c23","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"2d5969fb249a7c892582a0d5e5ca44f645c53c23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.11.tgz","integrity":"sha512-NiH/xE3a6DUVoaCxRZ3EXdVdTrt8PZNifiyM3l9NDEbGzns2sYIG1rQHXzAwE6WibyCRSRlr3DOTbslEHa1apA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdnY5kRqPf5n8EOpgGGeDhxlaMRA3BFnJxoMCcyLpBeAIhAI0DTpn6632e5JupgAO5+Mwlg3GbDgfUEHzI9WYaj71o"}]},"directories":{}},"3.5.12":{"name":"module-deps","version":"3.5.12","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"0ee0330f4d8bccb47ee1c981b5f50948c727fb1a","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.5.12","_shasum":"3716d3cd97f24ab3727d1427485d53144b942b82","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"3716d3cd97f24ab3727d1427485d53144b942b82","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.5.12.tgz","integrity":"sha512-0fbzk9AVfi/lxbHU2KA5tMj1kdcaLgcXqfHFMYE3KciaImlbG12mztuJyED8GsBI5dWeSbZnxVD2EOsLsCHAsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAaYHkVymE4G3vONDrRdzfBp+a5cUKGjiki4ksD4sOGDAiEA+OB1SQcdCsXHRua/4NOml/pzkff/pZFsUE5vFgFnHv4="}]},"directories":{}},"3.6.0":{"name":"module-deps","version":"3.6.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"4b80df9a392f96951b474d3fa79a9ecfae683657","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.0","_shasum":"2ccf7dceb0361a961f251803ec8daed0fd2a2bff","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"2ccf7dceb0361a961f251803ec8daed0fd2a2bff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.0.tgz","integrity":"sha512-DqwFcfqPhtHYmZGheGBnsEWl++rHCz/oE93Vrh/cLcQJpcdD7uEWwqEAKzkoDtn8qPDBfvbLA7LQjIl9WgRBBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiiDmK7DGoouZFX/jYZ6inedMRfTXLj2Q/mLH/R2hkPgIgcDtWZXrLBQ7n7Q3tGy/qBZ5mO8nWJbGlXRNzfGmgwhw="}]},"directories":{}},"3.6.1":{"name":"module-deps","version":"3.6.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"d027396ca70b8a9458fdc093b90f7d49039237fc","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.1","_shasum":"a1d02f3e425adbac40bf27a0f6d33c6b4632ecc8","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"a1d02f3e425adbac40bf27a0f6d33c6b4632ecc8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.1.tgz","integrity":"sha512-0GNNIMbeItvTUGjXQUAyWJRbeFseRxlWJNS+bC+HShvaW0AwMbpe01lK8JWJEElXTUoa/Oj3xMMUw/RFtFY3wQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGlG08r0VN/R8/IXyhf/v9CcVHHPk366dkB8oHW269xwIhANfN2b0Lav/h+1DcrquGBovuZlfhMLCFngu4NXxXMdzO"}]},"directories":{}},"3.6.2":{"name":"module-deps","version":"3.6.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"f690414acc7c1010bf06d28bbc918e102d7c8ecd","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.2","_shasum":"574569cefaf24a825847ee948102675573b37369","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"574569cefaf24a825847ee948102675573b37369","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.2.tgz","integrity":"sha512-1mRbk47U5n+RzhoPXWJDTAZtbYHXWdQlzoPtWhafwT3NUWntNauqbvNvSig7OYhIEAv+8qwWIpXhlO3klM/cMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMTYS2mCYmZRSO5twO3pXX6uVXM5J0YLHpat6pFVFtIAIhAIqnPzV9KQB1AWWvAj4V3nEz7yGCr4fixZaBHQ7ThtGX"}]},"directories":{}},"3.6.3":{"name":"module-deps","version":"3.6.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"9352e86a40d44ee5877acda3645a149e1da27191","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.3","_shasum":"4ffec778d74eb4c75d3102c1f414789fb6b6f277","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"4ffec778d74eb4c75d3102c1f414789fb6b6f277","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.3.tgz","integrity":"sha512-WJRZDdQQ785ItsteW4OL7kEDy/QX/odJKpCzVDcFOOOP491v2TJx370sd7WK3reHTZvewfiAnftQp8KIQKMB6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDV2F8B6EzKjmUyUj8QX0cqCSUsx8F4y2DpIyxt3Ti1wwIgbpGGTssJJL0yKUq2wxdVyqQcLSDhwEGoyOKg4LuA3Qc="}]},"directories":{}},"3.6.4":{"name":"module-deps","version":"3.6.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"ac903c1c88458159d571a66bc839c379bccf8096","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.4","_shasum":"6997857056165e9abade256de6f97dc7effe753f","_from":".","_npmVersion":"2.1.16","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"6997857056165e9abade256de6f97dc7effe753f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.4.tgz","integrity":"sha512-okpakDBzH2Z+lEAFYzbCiKtCccRLpNMcvHuaJlVn8gl4g9gBq/vdMxcKi+DPTrAzU3Jsz5a8SEibieAdRNrpGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDT4zgSOgyzMrVpDcSNCOh6CURrLCLqcokjDBf2fJIgXAIhAOUGLEgpmVADLp23MHW55yLpKjdsLTVV+0GJQMMBrH6e"}]},"directories":{}},"3.6.5":{"name":"module-deps","version":"3.6.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"74bfd6fa4e7a523c3514c72d4683316a4cfbb82c","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.6.5","_shasum":"bbe1dcb19d6f6c6c2ccec74a1a8b891e701b8152","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"bbe1dcb19d6f6c6c2ccec74a1a8b891e701b8152","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.6.5.tgz","integrity":"sha512-k/G/eK0Av5Ql726EMJv38ib7+YwxPl2wsUBVx4JkMaLfmBR5HSM9NxqUJOH/OOvl0XoSun39tiwYCgJzOwgEgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEnyMLvNerxzJILP3OUHhom3WmiRoWh7k7Vd3PZbxR1oAiA5CGf+H4JdSB5fjfHkcT1pPiYR9sHMlWWhKziA2WyghQ=="}]},"directories":{}},"3.7.0":{"name":"module-deps","version":"3.7.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.3.1","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"~0.7.2","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"a31dcbd30708e0f61ac32fffd8c903ea63eea9ff","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.0","_shasum":"99d9d8cdd293dd104eaccd1dd12901991f07df45","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"99d9d8cdd293dd104eaccd1dd12901991f07df45","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.0.tgz","integrity":"sha512-UgMGZTnGE2sSFFMzIPhORv47eIRt5xwmZFlZgpxAPSt65hzEvpPAD9YX3FeIRO5l1WSiFyMxmQfO2PDTftRVpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAUuY1Sqlglxeys4ByQlNQUNcF/qwjbp4jVEH7yvvtaXAiARPIHWiud2lqCG2gPkmMwmpMft9RMAjOY+V5CZEaX5cg=="}]},"directories":{}},"3.7.1":{"name":"module-deps","version":"3.7.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"e367a6f1507be029cf3add4ef299ecad106d4310","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.1","_shasum":"5bbaaf9e6ba252cf0912b9839f47a3b1e46e0a42","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"5bbaaf9e6ba252cf0912b9839f47a3b1e46e0a42","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.1.tgz","integrity":"sha512-Atp0iNYPJlLjOkUdAF5+WzuC/nnqfpc2gWkpUMLokU6ifrKSRskWtGWh76XXZOQ37I4gOiF3T/cmxSBZNhoGcA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCcOhNGmwzZYCzFKw9Zbc2vQbP45msqjrICAKCPVqbJrAIhAPHjTP9FTOPw74GKC40bPUwlTelFUW9CgYI/Ngwd/2/8"}]},"directories":{}},"3.7.2":{"name":"module-deps","version":"3.7.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"46ca172db22f72926b72b168951f3b97ce5171c1","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.2","_shasum":"bd4ceaca556b16032ac5abbf47ac61bc0ff5c349","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"bd4ceaca556b16032ac5abbf47ac61bc0ff5c349","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.2.tgz","integrity":"sha512-zsrTPnq1teW4TENyFXYdTN4y/zmCQO/UiajQ0WXLL7sXEwQ6km1zUsXRM9yJxoLrCZH/cHV9UTj06IU6N+G5Gg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFgOQdbP8JAtOo4G497TpdSBrqVIyv0PRIcKfl0RICUqAiBx8u2DUl4dxPPHkSdU2H5+MwqfjJpLBt1Sl5Y5q97SXw=="}]},"directories":{}},"3.7.3":{"name":"module-deps","version":"3.7.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"574ed9a57cc637480a93b3072659cd5a0eca6435","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.3","_shasum":"8b43896f0c5b5e4863bcc1fe85fcc391296726cd","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"8b43896f0c5b5e4863bcc1fe85fcc391296726cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.3.tgz","integrity":"sha512-2I0EwzmsEuTWj3+iu5+IKJHtdPZg/bZntsTfGIDl+oL8dzhVKEowMVhvT5fIBvus58FeqR9nbX5BmCMPENK0Wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8afpGBhjXck6xf46mxxK5KmyJ0cXGoV7HMFjxPRaKAQIgbriFPPexCsZ04bYshlXdDKKjOp5YHVemX3AZhkuqz00="}]},"directories":{}},"3.7.4":{"name":"module-deps","version":"3.7.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"3c177f8250f7fd959a445c974cd3cf340f6e7326","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.4","_shasum":"d3c012b51421083e9ac2166dfddc7501253359dd","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"d3c012b51421083e9ac2166dfddc7501253359dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.4.tgz","integrity":"sha512-++jE8pJIKzxQLdjjruENf4IvPKOYBDvXnvYxuX/dWY4gyfTGgLvLbK042Uun+JjoIRGSBPgRlgFwQqNYR6v2IQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfCbUkuWkjryZBasdjn72NvL7jZdNoiMF9p4UfxDXUPgIgZo6JJ6GIGtAMZdd7tuYtyKzyBndCr1g0jaUQFwU5zKA="}]},"directories":{}},"3.7.5":{"name":"module-deps","version":"3.7.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"0.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"2d549a731d4b5047a705af54ed21452ebf05ddda","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.5","_shasum":"47222f17c6669225cee79a9824f71047a873e51d","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"47222f17c6669225cee79a9824f71047a873e51d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.5.tgz","integrity":"sha512-GwRi/Y5UbFTLM/LEo80cIsirPGOoPAMrCxmkhV3Bi2uhfWBZIHUKQn9EesTNMOurn74hBTiYAvhe64SQ/kd5kg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIANDLN/9Y6AAWjwye8CqSbqrVdanLv5yKw1ZShcJBHtfAiBl8Qq+0XO9JDDLGf/uFMstai9iCv3zfofZdkaa1TXZpA=="}]},"directories":{}},"3.7.6":{"name":"module-deps","version":"3.7.6","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"0.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"dc5cebb95dd53e2598f90feff098c56cfb4523f2","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.6","_shasum":"c1e596de260a26e78b9399ec32a989cdff71c1a0","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"mail@substack.net"},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"dist":{"shasum":"c1e596de260a26e78b9399ec32a989cdff71c1a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.6.tgz","integrity":"sha512-h19vcsBsfNHCEetNaGwHweqsBnnETbeLpohbjJBkWm7opg8WZ5knwYZjcQW1bWSWQ7+Wui7dsHqXhfhohN6E6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnDpLSMXTFAQnQjNFT5iVffsQAninwZaghgO7Z43w6QAIhALABVwrWXnT1POs57D98lwk/gA1GdUP3M5GzGVbS6Abg"}]},"directories":{}},"3.7.7":{"name":"module-deps","version":"3.7.7","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.7.1","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"0.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","minimist":"~0.2.0","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"0.0.1","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"ba19c56390910a30da2d526908adea7c9e074f40","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.7","_shasum":"76ae774aa6859237e8b607381366f0da61c806e8","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.3","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"76ae774aa6859237e8b607381366f0da61c806e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.7.tgz","integrity":"sha512-IV9OnMYE7rik8kBbsRB+2r06RonlOSjKCzQnypzdZ1NbYLpCcU5jiHp9AdhsYllf/Zvi5U9YzLp180iftuc/eA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDaZnxwALCCGdx1nPP8Lt2gkqNt/9X7ADOUL2Kr1R+jSgIhALPgC4XWfjcSya02F9wdi6fDzVj4HIvDmCPkGry52pkB"}]},"maintainers":[{"name":"anonymous","email":"mail@substack.net"}],"directories":{}},"3.7.8":{"name":"module-deps","version":"3.7.8","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.10.0","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"8e34e42433dfdf1389b9eb89086aa0604d8eca0a","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.8","_shasum":"2fff56de97d145a00965ec5ada3dc023b2b505e3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"2fff56de97d145a00965ec5ada3dc023b2b505e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.8.tgz","integrity":"sha512-92kC06YbPshA49dB83FG6QwHDUD5L4eSiySafFYP/XMS7NeVL+EJW+n2uSs8q91GadyLjTNwAsbu37RftROfog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBatKZuH0oOS9jHcazmtyOM+m61lj+jnS2mU3TEHvLJwIhALPzlDDQKuxWqxBMPnxXmuhAoINOz3GSUfLonqj7Ts0I"}]},"directories":{}},"3.7.10":{"name":"module-deps","version":"3.7.10","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"~0.10.0","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"~2.0.1"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"9be8dea5b21a905a1dd490124b167f42e5df95d0","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.10","_shasum":"1ce66420054eb72edb9b39ea98189c704e5772f5","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"1ce66420054eb72edb9b39ea98189c704e5772f5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.10.tgz","integrity":"sha512-MlxQyOa7yxinhbn0c47JNteR+jyHUzEUS76N4eKVOEHVT6uLX5gofQYhZE0KH6SOiROMSz4jNYXzD0LLguAqNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBqpEJafBjw/tIPSTj5SZ2Oo8p2UVcW0nsZ7I8l6K2gmAiAWgy6/DkHxh4K3Z59zHmpMw37cLEiWwJejpjz4+7Raag=="}]},"directories":{}},"3.7.11":{"name":"module-deps","version":"3.7.11","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","jsonstream":"^1.0.3","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"^4.0.3"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"121f73791ce9cf8c92ac802e214b7842f9000e28","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.11","_shasum":"29a2709e01db18f20c95a204cebda7e6b84cd260","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"29a2709e01db18f20c95a204cebda7e6b84cd260","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.11.tgz","integrity":"sha512-EQpSud6OWec0GzEs4/qlz4sSIoDAlplLAi2uZ1vR//JRnK9Wcpuxb29CRARNMoovBMu3YynbITgWAOePiaW2pQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH1RKxXVrbLMzbY2eutxb+2DQHq1B4zmpiQjlQt3ywQSAiEAh/VRXPG9VL/z+Qp6rOfMl9tWkoFZxSwp76FQaTJNWJM="}]},"directories":{}},"3.7.12":{"name":"module-deps","version":"3.7.12","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","shallow-copy":"0.0.1","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"^4.0.3"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"e0e85fa49b564400c7517fc5ba892cf431d53405","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.12","_shasum":"fdac997e32b9b3ece1c3a8f38c7cd04372d96d81","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"fdac997e32b9b3ece1c3a8f38c7cd04372d96d81","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.12.tgz","integrity":"sha512-DDji5Bz6/gxlqMIiYcqPp3esLOSbnQwubw7f45woUKLWGVEJyAEi731jpwC7w1PyMxzrfjGKS0i76+H9jfsRhA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDXOjOHTSiDOl5MHHoss6V6xFkAlGJ5o2GGUlLW8cmZAgIgRjkzEheAEo4aYWsZe0qSuv8jDfICjNsKWe2r8tcyucw="}]},"directories":{}},"3.7.13":{"name":"module-deps","version":"3.7.13","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.0.27-1","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"~0.4.1","xtend":"^4.0.0"},"devDependencies":{"through":"~2.3.4","tape":"~2.12.3","browser-pack":"^4.0.3"},"scripts":{"test":"tape test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"f335ba8e240e42f328a41648efe2390b693dda39","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.7.13","_shasum":"9913625f074b429df37a79c7e930b42a41e2ce7a","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"9913625f074b429df37a79c7e930b42a41e2ce7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.7.13.tgz","integrity":"sha512-+vUQeYlDgPZcW8Q1eXOWH4mTQ8Wwa5oILvSBVDrEv5Z0qMRvYMsn2j62CRdcNoOsLpakdEGHcRpAomutOUYdpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNu0k1VXlgChWDCLZvEC/nUnXYErCs0YycReHjOkB3SgIhAIyBzANgldW552U7pA8o8X152cKlBMNx4H/GL+bzDTPx"}]},"directories":{}},"3.8.0":{"name":"module-deps","version":"3.8.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.1.13","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"86d97913ca924d6b455aff551b80860a5c49431d","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.8.0","_shasum":"b45f8b135bd58d4b15b30c181a7561b19e884534","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"b45f8b135bd58d4b15b30c181a7561b19e884534","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.8.0.tgz","integrity":"sha512-Vmx8wY7X46bIkqOUZZH+xSE1kWtYFLScw/k7Q64+H3UfbNmW9qv0ZAyxOq9z2kwfpiPU5DIM/9FhKWiTYxR3aQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHUTmUTk3E9fw1IQF4JUTDzLFO5gb/SH1nYKpqv8AR04AiEAnUnG5AjlCm+yVKwQc1Z3onwJJwFB2yATQGGO0Z0A/cE="}]},"directories":{}},"3.8.1":{"name":"module-deps","version":"3.8.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.1.13","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"0e290cd33b3068b033737375d194e4bf41d4d70c","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.8.1","_shasum":"0c9acc708080c07dea536945ffc6096685ce25ef","_from":".","_npmVersion":"2.11.1","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"0c9acc708080c07dea536945ffc6096685ce25ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.8.1.tgz","integrity":"sha512-Q1n7nhvlp8RQevyMOlq9XL9t61I43HmV2U809SkKj6v6z7tn8zMBHdIz19vfSfzzNuDRbZX4TiDjrjUylAWjSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcP7xiRf68AMJZLC+vq/s9XINMf52t19s7+z+RtKyJHQIhAIiO4yhR6mE9PobmiCvZU7jZprxeesUHy8PyqhImNpx4"}]},"directories":{}},"3.9.0":{"name":"module-deps","version":"3.9.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.1.13","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"bb388ab4194e8155764600f339fdeb18d1c690b8","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.9.0","_shasum":"492beda637276da4a4fa3e03e19fae16cf0f3dd2","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"492beda637276da4a4fa3e03e19fae16cf0f3dd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.9.0.tgz","integrity":"sha512-t10VYtXaL6LCK6veIn99uC2A/WLPGov2tEW4AikHJfId4Z5ieXllJjsz1P4oJFpdFFkqaog2kGXP72Zw4eHexg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICkCtdhAFkLOfhqzZqvsTdeAdfB+7kAaK15DwamL0wxmAiEAlusiTE3oCRWIChSrK9V66ea+faUD/tNmdt/5CeLi3Rk="}]},"directories":{}},"3.9.1":{"name":"module-deps","version":"3.9.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.4.5","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^1.1.13","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"9112e326d76a97869ecffee06d84be21e6f7d157","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@3.9.1","_shasum":"ea75caf9199090d25b0d5512b5acacb96e7f87f3","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"ea75caf9199090d25b0d5512b5acacb96e7f87f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-3.9.1.tgz","integrity":"sha512-EbWWlSGaCVidEsLsSzkY6l/jm0IcGDSQ8tGwtjM8joTrxqxP0om02Px9Np8D7FMZ/vZFdsOGbio+WqkKQxYuTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHpOTbTX/F0xpZXqjC+9wg3UYpaTAgbB+2bDXesh8geJAiAWg/adJjr4iGHFquaMsnCZIXhdQwcr7AxCcxNYPihZKg=="}]},"directories":{}},"4.0.0":{"name":"module-deps","version":"4.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"0.0.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"~1.0.0","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"e9ccd1ec93f83d68d8d3aaac9d68d685fa273469","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.0","_shasum":"ace2148b8122e6a6e8e14598d723d8d5963f8d28","_from":".","_npmVersion":"3.3.2","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"ace2148b8122e6a6e8e14598d723d8d5963f8d28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.0.tgz","integrity":"sha512-aQ1axxY7jSyhyXwBhz0hWGRSYTRBrhActCFKNdh5kbK84WXrDqPS7Pq8xVzu1YjWjTvRZo1c01jn2MUi4LhhkA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDZtXS2yJafmE8gPg+s7VLaWy/uRmIdA5eyTlm2mq1bQIgeUYr5i7se7ItdiPRzXVNc5dcUaTo7NndMC8Y8jQUOKQ="}]},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"directories":{}},"4.0.1":{"name":"module-deps","version":"4.0.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"3ba70a8eb41e3a9e4acd8a94929b2a3712238162","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.1","_shasum":"a66e4e0ce9256dacd5956d22ed9cb99db63736e6","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"a66e4e0ce9256dacd5956d22ed9cb99db63736e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.1.tgz","integrity":"sha512-Whj5BuICdmaZrujFKHYQilhPpDJwAMCaGr9O9s9SyaOH5eIY+gKTrPIsN7/jhULtkFW9nZjwWxIHfnC9P64rJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDGmEys7dDLCZtu7CT/x6nyHHFp/WJhGwmrzQOivNsCQAiEAgQ2HQ46KB1ypPJhHd2DpYgIUIPbA7GIFP3ZGOxdQegU="}]},"directories":{}},"4.0.2":{"name":"module-deps","version":"4.0.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"d564c9107209c1ceac3a88625292858957dc41a9","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.2","_shasum":"962e6438b8b2ace391ad75b74078b9ce436acc20","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"anonymous","email":"zertosh@gmail.com"},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"dist":{"shasum":"962e6438b8b2ace391ad75b74078b9ce436acc20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.2.tgz","integrity":"sha512-jlXJWY71YgTTx1qEzwu1ZXY9EOCyiMHzdeZ34/uDJxxG57y9xEVni3G+ijqHOUtNVNAQQ8sDI7iWCHJK9UK2cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH/Uc4wStMYNeB5DKOwJfcjArCl/XltthTJ2/wjnPtRsAiEA+Sc7gEPTNxcAcmTM5TF3Y54s2jZCY+6COGTZFKuJgK4="}]},"directories":{}},"4.0.3":{"name":"module-deps","version":"4.0.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"a6636d9ea137944560ca7836a9c25ff786033c61","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.3","_shasum":"f445a2128d34b897499f721c8490cacea83b167c","_from":".","_npmVersion":"3.4.1","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"f445a2128d34b897499f721c8490cacea83b167c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.3.tgz","integrity":"sha512-praZiBISho47w5TslmTkQYyLQk43Nti+FNATC/nylAhwXLrYPQ92qpCwPtlvyMuxLkPm9Fa0ZkVWPCZpnziXxg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEFWbM84YsBp7L4o3AdmnmtJmT3IiGN44hLPndlN+E38AiAbJ4QuR4PJTqbNG4kNij+v1p/E4ZAgcxZC47m9cklpPA=="}]},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"directories":{}},"4.0.4":{"name":"module-deps","version":"4.0.4","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"f3114e180737b5456971fa144b0a62c3c27abf40","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.4","_shasum":"62e4a551d1c3740c40396f5bc4ccf9803b395eb6","_from":".","_npmVersion":"3.4.1","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"62e4a551d1c3740c40396f5bc4ccf9803b395eb6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.4.tgz","integrity":"sha512-SKR3Dnbu+SgPN+//vIwz6fOh/zMZ3a7QIrOOhD4RrWYYH4BoM46cTG5uWzi6ikFAuCAmBepOclRaM+Ul7yA/Jg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzSk3zjDCUCiulF/p0wV+nAfMdPjGszTZXvcUeHv8GswIhANtGtpsr8KBMhzut1x0m0/TkbgQd0OQXmaWqu3mejBdp"}]},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"directories":{}},"4.0.5":{"name":"module-deps","version":"4.0.5","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"558fd0a743e344be8633c3128d0b7b5617bdc78f","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.5","_shasum":"67c5fad02e1c8720a56ec3182d624bf97d18bd9c","_from":".","_npmVersion":"3.4.1","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"67c5fad02e1c8720a56ec3182d624bf97d18bd9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.5.tgz","integrity":"sha512-k5gSb+eXUKATBz3n68TnjarBhZa+zBbYYw00D4SErQGU0OxF3Y8elVX5Qzdi67xQIAbRU4BGJHIDDGmUf2z3TA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID4ODUpls2Ox68C7SmdpdWaA+tDTxHdvwmmXG04Sve4hAiEAtAt8/vKeZ+xYyCeDnvNKFqSQnfw61JQF7R4l4iVPIAA="}]},"maintainers":[{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"terinjokes@gmail.com"}],"directories":{}},"4.0.6":{"name":"module-deps","version":"4.0.6","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"faef048962d5ccb15f2a776ff2bc3cc15c9ab56a","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.6","_shasum":"6a8f6b98e7bece6a8b0f7dde2eb30ee8eef5c3d0","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"6a8f6b98e7bece6a8b0f7dde2eb30ee8eef5c3d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.6.tgz","integrity":"sha512-iAJr7M4YAwh7qdm7fDBwqW6dRLxjN9b/A+MhGMB8Qx5yHxMuP9RkO0WtK04azxmcLoS/5yaBAoTDthCO6hxTYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCiI2fgWLmdKIVbbyzF92OCYJ4TEefWWQBt+eRJ/DCTAwIhAKKLPMoZ8Vbla02qyhaM848Ng/uYHh2UFOsaLn/P/YA5"}]},"maintainers":[{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"palmermebane@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"terinjokes@gmail.com"},{"name":"anonymous","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/module-deps-4.0.6.tgz_1464244636343_0.886209633667022"},"directories":{}},"4.0.7":{"name":"module-deps","version":"4.0.7","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"f5aa07c691cf60809ec6e0c3fd0d32ff6d6ada22","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.7","_shasum":"edfeb3937be7359bc14a6672c22ef124887f6ed2","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"michael.williams@enspiral.com"},"dist":{"shasum":"edfeb3937be7359bc14a6672c22ef124887f6ed2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.7.tgz","integrity":"sha512-3MGZkxdZLoKxOuBd50SzjrbHMgYbdOewnx0AsbKDTrlIKUkTA4ZBprnvvbWqq8d4FcdaqNiZ/HG5X+1zcWrU7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFDhJG/akXhh0R8WeZaRVwKLZjZA9pLPq6ZW8ygwt+eqAiEAp123fK+igD9sBWavynZUbgeZU7sTclQ33UK36dLxE0Q="}]},"maintainers":[{"name":"anonymous","email":"michael.williams@enspiral.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"palmermebane@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"terinjokes@gmail.com"},{"name":"anonymous","email":"i@yoshuawuyts.com"},{"name":"anonymous","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/module-deps-4.0.7.tgz_1464307872366_0.7613312255125493"},"directories":{}},"4.0.8":{"name":"module-deps","version":"4.0.8","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"3b240bb25cf0229558b4c9d0395c2c3e3555376a","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.0.8","_shasum":"55fd70623399706c3288bef7a609ff1e8c0ed2bb","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"55fd70623399706c3288bef7a609ff1e8c0ed2bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.0.8.tgz","integrity":"sha512-uD+1t9YAqNkzxp++mkpb4DlQVuYrHomya10pKeMvqKp0OoxFT0GLSTgXO7vy+oISQI2A7ZJ1FeGhX3q7sfYs8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBFd/wpgBYVTC5uCLa0RPSqysD0+42EjM6xdJGLz9dTjAiBhykaMD/+pKo2l1ZWRfoe2FesM3bPempaAh1OQJUsgZQ=="}]},"maintainers":[{"name":"anonymous","email":"michael.williams@enspiral.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"palmermebane@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"terinjokes@gmail.com"},{"name":"anonymous","email":"i@yoshuawuyts.com"},{"name":"anonymous","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/module-deps-4.0.8.tgz_1477162212180_0.21760018495842814"},"directories":{}},"4.1.0":{"name":"module-deps","version":"4.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"c8d1da8b638e22fd6344137f6be30455f378a8e1","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.1.0","_shasum":"ade2d5f58fda642f9a2c2d7a036b342f9a0df647","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"ade2d5f58fda642f9a2c2d7a036b342f9a0df647","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.1.0.tgz","integrity":"sha512-XVWXrrvp/77iRDxECKGZnthwrNizUNv/NMtx+prufd2wtMIfAro/NzMxJPct1DWnUw4QAwap4BOW8a07MBsn8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHQDpkDkAjg1WkwoQcCxPYVLrzKZV41VVs7WRfG9AIqgIgNJ0Tb3QEEa86v5wbKBvkuTeGnHkN6yB9W5lkxoRColY="}]},"maintainers":[{"name":"anonymous","email":"michael.williams@enspiral.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"palmermebane@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"terinjokes@gmail.com"},{"name":"anonymous","email":"i@yoshuawuyts.com"},{"name":"anonymous","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/module-deps-4.1.0.tgz_1487039314239_0.06102530495263636"},"directories":{}},"4.1.1":{"name":"module-deps","version":"4.1.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.5.0","defined":"^1.0.0","detective":"^4.0.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^5.0.0"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/substack/module-deps.git"},"homepage":"https://github.com/substack/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"4cce7975e909b91775411731a28e9d7e123e7079","bugs":{"url":"https://github.com/substack/module-deps/issues"},"_id":"module-deps@4.1.1","_shasum":"23215833f1da13fd606ccb8087b44852dcb821fd","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"shasum":"23215833f1da13fd606ccb8087b44852dcb821fd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-4.1.1.tgz","integrity":"sha512-ze1e77tkYtlJI90RmlJJvTOGe91OAbtNQj34tg26GWlvdDc0dzmlxujTnh85S8feiTB3eBkKAOCD/v5p9v6wHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE59MJFSABv2J5DPDlrZKcKAj25jHAvS0MEfrKaBL3U+AiEA7WD2u60Xun+xuMKZnhG2uZEnshnXaGBwbH9dmwocSHU="}]},"maintainers":[{"name":"anonymous","email":"michael.williams@enspiral.com"},{"name":"anonymous","email":"npm-public@jessemccarthy.net"},{"name":"anonymous","email":"martin.heidegger@gmail.com"},{"name":"anonymous","email":"palmermebane@gmail.com"},{"name":"anonymous","email":"substack@gmail.com"},{"name":"anonymous","email":"terinjokes@gmail.com"},{"name":"anonymous","email":"i@yoshuawuyts.com"},{"name":"anonymous","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/module-deps-4.1.1.tgz_1487056761669_0.6252274899743497"},"directories":{}},"5.0.0":{"name":"module-deps","version":"5.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.1","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^11.0.1","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.6"},"license":"MIT","gitHead":"95d21aee45a35823f391fd516097defc745bc67a","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@5.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.2","_npmUser":{"name":"anonymous","email":"bcomnes@gmail.com"},"dist":{"integrity":"sha512-zY4rkAha0iU068imX1eim6wqQhEZ94jvGlgwQ8pGoCX5ZVuBUJ5O2QegZlxp7ADNXW67ja4LCuVLJfPRdoEjhw==","shasum":"af88d8d399d2d6125c1e6e5c86b64e572268fee9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-5.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCOtS7Bbcz3LeRlqC1GU97+aY2sc88MxOn+NKRWMdPUgIhAO9mdrxDNlVD9aszP3+pfoX5f0iD/zRbXVNEG/hBrJT/"}]},"maintainers":[{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"i@yoshuawuyts.com","name":"anonymous"},{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps-5.0.0.tgz_1514913672596_0.9397348470520228"},"directories":{}},"5.0.1":{"name":"module-deps","version":"5.0.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.1.3","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"040e3f84faf1359ca968790fa3d2d2570d07a96a","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@5.0.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.2","_npmUser":{"name":"anonymous","email":"bcomnes@gmail.com"},"dist":{"integrity":"sha512-sigq/hm/L+Z5IGi1DDl0x2ptkw7S86aFh213QhPLD8v9Opv90IHzKIuWJrRa5bJ77DVKHco2CfIEuThcT/vDJA==","shasum":"3bc47c14b0a6d925aff2ec4a177b456a96ae0396","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-5.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH9oWgRDKGoscUAv7p97xPH0GWfZWNIuR2jXuMr9DDL4AiEAzVZL0JxpDDDYliN2yZCT2U7Pgz8lHeNptEFHGJFaNxI="}]},"maintainers":[{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps-5.0.1.tgz_1515269520530_0.9793485100381076"},"directories":{}},"6.0.0":{"name":"module-deps","version":"6.0.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"e0742be847f329e94475cdbaa9175a67f66b9aa9","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-BKsMhJJENEM4dTgqq2MDTTHXRHcNUFegoAwlG4HO4VMdUyMcJDKgfgI+MOv6tR5Iv8G3MKZFgsSiyP3ZoosRMw==","shasum":"4417b49a4f4d7af79b104186e5389ea99b1dc837","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.0.0.tgz","fileCount":111,"unpackedSize":80103,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDmINoD3WmlcgRtvuq90ZJwjKn0pFK/MJTaasjaDIFn7AiAGdxw7BJuiEeZmQBrpiC56pLpBdDnLb32lD6WmlmRIPw=="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.0.0_1517995223044_0.3700794849214719"},"_hasShrinkwrap":false},"6.0.1":{"name":"module-deps","version":"6.0.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"c998e6edc73a037923bb81263358db9e45fdf751","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.0.1","_npmVersion":"5.6.0","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"substack@gmail.com"},"dist":{"integrity":"sha512-nIcAD8VdhxjBzZ2fFbdlysg3te2XIj8aZJNcCYDS1Bimm3fIBgUHIuYXEl1jwBD6ajvDnILbWSMNiJCBxLYJyQ==","shasum":"5c54ba9db023fffaf3cb06dad79e1fb6c170a83b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.0.1.tgz","fileCount":113,"unpackedSize":80875,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5zXCGhA1xEKps4mEIxV1PLZX1LxZkjCjNil//v3dSbQIhAMJnx8xSJ8ig7aiQtfddE87VVV3SHD+kYbXhqBTTghxE"}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.0.1_1522099074535_0.152280930095255"},"_hasShrinkwrap":false},"6.0.2":{"name":"module-deps","version":"6.0.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"db32c8956ea58438c7c32f42c52cb65762d0df9b","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.0.2","_npmVersion":"5.8.0","_nodeVersion":"9.9.0","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-KWBI3009iRnHjRlxRhe8nJ6kdeBTg4sMi5N6AZgg5f1/v5S7EBCRBOY854I4P5Anl4kx6AJH+4bBBC2Gi3nkvg==","shasum":"660217d1602b863ac8d4d16951a3720dd9aa4c80","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.0.2.tgz","fileCount":116,"unpackedSize":81725,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEUsUbzeSnAzKqDwTj114SUOaTS1Ii4a/FFfRO+Uhq+RAiEAjeFc+Opqc1mIe82bTnQaLu1eVP3NtMnwCNEPKomNevw="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.0.2_1522226182363_0.5410164956711097"},"_hasShrinkwrap":false},"6.1.0":{"name":"module-deps","version":"6.1.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"22a43a5bf4e01c655a42bfafc6a53deda399e184","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.1.0","_npmVersion":"6.0.1","_nodeVersion":"10.1.0","_npmUser":{"name":"anonymous","email":"rene@kooi.me"},"dist":{"integrity":"sha512-NPs5N511VD1rrVJihSso/LiBShRbJALYBKzDW91uZYy7BpjnO4bGnZL3HjZ9yKcFdZUWwaYjDz9zxbuP7vKMuQ==","shasum":"d1e1efc481c6886269f7112c52c3236188e16479","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.1.0.tgz","fileCount":114,"unpackedSize":83569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/CwpCRA9TVsSAnZWagAA78QP/1Tx6ZMBufdoq45hPU84\nrr2VuIojKqLjFSin5HXHX312N8FF1a9wYz9LVbdet3ewXXEV1m/zlEl8Vexf\n32gtfqXtcILHw6D1zpJudVnsUzyJdvlxUi6QYVLnflaPYEp0SawmGb/VeYQ5\nFvSlDT+D/BHZKyySvqwo8GZyTr19IYjASZKv9zQHXx4lvBGAp/VJQzI2cIO4\nxFz5LS5boyLURdocDQFSIJq5OAHKTFW5p3D6kr98Wpc6JPQD18COmpg50msZ\nqDYeCzzQFDeEvpNIOTsAO6tlB4Uldk9UpcK9xxt+XuXQGgSZRPJWdRPM0a65\n1VtUZnHOBEo90tY3JSzoR2QbwibOMNvmFRROc9gOrqh2s1/968+mGhsigoX0\n7I+7KyjBY/OihMvNPIEPfyFuVwljfi+dJ5q8HcNOT1m3VZklDw3c1G+mPcre\n7jONLTJqytoq0VT31J3bFEprmx/gWO1Yr9/CxS3vhU1oxjQaWmsJ3nAzJcPI\nv5rQ9SzHOnvQ/f7oo83CaNLstjoNz6ihv2wYiFWl4KPmqja6B/tBMnxGA2q0\nkFMwgfCmI2Djfz7qlmHMfJBl2uXdr2iDEtui34y0TSjRBAZMYBstau8tjebe\np1ePdhCOD7u+0pGt8toLEjD2VrG48rJ49d+davzny6UFjN+EMu7c6ZlZ5skq\nLYLH\r\n=ZyTO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQCCxnCY4gDbfLynfDIRW6KnJcq4XjFm8ar/LlP66hzOPwIfPVpHu0xXcH0/X1TPCRh0QnCamNkcKMwwOOJw0r0pDw=="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.1.0_1526475816509_0.13204660777052446"},"_hasShrinkwrap":false},"6.2.0":{"name":"module-deps","version":"6.2.0","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.0","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"tap":"^1.0.0","browser-pack":"^6.0.2"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"b4ad85066ee1146a7ae885afa8de16259cef86b5","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.2.0","_npmVersion":"6.4.1","_nodeVersion":"11.1.0","_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"dist":{"integrity":"sha512-hKPmO06so6bL/ZvqVNVqdTVO8UAYsi3tQWlCa+z9KuWhoN4KDQtb5hcqQQv58qYiDE21wIvnttZEPiDgEbpwbA==","shasum":"d41a2e790245ce319171e4e7c4d8c73993ba3cd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.2.0.tgz","fileCount":119,"unpackedSize":86849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6q6/CRA9TVsSAnZWagAA3DsP/12ZXFpBBgEWWL0rEQ8i\nqJFUIe5E3BUDOtA7ZxkpdXoJhGuHFQMgNsTj8x59VhItYyu5nKN8y8o6JMm7\nQziMziNJsoUW/tG20oO+PGqlw25uy8spvoiIL7yh1IQqdmU/lSnoi+oXlzUH\nu2FtckFEacvDgvrXhlRr/Mi4PiwXiuM+F0/sVuRJ9g/+h3gsrPNyAyFq4bCT\nQXeQE2KftjDZdJ/Nlk7ucZ9470uCm7GqjB+KFN2d2L59w0slSx1ND4p4DX5s\n+zZtSzIKW4zgc06t8K+g+/kK/mQKb+0/0Rd5chHjBYHFFQWsVQU48RyjFMyD\n7p97KQ6kyUbHN1r7ID6n2Wa7IJdg0gHzXPD+ALdItWjEFCytw+6QUOIy6OUJ\n17XEnDPltEwfVxEQwrIFKs/4rmejCKibydWKzNZNrGqH4FVlL3SVcC4pTrKF\nz6X8915M4aTt0a3s1acxaqaH8UUeE3z41ZUrINysGrGmLZ+OSy70lKNl81Xu\n0lIywxmk8GxiF6f7hd0UDK6F3uqJp8fuRFDQgLRgzDCHA5f9awyS5Qjqx9Yp\nGjp7sYcqNBCzkgPe1XhjdjR/EmtqWk+eQLxA3Fuggp0iCjbvzkB9lIpnHAfW\nhf8z1XwaOs+8vVb37L6RGHHbWamRJ91W2TZrR0Rooj/WgNtO1nI0xo7a21Ys\nct0L\r\n=ES6d\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICkZrM1nCekQf8pgYqCezTD6ZgWKUi5HsBd3ES5Sa9LFAiA4FsTGOe0gUB3SO6zL2pudDJiHcLBR125FV/xqdly8Yw=="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"npm@dcousens.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"rene@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.2.0_1542106814854_0.46446808683530283"},"_hasShrinkwrap":false},"6.2.1":{"name":"module-deps","version":"6.2.1","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.2","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.0.2","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"browser-pack":"^6.0.2","tap":"^10.7.3"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"4d900ba7e4fd0e34a695cc817b43abbb8c0cd574","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.2.1","_nodeVersion":"11.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-UnEn6Ah36Tu4jFiBbJVUtt0h+iXqxpLqDvPS8nllbw5RZFmNJ1+Mz5BjYnM9ieH80zyxHkARGLnMIHlPK5bu6A==","shasum":"cfe558784060e926824f474b4e647287837cda50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.2.1.tgz","fileCount":120,"unpackedSize":87867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5+qsCRA9TVsSAnZWagAA5mYP/2bcNxXJGJVO2qzdH//q\n2Rs33LBBoKkV9kQyLfSO+X6fZCpdZhK915Fu0bqhk5KHfPtDVgVmjJQXL4qJ\nwdp/KKKrZAF5Sg56VCEaHcPmT7rxOTfM+yCEyZ67aMpiy4ktp01TAIcBCVy6\nNTwrIrvX4+5u6ibF+JUhPv4uiwvmFqR2ypKgcoAVTSWWyXyDcLVTMMAON22N\n3LIabSQ3a48IEzFGWmWBjASERbNXyxR5XsqtnnQZDZIglde/efOdaTeC+1vZ\nIRx41oTjJC1BbDHW6nbOuPP7SZxPTZe+qB3+gLlPU8KfO/D4Ndwov/t/C1e3\npf0Sm6fggUaGV22AequDxV8WPnw9e/so3Fm93pTE7iIfgx6fC1+ftVT+G+kE\n0ASunpZpq+PPizQwAsWra9hn7ZBwuXeBVxpfvRSAlVa/lRkMaKjVtEplVZ/Z\nGCSQM4NWikQ8V5L/N+yjblT5o/smMW/g+G5vgMkfmnk2L4hcvtIZ2XaGssTQ\nTCQscAcKx+0tdA0r7cVU591dnv2IsZabjU+JJqb7zvT+YSICpHHsVh0eyKWV\nHJGwN1Nv7MGlXnQJGP7potjHlABwF7JyiOlgOjr8E9lpzLqEmDQai3lg/4B+\nw/6UWuXw134mqip3ExXedBG0pSp0mg5x37p13X9CCS4wMv0trEVEUssQkij3\nEEYr\r\n=+3Ve\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHnRmjFEfbFU69cyPQ2U4NFfTOAcpIxZxq4iw1krU3W8AiEA993VKoh6V7AfMDd+lKHc308SsW5K1tZzil78ORnI8bc="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"shtylman@gmail.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"lukechilds123@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.2.1_1558702763351_0.6747793877892234"},"_hasShrinkwrap":false},"6.2.2":{"name":"module-deps","version":"6.2.2","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^1.7.0","cached-path-relative":"^1.0.2","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.2.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"browser-pack":"^6.0.2","tap":"^10.7.3"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"9170d1edc0294ea285ab706b63266a1081537845","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.2.2","_nodeVersion":"13.3.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-a9y6yDv5u5I4A+IPHTnqFxcaKr4p50/zxTjcQJaX2ws9tN/W6J6YXnEKhqRyPhl494dkcxx951onSKVezmI+3w==","shasum":"d8a15c2265dfc119153c29bb47386987d0ee423b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.2.2.tgz","fileCount":120,"unpackedSize":87998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd81xMCRA9TVsSAnZWagAApE0QAJa3DN+AKmaH3joevWvY\nCgNCvpX9kFAUg+FvK8BGlR1+UWM0Y67GDTkG2DrnvOGmTGAvRM/504QeZ1kS\nOlzKqmsfL6uYQhOurhVJEai39vMMP3szlaz9OUdgvjfkgS39h/ciyH8qFN8W\nuqwFTChz8Hq0ZdjXGfd/rJ5jiM48nUjbzKCEIrlLpT+ygaDHXXPu6df7MQI8\nDZddB5bvplcHBDzASZnUYzmKkIQt3yaCQLHkxSd/1hHpCIzmAwO2/VLYw/eJ\n5F0Syfjb95J9bUE9ukXr79Sbsg4lRqL17B7WTucZ7/uc2voE0uaRlTu3eiNh\nr9n1dDHKETm45QYh3OqjQH1gcLKY2rYWAjLXA7NQDOHIJIExgrJlxK4o2Mj4\nP8ti0EKm8vqFQwcE6GGDucvE0c1ucKl0gOEvRsnmGdduzE5Xb8i0sGDALDAt\nQamnwXInbkyd2DMyfyPax2+BB0YlrXu+cUg4ul2jHCTT1Yhd66K/VGCFH4rG\ngnEN4JccfsC0yTXjLqIb3CyM9X5ASYrlvzWy/yoC+V52cF4BDR0aKT753xi1\nXYxTIdAtqOyl2GkxzOAWH0aun8JZGyOIQ/ZIO9btcCCfSjdCkvNvAatiSHCD\n/g58lCyoRD7GDKrH6L14xT4z7wDmH4wCjXob/OPWObx51XzaqBRs5HgmNLxM\n2vlF\r\n=h2+1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZvsKqmWYn0Cu58nUCt8Fen5I0qqw1YFGmg0H0H4h5ngIgMaFfHCg+VptqPyFuQw9CUQU/ZljlrVM+i0SJbZShMIk="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"shtylman@gmail.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"ljharb@gmail.com","name":"anonymous"},{"email":"lukechilds123@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.2.2_1576229964409_0.9939570654455316"},"_hasShrinkwrap":false},"6.2.3":{"name":"module-deps","version":"6.2.3","description":"walk the dependency graph to generate json output that can be fed into browser-pack","main":"index.js","bin":{"module-deps":"bin/cmd.js"},"dependencies":{"JSONStream":"^1.0.3","browser-resolve":"^2.0.0","cached-path-relative":"^1.0.2","concat-stream":"~1.6.0","defined":"^1.0.0","detective":"^5.2.0","duplexer2":"^0.1.2","inherits":"^2.0.1","parents":"^1.0.0","readable-stream":"^2.0.2","resolve":"^1.4.0","stream-combiner2":"^1.1.1","subarg":"^1.0.0","through2":"^2.0.0","xtend":"^4.0.0"},"devDependencies":{"browser-pack":"^6.0.2","tap":"^10.7.3"},"scripts":{"test":"tap test/*.js"},"repository":{"type":"git","url":"git://github.com/browserify/module-deps.git"},"homepage":"https://github.com/browserify/module-deps","keywords":["dependency","graph","browser","require","module","exports","json"],"author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"engines":{"node":">= 0.8.0"},"license":"MIT","gitHead":"ac7e85e330d636b87674fbf33ac537395e2f296e","bugs":{"url":"https://github.com/browserify/module-deps/issues"},"_id":"module-deps@6.2.3","_nodeVersion":"14.7.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==","shasum":"15490bc02af4b56cf62299c7c17cba32d71a96ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/module-deps/-/module-deps-6.2.3.tgz","fileCount":120,"unpackedSize":88684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJ+v8CRA9TVsSAnZWagAA/zQP/2d+jasozh4wakBCdJmi\nZOztcmObof9RuALuPJqj9PH6M67LBDYNExmBbgsBGuYtuuECg74X44Kk6fIn\n3E24PbmLjRZ5ZZ0bLaDlPYJNAOEIvKbVRfllbzYQ6YN5ioOd84dcQWU6QNRJ\nHLUe4eLCaiBxsdo6nvWc6iPio6VGFhA3h1JrauYt4PSOB2mflaeU7629xt/T\nj/fed3Rr8kmRwsuvdn3MJOLcPUa3M6zaYtMX9VvdhrNkxF7V2Asydfa3Z3/P\ne9Wj3G0ur3Es749Jc6DVC1KufBCK/tY2z8kvR/PqVu+kEh1+6ZmTIs3IEyTm\nBPowMv5s6c5rV9j8OIbpKxFRHG5pUaRU+33jV0vqlk+eH2hBP0iw/MfTzQrN\n6qLhEOOBvFSe4wOEb4Zb1eLl+LD70Y6kxq3NYWKuMQy+bZTGm5KmdV4QILOk\ny7wo4kkqMGvmKLlbpf8B4Iz2BE0KGEe9lV2ltgvIPT9dKUWdJ1hFNzXoMTUs\n4UgeKspjdCX2PsgmVZviRsdIuGDpZDBt4ZVi+nuNSVSJ3QFG8vTzBJ6OXoJw\nuKatFRroNUz09hdzptuRlelNdvQBYXHWjEWguxNqTnHN+Zu09b6dfRAP+Y/o\n4+aecnYYmWC3vCqmqhU7mU33FWSTbdrgzAeiAG+WpsF6Jnm15PCl+FQDJMaO\nuxSe\r\n=96N8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAebQyn0wwnzI2Zc/K0iNINLvmCOGosXXhaZmOXWGdSnAiEAxzcPJQN84eOomehe4OGCYBJ7sGaG1Tdr6QppTQT3bVY="}]},"maintainers":[{"email":"michael.williams@enspiral.com","name":"anonymous"},{"email":"vestibule@anandthakker.net","name":"anonymous"},{"email":"darawk@gmail.com","name":"anonymous"},{"email":"b@lupton.cc","name":"anonymous"},{"email":"post.ben.here@gmail.com","name":"anonymous"},{"email":"bcomnes@gmail.com","name":"anonymous"},{"email":"calvin.metcalf@gmail.com","name":"anonymous"},{"email":"shtylman@gmail.com","name":"anonymous"},{"email":"dominic.tarr@gmail.com","name":"anonymous"},{"email":"contact@elnounch.net","name":"anonymous"},{"email":"github@tixz.dk","name":"anonymous"},{"email":"feross@feross.org","name":"anonymous"},{"email":"forbes@lindesay.co.uk","name":"anonymous"},{"email":"pereira.filype@gmail.com","name":"anonymous"},{"email":"garann@gmail.com","name":"anonymous"},{"email":"me@gkatsev.com","name":"anonymous"},{"email":"renee@kooi.me","name":"anonymous"},{"email":"hughskennedy@gmail.com","name":"anonymous"},{"email":"fedor@indutny.com","name":"anonymous"},{"email":"npm-public@jessemccarthy.net","name":"anonymous"},{"email":"jprichardson@gmail.com","name":"anonymous"},{"email":"jryans@gmail.com","name":"anonymous"},{"email":"martin.heidegger@gmail.com","name":"anonymous"},{"email":"lukechilds123@gmail.com","name":"anonymous"},{"email":"mathiasbuus@gmail.com","name":"anonymous"},{"email":"dave.des@gmail.com","name":"anonymous"},{"email":"max@maxogden.com","name":"anonymous"},{"email":"palmermebane@gmail.com","name":"anonymous"},{"email":"parshap+npm@gmail.com","name":"anonymous"},{"email":"peteris.krumins@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"maochenyan@gmail.com","name":"anonymous"},{"email":"substack@gmail.com","name":"anonymous"},{"email":"me@JoshDuff.com","name":"anonymous"},{"email":"terinjokes@gmail.com","name":"anonymous"},{"email":"thlorenz@gmx.de","name":"anonymous"},{"email":"ungoldman@gmail.com","name":"anonymous"},{"email":"yerko.palma@usach.cl","name":"anonymous"},{"email":"yoshuawuyts@gmail.com","name":"anonymous"},{"email":"zertosh@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"renee@kooi.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/module-deps_6.2.3_1596451836029_0.30636742262793004"},"_hasShrinkwrap":false}},"name":"module-deps","time":{"modified":"2022-11-08T10:39:48.000Z","created":"2013-02-11T14:59:44.928Z","0.0.0":"2013-02-11T14:59:46.741Z","0.1.0":"2013-02-18T06:21:50.461Z","0.1.1":"2013-02-19T03:10:32.768Z","0.2.0":"2013-02-20T20:59:04.973Z","0.2.1":"2013-02-22T04:29:49.072Z","0.2.2":"2013-02-22T12:15:35.419Z","0.2.3":"2013-02-23T04:53:00.732Z","0.2.4":"2013-02-23T07:37:51.831Z","0.2.5":"2013-02-23T08:53:10.529Z","0.2.6":"2013-02-23T22:40:09.662Z","0.3.0":"2013-02-28T00:32:21.217Z","0.4.0":"2013-02-28T01:10:06.665Z","0.4.1":"2013-02-28T01:15:40.670Z","0.4.2":"2013-02-28T01:35:03.302Z","0.4.3":"2013-02-28T03:17:58.864Z","0.4.4":"2013-02-28T06:15:05.789Z","0.4.5":"2013-02-28T06:27:32.017Z","0.5.0":"2013-03-02T01:49:48.961Z","0.5.1":"2013-03-06T18:46:55.787Z","0.5.2":"2013-03-16T01:52:13.927Z","0.5.3":"2013-03-21T18:46:22.544Z","0.6.0":"2013-03-28T02:39:21.233Z","0.6.1":"2013-03-31T18:33:43.571Z","0.6.2":"2013-04-17T20:30:44.806Z","0.7.0":"2013-04-25T18:50:48.765Z","0.7.1":"2013-05-08T22:57:02.294Z","0.8.0":"2013-05-17T20:00:54.839Z","0.9.0":"2013-05-30T01:57:37.784Z","0.10.0":"2013-05-30T13:41:50.667Z","0.10.1":"2013-05-30T13:54:59.693Z","0.10.2":"2013-06-09T01:52:21.394Z","0.10.3":"2013-06-09T03:33:19.412Z","0.11.0":"2013-06-09T18:23:49.384Z","0.11.1":"2013-06-23T07:27:44.613Z","0.12.0":"2013-06-23T07:44:40.641Z","0.13.0":"2013-06-24T07:50:01.444Z","0.13.1":"2013-07-03T23:56:58.438Z","0.14.0":"2013-07-04T03:47:40.336Z","0.15.0":"2013-07-08T23:44:24.481Z","0.15.1":"2013-07-08T23:56:57.100Z","0.16.0":"2013-07-09T00:57:09.041Z","1.0.0":"2013-07-09T05:39:32.586Z","1.0.1":"2013-07-09T07:43:40.655Z","1.0.2":"2013-08-15T21:50:05.796Z","1.1.0":"2013-11-27T04:21:26.729Z","1.2.0":"2013-12-29T03:59:20.140Z","1.2.1":"2014-01-04T06:03:18.716Z","1.2.2":"2014-01-06T23:21:05.820Z","1.3.0":"2014-01-21T07:31:31.240Z","1.3.1":"2014-01-29T13:43:09.386Z","1.4.0":"2014-02-01T05:37:11.695Z","1.4.1":"2014-02-08T01:48:58.386Z","1.4.2":"2014-02-08T11:53:54.846Z","1.5.0":"2014-02-09T01:05:02.100Z","1.6.0":"2014-02-09T23:11:25.557Z","1.6.1":"2014-02-10T02:38:41.697Z","1.7.0":"2014-02-10T18:44:54.582Z","1.7.1":"2014-02-24T18:21:04.784Z","1.8.0":"2014-03-18T23:12:43.624Z","1.8.1":"2014-04-11T04:45:31.208Z","1.9.0":"2014-04-11T08:08:10.692Z","1.10.0":"2014-04-16T03:42:26.033Z","2.0.0":"2014-05-10T03:09:09.739Z","2.0.1":"2014-05-10T04:17:26.218Z","2.0.2":"2014-05-10T07:07:10.066Z","2.0.3":"2014-05-10T07:08:43.707Z","2.0.4":"2014-05-10T11:52:52.819Z","2.0.5":"2014-05-11T21:10:05.158Z","2.0.6":"2014-05-14T21:23:49.595Z","2.1.0":"2014-05-15T12:20:01.295Z","2.1.1":"2014-05-23T05:47:09.931Z","2.1.2":"2014-05-28T12:33:52.215Z","2.1.3":"2014-07-03T15:10:07.193Z","2.1.4":"2014-07-07T00:44:14.375Z","2.1.5":"2014-07-09T01:50:11.243Z","3.0.0":"2014-07-22T02:30:47.375Z","3.1.0":"2014-07-22T06:31:18.093Z","3.2.0":"2014-07-23T06:17:41.494Z","3.2.1":"2014-07-23T11:13:46.374Z","3.3.0":"2014-07-24T07:46:17.247Z","3.4.0":"2014-07-24T22:04:32.796Z","3.4.1":"2014-07-25T00:25:08.111Z","3.5.0":"2014-07-25T04:16:30.900Z","3.5.1":"2014-07-25T04:42:42.903Z","3.5.2":"2014-07-25T04:46:14.953Z","3.5.3":"2014-07-25T04:57:27.363Z","3.5.4":"2014-07-28T19:26:51.444Z","3.5.5":"2014-08-04T06:45:33.419Z","3.5.6":"2014-09-17T11:11:52.327Z","3.5.7":"2014-11-19T01:50:19.487Z","3.5.8":"2014-11-19T02:43:49.246Z","3.5.9":"2014-11-19T11:57:21.588Z","3.5.10":"2014-11-19T12:00:42.231Z","3.5.11":"2014-12-02T18:57:00.876Z","3.5.12":"2014-12-02T19:32:58.052Z","3.6.0":"2014-12-04T09:44:10.648Z","3.6.1":"2014-12-04T10:01:34.233Z","3.6.2":"2014-12-14T11:20:32.619Z","3.6.3":"2014-12-14T11:22:22.487Z","3.6.4":"2015-01-02T01:20:34.824Z","3.6.5":"2015-02-16T03:04:22.029Z","3.7.0":"2015-02-16T20:17:48.099Z","3.7.1":"2015-02-17T19:42:15.375Z","3.7.2":"2015-02-19T21:51:02.443Z","3.7.3":"2015-03-20T20:34:45.244Z","3.7.4":"2015-04-01T06:47:48.830Z","3.7.5":"2015-04-01T08:59:34.856Z","3.7.6":"2015-04-02T23:40:01.802Z","3.7.7":"2015-04-20T20:07:53.073Z","3.7.8":"2015-04-26T01:56:19.215Z","3.7.10":"2015-05-06T03:53:30.273Z","3.7.11":"2015-05-07T16:07:51.044Z","3.7.12":"2015-05-07T21:19:13.693Z","3.7.13":"2015-05-20T03:50:56.697Z","3.8.0":"2015-05-25T04:33:41.247Z","3.8.1":"2015-06-06T20:54:00.929Z","3.9.0":"2015-07-27T03:14:38.647Z","3.9.1":"2015-08-24T07:13:40.229Z","4.0.0":"2015-10-16T20:37:56.703Z","4.0.1":"2015-10-26T03:02:10.273Z","4.0.2":"2015-10-26T03:03:21.293Z","4.0.3":"2015-12-18T18:46:06.339Z","4.0.4":"2015-12-19T15:59:54.641Z","4.0.5":"2015-12-31T22:43:59.418Z","4.0.6":"2016-05-26T06:37:18.977Z","4.0.7":"2016-05-27T00:11:15.279Z","4.0.8":"2016-10-22T18:50:14.317Z","4.1.0":"2017-02-14T02:28:36.076Z","4.1.1":"2017-02-14T07:19:21.931Z","5.0.0":"2018-01-02T17:21:12.718Z","5.0.1":"2018-01-06T20:12:00.636Z","6.0.0":"2018-02-07T09:20:23.829Z","6.0.1":"2018-03-26T21:17:54.832Z","6.0.2":"2018-03-28T08:36:22.445Z","6.1.0":"2018-05-16T13:03:36.588Z","6.2.0":"2018-11-13T11:00:15.012Z","6.2.1":"2019-05-24T12:59:23.473Z","6.2.2":"2019-12-13T09:39:24.584Z","6.2.3":"2020-08-03T10:50:36.198Z"},"readmeFilename":"readme.markdown","homepage":"https://github.com/browserify/module-deps"}