From f675a7d3dd240ed0060dfc299e425ebeadf3e4a0 Mon Sep 17 00:00:00 2001 From: Microsoft Provenance Contributions Date: Mon, 6 Sep 2021 14:44:08 +0800 Subject: [PATCH] Update package.json to include the repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NOTE: This is not a bot. This change was made by and comments will be reviewed by humans. We are using this service account to be able to track the overall progress. With the rise in supply chain attacks and OSS dependencies being used as a attack vector, Microsoft is working with our ecosystem partners, such as the Linux Foundation's OpenSSF, to enable OSS consumers to track packages back to their public sources. We've identified that the following packages published to NPM do not report where sources can be found, typically accomplished by including a link to your GitHub repository in your package.json REPOSITORY field. This PR was created to add this value, ensuring future releases will include this provenance information. If you do not want us to create such PRs against your GitHub repositories, or wish to provide any other feedback, please comment on this PR. Published NPM packages with repository information: • js --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 09f994c..8cabc89 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,11 @@ "bin": { "js": "./bin/js" }, + "repository": { + "type": "git", + "url": "https://github.com/coreh/js.git" + }, "dependencies": { "commander": "~1.1.1" } -} \ No newline at end of file +}