-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 901 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "cucumber-js-browserstack",
"version": "0.1.0",
"readme": "Cucumber-JS Integration with [BrowserStack](https://www.browserstack.com)",
"description": "Selenium examples for Cucumber-JS and BrowserStack Automate",
"repository": {
"type": "git",
"url": "git+https://github.com/browserstack/cucumber-js-browserstack.git"
},
"scripts": {
"test": "npm run single && npm run local && npm run parallel",
"single": "CONFIG_FILE=single ./node_modules/cucumber/bin/cucumber.js features/single.feature",
"local": "CONFIG_FILE=local ./node_modules/cucumber/bin/cucumber.js features/local.feature",
"parallel": "CONFIG_FILE=parallel ./scripts/cucumber-runner.js features/single.feature"
},
"devDependencies": {
"cucumber": "*",
"cucumber-assert": "*",
"selenium-webdriver": "^2.53.2"
},
"dependencies": {
"browserstack-local": "^1.0.0"
}
}