forked from yoohahn/cypress-self-signed-cert-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 971 Bytes
/
package.json
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
{
"name": "cypress-self-signed-cert",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.9",
"@types/jest": "24.0.22",
"@types/node": "14.14.13",
"@types/puppeteer": "2.0.0",
"@types/selenium-webdriver": "4.0.5",
"cross-env": "6.0.3",
"cypress": "^5.1.0",
"express": "4.17.1",
"geckodriver": "1.19.1",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"puppeteer": "2.0.0",
"selenium-webdriver": "4.0.0-alpha.8",
"ts-jest": "26.4.4",
"typescript": "4.1.2"
},
"scripts": {
"test:e2e:ie": "cross-env BROWSER=ie jest runWithSelenium.test.ts --detectOpenHandles",
"test:e2e:firefox": "cross-env BROWSER=firefox jest runWithSelenium.test.ts --detectOpenHandles",
"test:e2e:safari": "cross-env BROWSER=safari jest runWithSelenium.test.ts --detectOpenHandles",
"start": "cypress run --browser chrome --headless",
"dev": "cypress open"
}
}