json2tsv

Convert JSON data to TSV (Tab-Separated Values) format

brewmacoslinux
Try with needOr install directly
Source

About

JSON to TSV converter

Commands

json2tsv

Examples

Convert a JSON file to TSV and save output$ json2tsv input.json > output.tsv
Convert JSON array of objects to TSV with specific fields$ json2tsv -k name,email,age data.json
Pretty-print JSON as TSV to stdout$ cat data.json | json2tsv