mirror of
https://github.com/robertkrimen/otto
synced 2025-10-05 19:19:10 +08:00

Remove the dependencies on perl and make. inline.pl is replaced by tools/gen-jscore and token/tokenfmt is replaced by tools/gen-tokens which are both golang text/template utilities. gen-jscore uses property ordering that matches chromes output ordering adding missing properties to the Error types. Local generated documentation have been removed as https://pkg.go.dev/ is more feature rich. The use of make has been removed as the functionality is now replicated by standard golang tools go test ./... and go generate ./... as well as integrated into github actions.
18 lines
385 B
Modula-2
18 lines
385 B
Modula-2
module github.com/robertkrimen/otto
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.8.1
|
|
golang.org/x/text v0.4.0
|
|
gopkg.in/readline.v1 v1.0.0-20160726135117-62c6fe619375
|
|
gopkg.in/sourcemap.v1 v1.0.5
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/chzyer/test v1.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
)
|