UNPKG

dreemgl

Version:

DreemGL is an open-source multi-screen prototyping framework for mediated environments, with a visual editor and shader styling for webGL and DALi runtimes written in JavaScript. As a toolkit for gpu-accelerated multiscreen development, DreemGL includes

16 lines (14 loc) 312 B
module.exports = function( grunt ) { grunt.initConfig({ pkg: grunt.file.readJSON( "package.json" ), jshint: { files: [ "*.js", "browser/*.js", "src/**/*.js" ] } }); grunt.loadNpmTasks("grunt-contrib-jshint"); grunt.registerTask("default", ["jshint"]); };