-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 3.06 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
{
"name": "fpl-ccd-configuration",
"version": "1.0.0",
"type": "module",
"description": "FPL CCD e2e tests",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.17.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.43.1",
"@types/node": "^20.10.7",
"@types/qs": "^6.9.11",
"axios": "^1.6.7",
"codeceptjs": "3.6.7",
"dateformat": "^4.6.3",
"debug": "4.3.7",
"eslint": "^8.0.0",
"eslint-plugin-codeceptjs": "^1.3.0",
"glob": "^7.2.3",
"html_codesniffer": "^2.5.1",
"husky": "^7.0.4",
"interpolate-json": "^3.0.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi": "^1.1.7",
"mochawesome": "^6.3.1",
"moment": "2.30.1",
"node-fetch": "^2.6.9",
"node-gyp": "^9.4.0",
"playwright-core": "^1.43.1",
"qs": "^6.11.2",
"typescript": "^5.4.5",
"webdriverio": "8.36.1"
},
"scripts": {
"lint": "yarn eslint .",
"typings": "codeceptjs def && mv steps.d.ts typings/codeceptjs.d.ts",
"test": "codeceptjs run-multiple parallel",
"test:functional": "NODE_TLS_REJECT_UNAUTHORIZED=0 MOCHAWESOME_REPORTFILENAME=functional codeceptjs run-multiple parallel --grep '(?=.*)^(?!.*(@smoke-tests|@flaky|@nightlyOnly))' --reporter mocha-multi --verbose",
"test:functional-nightly": "yarn playwright install chromium && yarn playwright install firefox && yarn playwright install webkit && yarn playwright test --project=chromium --project=webkit --project=firefox",
"test:functional-chromium": "yarn playwright install chromium && yarn playwright install firefox && yarn playwright install webkit && yarn playwright test --project=chromium",
"test:functional-webkit": "yarn playwright install chromium && yarn playwright install firefox && yarn playwright install webkit && yarn playwright test --project=webkit",
"test:functional-firefox": "yarn playwright install chromium && yarn playwright install firefox && yarn playwright install webkit && yarn playwright test --project=firefox",
"test:functional-nightly-preview": "yarn playwright install chromium && yarn playwright test --project=preview",
"test:smoke": "yarn npm audit --recursive --environment production && MOCHAWESOME_REPORTFILENAME=smoke REPORT_DIR=test-results/smokeTest REPORT_FILE=test-results/smokeTest/results.xml codeceptjs run --grep '@smoke-tests' --reporter mocha-multi --verbose",
"test:local": "yarn playwright test --project=webkit --repeat-each=1",
"prepare": "husky install",
"yarn-update": "yarn set version 3.x",
"install-dependencies": "/usr/bin/yarn install --silent",
"lint-ui-tests": "/usr/bin/yarn lint"
},
"peerDependencies": {
"debug": "4.3.7",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi": "^1.1.7",
"mochawesome": "^6.3.1"
},
"resolutions": {
"yargs-parser": "^20.2.9"
},
"packageManager": "[email protected]",
"license": "MIT",
"dependencies": {
"@axe-core/playwright": "^4.8.5",
"@types/lodash": "^4.14.202",
"dotenv": "^16.4.1"
}
}