Skip to content

Instantly share code, notes, and snippets.

@kevinburke
Created July 22, 2016 17:07
Show Gist options
  • Save kevinburke/6fbddb351bdfbd902e904bfb4084ebd1 to your computer and use it in GitHub Desktop.
Save kevinburke/6fbddb351bdfbd902e904bfb4084ebd1 to your computer and use it in GitHub Desktop.
{
"version": 0,
"dependencies": [
{
"importpath": "github.com/vektra/errors",
"repository": "https://github.com/vektra/errors",
"revision": "c64d83aba85aa4392895aadeefabbd24e89f3580",
"branch": "master"
},
{
"importpath": "github.com/vektra/mockery",
"repository": "https://github.com/vektra/mockery",
"revision": "29089e31d888052f69e7a0f547885b3ba85ac55d",
"branch": "master"
},
{
"importpath": "golang.org/x/tools/go/ast/astutil",
"repository": "https://go.googlesource.com/tools",
"revision": "f3284303b68708e9943bf3e940fd1a5483438cc1",
"branch": "master",
"path": "/go/ast/astutil"
},
{
"importpath": "golang.org/x/tools/go/buildutil",
"repository": "https://go.googlesource.com/tools",
"revision": "f3284303b68708e9943bf3e940fd1a5483438cc1",
"branch": "master",
"path": "/go/buildutil"
},
{
"importpath": "golang.org/x/tools/go/loader",
"repository": "https://go.googlesource.com/tools",
"revision": "f3284303b68708e9943bf3e940fd1a5483438cc1",
"branch": "master",
"path": "/go/loader"
},
{
"importpath": "golang.org/x/tools/imports",
"repository": "https://go.googlesource.com/tools",
"revision": "f3284303b68708e9943bf3e940fd1a5483438cc1",
"branch": "master",
"path": "/imports"
}
]
}
vendor
├── manifest
└── src
├── github.com
│   └── vektra
│   ├── errors
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── checking.go
│   │   ├── details.go
│   │   ├── details_test.go
│   │   ├── eof_darwin.go
│   │   ├── eof_default.go
│   │   ├── eof_default_test.go
│   │   ├── eof_linux.go
│   │   ├── eof_test.go
│   │   ├── errors.go
│   │   ├── errors_test.go
│   │   └── print.go
│   └── mockery
│   ├── LICENSE
│   ├── Makefile
│   ├── README.md
│   ├── cmd
│   │   └── mockery
│   │   ├── mockery.go
│   │   └── mockery_test.go
│   ├── doc.go
│   └── mockery
│   ├── fixtures
│   │   ├── async.go
│   │   ├── consul.go
│   │   ├── custom_error.go
│   │   ├── empty_interface.go
│   │   ├── func_type.go
│   │   ├── io_import.go
│   │   ├── map_func.go
│   │   ├── mock_method_uses_pkg_iface.go
│   │   ├── requester.go
│   │   ├── requester2.go
│   │   ├── requester3.go
│   │   ├── requester4.go
│   │   ├── requester_arg_same_as_import.go
│   │   ├── requester_arg_same_as_named_import.go
│   │   ├── requester_arg_same_as_pkg.go
│   │   ├── requester_array.go
│   │   ├── requester_elided.go
│   │   ├── requester_iface.go
│   │   ├── requester_ns.go
│   │   ├── requester_ptr.go
│   │   ├── requester_ret_elided.go
│   │   ├── requester_slice.go
│   │   ├── requester_unexported.go
│   │   └── requester_variable.go
│   ├── generator.go
│   ├── generator_test.go
│   ├── outputter.go
│   ├── outputter_test.go
│   ├── parse.go
│   ├── parse_test.go
│   ├── walker.go
│   └── walker_test.go
└── golang.org
└── x
└── tools
├── go
│   ├── ast
│   │   └── astutil
│   │   ├── enclosing.go
│   │   ├── enclosing_test.go
│   │   ├── imports.go
│   │   ├── imports_test.go
│   │   └── util.go
│   ├── buildutil
│   │   ├── allpackages.go
│   │   ├── allpackages_test.go
│   │   ├── fakecontext.go
│   │   ├── overlay.go
│   │   ├── overlay_test.go
│   │   ├── tags.go
│   │   ├── tags_test.go
│   │   ├── util.go
│   │   ├── util_test.go
│   │   └── util_windows_test.go
│   └── loader
│   ├── cgo.go
│   ├── cgo_pkgconfig.go
│   ├── doc.go
│   ├── example15_test.go
│   ├── example_test.go
│   ├── go16.go
│   ├── go16_test.go
│   ├── loader.go
│   ├── loader_test.go
│   ├── stdlib_test.go
│   ├── testdata
│   │   ├── a.go
│   │   ├── b.go
│   │   └── badpkgdecl.go
│   └── util.go
└── imports
├── fastwalk.go
├── fastwalk_dirent_fileno.go
├── fastwalk_dirent_ino.go
├── fastwalk_portable.go
├── fastwalk_test.go
├── fastwalk_unix.go
├── fix.go
├── fix_test.go
├── imports.go
├── mkindex.go
├── mkstdlib.go
├── sortimports.go
└── zstdlib.go
19 directories, 94 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment