You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Golang license and dependency checker. Prints list of all dependencies, their UR
8
8
9
9
## Introduction
10
10
11
-
glice analyzes the go.mod file of your project and prints it in a tabular format - name, URL, and license short-name (MIT, GPL...).
11
+
glice analyzes the go.mod file of your project and prints it in a tabular format [csv and json available as well]- name, URL, and license short-name (MIT, GPL...).
12
12
13
13
## Installation
14
14
@@ -40,9 +40,9 @@ Alternatively, you can provide path which you want to be scanned with -p flag:
40
40
41
41
By default glice:
42
42
43
-
- Prints only to stdout
43
+
- Prints to stdout
44
44
45
-
- Gets dependencies from go.mod
45
+
- Gets dependencies from go.mod
46
46
47
47
- Fetches licenses for dependencies hosted on GitHub
48
48
@@ -56,7 +56,8 @@ All flags are optional. Glice supports the following flags:
56
56
- p [string - path] // Path to be scanned in form of github.com/author/repo
57
57
- t [boolean - thanks] // if GitHub API key is provided, setting this flag will star all GitHub repos from dependency. __In order to do this, API key must have access to public_repo__
58
58
- v (boolean - verbose) // If enabled, will log dependencies before fetching and printing them.
59
-
59
+
- fmt (string - format) // Format of the output. Defaults to table, other available options are `csv` and `json`.
60
+
- o (string - otuput) // Destination of the output, defaults to stdout. Other option is `file`.
60
61
```
61
62
62
63
Don't forget `-help` flag for detailed usage information.
0 commit comments