-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "cql-language",
"displayName": "cql-language",
"description": "Clinical Quality Language support and syntax highlighting for VSCode",
"version": "0.0.1",
"publisher": "athenahealth",
"author": {
"name": "Andrew Thomas"
},
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Programming Languages"
],
"icon": "icon/athn.jpg",
"contributes": {
"languages": [{
"id": "cql",
"aliases": ["Clinical Quality Language", "cql"],
"extensions": [".cql"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "cql",
"scopeName": "source.cql",
"path": "./syntaxes/cql.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/athenahealth/vscode-cql-language.git"
},
"homepage": "https://github.com/athenahealth/vscode-cql-language/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.txt"
}