UNPKG

@ylveracode/veracode-cli

Version:

a NodeJS based API wrapper for utilizing the Veracode APIs

19 lines (16 loc) 469 B
#!/usr/bin/env node import 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;