npm · Schema

Repository

Source code repository information.

PackagesJavaScriptNode.jsPackage ManagementRegistrySecurity

Properties

Name Type Description
type string The version control system type, typically "git".
url string The URL of the source code repository.
View JSON Schema on GitHub

JSON Schema

npm-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Repository",
  "title": "Repository",
  "type": "object",
  "description": "Source code repository information.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The version control system type, typically \"git\"."
    },
    "url": {
      "type": "string",
      "description": "The URL of the source code repository."
    }
  }
}