-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "snakemake-lang",
"displayName": "Snakemake Language",
"icon": "logo-snake.png",
"description": "Basic syntax, language, and snippet support for Snakefiles (Snakemake workflow definition files)",
"version": "0.5.0",
"publisher": "snakemake",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snakemake/snakemake-lang-vscode-plugin"
},
"bugs": {
"url": "https://github.com/snakemake/snakemake-lang-vscode-plugin/issues"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "snakemake",
"aliases": [
"Snakemake",
"snakemake"
],
"filenames": [
"Snakefile"
],
"extensions": [
".smk",
".Snakefile"
],
"configuration": "./languages/snakemake.json"
}
],
"grammars": [
{
"language": "snakemake",
"scopeName": "source.python.snakemake",
"path": "./syntaxes/snakemake.tmLanguage.json"
}
],
"snippets": [
{
"language": "snakemake",
"path": "./snippets/snakemake.json"
}
]
},
"devDependencies": {
"js-yaml": "^3.13.1",
"mustache": "^3.1.0"
}
}