From 0d140158f9c1337f60dab36c62844a8277411ec1 Mon Sep 17 00:00:00 2001 From: Microsoft Provenance Contributions Date: Tue, 10 Aug 2021 16:58:37 +0800 Subject: [PATCH] Update package.json to include the repository key 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. Published NPM packages with repository information: * vue-test-utils --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 6255328fd..4ada8c2e2 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,10 @@ "workspaces": [ "packages/*" ], + "repository": { + "type": "git", + "url": "https://github.com/vuejs/vue-test-utils.git" + }, "scripts": { "bootstrap": "lerna bootstrap", "build": "lerna run build",