When allownan = true all numbers are parsed as Float64
julia> JSON.parse("1")
1
julia> JSON.parse("1", allownan = true)
1.0
julia> JSON.parse("""[1,2,3]""")
3-element Vector{Any}:
1
2
3
julia> JSON.parse("""[1,2,3]""", allownan=true)
3-element Vector{Any}:
1.0
2.0
3.0