This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.07 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
{
"name": "gherlint",
"displayName": "GherLint",
"description": "Syntax highlighter, formatter and linter for gherkin language",
"version": "0.1.0",
"engines": {
"vscode": "^1.62.0"
},
"publisher": "sawjan",
"icon": "img/logo.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JankariTech/GherkinLinter.git"
},
"bugs": {
"url": "https://github.com/JankariTech/GherkinLinter.git/issues"
},
"author": "Sawjan G.",
"categories": [
"Programming Languages"
],
"keywords": [
"gherkin",
"cucumber",
"feature",
"bdd"
],
"activationEvents": [
"onLanguage:gherkin"
],
"main": "./client/src/extension.js",
"contributes": {
"languages": [
{
"id": "gherkin",
"extensions": [
".feature"
],
"aliases": [
"Gherkin",
"gherkin",
"feature",
"cucumber"
],
"configuration": "./client/language-settings.json"
}
],
"grammars": [
{
"language": "gherkin",
"scopeName": "text.gherkin",
"path": "./client/syntaxes/gherkin.tmGrammar.json"
}
]
},
"capabilities": {
"configuration": {
"type": "object",
"title": "Gherlint configuration",
"properties": {
"gherlint.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 1000,
"description": "Controls the maximum number of problems produced by the server."
}
}
}
},
"scripts": {
"package": "vsce package",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"dependencies": {
"vsce": "^2.7.0"
}
}