Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 801 Bytes

ts-package-json-homepage.md

File metadata and controls

45 lines (34 loc) · 801 Bytes

ts-package-json-homepage

Requires homepage in package.json to be set to the library's readme.

Examples

Good

{
  "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/servicebus/service-bus/README.md"
}
{
  "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/servicebus/service-bus"
}

Bad

{
  "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master/README.md"
}
{
  "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master"
}
{
  "homepage": "https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/servicebus/service-bus/README.md"
}
{}