├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.MD ├── examples ├── area.js ├── area.schema.json ├── express-app.js ├── person.js ├── person.schema.json ├── product.js └── product.schema.json ├── index.js ├── lib └── jsdoc-to-json-schema.js ├── package.json ├── shippable.yml └── test ├── data ├── test-instance.js └── test-singleton.js └── jsdoctojsonschema.spec.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/README.MD -------------------------------------------------------------------------------- /examples/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/area.js -------------------------------------------------------------------------------- /examples/area.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/area.schema.json -------------------------------------------------------------------------------- /examples/express-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/express-app.js -------------------------------------------------------------------------------- /examples/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/person.js -------------------------------------------------------------------------------- /examples/person.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/person.schema.json -------------------------------------------------------------------------------- /examples/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/product.js -------------------------------------------------------------------------------- /examples/product.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/examples/product.schema.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/index.js -------------------------------------------------------------------------------- /lib/jsdoc-to-json-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/lib/jsdoc-to-json-schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/package.json -------------------------------------------------------------------------------- /shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/shippable.yml -------------------------------------------------------------------------------- /test/data/test-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/test/data/test-instance.js -------------------------------------------------------------------------------- /test/data/test-singleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/test/data/test-singleton.js -------------------------------------------------------------------------------- /test/jsdoctojsonschema.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/jsdoc-to-json-schema/HEAD/test/jsdoctojsonschema.spec.js --------------------------------------------------------------------------------