Add it to your gulp file:
gulp
.src(['foo.json', 'bar.json'])
.pipe(require('gulp-concat-jsons')('merged.json'))
.pipe(gulp.dest('out'))
Outputs out/merged.json
:
[
{...} // "foo.json content",
{...} // "bar.json content"
]
$ npm install gulp-concat-jsons