How to get jq output without extra characters?

When i can get result in jq with this input data await CLI.mount({ name: "test.json", data: JSON.stringify([{some:{data: {test: ‘data’}}}, {some: {data: "there"}}]) }); I am getting correct output but with characters not recognized by the system. Output of jq: [1;39m{ [0m[34;1m"test"[0m[1;39m: [0m[0;32m"data"[0m[1;39m [1;39m}[0m How can I get an output file without extra characters ? I… Read More How to get jq output without extra characters?