package-json-type
    Preparing search index...

    Interface IRepository

    Specify the place where your code lives. This is helpful for people who want to contribute.

    • Git
    {
    "repository": {
    "type": "git",
    "url": "https://github.com/ajaxlab/package-json-type.git"
    }
    }
    • Svn
    {
    "repository": {
    "type": "svn",
    "url": "https://v8.googlecode.com/svn/trunk/"
    }
    }
    • Monorepo
    {
    "repository": {
    "type": "git",
    "url": "https://github.com/facebook/react.git",
    "directory": "packages/react-dom"
    }
    }
    interface IRepository {
        directory?: string;
        type: string;
        url: string;
    }
    Index

    Properties

    Properties

    directory?: string
    type: string
    url: string