-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
37 lines (35 loc) · 1.66 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/kilgaloon/leprechaun
require (
github.com/certifi/gocertifi v0.0.0-20190105021004-abcd57078448 // indirect
github.com/fsnotify/fsnotify v1.4.7
github.com/getsentry/raven-go v0.2.0
github.com/gopherjs/gopherjs v0.0.0-20181004151105-1babbf986f6f // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/klauspost/cpuid v1.2.0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-runewidth v0.0.3 // indirect
github.com/mholt/certmagic v0.0.0-20190122014809-c1d472b46046
github.com/miekg/dns v1.1.3 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/olekukonko/tablewriter v0.0.0-20180912035003-be2c049b30cc
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/robfig/cron v0.0.0-20180505203441-b41be1df6967
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.3.0
github.com/xenolf/lego v2.1.0+incompatible // indirect
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b // indirect
golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3 // indirect
golang.org/x/sys v0.0.0-20180906133057-8cf3aee42992 // indirect
gopkg.in/ini.v1 v1.38.2
gopkg.in/square/go-jose.v2 v2.2.2 // indirect
gopkg.in/yaml.v2 v2.2.4
)
go 1.13