{
    "name": "snapshot-tools",
    "description": "Helpful tools for snapshot testing",
    "author": "Alexey Svetliakov <asvetliakov@teledini.com>",
    "license": "MIT",
    "version": "0.3.0",
    "publisher": "asvetliakov",
    "repository": {
        "type": "git",
        "url": "https://github.com/asvetliakov/typescript-snapshots-plugin"
    },
    "engines": {
        "vscode": "^1.8.0"
    },
    "icon": "icon.png",
    "categories": [
        "Programming Languages",
        "Other"
    ],
    "contributes": {
        "languages": [
            {
                "id": "jest-snapshot",
                "extensions": [
                    ".js.snap",
                    ".jsx.snap",
                    ".ts.snap",
                    ".tsx.snap"
                ]
            }
        ],
        "grammars": [
            {
                "language": "jest-snapshot",
                "scopeName": "source.jest.snap",
                "path": "./syntaxes/jest-snapshot.tmLanguage"
            }
        ],
        "typescriptServerPlugins": [
            {
                "name": "typescript-snapshots-plugin"
            }
        ]
    },
    "dependencies": {
        "typescript-snapshots-plugin": "^1.6.0"
    }
}
