I'm using bower for the first time and all the documentation I can find shows you how to install one package at a time e.g. "bower install jquery".
I'm used to using npm, where you create a package.json file, add all the dependencies with version numbers and simply run npm install in the same directory and all your dependencies are downloaded in one go.
I want to be able to create a directory containing a website template which somebody can clone and then run a single command which installs all front-end packages with one command into the bower_components folder.
Is this possible?