From ca0d88d19d3dac16afd4d59aa99c6b93fee387a5 Mon Sep 17 00:00:00 2001 From: Raj Kissu Date: Wed, 12 Dec 2012 14:39:09 +0800 Subject: [PATCH] Bower support * Bumps to 1.3.1 * Adds component.json for Bower support * Adds vim swap files to git ignore list --- .gitignore | 3 ++- component.json | 18 ++++++++++++++++++ plugin.json | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 component.json diff --git a/.gitignore b/.gitignore index 3260eff..a155859 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ - +*.swo +*.swp .idea/* dist/* diff --git a/component.json b/component.json new file mode 100644 index 0000000..301a596 --- /dev/null +++ b/component.json @@ -0,0 +1,18 @@ +{ + "name" : "jquery.maskedinput", + "version" : "1.3.1", + "description" : "A masked input plugin for the jQuery javascript library.", + "homepage" : "https://github.com/DigitalBush/jquery.maskedinput", + "main" : "./src/jquery.maskedinput.js", + "dependencies" : { + "jquery" : ">= 1.7.x" + }, + "keywords" : [ + "jquery", + "maskedinput" + ], + "author": { + "name" : "Josh Bush", + "web" : "http://digitalbush.com" + } +} diff --git a/plugin.json b/plugin.json index bcb2157..e2aa63d 100644 --- a/plugin.json +++ b/plugin.json @@ -1,5 +1,5 @@ { "name" : "jquery.maskedinput", "author" : "Josh Bush (digitalbush.com)", - "version" : "1.3" + "version" : "1.3.1" }