-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathschema.json
More file actions
31 lines (31 loc) · 888 Bytes
/
schema.json
File metadata and controls
31 lines (31 loc) · 888 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["profiles"],
"properties": {
"profiles": {
"type": "array",
"description": "The list of release targets.",
"items": {
"type": "object",
"required": ["name", "use"],
"properties": {
"name": {
"type": "string",
"description": "The tag of this release.",
"minLength": 1
},
"use": {
"type": "string",
"description": "Command to run to perform the release itself.",
"minLength": 1
},
"prerelease": {
"type": "boolean",
"description": "Publish the package in a pre-release mode. Breaking changes in this mode produce minor version bumps instead of the major ones."
}
}
}
}
}
}