-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.json
41 lines (41 loc) · 1.13 KB
/
project.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
{
"ProjectName": "SecretBackup",
"Description": "Offers essential functionality for backing up (exporting as JSON) and restoring any PowerShell SecretStore. Useful for backing up Vault and migration form one Vault to another. Check [Project Site](https://github.com/belibug/SecretBackup) for More info",
"Version": "1.0.0",
"CodeSign": false,
"Manifest": {
"Author": "Manjunath Beli",
"PowerShellHostVersion": "7.4",
"GUID": "17c66027-ce87-405f-9b56-e13d16175dbc",
"Tags": [
"SecretManagement",
"SecretStore",
"SecretVault",
"Vault",
"KeyVault",
"Secrets"
],
"ProjectUri": "https://github.com/belibug/SecretBackup",
"LicenseUri": "https://github.com/belibug/SecretBackup/blob/main/LICENSE"
},
"Pester": {
"TestResult": {
"Enabled": true,
"OutputFormat": "NUnitXml"
},
"Output": {
"Verbosity": "Detailed"
}
},
"PSScriptAnalyzer": {
"Severity": [
"Error",
"Warning"
],
"IncludeDefaultRules": true,
"ExcludeRules": [
"PSAvoidUsingWriteHost",
"PSAvoidUsingConvertToSecureStringWithPlainText"
]
}
}