├── .eslintignore ├── .eslintrc ├── .gitignore ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── demo ├── components │ ├── CheckboxField.jsx │ ├── ContactForm.jsx │ └── StringField.jsx ├── index.html ├── index.jsx ├── package-lock.json ├── package.json └── webpack.config.js ├── dist ├── react-json-schema.js └── react-json-schema.min.js ├── lib └── ReactJsonSchema.js ├── package.json ├── spec ├── ReactJsonSchemaSpec.js ├── index.html ├── spec.entry.js └── support │ └── jasmine.json ├── webpack.config.dist.js └── webpack.config.spec.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/README.md -------------------------------------------------------------------------------- /demo/components/CheckboxField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/components/CheckboxField.jsx -------------------------------------------------------------------------------- /demo/components/ContactForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/components/ContactForm.jsx -------------------------------------------------------------------------------- /demo/components/StringField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/components/StringField.jsx -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/index.jsx -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /dist/react-json-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/dist/react-json-schema.js -------------------------------------------------------------------------------- /dist/react-json-schema.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/dist/react-json-schema.min.js -------------------------------------------------------------------------------- /lib/ReactJsonSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/lib/ReactJsonSchema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/package.json -------------------------------------------------------------------------------- /spec/ReactJsonSchemaSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/spec/ReactJsonSchemaSpec.js -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/spec.entry.js: -------------------------------------------------------------------------------- 1 | export * from './ReactJsonSchemaSpec.js'; 2 | -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechniqueSoftware/react-json-schema/HEAD/webpack.config.spec.js --------------------------------------------------------------------------------