Lightweight command-line JSON processor for parsing and transforming JSON
Lightweight and flexible command-line JSON processor
jq
$ jq '.' data.json
$ echo '{"name":"John","age":30}' | jq '.name'
$ jq '.[] | select(.age > 25)' users.json