Converts an exported javascript object to JSON.
This module may be installed either globally:
npm i -g json-export-cli
or locally:
npm install --save-dev json-export-cli
json-export my-object.js
my-object.js
module.exports = {
sum: 1 + 2,
};
{"sum":3}