-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.53 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
{
"name": "gherlint-vscode",
"displayName": "GherLint",
"description": "Integrates GherLint into VS Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.62.0",
"node": ">=14.0.0"
},
"publisher": "jankaritech",
"icon": "img/logo.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gherlint/gherlint-vscode.git"
},
"bugs": {
"url": "https://github.com/gherlint/gherlint-vscode.git/issues"
},
"author": "JankariTech <www.jankaritech.com>",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"gherkin",
"cucumber",
"feature",
"bdd",
"linter"
],
"activationEvents": [
"onLanguage:gherkin"
],
"main": "./dist/client.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": {
"preinstall": "npm i --prefix ./client & npm i --prefix ./server",
"build": "webpack -d eval",
"build:w": "webpack -d eval -w",
"build:prod": "webpack --mode production",
"test:unit": "npm run test:unit --prefix ./server",
"package": "mkdir -p packages && vsce package --out packages/",
"deploy": "vsce publish"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"babel-loader": "^8.2.5",
"path-browserify": "^1.0.1",
"vsce": "^2.7.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}