From 2ca36ad644b873487c6e9dfe2d961c4f8d10c515 Mon Sep 17 00:00:00 2001 From: Patrick Caron Date: Sat, 4 Feb 2017 01:21:58 +0100 Subject: [PATCH 1/2] Add package.json --- package.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..d163ca0 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "knockout-repeat", + "version": "2.1.0", + "description": "REPEAT binding for Knockout", + "main": "knockout-repeat.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/mbest/knockout-repeat.git" + }, + "author": "Michael Best", + "license": "MIT", + "bugs": { + "url": "https://github.com/mbest/knockout-repeat/issues" + }, + "homepage": "https://github.com/mbest/knockout-repeat#readme" +} From e1b1040cafb2071703bf2309ef55bf9160f38137 Mon Sep 17 00:00:00 2001 From: Patrick Caron Date: Sat, 4 Feb 2017 01:31:21 +0100 Subject: [PATCH 2/2] Clean up formatting --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index d163ca0..fd5e28c 100644 --- a/package.json +++ b/package.json @@ -2,18 +2,18 @@ "name": "knockout-repeat", "version": "2.1.0", "description": "REPEAT binding for Knockout", + "homepage": "https://github.com/mbest/knockout-repeat#readme", + "author": "Michael Best", "main": "knockout-repeat.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, + "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/mbest/knockout-repeat.git" }, - "author": "Michael Best", - "license": "MIT", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, "bugs": { "url": "https://github.com/mbest/knockout-repeat/issues" - }, - "homepage": "https://github.com/mbest/knockout-repeat#readme" + } }