Currently get command validates its parameters rather loosely. We should add at least following checks: - [x] check if number of positional arguments is less than 2 - [x] validate command name and --alias against regexp (`/^[a-z0-9_-]+$/`?`) - [ ] check if --version is a correct semver range - [ ] check if --from is a correct URL
Currently get command validates its parameters rather loosely. We should add at least following checks:
/^[a-z0-9_-]+$/?`)