diff options
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +module flyscrape + +go 1.20 + +require ( + github.com/PuerkitoBio/goquery v1.8.1 + github.com/alexedwards/flow v0.0.0-20220806114457-cf11be9e0e03 + github.com/dop251/goja v0.0.0-20230707174833-636fdf960de1 + github.com/dop251/goja_nodejs v0.0.0-20230602164024-804a84515562 + github.com/evanw/esbuild v0.18.14 + github.com/stretchr/testify v1.8.4 +) + +require ( + github.com/andybalholm/cascadia v1.3.1 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dlclark/regexp2 v1.7.0 // indirect + github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect + github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect + github.com/kr/pretty v0.3.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/rogpeppe/go-internal v1.10.0 // indirect + golang.org/x/net v0.10.0 // indirect + golang.org/x/sys v0.8.0 // indirect + golang.org/x/text v0.9.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect + rogchap.com/v8go v0.9.0 // indirect +) |