Awesome
hjson-powershell
Simple powershell module for conversion between HJSON and JSON. It't wrapper of hjson-cs. You can found more information about hjson at https://hjson.org/.
Instalation
Install-Module -Name HJSON
Usage
Convert Json to HJson
$hjsonString = ConvertTo-HJson -Path "C:\someJsonFile.json"
Convert HJson to Json
$jsonString = ConvertFrom-HJson -Path "C:\someHJsonFile.hjson"