-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgo.mod
30 lines (27 loc) · 949 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/go-courier/husky
go 1.17
require (
github.com/davecgh/go-spew v1.1.1
github.com/fatih/color v1.13.0
github.com/go-courier/semver v1.0.1
github.com/go-logr/logr v1.2.2
github.com/go-logr/stdr v1.2.2
github.com/gobwas/glob v0.2.3
github.com/onsi/gomega v1.17.0
github.com/pelletier/go-toml/v2 v2.0.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.3.0
gopkg.in/yaml.v2 v2.4.0
mvdan.cc/sh/v3 v3.4.2
)
require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
)