Skip to content

Commit 7197c99

Browse files
fix: update package.json to include the repository key (#24)
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: * web-encoding
1 parent 5c35750 commit 7197c99

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
"require": "./src/lib.js"
1818
}
1919
},
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/gozala/web-encoding.git"
23+
},
2024
"scripts": {
2125
"test:node": "mocha test/test-*.spec.js",
2226
"test:browser": "playwright-test test/test-*.js",

0 commit comments

Comments
 (0)