Skip to content

Commit

Permalink
2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CezaryDanielNowak committed Feb 25, 2016
1 parent 4f71dff commit d0e05dd
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 324 deletions.
13 changes: 7 additions & 6 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"name": "is.js",
"repo": "Cedriking/is.js",
"version": "1.4",
"name": "next-is",
"repo": "CezaryDanielNowak/next-is.js",
"version": "2.0.0",
"description": "Micro javascript library to use in conditions.",
"main": "is.min.js",
"main": "next-is.js",
"moduleType": [
"amd"
"globals"
],
"keywords": ["is.js", "conditions", "javascript", "objects", "validator", "validate", "string", "validate", "dates", "validate", "objects"],
"authors": [
"Cedrik Boudreau ( @Cedriking )"
"Cedrik Boudreau ( @Cedriking )",
"Cezary Daniel Nowak"
],
"license": "MIT",
"homepage": "https://github.com/Cedriking/is.js",
"homepage": "https://github.com/CezaryDanielNowak/next-is.js",
"ignore": [
"**/.*",
"node_modules",
Expand Down
316 changes: 0 additions & 316 deletions is.js

This file was deleted.

27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "next-is",
"version": "2.0.0",
"description": "Micro validation library",
"main": "next-is.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CezaryDanielNowak/next-is.js.git"
},
"keywords": [
"validation",
"conditions",
"modernizer",
"test",
"browser",
"check"
],
"author": "Cedrik Boudreau, Cezary Daniel Nowak",
"license": "MIT",
"bugs": {
"url": "https://github.com/CezaryDanielNowak/next-is.js/issues"
},
"homepage": "https://github.com/CezaryDanielNowak/next-is.js#readme"
}
4 changes: 2 additions & 2 deletions qunit-test/next-is.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ QUnit.test("string.isZip", function( assert ) {
es = '29611',
gb = 'EC1A 1BB',
hu = '9012',
is = '371',
_is = '371',
it = '25049',
jp = '541-5472',
nl = '9446',
Expand All @@ -262,7 +262,7 @@ QUnit.test("string.isZip", function( assert ) {
equal( is.string.isZip( es, 'es' ), true, "'29611' is a ES Zip Code" );
equal( is.string.isZip( gb, 'gb' ), true, "'EC1A 1BB' is a GB Zip Code" );
equal( is.string.isZip( hu, 'hu' ), true, "'9012' is a HU Zip Code" );
equal( is.string.isZip( is, 'is' ), true, "'371' is a IS Zip Code" );
equal( is.string.isZip( _is, 'is' ), true, "'371' is a IS Zip Code" );
equal( is.string.isZip( it, 'it' ), true, "'25049' is a IT Zip Code" );
equal( is.string.isZip( jp, 'jp' ), true, "'541-5472' is a JP Zip Code" );
equal( is.string.isZip( nl, 'nl' ), true, "'8031' is a NL Zip Code" );
Expand Down

0 comments on commit d0e05dd

Please sign in to comment.