forked from mondata-dev/e2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
{
"name": "e2e",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"prettier-check": "prettier --check '**/*.js' '**/*.ts' '**/*.json' '**/*.md'",
"prettier": "prettier --write '**/*.js' '**/*.ts' '**/*.json' '**/*.md'",
"test": "wdio",
"test:debug": "cross-env DEBUG=true wdio",
"allure-report": "allure generate ./allure-results --clean && allure open"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/cucumber": "^4.0.7",
"@types/jsdom": "^12.2.4",
"@types/reflect-metadata": "^0.1.0",
"@types/webdriverio": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"@wdio/allure-reporter": "^5.15.2",
"@wdio/cli": "^5.15.2",
"@wdio/cucumber-framework": "^5.15.1",
"@wdio/local-runner": "^5.15.2",
"@wdio/selenium-standalone-service": "^5.15.0",
"@wdio/spec-reporter": "^5.15.2",
"@wdio/sync": "^5.15.1",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-wdio": "^5.13.2",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.6.4",
"webdriverio": "^5.15.2"
},
"dependencies": {
"jsdom": "^15.2.0",
"node-fetch": "^2.6.0",
"reflect-metadata": "^0.1.13",
"wdio-visual-regression": "^0.3.6"
}
}