-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.2 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
88
89
90
{
"name": "cypress-ctrf-json-reporter",
"version": "0.0.15-next.0",
"description": "Generate a common JSON test report for Cypress 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"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js",
"require": "./dist/plugin.cjs"
},
"./support": {
"types": "./dist/support.d.ts",
"import": "./dist/support.js",
"require": "./dist/support.cjs"
}
},
"scripts": {
"build": "tsup",
"build:check": "tsc -p . --noEmit",
"build:watch": "tsup --watch",
"clean": "rm -rf dist && rm -rf coverage && rm -rf ctrf",
"test": "npm run build && mocha --import=tsx --reporter mocha-ctrf-json-reporter \"tests/**/*.test.ts\"",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"all": "npm run build:check && npm run lint:check && npm run format:check && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/cypress-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",
"cypress",
"cypress-reporter"
],
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/.github/blob/main/SECURITY.md"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/mocha": "10.0.10",
"@types/node": "25.9.2",
"@types/sinon": "21.0.0",
"expect": "30.2.0",
"mocha": "11.7.6",
"mocha-ctrf-json-reporter": "0.0.7",
"sinon": "21.0.0",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3"
},
"dependencies": {
"ctrf": "0.2.1"
}
}