Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bower show package dependencies tree before install

Tags:

bower

Is it possible to get a list of package dependencies (as produced by bower list) before installing the packages?

bower install does not complete successfulfy in my project as some package has a dependency to a non existing package version, therefore I would like to be able to quickly find that package that has this incorrect dependency instead of having to inspect bower.json of every package.

like image 337
Adam Siemion Avatar asked Sep 15 '25 21:09

Adam Siemion


1 Answers

You could try bower-dependency-tree. npm install -g bower-dependency-tree && bower-dependency-tree name_of_the_package_you_are_interested_in should do it.

disclosure: I am the maintainer of the project.

like image 89
Stanley Shyiko Avatar answered Sep 19 '25 14:09

Stanley Shyiko