I have created a gulpfile.js with the same tasks of grunt, replaced npm script and finally ad .jshintrc for jshint
		
			
				
	
	
		
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
{
 | 
						|
    "curly": false,
 | 
						|
    "eqeqeq": true,
 | 
						|
    "immed": true,
 | 
						|
    "esnext": true,
 | 
						|
    "latedef": "nofunc",
 | 
						|
    "newcap": true,
 | 
						|
    "noarg": true,
 | 
						|
    "sub": true,
 | 
						|
    "undef": true,
 | 
						|
    "eqnull": true,
 | 
						|
    "browser": true,
 | 
						|
    "expr": true,
 | 
						|
    "globals": {
 | 
						|
        "head": false,
 | 
						|
        "module": false,
 | 
						|
        "console": false,
 | 
						|
        "unescape": false,
 | 
						|
        "define": false,
 | 
						|
        "exports": false
 | 
						|
    }
 | 
						|
} |