From ece2f6785c6bb2c55726274cbfca7ac8c90ca485 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Thu, 1 Nov 2018 12:04:52 -0700 Subject: [PATCH 1/3] package.json: Use a recognized SPDX license identifier LICENSE.txt is AGPL version 3.0, the identifier for which is listed in the table at . Silences a warning from npm about an invalid license identifier. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bc9e087ce..aa55e40b7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.31.0", "description": "Web app for visualizing pathogen evolution", "author": "James Hadfield, Trevor Bedford and Richard Neher", - "license": "AGPL", + "license": "AGPL-3.0-only", "homepage": "./", "engines": { "node": "9.6.x", From 7cd4ca8efeb15e04bf217505545e243660ff22e6 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Thu, 1 Nov 2018 12:08:31 -0700 Subject: [PATCH 2/3] package.json: Add a repository field Silences a warning from npm about this missing field. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index aa55e40b7..9209772bb 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "Web app for visualizing pathogen evolution", "author": "James Hadfield, Trevor Bedford and Richard Neher", "license": "AGPL-3.0-only", + "repository": "github:nextstrain/auspice", "homepage": "./", "engines": { "node": "9.6.x", From af1c5e9b9f01cc151a5dd6436e1ecbcf6b36d2da Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Thu, 1 Nov 2018 12:06:38 -0700 Subject: [PATCH 3/3] package.json: Use a fully-qualified URL for the homepage --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9209772bb..61e23265d 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "author": "James Hadfield, Trevor Bedford and Richard Neher", "license": "AGPL-3.0-only", "repository": "github:nextstrain/auspice", - "homepage": "./", + "homepage": "https://www.npmjs.com/package/auspice", "engines": { "node": "9.6.x", "npm": "5.6.x"