{
	"name": "cforall",
	"version": "0.1.0",
	"displayName": "C∀ (C-for-all) Language Support",
	"description": "Cforall - colorizer, grammar and snippets.",
	"publisher": "uwaterloo",
	"license": "MIT",
	"engines": {
		"vscode": "^1.5.0"
	},
	"icon": "images/icon.png",
	"categories": [
		"Programming Languages",
		"Linters",
		"Other"
	],
	"activationEvents": [
		"onLanguage:cforall"
	],
	"main": "./client/main.js",
	"contributes": {
		"languages": [
			{
				"id": "cforall",
				"aliases": [
					"C∀",
					"CForAll",
					"Cforall",
					"cforall"
				],
				"extensions": [
					".cfa",
					".hfa",
					".ifa"
				],
				"configuration": "./cforall.configuration.json"
			}
		],
		"grammars": [
			{
				"language": "cforall",
				"scopeName": "source.cfa",
				"path": "./syntaxes/cfa.tmLanguage.json"
			}
		],
		"configuration": {
			"type": "object",
			"title": "Example configuration",
			"properties": {
				"cforall.maxNumberOfProblems": {
					"scope": "resource",
					"type": "number",
					"default": 100,
					"description": "Controls the maximum number of problems produced by the server."
				},
				"cforall.trace.server": {
					"scope": "window",
					"type": "string",
					"enum": [
						"off",
						"messages",
						"verbose"
					],
					"default": "off",
					"description": "Traces the communication between VS Code and the language server."
				}
			}
		}
	},
	"dependencies": {
		"vscode-languageclient": "^4.1.4"
	},
	"devDependencies": {
		"vscode-languageclient": "^4.1.4"
	}
}
