From f960ee74baef503e66a744388e1751812121f098 Mon Sep 17 00:00:00 2001 From: Joschka Date: Fri, 18 Dec 2015 14:23:40 +0100 Subject: [PATCH 1/4] Shorten author name in Bower config --- bower.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bower.json b/bower.json index a760d5d..c5da9f2 100644 --- a/bower.json +++ b/bower.json @@ -14,8 +14,5 @@ "type": "git", "url": "git@github.com:travel-intelligence/ti-auth.js.git" }, - "authors": [{ - "name": "Joschka Kintscher", - "email": "joschka@kintscher.me" - }] + "authors": [ "Joschka Kintscher " ] } From ada5061ea3634c9997517bb5180c590eb1fd34f4 Mon Sep 17 00:00:00 2001 From: Joschka Date: Fri, 18 Dec 2015 14:24:51 +0100 Subject: [PATCH 2/4] Add license and author to NPM and Bower configs --- bower.json | 3 ++- package.json | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index c5da9f2..5dfe137 100644 --- a/bower.json +++ b/bower.json @@ -14,5 +14,6 @@ "type": "git", "url": "git@github.com:travel-intelligence/ti-auth.js.git" }, - "authors": [ "Joschka Kintscher " ] + "authors": [ "Joschka Kintscher " ], + "license": "MIT" } diff --git a/package.json b/package.json index c993bdc..c1228f3 100644 --- a/package.json +++ b/package.json @@ -13,5 +13,7 @@ "testem": "0.9.5", "uglifyjs": "2.4.10", "url-parse": "1.0.5" - } + }, + "author": "Joschka Kintscher ", + "license": "MIT" } From ee1491fe1251707f831bd5e20d9d3706953c2ca4 Mon Sep 17 00:00:00 2001 From: Joschka Date: Fri, 18 Dec 2015 14:25:20 +0100 Subject: [PATCH 3/4] Add basic NPM config --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index c1228f3..a6c8e14 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,7 @@ { + "name": "ti-auth.js", + "version": "1.0.0", + "description": "The official authentication library to use in your Travel Intelligence modules", "scripts": { "test": "make test" }, From e41f031ad757ef0b097cb3941268d25afb71e7bf Mon Sep 17 00:00:00 2001 From: Joschka Date: Fri, 18 Dec 2015 14:25:25 +0100 Subject: [PATCH 4/4] Make ti-auth installable through NPM --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index a6c8e14..aa6f2d3 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,13 @@ "uglifyjs": "2.4.10", "url-parse": "1.0.5" }, + "repository" : { + "type": "git", + "url": "git@github.com:travel-intelligence/ti-auth.js.git" + }, + "files": [ + "dist/" + ], "author": "Joschka Kintscher ", "license": "MIT" }