Hjson plugin for gulp, converts from and to JSON.
Hjson, the Human JSON. A configuration file format for humans. Relaxed syntax, fewer mistakes, more comments.
For details and syntax see hjson.org.
Usage
First, install gulp-hjson as a development dependency:
npm install --save-dev gulp-hjson
Then, add it to your gulpfile.js:
var Hjson = require('gulp-hjson'); gulp.task('hjson', function() { gulp.src(['*.hjson']) .pipe(Hjson({ to: 'json' })) .pipe(gulp.dest('output')); });
options
{ to: 'json' }
Convert to JSON.
{ to: 'json', jsonSpace: ' ' }
Convert to formatted JSON.
{ to: 'hjson' }
Convert to Hjson.