-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.93 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
{
"name": "nightwatch-ctrf-json-reporter",
"version": "0.0.7-next.0",
"description": "Create a common JSON test report for Nightwatch tests",
"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 && node scripts/write-cjs-shims.mjs",
"build:check": "tsc -p . --noEmit",
"build:watch": "tsup --watch",
"clean": "rm -rf dist && rm -rf coverage && rm -rf ctrf",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"test:coverage": "npm run build && vitest run --coverage",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"all": "npm run build:check && npm run lint:check && npm run format:check && npm run test:coverage && npm run build",
"check": "biome check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/nightwatch-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",
"nightwatch",
"nightwatch-reporter"
],
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/.github/blob/main/SECURITY.md"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@d2t/vitest-ctrf-json-reporter": "1.3.0",
"@types/nightwatch": "3.0.1",
"@types/node": "25.9.2",
"@vitest/coverage-v8": "4.1.8",
"tsup": "8.5.1",
"typescript": "6.0.3",
"vitest": "4.1.8"
},
"dependencies": {
"ctrf": "0.2.1"
},
"overrides": {
"serialize-javascript": "7.0.5",
"uuid": "11.1.1"
}
}