-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.48 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
{
"type": "module",
"name": "ctrf-cli",
"version": "0.0.5",
"description": "Various CTRF utilities available from the command line",
"main": "dist/index.js",
"bin": {
"ctrf": "dist/cli.js",
"ctrf-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"all": "npm run lint && npm run format:check && npm run test:coverage && npm run build"
},
"files": [
"dist/",
"README.md"
],
"engines": {
"node": ">=20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/ctrf-cli.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://ctrf.io",
"author": "Matthew Poulton-White",
"license": "MIT",
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/security/blob/main/SECURITY.md"
},
"keywords": [
"test",
"testing",
"ctrf",
"reporter",
"report",
"json",
"standard",
"cli",
"command-line",
"test-results"
],
"dependencies": {
"ctrf": "0.2.1",
"glob": "13.0.6",
"yargs": "18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@d2t/vitest-ctrf-json-reporter": "1.3.0",
"@types/node": "25.9.2",
"@types/yargs": "17.0.35",
"@vitest/coverage-v8": "4.1.8",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}