-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.19 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 4.19 KB
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
83
84
85
86
87
{
"name": "evaluation-request-interception",
"version": "1.0.0",
"description": "Idea Pool TA tool evaluation project - Request interception for UI testing",
"author": "EPAM IdeaPool <IdeaPool@epam.com> (https://wearecommunity.io/communities/idea-pool)",
"contributors": [
"Bence Bányász <bence_banyasz@epam.com>",
"Gábor Márton <gabor_marton1@epam.com>",
"Sándor Simon <sandor_simon@epam.com>",
"Tamás Szűcs <tamas_szucs@epam.com>"
],
"license": "MIT",
"homepage": "https://github.com/Idea-Pool/evaluation-request-interception#readme",
"scripts": {
"postinstall": "playwright install chromium",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslinter:check": "eslint . --ext .js,.ts",
"eslinter:fix": "eslint . --ext .js,.ts --fix",
"test:all": "yarn test:webdriverio:all && yarn test:cypress:all && yarn test:puppeteer:all && yarn test:playwright:all",
"test:webdriverio:all": "wdio run wdio.conf.ts",
"test:webdriverio:response-validation": "wdio run wdio.conf.ts --suite responseValidation",
"test:webdriverio:response-modification": "wdio run wdio.conf.ts --suite responseModification",
"test:webdriverio:request-validation": "wdio run wdio.conf.ts --suite requestValidation",
"test:webdriverio:request-blocking": "wdio run wdio.conf.ts --suite requestBlocking",
"test:cypress:all": "cypress run",
"test:cypress:gui": "cypress open",
"test:cypress:response-validation": "cypress run --spec cypress/interceptors/response-validation.spec.ts",
"test:cypress:response-modification": "cypress run --spec cypress/interceptors/response-modification.spec.ts",
"test:cypress:request-validation": "cypress run --spec cypress/interceptors/request-validation.spec.ts",
"test:cypress:request-modification": "cypress run --spec cypress/interceptors/request-modification.spec.ts",
"test:cypress:request-blocking": "cypress run --spec cypress/interceptors/request-blocking.spec.ts",
"test:puppeteer:all": "ts-mocha ./puppeteer/spec/*.ts",
"test:puppeteer:response-validation": "ts-mocha ./puppeteer/spec/response-validation.spec.ts",
"test:puppeteer:response-modification": "ts-mocha ./puppeteer/spec/response-modification.spec.ts",
"test:puppeteer:request-validation": "ts-mocha ./puppeteer/spec/request-validation.spec.ts",
"test:puppeteer:request-modification": "ts-mocha ./puppeteer/spec/request-modification.spec.ts",
"test:puppeteer:request-blocking": "ts-mocha ./puppeteer/spec/request-blocking.spec.ts",
"test:playwright:all": "playwright test",
"test:playwright:response-validation": "playwright test response-validation.spec.ts",
"test:playwright:response-modification": "playwright test response-modification.spec.ts",
"test:playwright:request-validation": "playwright test request-validation.spec.ts",
"test:playwright:request-blocking": "playwright test request-blocking"
},
"dependencies": {
"@cypress/schema-tools": "^4.7.9",
"@playwright/test": "^1.21.1",
"chai": "^4.3.6",
"cypress": "^9.5.2",
"eslint": "^9.26.0",
"eslint-plugin-cypress": "^2.12.1",
"jsonschema": "^1.4.0",
"typescript": "^4.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-json-schema": "^1.4.6",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/puppeteer": "^5.4.6",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@wdio/cli": "^7.16.13",
"@wdio/local-runner": "^7.16.13",
"@wdio/mocha-framework": "^7.16.13",
"@wdio/spec-reporter": "^7.16.13",
"chai-as-promised": "^7.1.1",
"chai-deep-match": "^1.2.1",
"chai-json-schema": "^1.5.1",
"chai-subset": "^1.6.0",
"chromedriver": "latest",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"http-status-codes": "^2.2.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"prettier": "2.6.2",
"puppeteer": "^13.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"wdio-chromedriver-service": "^7.3.2",
"wdio-intercept-service": "^4.2.1",
"wdio-wait-for": "^2.2.1"
}
}