conflag 0.1.1

A simple and powreful configuration language, extending JSON with declarative and functional language features.
Documentation
{
    a: 4,
    b: a,
    c: {
        first: 1,
        second: 2,
        third: {
            alpha: "a",
            beta: "b",
        }
    },
    d: c.first,
    e: {
        halp: 3
    }.halp,
    x: c.third.beta,
    called: x(y, z),
    f: (y, z) => [x, y, z],
    eval: f(d, e),
}