-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.8 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
{
"name": "playwright-ctrf-json-reporter",
"version": "0.0.30-next.0",
"description": "A Playwright JSON test reporter to create test results reports",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"build:check": "tsc -p . --noEmit",
"build:watch": "tsup --watch",
"clean": "rm -rf dist && rm -rf coverage && rm -rf ctrf",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"all": "npm run lint:check && npm run format:check && npm run build:check && npm run test:coverage && npm run build",
"check": "biome check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/playwright-ctrf-json-reporter.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://ctrf.io",
"files": [
"dist/",
"README.md"
],
"author": "Matthew Poulton-White",
"license": "MIT",
"keywords": [
"ctrf",
"common-test-report-format",
"test-reporting",
"test-results",
"testing",
"json",
"ci",
"playwright",
"playwright-reporter"
],
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/.github/blob/main/SECURITY.md"
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@d2t/vitest-ctrf-json-reporter": "1.3.0",
"@playwright/test": "1.61.1",
"@types/node": "26.1.0",
"@vitest/coverage-v8": "4.1.9",
"tsup": "8.5.1",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"dependencies": {
"ctrf": "0.2.1"
}
}