JSON to JSON Schema. Convert a JSON to a JSON Schema describing that JSON
npm install json-to-json-schema

> JSON to JSON Schema convert a JSON to a JSON Schema describing that JSON
``js
import {convert} from 'json-schmea-from-json';
const myJson = {name: 'string'};
const mySchema = convert(myJson);
console.log(mySchema); // => {type: 'object', properties: {name: {type: 'string'}}}
`
``
npm install --save json-to-json-schema``
bower install --save json-to-json-schemaJSONToJSONSchema
The browser module supports all UMD module systems. It exposes global object when there is no module system available.
``
npm install
To run tests
``
npm test
To run tests continuously and watch for changes install mocha and run:
``
mocha --compilers js:babel/register -w
To make a new browser build run
```
npm run browserify