Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/groovy/package.json
3290 views
1
{
2
"name": "groovy",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "groovy",
19
"aliases": [
20
"Groovy",
21
"groovy"
22
],
23
"extensions": [
24
".groovy",
25
".gvy",
26
".gradle",
27
".jenkinsfile",
28
".nf"
29
],
30
"filenames": [
31
"Jenkinsfile"
32
],
33
"filenamePatterns": [
34
"Jenkinsfile*"
35
],
36
"firstLine": "^#!.*\\bgroovy\\b",
37
"configuration": "./language-configuration.json"
38
}
39
],
40
"grammars": [
41
{
42
"language": "groovy",
43
"scopeName": "source.groovy",
44
"path": "./syntaxes/groovy.tmLanguage.json"
45
}
46
],
47
"snippets": [
48
{
49
"language": "groovy",
50
"path": "./snippets/groovy.code-snippets"
51
}
52
]
53
},
54
"repository": {
55
"type": "git",
56
"url": "https://github.com/microsoft/vscode.git"
57
}
58
}
59
60