From baf2c93635d190b608f5256c1d15fa415058748f Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Tue, 11 Jul 2017 13:52:57 +0200 Subject: [PATCH] Simplify and fix repository field in package.json Currently if you would use command `npm repo stylefmt`, it will lead you to the https://github.com/morishitter/stylefmt/git. Which is incorrect. This commit simplifies the definition of the `repository` property --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 3888b31..d194483 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,7 @@ "bin": { "stylefmt": "bin/cli.js" }, - "repository": { - "type": "git", - "url": "git://github.com/morishitter/stylefmt/git" - }, + "repository": "morishitter/stylefmt", "engines": { "node": ">=4.2.0" },