This question might not be related to npm specifically, but more about command lines in general.
I have installed Dredd (https://github.com/apiaryio/dredd) and I am trying to execute a command that needs to look like this:
dredd <path to blueprint> <api_endpoint> [OPTIONS]
- Do the first two arguments need to be strings (wrapped with quotes)?
- If I want to pass an output option with -o (or --output), Dredd specifies it needs to be an array. How do I pass an array in command line?
I have tried running
dredd services/address.md http://example.com -c false
I can see the command running, which tells me that the first two arguments don't necessarily need to be strings (I also tried with strings and it still works...), but the color option that is -c is suppose to disable the colors in the console when set to false, but it doesn't, so I'm probably calling the options wrong. Every option I try has no effect.
Hopefully you can help me!