Fix letter case in repo URL

The repo url in `package.json` is incorrectly using uppercase in the origanization name, fix that.
This commit is contained in:
silverwind 2021-09-28 15:43:10 +02:00 committed by GitHub
parent e3007c840c
commit 21b51b4830
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/Microsoft/monaco-editor-webpack-plugin.git" "url": "git+https://github.com/microsoft/monaco-editor-webpack-plugin.git"
}, },
"keywords": [ "keywords": [
"webpack", "webpack",
@ -24,9 +24,9 @@
"author": "Microsoft Corporation", "author": "Microsoft Corporation",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/Microsoft/monaco-editor-webpack-plugin/issues" "url": "https://github.com/microsoft/monaco-editor-webpack-plugin/issues"
}, },
"homepage": "https://github.com/Microsoft/monaco-editor-webpack-plugin#readme", "homepage": "https://github.com/microsoft/monaco-editor-webpack-plugin#readme",
"peerDependencies": { "peerDependencies": {
"webpack": "^4.5.0 || 5.x", "webpack": "^4.5.0 || 5.x",
"monaco-editor": "0.25.x || 0.26.x || 0.27.x || 0.28.x" "monaco-editor": "0.25.x || 0.26.x || 0.27.x || 0.28.x"