0.0.3 • Published 3 years ago

json-pruner v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

json-pruner

build workflow

json pruning tool based on json-path.

Installation

npm install --global json-pruner

Usage

Prune

Usage: json-pruner prune [options] <json-paths...>

pruning json through json-path

Arguments:
  json-paths                     json path expressions

Options:
  -f --file <file>               input file path
  -p --pretty [pretty]           formatted output (default: true)
  -w --write [write]             overwrite file, effective when --file provided, dangerous and
                                 irreversible (default: false)
  -o --output <output>           output path
  -i --indent-size <indentSize>  indent size of the output file, effective when pretty is true
                                 (default: 2)
  -h, --help                     display help for command

Examples:

$ echo "{ \"a\": 1, \"b\": 2 }" | json-pruner prune "$.b"
{
  "a": 1
}

Pick

Usage: json-pruner pick [options] <json-paths...>

pick value through json-path

Arguments:
  json-paths        json path expressions

Options:
  -f --file <file>  input file path
  -h, --help        display help for command

Examples:

$ echo "{ \"a\": 1, \"b\": 2 }" | json-pruner pick "$.b"
2