Excel (XLSX/XLS) to json.
First, install gulp-excel2json as a development dependency:
> npm install --save-dev gulp-excel2jsonThen, add it to your gulpfile.js:
var excel2json = require('gulp-excel2json');
gulp.task('copy', function() {
    gulp.src('config/**.xlsx')
        .pipe(excel2json({
            headRow: 1,
            valueRowStart: 3,
            trace: true
        }))
        .pipe(gulp.dest('build'))
});Type: number
Default: 1
The row number of head. (Start from 1).
Type: number
Default: 3
The start row number of values. (Start from 1)
Type: Boolean
Default: false
Whether to log each file path while convert success.
MIT © Chris