forked from qualityshepherd/testcafe-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 869 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 869 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
{
"name": "testcafe-example",
"version": "1.0.0",
"description": "An example project running e2e tests with TestCafe",
"engines": {
"node": "12.13.0"
},
"main": "index.js",
"scripts": {
"testcafe": "./node_modules/.bin/testcafe",
"test": "npm run testcafe chrome tests/",
"all": "npm run testcafe -- -c 2 chrome:headless,firefox:headless tests/",
"cli": "npm run testcafe -- -c 2 chrome:headless tests/",
"safari": "npm run testcafe safari tests/",
"firefox": "npm run testcafe firefox tests/",
"browsers": "npm run testcafe -- -b browserstack",
"ie": "npm run testcafe 'browserstack:ie@11.0:Windows 10' tests/"
},
"author": "Brine",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"node-fetch": "^2.6.0",
"testcafe": "^1.7.0",
"testcafe-browser-provider-browserstack": "^1.8.0"
}
}