-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
{
"name": "demo-webdriverio-cucumber",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git@github.com:WarleyGabriel/demo-webdriverio-cucumber.git"
},
"author": "Warley Gabriel da Paixão",
"scripts": {
"build": "npx del ./dist && npx tsc && npx copyfiles -f ./src/test/e2e/features/** ./dist/src/test/e2e/features/",
"watch": "npx tsc -w",
"code:format": "eslint . --ext .ts && prettier --check \"src/**/*.ts*\" --write",
"code:gherkin": "npx gherkin-lint -c .gherkin-lintrc.json src/test/e2e/features",
"commit": "cz",
"cucumber:undefined:step": "npx cucumber-js --dry-run --require './dist/src/**/steps/*.js' ./dist/src/test/e2e/features --format summary",
"cucumber:unused:step": "npx ./dist/src/test/e2e/config/CucumberStepManager.js",
"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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@wdio/allure-reporter": "^6.11.0",
"@wdio/cli": "^6.12.0",
"@wdio/cucumber-framework": "^6.11.1",
"@wdio/local-runner": "^6.12.0",
"@wdio/spec-reporter": "^6.11.0",
"@wdio/sync": "^6.11.0",
"allure-commandline": "^2.13.8",
"chromedriver": "^87.0.5",
"copyfiles": "^2.4.1",
"cucumber": "^6.0.5",
"del-cli": "^3.0.1",
"expect": "^26.6.2",
"expect-webdriverio": "^1.4.1",
"fibers": "^5.0.0",
"npm-run-all": "^4.1.5",
"wdio-chromedriver-service": "^6.0.4",
"wdio-timeline-reporter": "^5.1.4",
"webdriverio": "^6.12.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cucumber": "^6.0.1",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"gherkin-lint": "^4.1.3",
"husky": "^4.3.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all code:* build cucumber:*:step",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}