-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 1.21 KB
/
package.json
File metadata and controls
29 lines (28 loc) · 1.21 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
{
"name": "cucumber-js-lambdatest",
"version": "0.1.0",
"type": "module",
"readme": "Cucumber-JS Integration with [lambdatest](https://www.lambdatest.com)",
"description": "Selenium examples for Cucumber-JS and lambdatest Automate",
"repository": {
"type": "git",
"url": "git+https://github.com/lambdatest/cucumber-js-lambdatest.git"
},
"scripts": {
"test": "npm run single && npm run local && npm run parallel",
"single": "cross-env CONFIG_FILE=single ./node_modules/@cucumber/cucumber/bin/cucumber.js features/single.feature",
"local": "cross-env CONFIG_FILE=local ./node_modules/@cucumber/cucumber/bin/cucumber.js features/local.feature",
"parallel": "cross-env CONFIG_FILE=parallel ./scripts/cucumber-runner.js features/single.feature",
"parallelJenkins": "cross-env CONFIG_FILE=parallelJenkins ./scripts/cucumber-runner.js features/single.feature",
"singleJenkins": "cross-env CONFIG_FILE=singleJenkins ./scripts/cucumber-runner.js features/single.feature"
},
"devDependencies": {
"cross-env": "^10.1.0",
"@cucumber/cucumber": "^12.2.0",
"cucumber-assert": "1.0.4",
"selenium-webdriver": "^4.38.0"
},
"dependencies": {
"@lambdatest/node-tunnel": "^4.0.9"
}
}