This repository was archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
67 lines (50 loc) · 3.27 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
60
61
62
63
64
65
66
67
module github.com/wplib/deploywp
go 1.14
replace github.com/newclarity/scribeHelpers/ux => ../scribeHelpers/ux
replace github.com/newclarity/scribeHelpers/loadTools => ../scribeHelpers/loadTools
replace github.com/newclarity/scribeHelpers/toolCopy => ../scribeHelpers/toolCopy
replace github.com/newclarity/scribeHelpers/toolExec => ../scribeHelpers/toolExec
replace github.com/newclarity/scribeHelpers/toolGit => ../scribeHelpers/toolGit
replace github.com/newclarity/scribeHelpers/toolGitHub => ../scribeHelpers/toolGitHub
replace github.com/newclarity/scribeHelpers/toolPath => ../scribeHelpers/toolPath
replace github.com/newclarity/scribeHelpers/toolPrompt => ../scribeHelpers/toolPrompt
replace github.com/newclarity/scribeHelpers/toolService => ../scribeHelpers/toolService
replace github.com/newclarity/scribeHelpers/toolSystem => ../scribeHelpers/toolSystem
replace github.com/newclarity/scribeHelpers/toolTypes => ../scribeHelpers/toolTypes
replace github.com/newclarity/scribeHelpers/toolUx => ../scribeHelpers/toolUx
replace github.com/newclarity/scribeHelpers/toolRuntime => ../scribeHelpers/toolRuntime
replace github.com/newclarity/scribeHelpers/toolSelfUpdate => ../scribeHelpers/toolSelfUpdate
replace github.com/newclarity/scribeHelpers/toolGhr => ../scribeHelpers/toolGhr
require (
github.com/davecgh/go-spew v1.1.1
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
github.com/mitchellh/mapstructure v1.3.2
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/newclarity/scribeHelpers/loadTools v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolCopy v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolExec v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolGhr v0.0.0-20200622120433-71e52f9004e9 // indirect
github.com/newclarity/scribeHelpers/toolGit v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolGitHub v0.0.0-20200622120433-71e52f9004e9 // indirect
github.com/newclarity/scribeHelpers/toolPath v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolPrompt v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolRuntime v0.0.0-20200623081955-45abb1cbefe9
github.com/newclarity/scribeHelpers/toolSelfUpdate v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolService v0.0.0-20200622120433-71e52f9004e9 // indirect
github.com/newclarity/scribeHelpers/toolSystem v0.0.0-20200622120433-71e52f9004e9 // indirect
github.com/newclarity/scribeHelpers/toolTypes v0.0.0-20200622120433-71e52f9004e9
github.com/newclarity/scribeHelpers/toolUx v0.0.0-20200622120433-71e52f9004e9 // indirect
github.com/newclarity/scribeHelpers/ux v0.0.0-20200623081955-45abb1cbefe9
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/spf13/afero v1.3.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.7.0
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4 // indirect
golang.org/x/text v0.3.3 // indirect
gopkg.in/ini.v1 v1.57.0 // indirect
)