{
    "name": "gitlens",
    "version": "0.0.4",
    "author": "Eric Amodio",
    "publisher": "eamodio",
    "engines": {
        "vscode": "^1.3.0"
    },
    "license": "SEE LICENSE IN LICENSE",
    "displayName": "GitLens",
    "description": "Provides Git information in CodeLens",
    "categories": [
        "Other"
    ],
    "keywords": [
        "git", "gitblame", "blame", "codelens"
    ],
    "galleryBanner": {
        "color": "#0000FF",
        "theme": "dark"
    },
    "preview": true,
    "repository": {
        "type": "git",
        "url": "https://github.com/eamodio/vscode-gitlens.git"
    },
    "main": "./out/src/extension",
    "contributes": {
        "commands": [{
            "command": "gitlens.diffWithPrevious",
            "title": "GitLens: Open Diff with Previous Commit",
            "category": "GitLens"
        },
        {
            "command": "gitlens.diffWithWorking",
            "title": "GitLens: Open Diff with Working Tree",
            "category": "GitLens"
        },
        {
            "command": "gitlens.showBlame",
            "title": "GitLens: Show Git Blame",
            "category": "GitLens"
        },
        {
            "command": "gitlens.toggleBlame",
            "title": "GitLens: Toggle Git Blame",
            "category": "GitLens"
        }],
        "menus": {
            "editor/title": [{
                "when": "editorTextFocus",
                "command": "gitlens.toggleBlame",
                "group": "gitlens"
            }],
            "editor/context": [
            {
                "when": "editorTextFocus",
                "command": "gitlens.diffWithWorking",
                "group": "gitlens@1.0"
            },
            {
                "when": "editorTextFocus",
                "command": "gitlens.diffWithPrevious",
                "group": "gitlens@1.1"
            },
            {
                "when": "editorTextFocus",
                "command": "gitlens.toggleBlame",
                "group": "gitlens-blame@1.2"
            }]
        },
        "keybindings": [{
            "command": "gitlens.toggleBlame",
            "key": "alt+b",
            "mac": "alt+b",
            "when": "editorTextFocus"
        }]
    },
    "activationEvents": [
        "*"
    ],
    "dependencies": {
        "lodash": "^4.15.0",
        "moment": "^2.14.1",
        "spawn-rx": "^2.0.1",
        "tmp": "^0.0.28"
    },
    "devDependencies": {
        "typescript": "^2.0.0",
        "vscode": "^0.11.17"
    },
    "scripts": {
        "vscode:prepublish": "node ./node_modules/vscode/bin/compile && tsc",
        "compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
        "postinstall": "node ./node_modules/vscode/bin/install"
    }
}