-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
62 lines (62 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "demo-webdriverio-mocha",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "[email protected]:WarleyGabriel/demo-webdriverio-mocha.git"
},
"author": "Warley Gabriel da Paixão",
"scripts": {
"build": "npx del ./dist && npx tsc",
"watch": "npx tsc -w",
"code:format": "eslint . --ext .ts && prettier --check \"src/**/*.ts*\" --write",
"commit": "cz",
"report:generate": "npx allure generate --clean ./test-report/allure-result/ -o ./test-report/allure-report",
"report:open": "npx allure open test-report/allure-report",
"tests:e2e": "npx del test-report && wdio ./dist/wdio.conf.js --spec ./dist/**/e2e/**/*.spec.js",
"tests:visualregression": "npx del test-report && wdio ./dist/wdio.conf.js --spec ./dist/**/visual-regression/**/*.spec.js"
},
"dependencies": {
"@wdio/allure-reporter": "^7.2.1",
"@wdio/cli": "^7.2.3",
"@wdio/local-runner": "^7.2.3",
"@wdio/mocha-framework": "^7.2.1",
"@wdio/spec-reporter": "^7.2.1",
"@wdio/sync": "^7.2.3",
"allure-commandline": "^2.13.8",
"chromedriver": "^89.0.0",
"del-cli": "^3.0.1",
"fibers": "^5.0.0",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"wdio-chromedriver-service": "^7.0.0",
"wdio-image-comparison-service": "^2.3.0",
"wdio-performancetotal-service": "^1.0.10",
"webdriverio": "^7.2.3"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all code:format build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}