Is it possible to change ionic package name prior to ionic start?

I know it's possible to change the package name by modifying the config.xml file. As seen on this question. But is it possible to specify the package name prior to the creation of the project, like we do on cordova?

Cordova example: cordova create hello com.example.hello HelloWorld

Now, on Ionic, is it possible to do something similar?

Try something like this:

$ionic start -a todo -i com.carlosrojasblog.todo todo blank

change [todo] for your project name and [com.carlosrojasblog.todo] for your own package name.