This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
report.json
101 lines (101 loc) · 2.1 KB
/
report.json
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
91
92
93
94
95
96
97
98
99
100
101
{
"title": "Report configuration",
"type": "object",
"additionalProperties": false,
"required": [
"title"
],
"properties": {
"theme": {
"type": "string",
"enum": [
"light",
"dark"
],
"default": "light"
},
"title": {
"type": "string",
"description": "Report title",
"default": "Default report title"
},
"logoUrl": {
"type": "string",
"description": "Logo",
"nullable": true
},
"includeTransitiveInternal": {
"type": "boolean",
"default": false,
"description": "Show/categorize internal dependencies as transitive"
},
"npm": {
"type": "object",
"additionalProperties": false,
"required": [
"organizationPrefix",
"packages"
],
"properties": {
"organizationPrefix": {
"type": "string",
"description": "NPM organization prefix starting with @"
},
"packages": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
}
},
"git": {
"type": "object",
"additionalProperties": false,
"required": [
"organizationUrl",
"repositories"
],
"properties": {
"organizationUrl": {
"type": "string",
"description": "GitHub organization URL"
},
"repositories": {
"type": "array",
"description": "List of repositories (name are enough, no need to provide .git url or any equivalent)",
"items": {
"type": "string"
},
"uniqueItems": true
}
}
},
"reporters": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string",
"enum": [
"html",
"pdf"
]
},
"default": [
"html",
"pdf"
]
},
"showFlags": {
"type": "boolean",
"default": true
},
"charts": {
"type": "array",
"items": {
"$ref": "#/$defs/reportChart"
}
}
}
}