-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "behat-complete",
"displayName": "Behat Complete",
"description": "Auto-completion of Gherkin steps based on Behat definitions.",
"version": "0.2.0",
"publisher": "choppedcode",
"enableProposedApi": false,
"repository": {
"type": "git",
"url": "https://github.com/choppedcode/vscode-behat-complete.git"
},
"bugs": {
"url": "https://github.com/choppedcode/vscode-behat-complete/issues"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:feature"
],
"main": "./out/extension.js",
"icon": "doc-assets/icon.png",
"keywords": [
"behat",
"gherkin",
"php"
],
"contributes": {
"configuration": [
{
"title": "Behat Complete",
"properties": {
"behat.command": {
"type": "string",
"default": "[WSROOT]/vendor/bin/behat",
"description": "Behat command, e.g. /usr/bin/behat, should include the full path.",
"scope": "window"
},
"behat.configFile": {
"type": "string",
"default": "[WSROOT]/tests/behat.yml",
"description": "Behat config file, e.g. behat.yml, should include the full path.",
"scope": "window"
},
"behat.suite": {
"type": "string",
"default": "",
"description": "Behat test suite to analyse for definitions, leave blank if all suites should be analysed.",
"scope": "window"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^12.0.0",
"tslint": "^5.11.1",
"typescript": "^3.2.4",
"vscode": "^1.1.22"
}
}