UNPKG
limelight-api
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
Basic Limelight REST API wrapper
github.com/EchoAppsTeam/limelight-api
EchoAppsTeam/limelight-api
limelight-api
/
Gruntfile.js
17 lines
(13 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module
.
exports
=
function
(
grunt
) {
"use strict"
; grunt.
loadNpmTasks
(
"grunt-contrib-jshint"
); grunt.
registerTask
(
"default"
, [
"jshint"
]); grunt.
initConfig
({
"jshint"
: {
"options"
: {
"jshintrc"
:
".jshintrc"
},
"all"
: [
"Gruntfile.js"
,
"api.js"
] } }); };