forked from browserstack/cucumber-js-browserstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 965 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 965 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
25
{
"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": "cross-env CONFIG_FILE=single ./node_modules/cucumber/bin/cucumber.js features/single.feature",
"local": "cross-env CONFIG_FILE=local ./node_modules/cucumber/bin/cucumber.js features/local.feature",
"parallel": "cross-env CONFIG_FILE=parallel ./scripts/cucumber-runner.js features/single.feature"
},
"devDependencies": {
"cucumber": "1.3.3",
"cucumber-assert": "1.0.4",
"selenium-webdriver": "^3.6.0"
},
"dependencies": {
"browserstack-local": "^1.0.0",
"cross-env": "^5.2.0"
}
}