From f6f70c590eecbd185758db044b481f5bf0b8d4ce Mon Sep 17 00:00:00 2001 From: Vajahath Ahmed Date: Mon, 21 Jun 2021 16:29:21 +0530 Subject: [PATCH] Add repo info in package.json so that people can backtrack from npm site (#1066) --- cli/package.json | 5 +++++ libsquoosh/package.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/cli/package.json b/cli/package.json index 7131fa83..72596725 100644 --- a/cli/package.json +++ b/cli/package.json @@ -4,6 +4,11 @@ "description": "A CLI for Squoosh", "public": true, "type": "module", + "homepage": "https://github.com/GoogleChromeLabs/squoosh", + "repository": { + "type": "git", + "url": "https://github.com/GoogleChromeLabs/squoosh.git" + }, "bin": { "squoosh-cli": "src/index.js", "@squoosh/cli": "src/index.js" diff --git a/libsquoosh/package.json b/libsquoosh/package.json index 53d9579d..4eab611b 100644 --- a/libsquoosh/package.json +++ b/libsquoosh/package.json @@ -12,6 +12,11 @@ }, "keywords": [], "author": "Google Chrome Developers ", + "homepage": "https://github.com/GoogleChromeLabs/squoosh", + "repository": { + "type": "git", + "url": "https://github.com/GoogleChromeLabs/squoosh.git" + }, "license": "Apache-2.0", "dependencies": { "web-streams-polyfill": "^3.0.3"