-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
34 lines (31 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
module github.com/joelanford/jira-stalebot
go 1.19
require (
github.com/adrg/xdg v0.4.0
github.com/andygrunwald/go-jira/v2 v2.0.0-20221123211055-094697715517
github.com/go-logr/logr v1.2.3
github.com/go-logr/zapr v1.2.3
github.com/mattn/go-isatty v0.0.16
github.com/onsi/ginkgo/v2 v2.4.0
github.com/onsi/gomega v1.23.0
github.com/spf13/cobra v1.6.1
go.uber.org/zap v1.19.0
k8s.io/apimachinery v0.26.0
sigs.k8s.io/yaml v1.3.0
)
require (
github.com/fatih/structs v1.1.0 // indirect
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/trivago/tgo v1.0.7 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)