-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
38
39
40
{
"name": "seleniumtypescript",
"version": "1.0.0",
"description": "PoC Selenium with Typescript",
"main": "index.js",
"scripts": {
"test": "npx tsc && ./node_modules/mocha/bin/_mocha lib/tests/**/*.test.js -R mocha-junit-reporter --reporter-options mochaFile=./reports/mocha-junit-report-[hash].xml --no-timeouts"
},
"resolutions": {
"graceful-fs": "^4.2.4"
},
"keywords": [
"typescript",
"mocha",
"node",
"chai",
"mochawesome"
],
"dependencies": {
"@types/selenium-webdriver": "^4.0.10",
"beautiful-dom": "^1.0.8",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/bent": "^7.3.2",
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/node": "^12.12.68",
"@types/webdriverio": "^4.13.3",
"appium": "^1.18.3",
"bent": "^7.3.12",
"chai": "^4.1.2",
"del": "^3.0.0",
"graceful-fs": "^4.2.4",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^2.0.0",
"mochawesome": "^2.3.1",
"selenium-webdriver": "4.0.0-alpha.7"
}
}