forked from alexkrechik/VSCucumberAutoComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.45 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.45 KB
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
126
127
128
129
130
{
"name": "tomato-autocomplete",
"version": "2.0.0",
"publisher": "tomatool",
"author": "Tomato Tool",
"license": "MIT",
"displayName": "Tomato Gherkin Autocomplete",
"description": "VSCode extension for Tomato testing framework - Gherkin autocomplete and validation for tomato steps",
"homepage": "https://github.com/tomatool/extension",
"engines": {
"vscode": "^1.75.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tomatool/extension"
},
"bugs": {
"url": "https://github.com/tomatool/extension/issues"
},
"categories": [
"Programming Languages",
"Testing"
],
"keywords": [
"gherkin",
"cucumber",
"feature",
"autocomplete",
"tomato",
"tomatool",
"bdd",
"testing"
],
"main": "./gclient/out/extension",
"icon": "img/tomato.png",
"contributes": {
"languages": [
{
"id": "feature",
"aliases": [
"feature",
"gherkin",
"Gherkin",
"cucumber",
"tomato"
],
"extensions": [
".feature",
".testcase"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./img/tomato.png",
"dark": "./img/tomato.png"
}
}
],
"grammars": [
{
"language": "feature",
"scopeName": "text.gherkin.feature",
"path": "./syntaxes/feature.tmLanguage.json"
},
{
"injectTo": [
"text.gherkin.feature"
],
"scopeName": "text.gherkin.feature.json",
"path": "./syntaxes/json-embed.json",
"embeddedLanguages": {
"meta.embedded.block.json": "json"
}
}
],
"snippets": [
{
"language": "feature",
"path": "./snippets.json"
}
],
"configuration": {
"title": "Tomato Autocomplete Settings",
"properties": {
"tomato.formatConfOverride": {
"description": "Override some formatting via format conf strings = {[key: String]: num | 'relative'}, where key - beginning of the string, num - numeric value of indents",
"type": "object",
"required": false,
"default": {}
},
"tomato.onTypeFormat": {
"description": "Enable on-type formatting (activating after pressing on space, @ and : keys)",
"type": "boolean",
"required": false,
"default": false
},
"tomato.skipDocStringsFormat": {
"description": "Skip formatting of strings placed between ''' or \"\"\" strings",
"type": "boolean",
"required": false,
"default": false
}
}
}
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"package": "vsce package",
"lint": "eslint ./gclient/src ./gserver/src --ext .ts,.tsx",
"lint:fix": "eslint ./gclient/src ./gserver/src --ext .ts,.tsx --fix",
"postinstall": "cd gclient && npm install && cd ../gserver && npm install && cd ..",
"publish": "vsce publish",
"test:server": "jest",
"test": "npm run test:server"
},
"types": "gserver/src/typings.d.ts",
"devDependencies": {
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vscode/vsce": "^2.26.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/jest": "^29.5.12"
}
}