From e746fe451d09ee47db74edfb0c0ce2eb1e3524f4 Mon Sep 17 00:00:00 2001 From: Edson Hilios Date: Thu, 4 Aug 2016 13:10:38 -0300 Subject: [PATCH] Fix package name to fits the NPM repo --- Gruntfile.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 8882b2e..510d3f9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -11,7 +11,7 @@ module.exports = function(grunt) { dest: './dist' }, // project utils - pluginName: '<%= pkg.name %>', + pluginName: '<%= pkg.name.replace(/-/, ".") %>', license: grunt.file.read('LICENSE.md').split('\n').splice(3).join('\n'), banner: '/*!\n' + ' * <%= pkg.description %> v<%= pkg.version %> ' + diff --git a/package.json b/package.json index 2eea1d8..06f2135 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "jquery.countdown", + "name": "jquery-countdown", "version": "2.2.0", "main": "dist/jquery.countdown.js", "description": "The Final Countdown for jQuery",