-
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.63 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.63 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": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"all": "npm run lint && npm run format:check && npm run test:coverage && npm run build"
},
"files": [
"dist/",
"README.md"
],
"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.1.0",
"glob": "^13.0.1",
"typescript": "^5.4.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@d2t/vitest-ctrf-json-reporter": "^1.2.0",
"@eslint/js": "^9.32.0",
"@types/node": "^25.0.10",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.32.0",
"prettier": "^3.5.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.38.0",
"vitest": "^4.0.18"
}
}