-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 986 Bytes
/
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
{
"name": "snippets-for-cucumber",
"displayName": "Snippets for Cucumber",
"description": "Snippets for Gherkin/Cucumber/BDD",
"version": "0.10.0",
"publisher": "agilelog-org",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "https://github.com/qzi/snippets-for-cucumber.git"
},
"engines": {
"vscode": "^1.6.0"
},
"keywords": [
"cucumber",
"bdd",
"gherkin",
"snippets"
],
"categories": [
"Snippets",
"Testing",
"Programming Languages"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets-javascript.json"
},
{
"language": "feature",
"path": "./snippets-cucumber.json"
},
{
"language": "java",
"path": "./snippets-java.json"
},
{
"language": "typescript",
"path": "./snippets-typescript.json"
}
]
},
"icon": "images/cucumber-ext-v0.2.png"
}