Skip to content

hjson/gulp-hjson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Releases

No releases published

Packages

No packages published