forked from microsoft/axe-pipelines-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 936 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
{
"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.9.1",
"@types/jest": "^27.5.0",
"@types/node": "^20.8.10",
"@types/selenium-webdriver": "^4.1.22",
"axe-sarif-converter": "^2.11.1",
"chromedriver": "^126.0.0",
"cross-env": "^7.0.3",
"geckodriver": "^4.4.1",
"jest": "^27.5.1",
"jest-junit": "^16.0.0",
"selenium-webdriver": "^4.21.0",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"scripts": {
"test": "jest",
"test:firefox": "cross-env SELENIUM_BROWSER=firefox jest",
"test:chrome": "cross-env SELENIUM_BROWSER=chrome jest"
}
}