dop 0.2.2

Process, transform and query JSON/YAML/TOML, from the shell.
# Change one value

# INPUT

foo:
  bar: 10
  some_key: this will be intact

# SCRIPT

if KEY == "foo.bar" then
  set(VALUE * 2)
end

# EXPECT

foo:
  bar: 20
  some_key: this will be intact