File: /home/f/r/e/frenchy/www/french-american.org/current/node_modules/snyk/dist/cli/commands/modules.js
"use strict";
const snyk = require('../../lib');
module.exports = function (path, options) {
if (!options) {
options = {};
}
return snyk.modules(path || process.cwd()).then((modules) => {
let parent = '';
if (modules.parent) {
parent = modules.parent.full;
}
if (options.json) {
return JSON.stringify(modules, '', 2);
}
return (parent +
Object.keys(modules.dependencies)
.map((key) => modules.dependencies[key].full)
.join('\n'));
});
};
//# sourceMappingURL=modules.js.map