json-schema-faker-cli
json-schema-faker-cli copied to clipboard
A CLI for json-schema-faker.
> **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |...
> **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |...
Bumps [@npmcli/git](https://github.com/npm/git) from 2.0.6 to 2.1.0. Changelog Sourced from @npmcli/git's changelog. Changelog 4.0.3 (2022-11-01) Dependencies 1d9ca2a #105 bump @npmcli/promise-spawn from 5.0.0 to 6.0.0 (#105) 1103697 #104 bump which from 2.0.2...
Bumps [@npmcli/arborist](https://github.com/npm/cli/tree/HEAD/workspaces/arborist) from 2.2.9 to 2.10.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
When I add `sortProperties: false` to the options.js file, the original order is reversed, see example below. The option `sortProperties: true` works as intended and sorts all properties. example json...
I did not see any way to pass command-line options corresponding to the various options offered by the underling json-schema-faker library, so I made some changes for it to do...
I tried to use this with a JSON that contains local references which resolve using json-to-typescript ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Completed Quiz", "type": "object", "required": ["studentInfo", "evaluationInfo", "completedQuiz"], "properties":...
Currently to read (and probably generate json) the tool uses: JSON.parse. For large contract files parsing ends up with exception: ``` SyntaxError: Expected ':' after property name in JSON at...