UNPKG

jschemer

Version:

A Node.js library to generate documentation for JSON Schemas

18 lines (14 loc) 311 B
const jschemer = require(`../lib/jschemer`); const opts = { out: `docs`, readme: `README.md`, schemas: `test/schemas`, }; /** * Creates the jschemer project documentation in the /docs folder * @return {Promise} */ function createDocs() { return jschemer(opts); } module.exports = createDocs;