-
Notifications
You must be signed in to change notification settings - Fork 209
/
go.mod
79 lines (76 loc) · 3.26 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
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
module github.com/SpectoLabs/hoverfly
go 1.22.10
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.4.1
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-zoo/bone v1.3.0
github.com/golang-jwt/jwt/v4 v4.5.1
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
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 v0.0.5
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.36.1
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-20201227073835-cf1acfcdf475
github.com/ryanuber/go-glob v1.0.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v0.0.0-20160508180713-d8a428b8a306
github.com/tdewolff/minify/v2 v2.21.2
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/crypto v0.30.0
gonum.org/v1/gonum v0.15.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.31.3
)
require (
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/aymerick/raymond v2.0.2+incompatible // indirect
github.com/corpix/uarand v0.2.0 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/goccmack/goutil v1.2.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/robertkrimen/otto v0.5.1 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/tdewolff/parse/v2 v2.7.19 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)