-
Notifications
You must be signed in to change notification settings - Fork 105
/
go.mod
51 lines (49 loc) · 2.25 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
module github.com/gen0cide/gscript
require (
github.com/Jeffail/gabs v1.4.0
github.com/Jeffail/gabs/v2 v2.5.0
github.com/ahhh/gopkgs v0.0.0-20180927222900-9e331bbdc80f
github.com/chzyer/logex v1.1.10 // indirect
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/ditashi/jsbeautifier-go v0.0.0-20141206144643-2520a8026a9c
github.com/fatih/color v1.9.0
github.com/gen0cide/privcheck v0.0.0-20180729084834-a84d5602afb2
github.com/gen0cide/randstr v1.0.3
github.com/gen0cide/waiter v0.0.0-20180804103907-1df131552b6a
github.com/gohxs/readline v0.0.0-20171011095936-a780388e6e7c
github.com/kardianos/service v1.0.0
github.com/karrick/godirwalk v1.15.6
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mitchellh/go-ps v1.0.0
github.com/onsi/gomega v1.4.2 // indirect
github.com/phayes/permbits v0.0.0-20190612203442-39d7c581d2ee
github.com/pkg/errors v0.9.1
github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.2.2
github.com/tdewolff/minify v2.3.6+incompatible
github.com/tdewolff/parse v2.3.4+incompatible // indirect
github.com/tdewolff/test v0.0.0-20171106182207-265427085153 // indirect
github.com/urfave/cli/v2 v2.2.0
github.com/uudashr/gopkgs v2.0.1+incompatible // indirect
github.com/vigneshuvi/GoDateFormat v0.0.0-20190923034126-379ee8a8c45f
github.com/x-cray/logrus-prefixed-formatter v0.5.2
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect
golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25
golang.org/x/tools v0.0.0-20200512001501-aaeff5de670a
gopkg.in/VividCortex/ewma.v1 v1.1.1 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/cheggaaa/pb.v2 v2.0.7 // indirect
gopkg.in/fatih/color.v1 v1.7.0 // indirect
gopkg.in/mattn/go-colorable.v0 v0.1.0 // indirect
gopkg.in/mattn/go-isatty.v0 v0.0.4 // indirect
gopkg.in/mattn/go-runewidth.v0 v0.0.4 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
go 1.13