gulp-hjson

2.4.3 • Public • Published

gulp-hjson

Build Status NPM version

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.

Package Sidebar

Install

npm i gulp-hjson

Homepage

hjson.org

Weekly Downloads

61

Version

2.4.3

License

MIT

Last publish

Collaborators

  • dqsully
  • laktak