depmat
v0.1.6
Published
Node dependency matrix generator
Downloads
22
Readme
depmat
Installation
npm install --save-dev depmat
Usage
Simply run depmat
in your project root:
cd <path to my awesome project>
depmat
Or, you may specify your project's root path as the first argument:
depmat <path to my awesome project>
depmat
will output the dependency matrix as a csv to your console. To save the matrix for future use, simply pipe it into a file like so:
depmat > dm.csv
️️⚠️
depmat
will look for apackage-lock.json
, so be sure to runnpm install