{"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"dist-tags":{"latest":"6.0.1"},"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"description":"Find all dependencies within a JavaScript file using AMD module syntax","readme":"# detective-amd\n\n[![CI](https://img.shields.io/github/actions/workflow/status/dependents/node-detective-amd/ci.yml?branch=main&label=CI&logo=github)](https://github.com/dependents/node-detective-amd/actions/workflows/ci.yml?query=branch%3Amain)\n[![npm version](https://img.shields.io/npm/v/detective-amd?logo=npm&logoColor=fff)](https://www.npmjs.com/package/detective-amd)\n[![npm downloads](https://img.shields.io/npm/dm/detective-amd)](https://www.npmjs.com/package/detective-amd)\n\nReturns a list of dependencies for a given JavaScript file or AST using any of the AMD module syntaxes.\n\n*Inspired by substack/node-detective but built for AMD.*\n\n```sh\nnpm install detective-amd\n```\n\n* Supports JSX code via [node-source-walk](https://github.com/dependents/node-source-walk).\n\n## Usage\n\nLet's say we have the following file definitions:\n\n```js\n\n// a.js\ndefine(['./b', './c'], function (b, c) {\n  console.log(b, c);\n});\n\n// b.js\ndefine({\n  name: 'foo'\n});\n\n// c.js\ndefine(function () {\n  return 'bar';\n});\n\n```\n\nHere's how you can grab the list of dependencies of `a.js` **synchronously**.\n\n```js\nconst fs = require('fs');\nconst detective = require('detective-amd');\n\nconst srcA = fs.readFileSync('a.js', 'utf8');\n\n// Pass in the source code or an AST (if you've already parsed the file)\nconsole.log(detective(srcA)); // prints ['./b', './c']\n```\n\nYou may also (optionally) configure the detective via a second object argument `detective(src, options)` that supports the following options:\n\n* `skipLazyLoaded`: (Boolean) whether or not to omit inner requires in the list of extracted dependencies.\n  * Note: this does not affect the REM form since those inner requires are not \"lazily\" fetched.\n\n## Syntax Support\n\n**Supports the 4 forms of AMD module syntax:**\n\n* \"named\": `define('name', [deps], func)`\n* \"dependency list\": `define([deps], func)`\n* \"factory\": `define(func(require))`\n* \"no dependencies\": `define({})`\n\n**Extra forms:**\n\n* \"driver script\" (or entry-point) syntax: `require([deps], func)`\n* \"REM\" (or CommonJS-like) form: `define(function(require, exports, module) {})`.\n\nAlso handles dynamically loaded dependencies (ex: inner requires).\n\n**Supports driver scripts**\n\nYou can also find the dependencies from a script that has a top-level require (an app initialization/driver/entry-point script):\n\n```js\nrequire([\n  './a'\n], function (a) {\n  // My app will get booted up from here\n});\n```\n\n**Expression-based requires**\n\nIf there's a require call that doesn't have a string literal but an expression, a string (escodegen-generated) representation will be returned.\n\nFor example, if `a.js` was of the \"factory\" form and contained a dynamic module name:\n\n```js\n// a.js\n\ndefine(function (require) {\n  // Assume str is some variable that gets set to a string dynamically\n  // const str = ...\n\n  const b = require('./' + str);\n  const c = require('./c');\n\n  console.log(b, c);\n});\n```\n\nThe dependency list will be: `[ '\\'./\\' + str', './c' ]`\n\n* Even though that string representation isn't incredibly useful, it's still added to the list to represent/count that dependency\n\n## License\n\n[MIT](LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/dependents/node-detective-amd.git"},"users":{"boltforge":true,"program247365":true},"bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"license":"MIT","versions":{"2.0.0":{"name":"detective-amd","version":"2.0.0","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"69ae7f90ab16ba1aa6e61392af045eee7b0c96f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.0.0.tgz","integrity":"sha512-5v9tt4MDT+36xCtXbxS8ZmUs5Fg2t9+B4rpRcGKvhLDrmjTQis7B+yI57UaJIcw8o8CPBSD8an3MOea7Pv20Ng==","signatures":[{"sig":"MEUCIQCEesujTWjISgObWBBRD2VXiEZKFSZ3RQ/M6RPHXrjHJgIgPvApVh1atggd7pRUgra0k/bntrQOJoGD4JBHWoE0fGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"node test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.4","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","node-source-walk":"^1.1.0"}},"2.0.1":{"name":"detective-amd","version":"2.0.1","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.0.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"fee679af3bfdc18cd893e93cc20110979d2d60a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.0.1.tgz","integrity":"sha512-oPXI+/YZIobY0y1aHod/USEMbcc9O65M8Q1paU65uKeuBdGTE6GAgMmmjdxTKc9VSxzu+Izohyc0u83zVxcFVw==","signatures":[{"sig":"MEUCIB+a8HgwIhqeg+4zOMoUki/yEqCSXeYwc1bHvxqgN9fmAiEA+yWArdQb8UriVBG4LMPaAtWmngJgOU5ho9JBEBzu+nY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"node test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.4","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.0.0","node-source-walk":"^1.1.0"}},"2.0.2":{"name":"detective-amd","version":"2.0.2","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.0.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"59f73dc0af5c3b0ce89f7a71282ae4e6f6902e33","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.0.2.tgz","integrity":"sha512-lmYpRM3B2fzMhLWcOGNrkuc6lMYbbgK1eiibUHBla88eV17YM6X+UgU7JKLY5oQ+VrjJq3adL6rmHarUovQzLQ==","signatures":[{"sig":"MEUCIBlOd8ICvl7auRPvUx+TTfVfaVlHqD7M289s7nkq34vUAiEA2QZl3g1EgME3Dav3s5zrhmBOP8St8P7Bvoa/le5hLDQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"node test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.4","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.0.0","node-source-walk":"^1.1.0"}},"2.0.3":{"name":"detective-amd","version":"2.0.3","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.0.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"6d3116aaad51ec38812e14a365c268c6462044cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.0.3.tgz","integrity":"sha512-a9Yn3B9nXunhQdX5AYJTVqpYu8/MCsTMzi5YohEsd0e2SzKvdq+QdP9kgZsiY5LznvWMkwZnZDkLU4oIfu4wWA==","signatures":[{"sig":"MEUCICe8TKrcBnoJfnbvKAcYWA+h9ihlIzJb4rR6pJUkTcJwAiEA8Ls1q1RUNV585yUMQxCpWYWhVEWq3vLLbQk939rm9Mc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6d3116aaad51ec38812e14a365c268c6462044cb","scripts":{"test":"node test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.7","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.0.0","node-source-walk":"^1.1.0"}},"2.1.0":{"name":"detective-amd","version":"2.1.0","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"f0947ef8251604e2b199fc6cc774e78fb7dbc642","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.0.tgz","integrity":"sha512-0+2m/OYd5CStY6ilqDOjGMyp1Jr7qp5CpEWfJ6+BNDU1a8+lv389ZHlAW53sPEyQFcXR3EkfmUnpHDAqmmqnDA==","signatures":[{"sig":"MEUCIEPgierJQ0Ol9v2AslhZxaGTKKboOPEyrnhZZPzSFLz0AiEAjliX8Ut4tWBW3DQGu1a9vrWNbOqGoa+WxJSQeRLW3Ys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f0947ef8251604e2b199fc6cc774e78fb7dbc642","scripts":{"test":"node test/test.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.7","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.1.1","node-source-walk":"^1.1.0"}},"2.1.1":{"name":"detective-amd","version":"2.1.1","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"dist":{"shasum":"026988cca496501d58d640beb24cd63b8002e5fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.1.tgz","integrity":"sha512-di/hI0AYT2lf0JsF88JTpro/7NWGmcDUoeh2qtRj3aeqWfUYFvcAOPc1Z3jAEvFbc2MEiugV3dy1cvlpyslbLg==","signatures":[{"sig":"MEUCIAyTMtxvYxcRBbRIpXbhdIYujYiFaC6hMJ2gqrJLw7nKAiEAsSIn6wCiK7Yi+gzLAHoyZNHf3KWM7i/dc5uPPVW/WrM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"026988cca496501d58d640beb24cd63b8002e5fb","scripts":{"test":"node test/index.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.7","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.1.1","node-source-walk":"^1.1.0"}},"2.1.2":{"name":"detective-amd","version":"2.1.2","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"d8c6ce808aa5135c03b7402fdeaf4b9d3a705f65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.2.tgz","integrity":"sha512-cIBiLmbY0RBk8wRkBpPVB+8Q3h1SCt25W2WUdeF268hMI00QVy9Pd2NLQOeNCHrdn6ympv2ejpzl11G4ZgUxXg==","signatures":[{"sig":"MEUCIAyCe9chdQOJGEqXRHNVHhtF7o/yE240fXcZ3zAA1pVDAiEA6ps7KXvvvAjqSukTgznvCVZ6TVVddpR8FhbRk9jiNF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d8c6ce808aa5135c03b7402fdeaf4b9d3a705f65","gitHead":"89464a70ef0e406742932640d19f23e3bb780e8d","scripts":{"test":"node test/index.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.1.1","node-source-walk":"^1.1.0"}},"2.1.3":{"name":"detective-amd","version":"2.1.3","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"866bb5db2857286ebcb2d72ebd35c3e6bf7dcb47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.3.tgz","integrity":"sha512-vaIf1EcM3+pkTTO5VTOsTmx63SxtabgUnfgoAlbVlBZwU7wdYPo/Hgd2FbKwJ3v7Ar4wYh542bMiQ6ZIuFGZRQ==","signatures":[{"sig":"MEYCIQDwAXi8L/ipHfNiTR49bQJ32fC8PifI7wcZdmm0VblgUgIhAJxuhZ3k2pvlf3s8vzzp3USJqhvcCTKEEuBjhoTomnHG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"866bb5db2857286ebcb2d72ebd35c3e6bf7dcb47","gitHead":"1eacd5611a9ff1c4e5f8141296c637ae4900ab0d","scripts":{"test":"node test/index.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.1.1","node-source-walk":"^1.1.0"}},"2.1.4":{"name":"detective-amd","version":"2.1.4","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.4","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"3e9d3a438d6cefa56749156f03dcbbfa994245e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.4.tgz","integrity":"sha512-NCG5dId40WBU4oGenncLTbHxBqfO37X/e1Od84X8Imp1u5reP6PiK7Pbckjl1ouynKB1AbRgswwStiaE+6pzPg==","signatures":[{"sig":"MEQCICcsKsg6Sj/HVSJBf1TERYQ/JO8mtyv5zKeLVd9Ze9fQAiBrXxy0X+vj10O3ZMcwyLgKeyi9WE0ThZLoL1+1gkYMnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3e9d3a438d6cefa56749156f03dcbbfa994245e5","gitHead":"375be58d847d1312b353f4f268962ea504344450","scripts":{"test":"node test/index.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"^1.3.0","ast-module-types":"^1.1.1","node-source-walk":"^1.1.0"}},"2.1.5":{"name":"detective-amd","version":"2.1.5","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.1.5","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"8b017e3e5df26890e5403d0c729bbba0c78d1327","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.1.5.tgz","integrity":"sha512-RltNQLQ3+BVgEYnKo0Me1CFIqRw6njK591SEyZVeE2bE4SnOLJhkhuuAk6oy13FPzihOyyaYh0RRgaBr/WYwOQ==","signatures":[{"sig":"MEQCIDJmF4g8ipxGwuwkpdu77eX568ollok2Fl6L5KtNzAUqAiADH/DRH3+9vCy3CLqY+OvS2F+DneUk28IyMqWbJTqOAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8b017e3e5df26890e5403d0c729bbba0c78d1327","gitHead":"422efcce40b378febc449d47ddf75158587bd120","scripts":{"test":"node test/index.js"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~1.1.0"}},"2.2.0":{"name":"detective-amd","version":"2.2.0","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.2.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"7c8de62300d2530b6e903dc6d50392c3a29c4aed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.2.0.tgz","integrity":"sha512-pChGPz3AhLZT/PpIEEkPceMZkUBTyAk9hkeRynal6dskjAlI5i7kjVIVv0JR5Fpk10nACBikjKBxiS8ckXI2kw==","signatures":[{"sig":"MEYCIQDzUP2HwqzRx8EFDMo83LPhhNP7eOKlNO0zGLXRzq/oDgIhAKf8qz3AMhudUI0MGbuIGD6XyE5xGdKFaBBoSinYKLSD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7c8de62300d2530b6e903dc6d50392c3a29c4aed","gitHead":"1b0d5ab41202dc718431ab82caa2450ffb62bbec","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~1.1.0","get-amd-module-type":"~1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.2.1":{"name":"detective-amd","version":"2.2.1","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.2.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"90fcd4ecdd66c44c778355c3d75f8c80898dde7e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.2.1.tgz","integrity":"sha512-35LLehqDo/aVHOnJ9xKIj5CHlLzSmDEZRlXleSMdN0OZvXpPa5JlyF1/p0KpLMoSM03Fv/g1yOl8IaI+kdbCuQ==","signatures":[{"sig":"MEUCIApe6kW1E81RGUraLiQd4l+pUCIq8JsR6/1zfkosLWHZAiEAps2CsxVIp36SuZNUGWaB8FWA0h+vYDzq9HX7urSK+PY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"90fcd4ecdd66c44c778355c3d75f8c80898dde7e","gitHead":"2b6b04355cc34abf4443f67b9bcbb096d1a5357f","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"1.4.14","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~1.1.0","get-amd-module-type":"~1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.2.2":{"name":"detective-amd","version":"2.2.2","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.2.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"fb7da8d042d4deda60e3effb7b4aa690fc819b8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.2.2.tgz","integrity":"sha512-ALf+CLbLbVTCsgVZ+/rtK3cWz9j49+7dSZEboMOphQCkd/OPscuEtUBwvWwKvxntj1+f5CtoP8YSKKszHuL0nA==","signatures":[{"sig":"MEUCIQC9cIRXZhDB97iIRQOBCHOPNLvxh5Bn2Acqs3wpcjALEwIgVcpbfzslhkjHSWG8NnUZVcHRh63SzDb2kDzKvFg23Vw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fb7da8d042d4deda60e3effb7b4aa690fc819b8b","gitHead":"bdd595516229cad477b09a1ae1b1dc096a5ad3ad","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"2.0.0","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~1.3.0","get-amd-module-type":"~1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.3.0":{"name":"detective-amd","version":"2.3.0","keywords":["amd","detective","dependencies"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"4f1809d074a9373dbcea6c5681740dce61bba867","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.0.tgz","integrity":"sha512-10+CLg3i3QN8CR+VXwg1p60QrMd+5vsrsXWpRp4td76n13fcVtz/74YEqYtCZX2URtKdz07Ehm+F4bmdu5gWKw==","signatures":[{"sig":"MEQCIBHkfhVmhGsv0sZiVH2fqJjPm2BFyN0p16V5X3xf/apSAiBR870fpIl2KWTn4CyTwdcEOcPqe2qrbBgl1+54KD03Pg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4f1809d074a9373dbcea6c5681740dce61bba867","gitHead":"d04192482709abe5eb9c75babd33d32cebdf03d9","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"2.0.0","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~1.4.0","get-amd-module-type":"~1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.3.1":{"name":"detective-amd","version":"2.3.1","keywords":["amd","detective","dependencies","ast","static analysis"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"189a43e803d2403346045c6add0865f8e476b163","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.1.tgz","integrity":"sha512-TUPJyaINPwnBNz/oUOVhpYAmnPAMKFSAiiIMnBALkNeJVukEjPFZXOekQJrOxyH/Bw4u6zNDbXQQWghvWaP0bQ==","signatures":[{"sig":"MEYCIQCgR2Ni/HA9Fu9zTNVblzX3dsFJ66SXgd792Xua09UZ1AIhAKEhf7+QWuBb7CFnNTIKXP7UMZnYtEdqT/wu7VVNA2g2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"189a43e803d2403346045c6add0865f8e476b163","gitHead":"93630c4f9e24078b752023d9e8f78b0b738ca769","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"2.7.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"1.6.2","dependencies":{"escodegen":"~1.3.0","ast-module-types":"~1.1.1","node-source-walk":"~2.0.0","get-amd-module-type":"~1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.3.2":{"name":"detective-amd","version":"2.3.2","keywords":["amd","detective","dependencies","ast","static analysis"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.2","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"00dff509a3c634bcd04bb20b2d6625e23ce6b573","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.2.tgz","integrity":"sha512-zQGdMYnq+Emggw/7LPCILlTfD2B4KYDySlZpLZZ/QWj3/W28FqoxZTi9baGOdCyqy/vHmFLc3IidsfU9yuSbWA==","signatures":[{"sig":"MEYCIQCcCKJC0Bc/qWhPFowV66/Oh9Ot/oPy4KQcMwJs66TGPAIhAPTkvtwi7yo2uomXpoKj6Ct8cepRrNksEjYpuOG5Toru","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"00dff509a3c634bcd04bb20b2d6625e23ce6b573","gitHead":"8e686353950d25c46e31bbd88ee348017fe5b94a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"https://github.com/mrjoelkemp/node-detective-amd","type":"git"},"_npmVersion":"2.7.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"1.6.2","dependencies":{"escodegen":"^1.3.0","ast-module-types":"^2.0.0","node-source-walk":"^2.0.0","get-amd-module-type":"^1.0.0"},"devDependencies":{"mocha":"~2.0.1"}},"2.3.3":{"name":"detective-amd","version":"2.3.3","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.3","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"6b1c6bc141b45a12f3b8d290a7ed316c8ae07351","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.3.tgz","integrity":"sha512-+7B+tMJUmknh5TIal5S7e9n+X7YKeBZyWUfVjfSlVRBfZfOjS7Wiq7BEsN9oBFK6kRqxhPVYTLsBQ2RmBrrGzQ==","signatures":[{"sig":"MEUCIFfatA53Y0WXAo25wWv/xliwdvggCs5lAlouya+EVhY8AiEAvzG3xkWPsBNKJQLy0ErswYbwLcuFGoDZt9szt9mzgDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6b1c6bc141b45a12f3b8d290a7ed316c8ae07351","gitHead":"e5ca4a2b2f424c284ca353e42d79d5d1fca09ae0","scripts":{"test":"jscs -p google index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"2.11.2","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"0.12.6","dependencies":{"escodegen":"^1.3.0","ast-module-types":"^2.0.0","node-source-walk":"^2.0.0","get-amd-module-type":"^1.0.0"},"devDependencies":{"jscs":"~2.4.0","mocha":"~2.0.1"}},"2.3.4":{"name":"detective-amd","version":"2.3.4","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.4","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"bd323dc2cc3f452b01be7b6c523e08e08cd9ce72","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.4.tgz","integrity":"sha512-4MZLyrskGVvVT98GiUGcAm7Yyxf1yfXwTWnKmDgiZFrEEoO9aN9ApgAE5tIvbMM1xDq71pQPNKCTh4/EFmSRHg==","signatures":[{"sig":"MEUCICR/eVu5PxL6/TYpWMVlL3qKpwTEJoKNwJcRbYLMnVcJAiEA/4Dvx9BsDlLyJXoqbuHDYLZPSv+ycTGsnS6gKnbEMzM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bd323dc2cc3f452b01be7b6c523e08e08cd9ce72","gitHead":"10d36dbf18de5dbda9ee6f38057aa6118f296fdd","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"3.8.0","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"0.12.6","dependencies":{"escodegen":"^1.8.0","ast-module-types":"^2.3.1","node-source-walk":"^3.0.0","get-amd-module-type":"^2.0.4"},"devDependencies":{"jscs":"~2.11.0","mocha":"~2.0.1","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd-2.3.4.tgz_1466043665696_0.7747861607931554","host":"packages-16-east.internal.npmjs.com"}},"2.3.5":{"name":"detective-amd","version":"2.3.5","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.3.5","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"166f4910b23f74fa91e632f94164111127266bff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.3.5.tgz","integrity":"sha512-eNZwZ7GKuUOO18F09xG90rlLRltP9stBRM3FOR4sepTFQlCqm//8iA8Xg3S9e9sA7S/Wfq5F8a4+45vzr8WgKA==","signatures":[{"sig":"MEUCIQCssMX3Tz6wfFUcjZLbLNpRW4Wa8ZaXjdXLl5Xsv6tXXgIgbTamdGznyQpFWyjz26XRqBpAQmkF8OriyRGNBk8F+aQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"166f4910b23f74fa91e632f94164111127266bff","gitHead":"43d978c09e505301fad1de7bbfe672d1abe09a51","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"2.15.5","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"4.4.5","dependencies":{"escodegen":"^1.8.0","ast-module-types":"^2.3.1","node-source-walk":"^3.0.0","get-amd-module-type":"^2.0.4"},"devDependencies":{"jscs":"~2.11.0","mocha":"~2.0.1","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd-2.3.5.tgz_1475083615324_0.9268183163367212","host":"packages-12-west.internal.npmjs.com"}},"2.4.0":{"name":"detective-amd","version":"2.4.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@2.4.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"5eb0df4ef5c18a94033b07daf136dbcd5fc75cd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-2.4.0.tgz","integrity":"sha512-ogtE4oKkh1bJKOa4CQMK1FH7pgq5C7FT8J9+jNldAhbP0QkL+wbs1XdkhOG0rXyWsKvEIs7Om00Yy1s+IHU+1Q==","signatures":[{"sig":"MEQCIGsFOwzHPeE1pC1D5INSqEr2yB97+leHGq6LPQIuku5wAiBQFfl5lVLHEVS/a+N2JEeg4F6zBnHiZtw3nQSK9djapQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5eb0df4ef5c18a94033b07daf136dbcd5fc75cd5","gitHead":"56fb9e54dad642893215f622b0bdb0265263703f","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"3.10.3","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"6.3.1","dependencies":{"escodegen":"^1.8.0","ast-module-types":"^2.3.1","node-source-walk":"^3.0.0","get-amd-module-type":"^2.0.4"},"devDependencies":{"jscs":"~2.11.0","mocha":"~2.0.1","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd-2.4.0.tgz_1475117423208_0.05090949684381485","host":"packages-16-east.internal.npmjs.com"}},"3.0.0":{"name":"detective-amd","version":"3.0.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@3.0.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"40c8e21e229df8bca1ee2d4b952a7b67b01e2a5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-3.0.0.tgz","fileCount":4,"integrity":"sha512-kOpKHyabdSKF9kj7PqYHLeHPw+TJT8q2u48tZYMkIcas28el1CYeLEJ42Nm+563/Fq060T5WknfwDhdX9+kkBQ==","signatures":[{"sig":"MEUCIQC5O7mr9CrZEg0hQJpYrMp4jO4OcF3QucPCEFWhLxpmsgIgMCQbyC3Doegi233rZYc7RIeBSORxnd283B16Ui/lWRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkTZ/CRA9TVsSAnZWagAA0g8P/i8Lv3B+v5+HNSjzIg7t\nB2VKNixJPD23KlRxoZUzvS1aODTvqnSRD7gYi33toeCbcOukEeU0DngA+WqA\nAXjaStGTIakGos8hxSAQNIQDYMjShyX1st2NlKQJG59RHiJrSxl2OeIU5dNJ\npykFGbM2a/yWWpKDsbAByu5eXN6AGJYhG8d/1k6FuGmBBAuO/CQRdaP/a81s\nDXxUKI1YwxVm7+/qmWVUtiwPaMqOrFyntPIold6mkY0LQhJkZTvKSZTe0Gw5\n3jKHnG7UBzSV9qrK4xJ02oZS7QiFrTGzh8rW/3DptMacZ6R9E+TnIQvh7A5a\nZky00d5kQvTkEoQO8LE4Mt+2AxwfrzgFuzFTaIgR/SHOYjNeR6qBF29s0DCk\nhsq3GdzarpOtRIekkB3FRTg2fkMFvyoa6piMj7km1AQpDxVDOLfEY8V1zDEK\n83C6DUCtzve6TCUPFh4vXD/Vu8clVFravaRZ34Vc/5fgz9iKAbFGxK+14jox\nhVt/AY1/Z9SuMdQACDQEcRGY3ZCxTmp5L+yXmAZJ9fQ8gbBHGV7UElgmKyO/\nYQbDYJwaFFCKuM2ZsX864ZRZO194wfFsMda/cpP0yI6pfqHaxeINesZkJFxs\nFOv6tGxFmkXgZHWbHDFAx0G4QTQysNzELRex7esyWtTgNA6WwJJ5fvnYSnwa\ng9tZ\r\n=UbKm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.0"},"gitHead":"7af454215d5566c97991a1139459ec255b960a93","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"5.5.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"8.9.3","dependencies":{"escodegen":"^1.8.0","ast-module-types":"^2.3.1","node-source-walk":"^4.0.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"~2.11.0","mocha":"^5.2.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_3.0.0_1536243327424_0.7078879203400179","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"detective-amd","version":"3.0.1","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@3.0.1","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"aca8eddb1f405821953faf4a893d9b9e0430b09e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-3.0.1.tgz","fileCount":4,"integrity":"sha512-vJgluSKkPyo+/McW9hzwmZwY1VPA3BS0VS1agdpPAWAhr65HwC1ox4Ig82rVfGYDYCa4GcKQON5JWBk++2Kf1Q==","signatures":[{"sig":"MEQCIHh6T1rLpehY1f4dCIs0302RnLKtN/MmxAdPKUL5zL8WAiAQDQt2wvdKT8babnxZCwhdzGOV1VWw/Kqc8k8nRReTFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflhpvCRA9TVsSAnZWagAA7AkP/iNMFekxToq9HeJ/zAbe\n+OikV/bgTWgKsMY/JtF62XxVQMTiIlMWJjC5NmeREVHgc/uDRB7cN4paqTJE\nna/FoS240f/o2e6h1N0iD+cyIq2PRjWThJ1IboCPftHSan7q4mfX/uiFxi8D\nfOVdLN0TD7wAWwCBB4ZXy9+7y4ttisCE6ULxxdQa7m2BsIEvvsSDvSPfyym4\nl9SLVzrZvc6q32302FwcGQw3hToVyYkumiSm/fANyD3g16VzX9EzOYXq1Un6\n1OI4oXKbHOQzkglIiFLTBRBAr8Xw7ULVRt+ndA8MCAyz+W7ICoFRglBmum/8\nF72J2FXHzebnT/utH1TOKqLUpz2Am0i2+IPBYJm6UnufA817HD0yU2ANa8JG\neI8x1ktL74dIMgUCkzLAInCIPggPRlXq4RlofHeZHnU+BgKzk54oNnbibtZw\n9aqymZd50CYo3VBDEkTs6awjmWnnlRBIfbub6tcEGlOX5FZ84yf2mXTLmXhu\nW0BNtasp0M4VZk7wPgGTJ3tH/KnCMWXgXD7jlTnGHu++RbiBRHQMyQI2KB4W\nvPyp648543zpSImLDXbieTflYW3NCeeAAqZxa3gyDjmNWPai+hheucMo0b5b\nZgad3AvV2i1GNggxFeQ4xioRz6RZwxuyeTXAIL5XThRjA+KLMxAnSVzqvAo6\nacLE\r\n=4nss\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.0"},"gitHead":"2de4fe1aacb48e1729eabf69c2c39d336e7fb5f1","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"6.4.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"8.12.0","dependencies":{"escodegen":"^1.8.0","ast-module-types":"^2.7.0","node-source-walk":"^4.0.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"~2.11.0","mocha":"^5.2.0","jscs-preset-mrjoelkemp":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_3.0.1_1603672687159_0.546751101344636","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"detective-amd","version":"3.1.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"url":"http://www.mrjoelkemp.com/","name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@3.1.0","maintainers":[{"name":"anonymous","email":"joel@mrjoelkemp.com"}],"homepage":"https://github.com/mrjoelkemp/node-detective-amd","bugs":{"url":"https://github.com/mrjoelkemp/node-detective-amd/issues"},"bin":{"detective-amd":"bin/detective-amd.js"},"dist":{"shasum":"92daee3214a0ca4522646cf333cac90a3fca6373","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-3.1.0.tgz","fileCount":4,"integrity":"sha512-G7wGWT6f0VErjUkE2utCm7IUshT7nBh7aBBH2VBOiY9Dqy2DMens5iiOvYCuhstoIxRKLrnOvVAz4/EyPIAjnw==","signatures":[{"sig":"MEQCIEU0XATBAdhLOT/WIE9TFJDbxtYVOb4YlfPmW7t7CIPuAiALBhXSQ5nuDj5sQsuA7Wzhw7A6V2Kj6nzoMCZaQ4IA9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgU/kCCRA9TVsSAnZWagAAKosP/10WQd2ChGRZVe+59Qev\nmPvXYYSC7OKVliJ1NJIpLOGBNVNI6Ml2YrltsrZneFrf1mRlfzp0ERyaleAb\nFOgd5muCQfdbzWPGHNbpY6y2w1SVw0bqsIP98aKvAcwtZ86aREWO6N2UD83t\nU+5k6Nhuk7+A2P4y8Erck8WP+bI/IhoAUWxFuvJXy8dQEOnO7QulV3wLz4bM\nCZzEh3ghQJX13aU2aMSMdRWhx4YB8Tx9iR6HgRzLi8vLFX3GrmI3ks8jpF4Z\nyY1IkOV38a1Y2gfyvHPmRv/EV/tF3o+bxhtMOEKZv3GPuwgAVOA5Lp7NXx4L\nvzeCK0OXri/1P76MjNxpznCo/JxoZk4aWla5vqxYU7RPzKXCTR8IbzFFy1gm\nd4084oO3tonZdhIViSg33G7WPkoQngcifuP4AauT9NbBvd61QdYCEP0Tvlez\nmej3W4TvkmdrbcK9ErGxjh5lbmZgXHJ0vEfgXRe78Who8SnIgE8Y4DdnxOhQ\n+WiAgvJQmmNaNynm1gVTq5WHMTZcvXCPQZgwbDFl1HXw5obDQJPb0vuAyIA0\nl+zOr9viGvxP2N4ANTSvWnEiKMICvKS7O9GZMWl/XRbf9ncxORraiLwuDpRz\nLwfXdoOokT9WDYAk0iMpEOVWAThkoGxjxIs5prDd83iuVImYYeSWl0CshCzu\niG60\r\n=1prW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.0"},"gitHead":"ab90ff08bbb1b24f6bf871531cf70297ff79eb64","scripts":{"test":"jscs index.js test/**/*.js bin/*.js && mocha"},"_npmUser":{"name":"anonymous","email":"joel@mrjoelkemp.com"},"repository":{"url":"git+https://github.com/mrjoelkemp/node-detective-amd.git","type":"git"},"_npmVersion":"6.14.8","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{"test":"test"},"_nodeVersion":"10.23.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^2.7.0","node-source-walk":"^4.0.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"^3.0.7","mocha":"^6.2.3","jscs-preset-mrjoelkemp":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_3.1.0_1616115969642_0.9706805252008257","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"detective-amd","version":"3.1.1","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@3.1.1","maintainers":[{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"8ff0b354ce89157a5ee4c1a8c04d74e333b3ae97","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-3.1.1.tgz","fileCount":4,"integrity":"sha512-B/4T8tGIXEuLLBqrKc04qnSLPe5iW/ZubRSbPYAM/6ly/FDh0032iTekFFHycz02EiUfFv0GqV4yhg6A0UMd4g==","signatures":[{"sig":"MEQCIBgHgWLRGxfaq0F7naAQ+L7XSLTqupOs7T5wgnLtwHAgAiBrHMNR/5jrcBurUyfeQ5XjWQCUM4Y3GhwCuwx4zAg8Vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8049,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiE+PSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrb3RAAmvC74V0lwQ3f70QpgFWVSPpmgdH0ERM/c/ssdepGpqB3IfKb\r\nFgVlhQyZf7wRKtaZc07OIsYuMZrj3gQQG7rnStgnKV6iULmD2pvCH7yS7Hkq\r\ntFkTgXg5yKjCn9hKPMP6YlzlgMw1FCkImbb+yDNq1P4uycBPpLD7viMyi3QY\r\n9fc0rfTJXgvMTYqp+BiMt3x2acdHqyGJ7v69Bh26O/GXqu+bn3yNskuvEKuy\r\n0ba5tItX7GMEn5Ga/zjIrkJj5SJ1RDogds/+sgGts2dE7MhbS2i5niVpZKT6\r\nr5L6J9elivYJHcJcf0Uj5SOHhHH7CMvTQgTV8p0YFkKVCY7hUlrtAu9VSWcI\r\nGIzomuhFFakc5sLJDFbJIwLK1vxz/UPHw9U/Rqc7JhdQyNpMXdMfWwxvmu4L\r\nZjXS/Az9BJiDa1HoE8Lay3sOnWuaaZCCqesGwnRNw9NUPIOvtfm/2P8StpE8\r\ntOtTINWfXwrBwQF7zuNscwPyCzQzkbU/4Hh+KheQTBbzHxVjAiRUH3pJqg//\r\nQwQkb1NCBKD1Iw2gXibXr+M8RFtgptBv6ILROXdPTCw2wDe7ew+Dgd0ic0Oz\r\nCjxMKvO98J2BX8030jA1ALe/QaoTIPinVp6DfN6+C71z8DvdIT0f5cC/kh2L\r\ncwY/vnOKa/zSMIDPEIKfEnpmy1D/pia6Ybs=\r\n=OdDc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0"},"gitHead":"7889068750b728b693efd62c5d8a5fccfb6bd060","scripts":{"lint":"eslint bin index.js \"test/*.js\"","test":"npm run lint && npm run mocha","mocha":"mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"8.3.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"16.14.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^2.7.1","node-source-walk":"^4.2.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.3","eslint":"^5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_3.1.1_1645470673839_0.004527023203609204","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"detective-amd","version":"3.1.2","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@3.1.2","maintainers":[{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"bf55eb5291c218b76d6224a3d07932ef13a9a357","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-3.1.2.tgz","fileCount":5,"integrity":"sha512-jffU26dyqJ37JHR/o44La6CxtrDf3Rt9tvd2IbImJYxWKTMdBjctp37qoZ6ZcY80RHg+kzWz4bXn39e4P7cctQ==","signatures":[{"sig":"MEUCIQCkm2qBKmgY697GbIiMwZm5eft6TQ9kAFcN+zfLmaE8hQIgWoeyMTiMZVfvbZgJpmknths7HVVrY79/6GlagoW6Hqc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFNyxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqxbw//VybeQEsX25nyVKx04VTrQZZzd9sIDFoDg2rBqlKTe+qAc0Vc\r\n3NC9SPxci+OCi2PJftPqEYT4h3yYeMKNGsgXIJOn21UxRr/DqUPSVfPOJ6Sb\r\n0Zw3G6742/dPt+McutcQtkYnunt2PcZ3qo37sOfmbxuuLIWNFLUJzMqICYat\r\n43PqQsSxip3X12djLp4z/PuRc3xDlb/dWC/shkDtZ1owlXP0p0NhLXqmsXpA\r\n0VyKPWEzQyqKk6rQGkNTjbNcmkxNxl/EXUigFNnmdkLQwI78NvN28wqNBjpy\r\nAGZr0ksLhdrZwmLlQvNYUb5Q9T7D6iLJG4lrOiOe2L9P4I4Qrl0ZT/R3lJdl\r\nIBC6Sp9VGlSidmIRnrahBKYTTMpHOnWX7dh1aUx9occaqG5w9ZP0WwGE4ztU\r\nlYBkwdsqFNMIzSmt/xcEoEJ4JROm/+Hnkpmo66Gs516KP7BPugXWCiu9BQ3g\r\nTM726t23mgNORvenTUWxks26kz9eHWdHm5DsVyvyKIAtOLBqCT4cLRvc1gE0\r\nwgOfiscs8C4jBwqOyq4kfGpO7PZiTGc0mLr95a5QpyjKhjAy3g7wgl5P438K\r\nq032qQSnOXYd1slUfn4icndTnzxHKQ50nS07rel2p1v0k7KqwKTT9ixgmHO+\r\naMM7XQqCjOnMRYRho+Rt6hNxjrIYvj0VL9g=\r\n=3eLf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0"},"gitHead":"be10240578fdbe12fb2df94415e54decbda593ed","scripts":{"lint":"eslint bin index.js \"test/*.js\"","test":"npm run lint && npm run mocha","mocha":"mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"8.3.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"16.14.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^3.0.0","node-source-walk":"^4.2.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.3","eslint":"^5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_3.1.2_1645534385772_0.6798644844881196","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"detective-amd","version":"4.0.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@4.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"cbb94875b16035f16904e6cf52f3c2e7f03ae663","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-4.0.0.tgz","fileCount":5,"integrity":"sha512-x92cz1qtRaJM73shAU5mGg0hFAiqUTTCYxroPAgDIBav/fpx8wHYW4r4YegtceIn81FPWskRsJxMB6mFNcvzOw==","signatures":[{"sig":"MEYCIQDtkQZK47ReIjI5Iky23kP52fQi2r7VTT/Bub13vFOdwQIhAOeOjABC7FShzZr6sz+4I2pvyBf4oiUTAxBObC3Cq5NU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIL2rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfzRAAmWC/Jjgtei8POPPXa6hkslEMRNf9vfn1NeKw9jXSCzeiFPu/\r\nyRY17rhi6AoTIMutC5eRjvm+mfz16o8dVdGiM+yB4DE9PeHnoR+xd0cPCrDa\r\n4bayuFVnKhr0uiaaZcESoTfO7q9y1FABvKmnmChdO7047W1ZS8E64gUfhRhR\r\nVVY7uARfsq8s2Jm7FOwNi9gUSq4umoxynA+F0niEqnFn8kKKie6o1EAyUAl6\r\n/sG66aFnbzzXVide0qH3PnwRNJ1ZZekjmtTtooNZ7Lpu/VCEFFJiK+2llIEG\r\nWCLTNb59V1+BKoBvVQdb+C1uwqvr4mz4UlFjfs7RU5UbhfosbycNSIFyD7sS\r\ntJhvQHg3pxhLD2HiOe9/nS3jJjqULckGU02rrjlvCCMxf9ylEF1LknHrHDZY\r\nId9AV9n/TrPu2zAlGAfiKhPE6jNkfLH80wktDyY7JoLsqd9HVoXA4ujBoe9q\r\nJ47dytTOrW0jAFI2ieinc4mkJHCEg6kbKx9a0ZI8ZI2yjAEyq0dF9MYVIxOK\r\nmjEY7KY0bBud5RkJu63/PUwz+uDNl0iTg797duHAPpWt07zMutcwWsNJ+s7T\r\nQdHsQFNKtv1JKZHlVCAb2FkbHvAhHS5nf1Df2UZ9OuzRntNIiu/ohPrh/M/c\r\n3pZeX9ikvG9V/okmN3FtLAy/Pk218lW2rEw=\r\n=Qud6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"78b492ff5dd351cfc8d854f18cbda53a92c9317f","scripts":{"lint":"eslint bin index.js \"test/*.js\"","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"8.3.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"16.14.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^3.0.0","node-source-walk":"^5.0.0","get-amd-module-type":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.11.0","mocha":"^9.2.1","eslint":"^8.10.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_4.0.0_1646312875193_0.37186603688763986","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"detective-amd","version":"4.0.1","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@4.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"1a827d9e4fa2f832506bd87aa392f124155bca3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-4.0.1.tgz","fileCount":5,"integrity":"sha512-bDo22IYbJ8yzALB0Ow5CQLtyhU1BpDksLB9dsWHI9Eh0N3OQR6aQqhjPsNDd69ncYwRfL1sTo7OA9T3VRVSe2Q==","signatures":[{"sig":"MEUCIQCiXPWAjRIIFUyPh/HOgzgosl8xmXbe8jROSZ9UL6Je1QIgTiLds0LzqxSCSa0BRuU0mb8R7pZX26l8zu5PI2Izhfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIMG4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbMw/9HXORn6GCNcsaBfLnHcFl/J9gCiD0+olQt+njIiL0AB4h/iQ/\r\nl6YrCBfKaypHDcVcH/LWIL2p2h2bxOLvJnVSuRKoJZVLgI/K9KdSbrqEQjkX\r\nmxfSf0iM2yx5JLSckKuTxFL/b0prUIHwveh7lmrnrMMl6cu2UfJqCVufBeFD\r\nT3N6UwZPM3ISpugOvK4eI57MTyDonQAGwaXga7FMooPNVwqEalSBntmvP6sp\r\nb9Yr402WP+qsPJlc5CZL88WcZyLqcPvnaUuP6hqNOc1OPyqEqV1jpGQrt6Iy\r\n0l2dB4S8xnTTN5xdQcXYu99FvhGfhPVrSkmUDC3Yqq2hMnpZlUbLXjT1qYM5\r\nEw31CIr4E/PIpjl0Qhy2p3NC7gHKFAB7jYlirxZJ77T1fcIrgYxy6DWYDfSs\r\nVvX8jiye4zyxHE77JZSPGb9kEWI8PNTr7I/6vbwu0vrzV7pJvY5NwS7nd0Zd\r\nt54HOnVXirknUnU+d3lmAPASZxtnL1ikq2dxLPgvNoYdvvpe0c+rUjLFQSSX\r\nBjIB6ExekgaQeoLF248zbCkmdB+D+Gsr8fuUkwe8K5hYJd4krYTgFanxEGI4\r\njxLnVVy8QTVJ2+ubrZWmjX1tLBD7TXlyEVwbeqa4fjmP2pxsLH5Pt346+Mf3\r\nrP2wDZVtJJXnVGu/gdwGy1NTYNLW3ZW5ssI=\r\n=qxsP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"04e52a134b478033c53d4fb66848198eca20c813","scripts":{"lint":"eslint bin index.js \"test/*.js\"","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"8.3.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"16.14.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^3.0.0","node-source-walk":"^5.0.0","get-amd-module-type":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.11.0","mocha":"^9.2.1","eslint":"^8.10.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_4.0.1_1646313912248_0.7762381241230578","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"detective-amd","version":"4.1.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@4.1.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"d3402df4d06a1e7078965482d120a85095147746","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-4.1.0.tgz","fileCount":5,"integrity":"sha512-XlQrGjGEnMFjKbep0/S/T7XICxf25LFMP6Ug+Iw/Ww/MHUBzfy8QETCzamO1JlAMYPmkChDh21/NS/csG0FwGg==","signatures":[{"sig":"MEQCIH9I5OurANj5k7JTBvgXaoMZru4ehV57b5MhL8tjx2OZAiBJcOb2qipPRTzOmvyBI73En4sdGrHG0ZpfKEZiUQsGtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFr7NACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrU3w//Vskcu+mpJdIZawtCeDYt/ZIMWypCFktyF2XyaXO4N7Epcs1c\r\nnCFr/vp9t0J3jMGTSB7qVAOfkzfnVaHZp5beawqDe9gfpqwnMeMeriuoEZ6b\r\nEDkLmqNhtR4QRoZteC1/n7B3ftN9wp7+DI3tOv+qgXLiWMspx+XvMRsiD5p0\r\nd3/vux4pTrz8+ZtfMsEgmKK+KtwCOMtHi8iFRo5l41b+djnHpy4zaYpU6KN7\r\nPYd+GcqatwwHzC4hlvtXkRDx0C1WmwK6VSCFgWxvRUrbrN7rfbIt2QYr9Vu8\r\nl3NSa76jneUQWy5gnhPBLGm1Yhhu8T1zvobtuPL8yUm/CSzWemp2B94PutQK\r\nOjDWXJqlOG27Utw3PuzBY6JD0M5hivcIitC3/C5Q8nTTguw14BDyvf304aqF\r\npENm+M+oXO+0PG09qiLZIrj66fgm/Hp4pbn9dfft27L1uSFnf2zGvgJ/1tT8\r\nOmiVtf2DLsj35WS9rio8zW4ig28GOdob/HjJTw60kggkFQULtZUOoHPsdoCg\r\nPyB/ELGebOvb3+c8+Evh5sjBXLvcYKWTyZC1nhA72yIsXm9rQnNb2jC+LzdL\r\nj2CJA6RkU6X0F0ehYBlP9fnnMycfXc8VF3KecbEwnEAD+vR1nhWyy2vhIRS6\r\nCf45g7ee3LB+RmLcDdLU68nNEnISPqsvfIE=\r\n=w9Vv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"d90c6d44c21ec3ba1c27bc9cdbec2324f1b79441","scripts":{"fix":"npm run lint -- --fix","lint":"eslint bin index.js \"test/*.js\"","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"9.5.0","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"18.15.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^4.0.0","node-source-walk":"^5.0.1","get-amd-module-type":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","mocha":"^9.2.2","eslint":"^8.36.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_4.1.0_1679212236848_0.15207171615537174","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"detective-amd","version":"4.2.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@4.2.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prefer-node-protocol":"off","unicorn/explicit-length-check":"off","unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"21c43465669f06cf894eef047a27e6e72ba6bc13","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-4.2.0.tgz","fileCount":5,"integrity":"sha512-RbuEJHz78A8nW7CklkqTzd8lDCN42En53dgEIsya0DilpkwslamSZDasLg8dJyxbw46OxhSQeY+C2btdSkCvQQ==","signatures":[{"sig":"MEYCIQDoh33y7wQunKgVAHwlj4A3bUXqRNeOvqvMuiQUNipojwIhAM8thlYHAXOzIRovbUXl7pVD3eWMzoMDGBR785S7u0H2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkR8GyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrnsg//bg8Itd25vjCKsqSfUjGMoNzCo0NAgMemizN/as1EJyHl1an3\r\nNXP7ME+jsVvuKgBZ0gr6JiznJ6GTOwtRxyFf3b8mymHitEPi6ZiV40K4u1HU\r\nqGw/O7wLWwHCrlMxw+q7zMH35AWEd2j+RhbM1Qr186QcYOE4yrP6DVKhMHae\r\nODYys+J7S+lfCoDTfEQTXVd6qZ5hpuhmbYnXl6kor5Ug24Jl4d9zH02XMjlh\r\nQaBD+eeRFe4PR4vTd9eVewcO4iKN5TqeSq95vRAeN7ayEe8nVQBMR2ZY15Zl\r\nn6R7Z7MQTTwr/tYBkJEi+iZlhlHdDOdTEzKly3cPAc7P9kvF/YdtRKW2eb7/\r\nh9BQmTxSXrpzROq5O9eVezboG/iN2ylY7uiMDcDLY/hkGw3YQmI3VZmWy55C\r\n86EICyjPKts2VGaAl+k5jF9TsBWNjkU96WpohzL9J/5eTlQqaVymEiDus383\r\nLhrbyaXWjc2QM3q5LGZGm/BuFiU02DadYu6uUEZg++x4lTgDBi9Ud4+X0eHt\r\n5yvEt1BYkqSuD1x+ZlmWqVG8M2qhOnrWGAQceCK3VCAf0QyDb+Itr4rZLTAb\r\nfAmO3BSwJv1exZV7vJdSeme0jWRImYdwpdrUK3paSxG3oM8mpRgWOMXQaUo6\r\nkHIhxQXpljaXjvkzP/ZlYE6wGK73m86McMM=\r\n=th0s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"cdc5e4fa233522f72db6722dfd29e0e6c9f2c6ed","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"9.5.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"18.16.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^4.0.0","node-source-walk":"^5.0.1","get-amd-module-type":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.52.4","mocha":"^9.2.2"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_4.2.0_1682424242157_0.5408601086548499","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"detective-amd","version":"5.0.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@5.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","max-nested-callbacks":["error",5],"object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prefer-node-protocol":"off","unicorn/explicit-length-check":"off","unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["test/fixtures/*"],"overrides":[{"envs":["mocha"],"files":"test/**"}]},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"32d5d2185aed856344e3be1df8eb4fe7159d9200","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-5.0.0.tgz","fileCount":5,"integrity":"sha512-25DBBo4lcuiBuH0wTQ7VFGx6+wfapfb2wqNk+zethPy/Aug29/GPl94zMQJj/eUzkN/NNCumb5oEzD0efneyXQ==","signatures":[{"sig":"MEQCIG1+Kd0ejOeUQK/dwl4MnhjtrHi6KQjm9fdejBEXDqQvAiAjV94HbiolMAvzSi4SAd27xGdwZD/lieBvo0rR1SpBgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkVKn+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpevw/8Cosx5Ga496+kJzLDN3AuZDaSkeSwRLXqkXTgWS4MQ9A54Mt+\r\n1pf/+qdH/6MS+1VsjXwpzXOlBmEOr7iEgDJdSlrFOgAwsmlRIOJNHX6O/VLs\r\nt2+7dkoBL/uzv9J4q+8c1NwXhcqwcKb9VdIWfUa05AXDL1NnBG3gCIVRiJlp\r\n1RtOot27lZ4zjzWPyS0iEiYTktPh/02ahqSB+292ptnBv9pz0ueD69WinTlL\r\nffQ66kz6gTNR3Aq4M30DXla2KaTzQ8gMd5mJqtvT4x3PHWIBpbcSriWOScZi\r\n8oEC0O+Pd/z4mD7eYLmkxGpRcEPP7rAIJsEfpwrIZGUvsmm3GbsDfJj07sn/\r\nfCZcWXcrqjuwInQzdOQzfinnfBY1DlaLMYBN8QZ/q476GHyMQrOxkIJOWv7T\r\nF8L2ooUCBzPl2pc5+IExLIWqyU5eYsrgy+Q+vHdCwYvFSH6e+EERoDKnPQv9\r\nUWy8TeyE9WvF21nR3RyZJDWtB0+LYVj7kerAoTXJCZXvNouE2GrDiJX54oGO\r\n+7QtCqmSikmjMHnVx8iUXk73Ac/NJit28CqTko9uFxWAEPt9VaigCqCv+xcQ\r\ncARiKSPCr9uPy3y8lTIE3DXT2gnheQ/YVDNhO9FMUwETYtMz0z4lnAusBS9X\r\nNBEcc2K0M3ksxsFMuoHQUWn5/rpcmI9rM3w=\r\n=eybi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=14"},"gitHead":"055023e439e8ffa047c4b5c349363a80f05d4d63","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"9.5.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"18.16.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^5.0.0","node-source-walk":"^6.0.0","get-amd-module-type":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","mocha":"^10.2.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_5.0.0_1683270142311_0.6479112795434139","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"detective-amd","version":"5.0.1","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@5.0.1","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prefer-node-protocol":"off","unicorn/explicit-length-check":"off","unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["test/fixtures/*"]},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"e681f0cf1795d8922ea9782feeb7cd5ae9552468","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-5.0.1.tgz","fileCount":5,"integrity":"sha512-e7n0E0Wte78U9lcpl3hsTh1ZJ+zp/rgEbdbzGLgTowSbbSemuHnM8olp4KHMF1eCaurrCE50IU9VkoV13ezK4A==","signatures":[{"sig":"MEYCIQDnJOI2kjhpI3pHGzwQHSOrQYMFpn57f4Nl6sSfR3m0jQIhAKDHzBHSjkUbvzrI/2CUKdM23gCrv2kXLCTxM3LsyMR0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10136},"main":"index.js","engines":{"node":">=14"},"gitHead":"a5d09806946492022dda3c16772bc4802f98f781","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"9.5.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"18.16.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^5.0.0","node-source-walk":"^6.0.0","get-amd-module-type":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","mocha":"^10.2.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_5.0.1_1683554960756_0.6062470729253138","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"detective-amd","version":"5.0.2","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@5.0.2","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prefer-node-protocol":"off","unicorn/explicit-length-check":"off","unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["test/fixtures/*"]},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"579900f301c160efe037a6377ec7e937434b2793","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-5.0.2.tgz","fileCount":5,"integrity":"sha512-XFd/VEQ76HSpym80zxM68ieB77unNuoMwopU2TFT/ErUk5n4KvUTwW4beafAVUugrjV48l4BmmR0rh2MglBaiA==","signatures":[{"sig":"MEYCIQDTV8RgCcMmjO57guVyu0389CbRfdw84/lyMsNY2RHW6gIhAMerY8S5p++oTT3zmqvNXTraSFzZ0YGFsC8CvVR7pA6C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10048},"main":"index.js","engines":{"node":">=14"},"gitHead":"a4f0e225e77ff914466010d211754f8c4cc2d18a","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"9.5.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"18.16.0","dependencies":{"escodegen":"^2.0.0","ast-module-types":"^5.0.0","node-source-walk":"^6.0.1","get-amd-module-type":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.13.0","xo":"^0.54.2","mocha":"^10.2.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_5.0.2_1684128792981_0.5462941287629979","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"detective-amd","version":"6.0.0","keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","_id":"detective-amd@6.0.0","maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-amd","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"xo":{"rules":{"curly":["error","multi-line"],"comma-dangle":["error","never"],"prefer-template":"error","arrow-body-style":"off","operator-linebreak":["error","after"],"capitalized-comments":"off","object-curly-spacing":["error","always"],"unicorn/prefer-module":"off","space-before-function-paren":["error","never"],"unicorn/prefer-node-protocol":"off","unicorn/explicit-length-check":"off","unicorn/prevent-abbreviations":"off","unicorn/prefer-top-level-await":"off"},"space":true,"ignores":["test/fixtures/*"]},"bin":{"detective-amd":"bin/cli.js"},"dist":{"shasum":"29207f8309f3d2d130e3356d67f7fcd90e0c2cbf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-6.0.0.tgz","fileCount":5,"integrity":"sha512-NTqfYfwNsW7AQltKSEaWR66hGkTeD52Kz3eRQ+nfkA9ZFZt3iifRCWh+yZ/m6t3H42JFwVFTrml/D64R2PAIOA==","signatures":[{"sig":"MEQCIG49EGKnlxB73JgEJQdslN+ogeIZn1LyvtEE1LdhUF/CAiAyail/hTYZqQa71N4Ni5+mSsjijqIpVOvZnXDpOMJSKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10047},"main":"index.js","engines":{"node":">=18"},"gitHead":"92276f2f9798dd4e8a3e528ff5a04841c9175e2e","scripts":{"fix":"xo --fix","lint":"xo","test":"npm run lint && npm run mocha","mocha":"mocha","test:ci":"c8 npm run mocha"},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-amd.git","type":"git"},"_npmVersion":"10.2.4","description":"Find all dependencies within a JavaScript file using AMD module syntax","directories":{},"_nodeVersion":"20.11.1","dependencies":{"escodegen":"^2.1.0","ast-module-types":"^6.0.0","node-source-walk":"^7.0.0","get-amd-module-type":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^9.1.0","xo":"^0.58.0","mocha":"^10.4.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-amd_6.0.0_1713076884766_0.3593408919070018","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"detective-amd","version":"6.0.1","description":"Find all dependencies within a JavaScript file using AMD module syntax","main":"index.js","bin":{"detective-amd":"bin/cli.js"},"scripts":{"lint":"xo","fix":"xo --fix","mocha":"mocha","test":"npm run lint && npm run mocha","test:ci":"c8 npm run mocha"},"repository":{"type":"git","url":"git+https://github.com/dependents/node-detective-amd.git"},"keywords":["amd","detective","dependencies","ast","static analysis","requirejs","jsx","module"],"author":{"name":"Joel Kemp","email":"joel@mrjoelkemp.com"},"license":"MIT","bugs":{"url":"https://github.com/dependents/node-detective-amd/issues"},"homepage":"https://github.com/dependents/node-detective-amd","engines":{"node":">=18"},"dependencies":{"ast-module-types":"^6.0.1","escodegen":"^2.1.0","get-amd-module-type":"^6.0.1","node-source-walk":"^7.0.1"},"devDependencies":{"c8":"^10.1.3","mocha":"^11.1.0","xo":"^0.60.0"},"xo":{"space":true,"ignores":["test/fixtures/*"],"rules":{"arrow-body-style":"off","capitalized-comments":"off","comma-dangle":["error","never"],"curly":["error","multi-line"],"operator-linebreak":["error","after"],"object-curly-spacing":["error","always"],"prefer-template":"error","space-before-function-paren":["error","never"],"unicorn/explicit-length-check":"off","unicorn/no-anonymous-default-export":"off","unicorn/prefer-module":"off","unicorn/prefer-node-protocol":"off","unicorn/prefer-top-level-await":"off","unicorn/prevent-abbreviations":"off"}},"_id":"detective-amd@6.0.1","gitHead":"a05d705969bee40f5c70db257e0bb3e9838d7411","_nodeVersion":"20.18.2","_npmVersion":"10.8.2","dist":{"integrity":"sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==","shasum":"71eb13b5d9b17222d7b4de3fb89a8e684d8b9a23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/detective-amd/-/detective-amd-6.0.1.tgz","fileCount":5,"unpackedSize":10100,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCT1FBFH+4xgcdjW4mg3GfCsigcsnJhtuXPHymW9y4smQIhAOg4K/EFf3XjCnLGLBgowO/BK/EWR3kVRZXhn+FJQr62"}]},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"patrik.henningsson@gmail.com"},{"name":"anonymous","email":"mrjoelkemp@gmail.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/detective-amd_6.0.1_1738416147115_0.6249896526103038"},"_hasShrinkwrap":false}},"name":"detective-amd","time":{"created":"2014-03-21T16:27:53.836Z","modified":"2025-02-01T13:22:27.554Z","2.0.0":"2014-03-21T16:27:53.836Z","2.0.1":"2014-03-28T19:06:06.545Z","2.0.2":"2014-04-13T02:10:37.101Z","2.0.3":"2014-06-06T20:21:01.264Z","2.1.0":"2014-06-06T22:06:38.513Z","2.1.1":"2014-07-07T20:00:30.429Z","2.1.2":"2014-07-18T19:39:02.571Z","2.1.3":"2014-07-18T19:40:18.547Z","2.1.4":"2014-07-18T19:41:20.505Z","2.1.5":"2014-09-11T22:03:11.034Z","2.2.0":"2014-10-25T21:57:22.458Z","2.2.1":"2014-11-01T19:29:23.887Z","2.2.2":"2014-12-13T21:36:01.309Z","2.3.0":"2014-12-14T02:33:00.821Z","2.3.1":"2015-06-27T18:58:05.995Z","2.3.2":"2015-07-04T14:51:25.238Z","2.3.3":"2015-10-24T15:01:44.701Z","2.3.4":"2016-06-16T02:21:06.688Z","2.3.5":"2016-09-28T17:26:57.339Z","2.4.0":"2016-09-29T02:50:23.947Z","3.0.0":"2018-09-06T14:15:27.521Z","3.0.1":"2020-10-26T00:38:07.316Z","3.1.0":"2021-03-19T01:06:09.790Z","3.1.1":"2022-02-21T19:11:14.387Z","3.1.2":"2022-02-22T12:53:05.879Z","4.0.0":"2022-03-03T13:07:55.303Z","4.0.1":"2022-03-03T13:25:12.385Z","4.1.0":"2023-03-19T07:50:37.007Z","4.2.0":"2023-04-25T12:04:02.339Z","5.0.0":"2023-05-05T07:02:22.470Z","5.0.1":"2023-05-08T14:09:20.974Z","5.0.2":"2023-05-15T05:33:13.171Z","6.0.0":"2024-04-14T06:41:24.955Z","6.0.1":"2025-02-01T13:22:27.316Z"},"readmeFilename":"README.md","homepage":"https://github.com/dependents/node-detective-amd"}