-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "jest-ctrf-json-reporter",
"version": "0.0.11",
"description": "A Jest test reporter to create test results reports",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./runtime": "./dist/runtime.js",
"./environment": "./dist/environment.js",
"./storage": "./dist/storage.js"
},
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"all": "npm run build && npm run test && npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/jest-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",
"jest",
"jest-reporter"
],
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/.github/blob/main/SECURITY.md"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.2",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"dependencies": {
"ctrf": "^0.2.0"
}
}