Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/mousetrap/Gruntfile.js')
-rw-r--r--libs/bower_components/mousetrap/Gruntfile.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/libs/bower_components/mousetrap/Gruntfile.js b/libs/bower_components/mousetrap/Gruntfile.js
deleted file mode 100644
index 859ec6b24c..0000000000
--- a/libs/bower_components/mousetrap/Gruntfile.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/*jshint node:true */
-module.exports = function(grunt) {
- 'use strict';
-
- grunt.initConfig({
- pkg: grunt.file.readJSON('package.json'),
-
- mocha: {
- options: {
- reporter: 'Nyan',
- run: true
- },
- mousetrap: {
- src: ['tests/mousetrap.html']
- }
- },
-
- complexity: {
- options: {
- errorsOnly: false,
- cyclomatic: 10,
- halstead: 30,
- maintainability: 85
- },
- generic: {
- src: [
- 'mousetrap.js'
- ]
- },
- plugins: {
- src: [
- 'plugins/**/*.js',
- '!plugins/**/tests/**',
- '!plugins/**/*.min.js'
- ]
- }
- }
- });
-
- grunt.loadNpmTasks('grunt-complexity');
- grunt.loadNpmTasks('grunt-mocha');
-
- grunt.registerTask('default', [
- 'complexity',
- 'mocha'
- ]);
-};