-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.52 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
{
"name": "playwright_mocha_allure",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env MODE=SINGLE REPORTER=CONSOLE LOG_LEVEL=MUTE npx playwright test",
"test:console:error": "cross-env MODE=SINGLE REPORTER=CONSOLE LOG_LEVEL=ERROR npx playwright test",
"test:console:info": "cross-env MODE=SINGLE REPORTER=CONSOLE LOG_LEVEL=INFO npx playwright test",
"test:console:verbose": "cross-env MODE=SINGLE REPORTER=CONSOLE LOG_LEVEL=VERBOSE npx playwright test",
"test:console:debug": "cross-env MODE=SINGLE REPORTER=CONSOLE LOG_LEVEL=TECHNICAL npx playwright test",
"test:parallel": "cross-env MODE=PARALLEL REPORTER=ALLURE LOG_LEVEL=MUTE npx playwright test",
"report": "npx allure serve",
"delete:report": "shx rm -rf allure-results test-results && echo Done!"
},
"author": "",
"license": "ISC",
"dependencies": {
"allure-decorators": "^2.9.2",
"allure-js-commons": "^2.9.2",
"allure-playwright": "^2.9.2",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"mail-notifier": "^0.5.0",
"moment": "^2.29.4",
"playwright": "^1.40.1",
"prettier": "^3.1.0",
"sat-utils": "^1.13.0",
"shx": "^0.3.4",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/allure-js-commons": "^0.0.4",
"@types/chai": "^4.3.11",
"@types/mail-notifier": "^0.5.3",
"@types/node": "^20.10.3",
"allure-commandline": "^2.25.0"
}
}