-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "automation-seed",
"version": "0.1.0",
"description": "Automation framework using wdio",
"private": true,
"keywords": [
"automation",
"wdio",
"selenium",
"webdriver",
"typescript"
],
"license": "MIT",
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"moduleDirectories": [
"src",
"node_modules"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,md,yml}": [
"yarn lint:fix",
"git add"
]
},
"scripts": {
"lint": "eslint .",
"lint:fix": "prettier --ignore-path .eslintignore --write \"**/*.{js,ts,json,md,yml}\" && eslint . --fix",
"report": "allure generate",
"selenoid": "./bin/selenoid",
"test": "wdio run wdio.conf.js --no-autoCompileOpts.autoCompile",
"test:local": "MODE=local yarn test",
"test:remote": "MODE=remote yarn test",
"suite:files": "ts-node ./bin/suite-spec-paths.ts"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/glob": "^8.0.0",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@wdio/allure-reporter": "^7.16.1",
"@wdio/cli": "^7.19.5",
"@wdio/local-runner": "^7.19.5",
"@wdio/mocha-framework": "^7.16.1",
"@wdio/runner": "^7.19.5",
"@wdio/selenium-standalone-service": "^7.19.5",
"@wdio/spec-reporter": "^7.19.7",
"allure-commandline": "^2.17.2",
"chromedriver": "^101.0.0",
"danger": "^11.0.7",
"deepmerge": "^4.2.2",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"path": "^0.12.7",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"wdio-chromedriver-service": "^7.2.2",
"wdio-docker-service": "^3.1.4"
},
"dependencies": {
"glob": "^8.0.3"
}
}