From df8040e4de417cf0985b8c960e79eff5f6d5ecb3 Mon Sep 17 00:00:00 2001 From: Damian Date: Sun, 20 Aug 2017 20:52:43 +0200 Subject: [PATCH 1/3] add jQuery to devDependencies for run test correctly on localhost --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index dcfca55..89aaf70 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,8 @@ "grunt-contrib-watch": "^0.6.1", "grunt-umd": "~2.4.0", "numeral": "~1.5.3", - "qunitjs": "^1.20.0" + "qunitjs": "^1.20.0", + "jquery": ">1.8.0" }, "dependencies": { "jquery": ">1.8.0" From f87a6680adf97eb1f096807c01c91291bfcf0db8 Mon Sep 17 00:00:00 2001 From: Damian Date: Sun, 20 Aug 2017 20:52:52 +0200 Subject: [PATCH 2/3] remove unused bower.json file --- bower.json | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 bower.json diff --git a/bower.json b/bower.json deleted file mode 100644 index 3286f06..0000000 --- a/bower.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "jquery-form-validator", - "homepage": "http://formvalidator.net/", - "authors": [ - "victorjonsson" - ], - "description": "With this feature rich jQuery plugin it becomes easy to validate user input while keeping your HTML markup clean from javascript code. Even though this plugin has a wide range of validation functions it's designed to require as little bandwidth as possible. This is achieved by grouping together validation functions in \"modules\", making it possible for the programmer to load only those functions that's needed to validate a particular form.", - "main": "./form-validator/jquery.form-validator.min.js", - "keywords": [ - "form", - "validator", - "jquery" - ], - "dependencies": { - "jquery": ">1.8.0" - }, - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} From 5938c10553ed29b736b021d08798a24882e3f53a Mon Sep 17 00:00:00 2001 From: Damian Date: Sun, 20 Aug 2017 21:02:47 +0200 Subject: [PATCH 3/3] restore bower.json --- bower.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..3286f06 --- /dev/null +++ b/bower.json @@ -0,0 +1,25 @@ +{ + "name": "jquery-form-validator", + "homepage": "http://formvalidator.net/", + "authors": [ + "victorjonsson" + ], + "description": "With this feature rich jQuery plugin it becomes easy to validate user input while keeping your HTML markup clean from javascript code. Even though this plugin has a wide range of validation functions it's designed to require as little bandwidth as possible. This is achieved by grouping together validation functions in \"modules\", making it possible for the programmer to load only those functions that's needed to validate a particular form.", + "main": "./form-validator/jquery.form-validator.min.js", + "keywords": [ + "form", + "validator", + "jquery" + ], + "dependencies": { + "jquery": ">1.8.0" + }, + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +}