-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 807 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 807 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
32
{
"name": "testcafe-example",
"version": "1.0.0",
"description": "An example project running e2e tests with TestCafe",
"engines": {
"node": ">=16"
},
"standard": {
"globals": [
"t",
"fixture",
"test"
]
},
"scripts": {
"testcafe": "testcafe",
"test": "testcafe chrome tests/",
"ci": "testcafe -c 2 -q attemptLimit=2,successThreshold=1 chrome:headless tests/",
"firefox": "testcafe firefox tests/",
"browsers": "testcafe -- -b browserstack",
"ie": "testcafe 'browserstack:ie@11.0:Windows 10' tests/",
"pretty": "standard --fix"
},
"author": "Brine",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.5",
"standard": "^17.1.0",
"testcafe": "^3.0.1",
"testcafe-browser-provider-browserstack": "^1.13.2"
}
}