Converts pseudo JSON exported from Assembla Tickets to standard JSON format
If you export Tickets from an Assembla project account, you get a file in a "JSON-like" format. Other systems may not recognize the file format if you try to import it there.
This utility fixes the problem by parsing the file and outputing data in a standard JSON format, ready to be fed and understood by other systems.
This project requires following dependencies to work:
- NodeJS
- NPM
- Clone the project to your local system.
- Open
index.js
and modifyINPUT_FILE_PATH
andOUTPUT_FILE_PATH
. - Open terminal, switch to project's root directory.
- Run: npm install
- Run: npm start
Now open the file you set in OUTPUT_FILE_PATH
. There you've your data in standard JSON format. You're welcome :)