@jajaperson/js2json
v1.0.6
Published
Easily use JavaScript for configuration files to be converted to JSON.
Readme
js2json

Easily use JavaScript for configuration files to be converted to JSON.
Usage
First, install the package
Globally
npm install -g @jajaperson/js2jsonLocally
(recommended if you are using js2json in your build step)
npm install --save-dev @jajaperson/js2jsonThen, run the command like so
js2json --input example.json.jsYou can also use --output to specify the output path
js2json --input example.json.js --output my-new-json-file.jsonAdvanced options
$ js2json --help
--input <input file> [args]
Options:
--version, -v Show version number [boolean]
-i, --input js file to convert [string] [required]
-o, --output json file to output [string] [default: <input>.json]
-p, --pretty format the json output [boolean]
--sp, --spaces number of spaces to use for indentation [number] [default: 2]
--help, -h Show help [boolean]Use Cases
If you want to include dynamic values in a JSON configuration file, you can use
a javascript file that module.exports the object and add js2json to your build
step.
