When `allownan = true` all numbers are parsed as Float64 ```julia-repl julia> JSON.parse("1") 1 julia> JSON.parse("1", allownan = true) 1.0 ```