-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
50 lines (48 loc) · 2.38 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
module github.com/manifoldco/grafton
require (
github.com/PuerkitoBio/purell v1.1.0 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
github.com/client9/misspell v0.3.4
github.com/go-openapi/analysis v0.0.0-20170813233457-8ed83f2ea9f0 // indirect
github.com/go-openapi/errors v0.19.3
github.com/go-openapi/inflect v0.0.0-20130829110746-b1f6470ffb9c // indirect
github.com/go-openapi/jsonpointer v0.0.0-20170102174223-779f45308c19 // indirect
github.com/go-openapi/jsonreference v0.0.0-20161105162150-36d33bfe519e // indirect
github.com/go-openapi/loads v0.0.0-20170520182102-a80dea3052f0 // indirect
github.com/go-openapi/runtime v0.0.0-20170303002511-e66a4c440602
github.com/go-openapi/spec v0.0.0-20170928160009-48c2a7185575 // indirect
github.com/go-openapi/strfmt v0.19.4
github.com/go-openapi/swag v0.19.8
github.com/go-openapi/validate v0.0.0-20170921144055-dc8a684882cf
github.com/go-swagger/go-swagger v0.0.0-20170414161553-fbc64c262a83
github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013 // indirect
github.com/go-zoo/bone v0.0.0-20160911183509-fd0aebc74e90
github.com/gobuffalo/packr v1.30.1
github.com/gobuffalo/packr/v2 v2.8.0 // indirect
github.com/golangci/golangci-lint v1.27.0
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf
github.com/gordonklaus/ineffassign v0.0.0-20180909121442-1003c8bd00dc
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/handlers v1.4.0 // indirect
github.com/jessevdk/go-flags v1.4.0 // indirect
github.com/magefile/mage v1.9.0
github.com/manifoldco/go-base32 v1.0.4
github.com/manifoldco/go-base64 v1.0.3
github.com/manifoldco/go-connector v0.0.3
github.com/manifoldco/go-jwt v0.2.0
github.com/manifoldco/go-manifold v0.14.0
github.com/manifoldco/go-signature v1.0.3
github.com/manifoldco/promptui v0.3.3-0.20190411181407-35bab80e16a4
github.com/onsi/gomega v1.9.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.6.0
github.com/toqueteos/webbrowser v1.1.0 // indirect
github.com/tsenart/deadcode v0.0.0-20160724212837-210d2dc333e9
github.com/tylerb/graceful v1.2.15 // indirect
github.com/urfave/cli/v2 v2.2.0
golang.org/x/crypto v0.0.0-20191122220453-ac88ee75c92c
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
)
go 1.13