fixjson
fixjson copied to clipboard
JSON Fixer for Humans using (relaxed) JSON5
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Is it possible to add something like a queue to prevent the Argument list too long error? Thanks
I want to do `fixjson '**/*.json'`, but not have it go into `node_modules`, etc.
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.12.5 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
It would be a nice bonus feature to be able to fix [JSON Lines](https://jsonlines.org/) syntax, if a parameter is provided to switch to a jsonl mode. The added benefit would...
Please add the versions found on https://www.npmjs.com/package/fixjson?activeTab=versions to https://github.com/rhysd/fixjson/tags.
Bumps [minimatch](https://github.com/isaacs/minimatch) to 3.1.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 3.0.4 to 3.1.2 Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d...
Bumps [nanoid](https://github.com/ai/nanoid) to 3.3.3 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `nanoid` from 3.1.12 to 3.3.3 Changelog Sourced from nanoid's changelog. 3.3.3 Reduced size...
👋🏻 I have the following example JSON5 file contents: ```json5 { // comments unquoted: 'and you can quote me on that', singleQuotes: 'I can use "double quotes" here', lineBreaks: "Look,...
When processing JSON containing very large integers, fixjson silently alters the value due to JavaScript's Number precision limitations. ```command > echo "{'id': 3791411052119578828}" | fixjson ``` Actual output: ```json {...