| 1 | ## `license` command |
| 2 | ``` |
| 3 | zigmod license |
| 4 | ``` |
| 5 | |
| 6 | This will print a listing of all of your dependencies (deeply)' licenses. Any code is valid for the `license` field in `zigmod.yml` but should it match a valid SPDX identifier, a URL to learn more about the license will also be printed so the user can learn more about it. |
| 7 | |
| 8 | Should one of your dependencies not have a `license` field in their `zigmod.yml` manifest, an `Unspecified:` list will appear at the bottom of the output. |
| 9 | |
| 10 | Running this command on Zigmod itself (as of this writing) produces such output: |
| 11 | ``` |
| 12 | MIT: |
| 13 | = https://spdx.org/licenses/MIT |
| 14 | - This |
| 15 | - git https://github.com/yaml/libyaml |
| 16 | - git https://github.com/nektro/iguanaTLS |
| 17 | - git https://github.com/nektro/zig-ansi |
| 18 | - git https://github.com/ziglibs/known-folders |
| 19 | - git https://github.com/nektro/zig-licenses |
| 20 | - git https://github.com/truemedian/zfetch |
| 21 | - git https://github.com/truemedian/hzzp |
| 22 | - git https://github.com/MasterQ32/zig-network |
| 23 | - git https://github.com/MasterQ32/zig-uri |
| 24 | - git https://github.com/nektro/zig-json |
| 25 | - git https://github.com/nektro/zig-extras |
| 26 | - git https://github.com/nektro/zig-range |
| 27 | - git https://github.com/nektro/zig-detect-license |
| 28 | - git https://github.com/nektro/zig-licenses-text |
| 29 | - git https://github.com/nektro/zig-leven |
| 30 | - git https://github.com/nektro/zig-inquirer |
| 31 | - git https://github.com/arqv/ini |
| 32 | - git https://github.com/nektro/zig-time |
| 33 | - git https://github.com/marlersoft/zigwin32 |
| 34 | ``` |