-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
37 lines (32 loc) · 1.06 KB
/
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
31
32
33
34
35
36
37
module github.com/devops-kung-fu/hookz
go 1.22
toolchain go1.22.0
require (
github.com/dustin/go-humanize v1.0.1
github.com/gookit/color v1.5.4
github.com/jarcoal/httpmock v1.3.1
github.com/microcosm-cc/bluemonday v1.0.26
github.com/segmentio/ksuid v1.0.4
github.com/spf13/afero v1.11.0
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.9.0
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/alessio/shellescape v1.4.2 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/gorilla/css v1.0.1 // indirect
golang.org/x/net v0.21.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/devops-kung-fu/common v0.2.6
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)