From e8b8ce607906aff6ce7c440e4c6d6ca1ff7c4410 Mon Sep 17 00:00:00 2001 From: Georgi Koshov Date: Wed, 9 Sep 2015 18:16:37 +0100 Subject: [PATCH 1/2] Turn into NPM module --- package.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..e28cb83 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "react-scroll-pagination", + "version": "1.0.0", + "description": "React component for handing infinite scroll without infinitely growing the DOM.", + "main": "ScrollPagination.js", + "directories": { + "example": "example" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/cupcake/react-scroll-pagination" + }, + "author": "Jesse Stuart", + "license": "Copyright (c) 2014 Apollic Software, LLC. All rights reserved.", + "bugs": { + "url": "https://github.com/cupcake/react-scroll-pagination/issues" + }, + "homepage": "https://github.com/cupcake/react-scroll-pagination" +} From a998b2313750b64c00f4ea3bebc8a7e90c1abb13 Mon Sep 17 00:00:00 2001 From: Georgi Koshov Date: Thu, 10 Sep 2015 11:21:05 +0100 Subject: [PATCH 2/2] Apply feedback from @cupcake --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index e28cb83..de12ba7 100644 --- a/package.json +++ b/package.json @@ -6,15 +6,12 @@ "directories": { "example": "example" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, "repository": { "type": "git", "url": "https://github.com/cupcake/react-scroll-pagination" }, "author": "Jesse Stuart", - "license": "Copyright (c) 2014 Apollic Software, LLC. All rights reserved.", + "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/cupcake/react-scroll-pagination/issues" },