mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-12 11:15:14 +02:00
7ce6797e9c
* Implemented XPath for CDP driver * Added XPATH function * Added e2e tests for CDP * Fixed linting issues * Added support of XPath to HTTP driver * Fixed linting issues
45 lines
1.9 KiB
Modula-2
45 lines
1.9 KiB
Modula-2
module github.com/MontFerret/ferret
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1 // indirect
|
|
github.com/PuerkitoBio/goquery v1.5.0
|
|
github.com/antchfx/htmlquery v1.0.0
|
|
github.com/antchfx/xpath v1.0.0
|
|
github.com/antlr/antlr4 v0.0.0-20190325153624-837aa60e2c47
|
|
github.com/chzyer/logex v1.1.10 // indirect
|
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
|
|
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
|
|
github.com/corpix/uarand v0.0.0
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/derekparker/trie v0.0.0-20190322172448-1ce4922c7ad9
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/gofrs/uuid v3.2.0+incompatible
|
|
github.com/google/go-cmp v0.2.0 // indirect
|
|
github.com/gopherjs/gopherjs v0.0.0-20190328170749-bb2674552d8f // indirect
|
|
github.com/gorilla/css v1.0.0
|
|
github.com/gorilla/websocket v1.4.0 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/labstack/echo v3.3.10+incompatible
|
|
github.com/labstack/gommon v0.2.8 // indirect
|
|
github.com/mafredri/cdp v0.23.4
|
|
github.com/mattn/go-colorable v0.1.1 // indirect
|
|
github.com/mattn/go-isatty v0.0.7 // indirect
|
|
github.com/natefinch/lumberjack v2.0.0+incompatible
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/rs/zerolog v1.14.3
|
|
github.com/sethgrid/pester v0.0.0-20190127155807-68a33a018ad0
|
|
github.com/smartystreets/assertions v0.0.0-20190215210624-980c5ac6f3ac // indirect
|
|
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff
|
|
github.com/stretchr/testify v1.3.0 // indirect
|
|
github.com/valyala/fasttemplate v1.0.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c // indirect
|
|
golang.org/x/net v0.0.0-20190328230028-74de082e2cca
|
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58
|
|
golang.org/x/sys v0.0.0-20190322080309-f49334f85ddc // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
|
)
|