-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
45 lines (42 loc) · 1.62 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
module github.com/gotomicro/eapi
go 1.21.1
require (
github.com/getkin/kin-openapi v0.109.0
github.com/go-openapi/jsonpointer v0.19.5
github.com/iancoleman/strcase v0.2.0
github.com/invopop/yaml v0.1.0
github.com/knadh/koanf v1.4.4
github.com/link-duan/goja v1.0.0
github.com/link-duan/goja_nodejs v1.0.1
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/robertkrimen/otto v0.2.1
github.com/samber/lo v1.28.2
github.com/stretchr/testify v1.8.1
github.com/urfave/cli/v2 v2.23.4
golang.org/x/mod v0.14.0
golang.org/x/tools v0.13.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/cast v1.5.0
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.5.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)