Convert Hjson and JSON for gulp
npm install gulp-hjson

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.
First, install gulp-hjson as a development dependency:
``shell`
npm install --save-dev gulp-hjson
Then, add it to your gulpfile.js:
`javascript
var Hjson = require('gulp-hjson');
gulp.task('hjson', function() {
gulp.src(['*.hjson'])
.pipe(Hjson({ to: 'json' }))
.pipe(gulp.dest('output'));
});
``
Convert to JSON.
Convert to formatted JSON.
Convert to Hjson.