-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
30 lines (27 loc) · 1.14 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
module github.com/kristofferahl/go-centry
go 1.19
require (
github.com/AlecAivazis/survey/v2 v2.3.7-0.20221208154106-fa37277e6394
github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db
github.com/ghodss/yaml v1.0.0
github.com/gorilla/mux v1.7.3
github.com/procodr/monkey v0.0.0-20221102224215-28eb53c3a645
github.com/santhosh-tekuri/jsonschema/v2 v2.1.0
github.com/sirupsen/logrus v1.4.2
github.com/urfave/cli/v2 v2.3.0
gopkg.in/yaml.v2 v2.2.7
)
require (
bou.ke/monkey v1.0.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.4.0 // indirect
)