1.0.1 • Published 8 years ago

gulp-jsdoc-json v1.0.1

Weekly downloads
7
License
-
Repository
github
Last release
8 years ago

gulp-jsdoc-json npm travis

Gulp plugin to extract json from jsdoc comments.

Install

npm install gulp-jsdoc-json

Usage

return gulp.src('test/*.js') // get all .js files with jsdoc comments
.pipe(jsdocJson({
	output:'data.json'
}))
.pipe(gulp.dest('./docs')); //output data.json

Special thanks

@75lb for made jsdoc-api