I noticed that Jasmine is listed under dependencies. I'm fairly certain it's only required for testing and is a devDependency and thought it would be good to move it to "devDependencies" in your bower.json file:
Since it's listed under "dependencies" right now some build tools (in particular brunch) will try to include it when you build a project. Since the Jasmine bower.json file does not exist an automated .bower.json is created that is missing the main property and brunch fails. All of that can be avoided if it's listed as a "devDependency" instead of a normal dependency. I'm happy to do a PR if you'd accept the change.
Hi WildHoney,
I noticed that Jasmine is listed under dependencies. I'm fairly certain it's only required for testing and is a devDependency and thought it would be good to move it to "devDependencies" in your bower.json file:
Since it's listed under "dependencies" right now some build tools (in particular brunch) will try to include it when you build a project. Since the Jasmine bower.json file does not exist an automated
.bower.json
is created that is missing themain
property and brunch fails. All of that can be avoided if it's listed as a "devDependency" instead of a normal dependency. I'm happy to do a PR if you'd accept the change.Thanks!