kubectl get nodes -o json | jq '.items[].spec'
which will give the complete spec with node name, or:
kubectl get nodes -o json | jq '.items[].spec.taints'
will produce the list of the taints per each node
kubectl get nodes -o json | jq '.items[].spec'
which will give the complete spec with node name, or:
kubectl get nodes -o json | jq '.items[].spec.taints'
will produce the list of the taints per each node