-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
go.mod
59 lines (56 loc) · 2.47 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
module github.com/hbollon/igopher
go 1.17
require (
cloud.google.com/go v0.41.0
github.com/asticode/go-astikit v0.18.0
github.com/asticode/go-astilectron v0.25.0
github.com/asticode/go-astilectron-bootstrap v0.4.10
github.com/banzaicloud/logrus-runtime-formatter v0.0.0-20190729070250-5ae5475bae5e
github.com/charmbracelet/bubbles v0.7.6
github.com/charmbracelet/bubbletea v0.12.2
github.com/go-playground/validator/v10 v10.4.1
github.com/google/go-github/v27 v27.0.4
github.com/lucasb-eyer/go-colorful v1.0.3
github.com/mitchellh/go-ps v1.0.0
github.com/muesli/reflow v0.2.0
github.com/muesli/termenv v0.7.4
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/shiena/ansicolor v0.0.0-20200904210342-c7312218db18
github.com/sirupsen/logrus v1.8.0
github.com/tebeka/selenium v0.9.9
github.com/vbauerster/mpb/v6 v6.0.2
google.golang.org/api v0.7.0
gopkg.in/yaml.v2 v2.3.0
)
require (
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/akavel/rsrc v0.10.1 // indirect
github.com/asticode/go-astilectron-bundler v0.7.12 // indirect
github.com/asticode/go-bindata v1.0.0 // indirect
github.com/atotto/clipboard v0.1.2 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/containerd/console v1.0.1 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/magefile/mage v1.11.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.10 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sam-kamerer/go-plister v1.2.0 // indirect
go.opencensus.io v0.22.0 // indirect
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
golang.org/x/sys v0.0.0-20210228012217-479acdf4ea46 // indirect
golang.org/x/text v0.3.2 // indirect
google.golang.org/appengine v1.6.1 // indirect
google.golang.org/genproto v0.0.0-20190626174449-989357319d63 // indirect
google.golang.org/grpc v1.21.1 // indirect
)