-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
54 lines (47 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module github.com/elasticpath/epcc-cli
go 1.21
require (
github.com/Masterminds/sprig/v3 v3.3.0
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/buildkite/shellwords v0.0.0-20180315110454-59467a9b8e10
github.com/caarlos0/env/v6 v6.10.1
github.com/google/uuid v1.6.0
github.com/gookit/color v1.5.3
github.com/itchyny/gojq v0.12.17
github.com/mattn/go-isatty v0.0.20
github.com/santhosh-tekuri/jsonschema/v4 v4.0.0
github.com/santhosh-tekuri/jsonschema/v5 v5.3.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
github.com/thediveo/enumflag v0.10.1
github.com/yosida95/uritemplate/v3 v3.0.2
golang.org/x/sync v0.10.0
golang.org/x/time v0.9.0
gopkg.in/ini.v1 v1.67.0
gopkg.in/yaml.v3 v3.0.1
)
require github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727
require (
github.com/iancoleman/strcase v0.2.0
github.com/jolestar/go-commons-pool/v2 v2.1.2
github.com/mitchellh/mapstructure v1.5.0
)
require dario.cat/mergo v1.0.1 // indirect
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/itchyny/timefmt-go v0.1.6 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect; indirect\
)