Jogson - New Library for Working with JSON

Hi all

I wrote a new library to easily work with JSON. It spares the need to define structs and to marshal and unmarshal, and makes reading from or writing to JSON much faster and more intuitive.

Any feedbacks, PR, comment, critique, stars or anything else are highly welcomed.

Example:

// string 
var name string = object.GetString("name")
// int 
var age int = object.GetInt("age")
// float64 
var height float64 = object.GetFloat("height")
// bool 
var isFunny bool = object.GetBool("is_funny")