UNPKG

mecab-ko-ts

Version:
15 lines (13 loc) 355 B
module.exports = function(grunt) { grunt.initConfig({ nodeunit: { main: ['test/mecab.js'], }, jshint: { main: ['mecab.js'], } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-nodeunit'); grunt.registerTask('default', ['jshint', 'nodeunit']); };