| .. | |||||
| demos | |||||
| dist | |||||
| libs | |||||
| src | |||||
| test | |||||
| CHANGELOG.md | |||||
| CONTRIBUTING.md | |||||
| Gruntfile.js | |||||
| LICENSE-MIT | |||||
| README.md | |||||
| idle-timer.jquery.json | |||||
| jquery-idletimer.sln | |||||
| jquery-idletimer.v12.suo | |||||
| package.json |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.13 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/dpmptsp/public_html/home/admin/assets/vendor/jquery-idletimer/ |
Upload File : |
"use strict";
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON("idle-timer.jquery.json"),
banner: "/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - " +
"<%= grunt.template.today('yyyy-mm-dd') %>\n" +
"<%= pkg.homepage ? '* ' + pkg.homepage + '\\n' : '' %>" +
"* Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>;" +
" Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %> */\n",
minbanner: "/*! <%= pkg.title || pkg.name %> v<%= pkg.version %> <%= grunt.template.today('yyyy-mm-dd') %> | " +
"<%= pkg.homepage ? pkg.homepage : '' %> | (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %> | " +
"Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %> */\n",
// Task configuration.
concat: {
options: {
banner: "<%= banner %>",
stripBanners: true
},
dist: {
files: [
{
src: ["src/<%= pkg.name %>.js"],
dest: "dist/<%= pkg.name %>.js"
},
{
src: ["src/<%= pkg.name %>.js"],
dest: "dist/<%= pkg.name %>.<%= pkg.version %>.js"
}
]
},
},
uglify: {
options: {
banner: "<%= minbanner %>"
},
dist: {
files: [
{
src: "<%= concat.dist.files[0].dest %>",
dest: "dist/<%= pkg.name %>.min.js"
},
{
src: "<%= concat.dist.files[0].dest %>",
dest: "dist/<%= pkg.name %>.<%= pkg.version %>.min.js"
}
]
},
},
qunit: {
options: {
timeout: 30000,
"--web-security": "no",
coverage: {
src: [ "src/<%= pkg.name %>.js" ],
instrumentedFiles: "temp/",
htmlReport: "build/report/coverage",
lcovReport: "build/report/lcov",
linesThresholdPct: 0
}
},
files: ["test/**/*.html"]
},
coveralls: {
options: {
// dont fail if coveralls fails
force: true
},
main_target: {
src: "build/report/lcov/lcov.info"
}
},
jshint: {
gruntfile: {
options: {
jshintrc: ".jshintrc"
},
src: "Gruntfile.js"
},
src: {
options: {
jshintrc: "src/.jshintrc"
},
src: ["src/**/*.js"]
},
test: {
options: {
jshintrc: "test/.jshintrc"
},
src: ["test/**/*.js"]
},
},
watch: {
gruntfile: {
files: "<%= jshint.gruntfile.src %>",
tasks: ["jshint:gruntfile"]
},
src: {
files: "<%= jshint.src.src %>",
tasks: ["jshint:src", "qunit"]
},
test: {
files: "<%= jshint.test.src %>",
tasks: ["jshint:test", "qunit"]
},
},
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-coveralls");
grunt.loadNpmTasks("grunt-qunit-istanbul");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-watch");
// Default task.
grunt.registerTask("default", ["jshint", "qunit", "concat", "uglify"]);
};
| .. | |||||
| demos | |||||
| dist | |||||
| libs | |||||
| src | |||||
| test | |||||
| CHANGELOG.md | |||||
| CONTRIBUTING.md | |||||
| Gruntfile.js | |||||
| LICENSE-MIT | |||||
| README.md | |||||
| idle-timer.jquery.json | |||||
| jquery-idletimer.sln | |||||
| jquery-idletimer.v12.suo | |||||
| package.json |