-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigschema.json
50 lines (50 loc) · 1.35 KB
/
configschema.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Audit config",
"description": "The configuration file for audit.",
"type": "object",
"properties": {
"severity": {
"description": "Level of severity that makes audit fail.",
"default": "critical",
"enum": ["critical", "high", "moderate", "low"],
"type": "string"
},
"ignoreDevelopmentDependencies": {
"description": "If true development dependencies will be ignored.",
"type": "boolean"
},
"reportType": {
"description": "The type of the output.",
"default": "text",
"enum": ["text", "json"],
"type": "string"
},
"npmExtraParams": {
"description": "Extra parameters can be passed to `npm audit`, like `['--registry', '<URL>']`",
"type": "array",
"items": [
{
"type": "string"
}
]
},
"whitelist": {
"description": "Object like `dependencies` of package.json. Key specifies a package name, the value is the whitelisted versions in semver format.",
"type": "object",
"additionalProperties": false,
"patternProperties": {
".+": {
"description": "Version in semver format.",
"default": "*",
"type": "string"
}
}
}
},
"required": [
"severity",
"ignoreDevelopmentDependencies",
"reportType"
]
}