-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 3.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "groovy-guru",
"displayName": "Groovy-Guru",
"description": "Groovy Intellisense for Visual Studio Code",
"version": "0.0.0",
"preview": true,
"publisher": "DontShaveTheYak",
"homepage": "https://github.com/DontShaveTheYak/groovy-guru",
"repository": {
"type": "git",
"url": "https://github.com/DontShaveTheYak/groovy-guru.git"
},
"bugs": {
"url": "https://github.com/DontShaveTheYak/groovy-guru/issues"
},
"icon": "media/icon.png",
"galleryBanner": {
"color": "#5c2d91",
"theme": "light"
},
"license": "Apache-2.0",
"private": true,
"categories": [
"Programming Languages"
],
"keywords": [
"Groovy",
"Jenkins",
"Jenkinsfile",
"IntelliSense",
"DevOps"
],
"engines": {
"vscode": "^1.59.0"
},
"activationEvents": [
"onLanguage:groovy",
"onCommand:groovy.restartServer"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "groovy",
"extensions": [
".groovy"
],
"aliases": [
"Groovy"
]
}
],
"commands": [
{
"command": "groovy.restartServer",
"title": "Restart Groovy language server",
"category": "Groovy"
}
],
"configuration": {
"type": "object",
"description": "Groovy configuration",
"properties": {
"groovy.java.home": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the folder path to the JDK. Use this setting if the extension cannot find Java automatically."
},
"groovy.classpath": {
"type": "array",
"default": null,
"description": "Specifies additional entries to add to the classpath. May contain both folders and individual .jar files.",
"items": {
"type": "string"
}
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"build-server": "mkdir -p bin && cd contrib/groovy-language-server/ && ./gradlew build && cp build/libs/groovy-language-server-all.jar ../../bin/",
"build-extension": "vsce package --yarn --no-git-tag-version",
"build": "yarn run build-server && yarn run build-extension",
"ci": "yarn run pretest && yarn run build && yarn run test",
"publish": "vsce publish --yarn --no-git-tag-version --packagePath"
},
"pre-commit": [
"pretest",
"build"
],
"dependencies": {
"vscode-languageclient": "7.0.0"
},
"devDependencies": {
"@types/glob": "7.1.4",
"@types/mocha": "8.2.3",
"@types/node": "14.17.9",
"@types/vscode": "1.59.0",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"eslint": "7.32.0",
"glob": "7.1.7",
"mocha": "8.4.0",
"ovsx": "0.3.0",
"pre-commit": "1.2.2",
"ts-loader": "9.2.5",
"typescript": "4.3.5",
"vsce": "1.96.1",
"vscode-test": "1.6.1",
"webpack": "5.49.0",
"webpack-cli": "4.7.2"
}
}