-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "test-runner-for-cucumber",
"displayName": "Test Runner for Cucumber",
"description": "Test Runner for Cucumber/Gherkin",
"version": "0.8.4",
"publisher": "agilelog-org",
"license": "Apache License 2.0",
"icon": "images/cucumber-ext-v0.2.png",
"repository": {
"type": "git",
"url": "https://github.com/qzi/test-runner-for-cucumber"
},
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Programming Languages",
"Testing",
"Education"
],
"keywords": [
"cucumber",
"bdd",
"gherkin",
"cucumber-js"
],
"activationEvents": [
"onCommand:cucumberRunner.runCurrentFeature",
"onCommand:cucumberRunner.runCurrentScenario",
"workspaceContains:*.md"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cucumberRunner.runCurrentFeature",
"title": "Cucumber Runner: runCurrentFeature"
},
{
"command": "cucumberRunner.runCurrentScenario",
"title": "Cucumber Runner: runCurrentScenario"
}
]
},
"scripts": {
"vsce:prepackage": "vsce package --pre-release",
"vsce:prepublish": "vsce publish --pre-release",
"vscode:prepublish": "tsc",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"esbuild": "^0.15.5",
"eslint": "^8.13.0",
"save": "^2.5.0",
"spawn-command": "^0.0.2-1",
"tree-kill": "^1.2.2",
"typescript": "^4.7.2"
}
}