UNPKG

@ylveracode/veracode-cli

Version:

a NodeJS based API wrapper for utilizing the Veracode APIs

19 lines (18 loc) 523 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const yargs = require("yargs/yargs"); const argv = yargs(process.argv.slice(2)) .scriptName('veracode-cli') .commandDir('veracode/cmd') .showHelpOnFail(true) .demandCommand(1, '') .wrap(process.stdout.columns) .option('prof', { 'alias': 'veracode_profile', 'default': 'default', 'global': true, 'describe': 'The profile name in the credentials file', 'type': 'string' }) .argv;