From 1d126c7d143f1bdd989818ba435cde3ad5f7faf7 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Thu, 29 Jun 2017 12:35:03 -0400 Subject: [PATCH] Adding bugs and homepage fields to package.json (#2401) * Adding bugs and homepage fields to package.json This adds bugs and homepage entries to the package.json. This helps these links render on npm, and can lead developers to the right place to put issues and to find more information. I have included the url which redirects to the github repository in case this changes later, for the homepage field. Hopefully, this makes the package a bit more usable. Not a big fix, at all. * Use https://github.com/zeit/next.js as the home --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 25aabe80..1aa99b26 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,8 @@ "main": "./dist/server/next.js", "license": "MIT", "repository": "zeit/next.js", + "bugs": "https://github.com/zeit/next.js/issues", + "homepage": "https://github.com/zeit/next.js", "files": [ "dist", "babel.js",