-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 828 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 828 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
30
31
{
"name": "jest-js-browserstack",
"version": "1.0.0",
"author": "BrowserStack",
"license": "MIT",
"description": "Selenium examples using JestJS and BrowserStack",
"keywords": [
"browserstack",
"selenium",
"automate",
"examples",
"jest",
"jestjs"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"browserstack-node-sdk": "latest",
"jest": "^27.4.7"
},
"dependencies": {
"browserstack-local": "^1.4.8",
"dotenv": "^16.0.0",
"selenium-webdriver": "4.1.2"
},
"scripts": {
"sample-test": "browserstack-node-sdk jest src/sample.test.js",
"sample-test-tra": "browserstack-node-sdk jest 'src/module[A-Z]/test.js'",
"sample-local-test": "browserstack-node-sdk jest src/sample-local-test.js",
"postinstall": "npm update browserstack-node-sdk"
}
}