-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.13 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
{
"name": "cucumber-java-test-runner",
"displayName": "Cucumber Test Runner for Java",
"description": "Run and debug Cucumber BDD scenarios from VS Code's native Test Explorer. Integrates with Maven and cucumber-junit-platform-engine.",
"version": "0.2.1",
"publisher": "arunkris",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arun279/cucumber-java-test-runner"
},
"engines": {
"vscode": "^1.95.0"
},
"icon": "icons/logo.png",
"categories": [
"Testing"
],
"keywords": [
"cucumber",
"gherkin",
"bdd",
"java",
"maven",
"testing",
"spring-boot"
],
"activationEvents": [
"workspaceContains:src/**/*.feature",
"workspaceContains:*/src/**/*.feature"
],
"main": "./dist/extension.js",
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": false
}
},
"contributes": {
"configuration": {
"title": "Cucumber Test Runner",
"properties": {
"cucumberTestRunner.maven.executable": {
"type": "string",
"default": "mvn",
"description": "Path to Maven executable. The Maven Wrapper (mvnw) is auto-detected and preferred if present."
},
"cucumberTestRunner.maven.additionalArgs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional Maven command-line arguments (e.g., [\"-Pintegration\"])."
},
"cucumberTestRunner.runnerClass": {
"type": "string",
"default": "",
"description": "Fully qualified Cucumber runner class name. Auto-detected if empty."
},
"cucumberTestRunner.featuresPath": {
"type": "string",
"default": "",
"description": "Path to features directory relative to workspace root. Auto-detected if empty."
},
"cucumberTestRunner.defaultTags": {
"type": "string",
"default": "",
"description": "Default tag expression applied to all test runs (e.g., \"not @wip\")."
},
"cucumberTestRunner.glue": {
"type": "string",
"default": "",
"description": "Cucumber glue (step definitions) package. Auto-detected from junit-platform.properties if empty. (e.g., \"com.example.steps\")"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node esbuild.js --production",
"watch": "node esbuild.js --watch",
"test:unit": "mocha --require ts-node/register --require src/test/unit/setup.ts \"src/test/unit/**/*.test.ts\"",
"lint": "tsc --noEmit",
"package": "vsce package --no-dependencies"
},
"dependencies": {
"@cucumber/gherkin": "^29.0.0",
"@cucumber/messages": "^26.0.0",
"cross-spawn": "^7.0.6",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.24.0",
"mocha": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.5.0"
}
}