Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 525 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 525 Bytes

Mix Licenses

This package adds the task mix deps.licenses to your mix tasks. This can be used to print out a table of your mix.lock dependencies and the license they use. This currently only works for dependencies from Hex since it reads the license information from the hex_metadata.config files of your dependencies.

Installation

The package can be installed by adding mix_licenses to your list of dependencies in mix.exs:

def deps do
  [
    {:mix_licenses, "~> 0.1.0", only: :dev}
  ]
end