-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathgo.mod
More file actions
91 lines (88 loc) · 3.89 KB
/
go.mod
File metadata and controls
91 lines (88 loc) · 3.89 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
module github.com/SpectoLabs/hoverfly
go 1.26.1
require (
github.com/ChrisTrenkamp/xsel v0.9.16
github.com/SpectoLabs/goproxy v0.0.0-20240717215706-55e01f38b2c9
github.com/SpectoLabs/goproxy/ext v0.0.0-20240717215706-55e01f38b2c9
github.com/SpectoLabs/goxml2json v0.0.0-20240121223617-8e03292c14ea
github.com/SpectoLabs/raymond v2.0.3-0.20240827093205-07f3a7bebd7d+incompatible
github.com/antonholmquist/jason v1.0.1-0.20160829104012-962e09b85496
github.com/beevik/etree v1.6.0
github.com/boltdb/bolt v1.3.1
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/codegangsta/negroni v1.0.0
github.com/dghubble/sling v1.4.2
github.com/dsnet/compress v0.0.1
github.com/go-playground/validator/v10 v10.29.0
github.com/go-zoo/bone v1.3.0
github.com/golang-jwt/jwt/v4 v4.5.2
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674
github.com/hashicorp/golang-lru v1.0.2
github.com/icrowley/fake v0.0.0-20240710202011-f797eb4a99c0
github.com/jackwakefield/gopac v1.0.3-0.20180823145755-c4d2e0b9a672
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mitchellh/go-homedir v1.1.0
github.com/olekukonko/tablewriter v1.1.2
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.38.3
github.com/pborman/uuid v1.2.1
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/rakyll/statik v0.1.7
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
github.com/ryanuber/go-glob v1.0.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/spf13/viper v1.21.0
github.com/tdewolff/minify/v2 v2.24.8
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/crypto v0.46.0
golang.org/x/term v0.38.0
gonum.org/v1/gonum v0.16.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.35.0
)
require (
github.com/aymerick/raymond v2.0.2+incompatible // indirect
github.com/clipperhouse/displaywidth v0.6.0 // indirect
github.com/clipperhouse/stringish v0.1.1 // indirect
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
github.com/corpix/uarand v0.2.0 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/goccmack/goutil v1.2.3 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
github.com/olekukonko/errors v1.1.0 // indirect
github.com/olekukonko/ll v0.1.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/robertkrimen/otto v0.5.1 // indirect
github.com/sagikazarmark/locafero v0.11.0 // indirect
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
github.com/spf13/afero v1.15.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tdewolff/parse/v2 v2.8.5 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)