From 2b78ccde74d2a37c615b43e990058791548fdc09 Mon Sep 17 00:00:00 2001 From: "Christoph \"criztovyl\" Schulz" Date: Sat, 25 Mar 2017 17:58:36 +0100 Subject: [PATCH 1/4] package.json --- package.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..0444dbf --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "pagify", + "version": "1.0.0", + "description": "A jQuery plugin for effortlessly creating single page web sites.", + "main": "pagify.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/cmpolis/Pagify.git" + }, + "keywords": [ + "jquery", + "one-page" + ], + "author": "Chris Polis", + "license": "MIT", + "bugs": { + "url": "https://github.com/cmpolis/Pagify/issues" + }, + "homepage": "https://github.com/cmpolis/Pagify#readme", + "dependencies": { + "jquery": "^3.2.1" + } +} From 7e3909303d9bd2f835b702a19d0166595ceff286 Mon Sep 17 00:00:00 2001 From: "Christoph \"criztovyl\" Schulz" Date: Sat, 25 Mar 2017 18:12:37 +0100 Subject: [PATCH 2/4] jQuery plugin naming convetion --- pagify.js => jquery.pagify.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pagify.js => jquery.pagify.js (100%) diff --git a/pagify.js b/jquery.pagify.js similarity index 100% rename from pagify.js rename to jquery.pagify.js From e6ccc31e9404e769f4238e7ca3c2d41dbfa4d7e7 Mon Sep 17 00:00:00 2001 From: "Christoph \"criztovyl\" Schulz" Date: Sat, 25 Mar 2017 18:18:46 +0100 Subject: [PATCH 3/4] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0444dbf..a351b3d 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "pagify", + "name": "jquery-pagify", "version": "1.0.0", "description": "A jQuery plugin for effortlessly creating single page web sites.", - "main": "pagify.js", + "main": "jquery.pagify.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, From 77bba511befa3a43a618cf6491ba1d937ec964b1 Mon Sep 17 00:00:00 2001 From: "Christoph \"criztovyl\" Schulz" Date: Sat, 25 Mar 2017 18:45:26 +0100 Subject: [PATCH 4/4] Update README; bump to 1.0.1 --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c40d01..d86c537 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Load Pagify and jQuery: ``` html - + ``` Create a div that will contain page content: diff --git a/package.json b/package.json index a351b3d..cad3b3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jquery-pagify", - "version": "1.0.0", + "version": "1.0.1", "description": "A jQuery plugin for effortlessly creating single page web sites.", "main": "jquery.pagify.js", "scripts": {