Package Exports
- gulp-jsvalidate
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-jsvalidate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-jsvalidate 
Validate JavaScript code and report possible syntax errors
The earlier you find syntax errors, the earlier you can fix them.
Install
Install with npm
npm install --save-dev gulp-jsvalidate
Example
var gulp = require('gulp');
var jsValidate = require('gulp-jsvalidate');
gulp.task('default', function () {
gulp.src('app.js')
.pipe(jsValidate());
});
License
MIT © Sindre Sorhus