-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
23 lines (21 loc) · 833 Bytes
/
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
module github.com/yankeexe/air-quality-cli
go 1.16
require (
github.com/AlecAivazis/survey/v2 v2.3.2
github.com/gookit/color v1.5.0
github.com/kr/text v0.2.0 // indirect
github.com/ktr0731/go-fuzzyfinder v0.5.1
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/nsf/termbox-go v1.1.1 // indirect
github.com/olekukonko/tablewriter v0.0.5
github.com/spf13/afero v1.8.1 // indirect
github.com/spf13/cobra v1.3.0
github.com/spf13/viper v1.10.1
github.com/stretchr/testify v1.7.0
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/yaml.v2 v2.4.0
)