dop 0.2.2

Process, transform and query JSON/YAML/TOML, from the shell.
# Set force

# INPUT

{"foo":"bar"}

# SCRIPT_ONCE

set("one.two", "three", {force = true})

# EXPECT

{"foo":"bar","one":{"two":"three"}}

---

# Set force: overwrite a value

# INPUT

{"foo":"bar"}

# SCRIPT_ONCE

set("foo.bar", "OK", {force = true})

# EXPECT

{"foo":{"bar":"OK"}}