-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 835 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
26
27
28
29
{
"name": "cucumber-playwright-browserstack",
"version": "1.0.0",
"description": "Cucumber.js + Playwright integration with BrowserStack using the BrowserStack SDK",
"scripts": {
"sample-test": "browserstack-node-sdk cucumber-js features/search.feature",
"sample-local-test": "browserstack-node-sdk cucumber-js features/local.feature",
"sample-all-test": "browserstack-node-sdk cucumber-js features/",
"test": "cucumber-js",
"postinstall": "npm update browserstack-node-sdk"
},
"keywords": [
"cucumber",
"playwright",
"browserstack",
"e2e",
"testing"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^10.0.0",
"@playwright/test": "^1.58.2",
"browserstack-node-sdk": "latest"
},
"dependencies": {
"playwright": "latest"
}
}