## Because
- The FxA CLI scripts used old commander versions (2.18.0 in fxa-auth-server, 9.3.0 in fxa-profile-server).
- Commander 7 and later no longer stores options as properties on `program`. Reads such as `program.delay`, `program.batchsize`, `program.delimiter` and `program.emailPattern` silently fell back to their defaults.
## This pull request
- Upgrades `commander` to `^13.1.0` in fxa-auth-server and fxa-profile-server, and adds it to fxa-admin-server.
- Changes the CLI scripts to use the named `program` or `Command` import and to read options with `program.opts()`.
- Adds `.allowExcessArguments()` where a value-less `--limit` flag can leave a positional arg.
- Renames the action-handler parameter `cmdObj` to `options` in `google-events-cli.js`. In commander 13 the handler gets `(args..., options, command)`, so this value is already the options object.
## Issue that this pull request solves
Closes: https://mozilla-hub.atlassian.net/browse/FXA-9229