-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.29 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
{
"name": "behat-checker",
"displayName": "Behat Checker",
"description": "Extension to help you identify undefined steps on feature files (for behat)",
"repository": {
"type": "git",
"url": "https://github.com/beeblebrox3/vscode-behat-checker"
},
"license": "MIT",
"version": "1.4.0",
"author": "Luís Henrique Faria <[email protected]>",
"publisher": "beeblebrox3",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"behat",
"php",
"gherkin",
"cucumber"
],
"preview": true,
"activationEvents": [
"onLanguage:feature",
"onLanguage:gherkin"
],
"main": "dist/client.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Behat Checker Configuration",
"properties": {
"behatChecker.configFile": {
"type": "string",
"default": "config/behat.yml",
"description": "path to behat config file"
},
"behatChecker.behatPath": {
"type": "string",
"default": "vendor/bin/behat",
"description": "path to behat binary"
},
"behatChecker.trigger": {
"type": "string",
"default": "onChange",
"description": "When to lint the file (onChange or onSave)"
},
"behatChecker.debug": {
"type": "boolean",
"default": false,
"description": "Turn this setting on to show debug information"
}
}
},
"commands": [
{
"command": "behatChecker.updateCache",
"title": "Update steps cache"
},
{
"command": "behatChecker.reload",
"title": "Reload behat checker server"
}
],
"keybindings": [
{
"key": "ctrl+alt+p",
"command": "behatChecker.updateCache"
},
{
"key": "ctrl+alt+l",
"command": "behatChecker.reload"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"postinstall": "node ./client/node_modules/vscode/bin/install",
"dev": "webpack --mode development --watch",
"webpack": "webpack --mode development"
},
"devDependencies": {
"ts-loader": "^6.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"typescript": "^3.6.4"
}
}