-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 937 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 937 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
{
"name": "typescript-selenium-webdriver-sample",
"version": "0.0.0",
"description": "Sample project that demonstrates accessibility testing with TypeScript, Jest, Selenium, @axe-core/webdriverjs, SARIF, and Azure Pipelines.",
"private": true,
"devDependencies": {
"@axe-core/webdriverjs": "^4.11.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.8.10",
"@types/selenium-webdriver": "^4.35.4",
"axe-sarif-converter": "^3.0.0",
"chromedriver": "^146.0.5",
"cross-env": "^10.1.0",
"geckodriver": "^6.1.0",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"selenium-webdriver": "^4.39.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"scripts": {
"test": "jest",
"test:firefox": "cross-env SELENIUM_BROWSER=firefox jest",
"test:chrome": "cross-env SELENIUM_BROWSER=chrome jest"
}
}