mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-29 03:31:59 -07:00
143 lines
3.6 KiB
JSON
143 lines
3.6 KiB
JSON
{
|
|
"title": ".condarc",
|
|
"description": "The conda configuration file; https://conda.io/docs/user-guide/configuration/use-condarc.html",
|
|
"id": "https://raw.githubusercontent.com/Microsoft/vscode-python/master/schemas/condarc.json",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"definitions": {
|
|
"channel": {
|
|
"type": "string"
|
|
},
|
|
"feature": {
|
|
"type": "string"
|
|
},
|
|
"package": {
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"channels": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/channel"
|
|
}
|
|
},
|
|
"allow_other_channels": {
|
|
"type": "boolean"
|
|
},
|
|
"default_channels": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/channel"
|
|
}
|
|
},
|
|
"auto_update_conda": {
|
|
"type": "boolean"
|
|
},
|
|
"always_yes": {
|
|
"type": "boolean"
|
|
},
|
|
"show_channel_urls": {
|
|
"type": "boolean"
|
|
},
|
|
"changeps1": {
|
|
"type": "boolean"
|
|
},
|
|
"add_pip_as_python_dependency": {
|
|
"type": "boolean"
|
|
},
|
|
"use_pip": {
|
|
"type": "boolean"
|
|
},
|
|
"proxy_servers": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string",
|
|
"format": "hostname"
|
|
}
|
|
},
|
|
"ssl_verify": {
|
|
"type": "boolean"
|
|
},
|
|
"offline": {
|
|
"type": "boolean"
|
|
},
|
|
"allow_softlinks": {
|
|
"type": "boolean"
|
|
},
|
|
"channel_alias": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"create_default_packages": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/package"
|
|
}
|
|
},
|
|
"track_features": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/feature"
|
|
}
|
|
},
|
|
"update_dependencies": {
|
|
"type": "boolean"
|
|
},
|
|
"disallow": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/package"
|
|
}
|
|
},
|
|
"add_anaconda_token": {
|
|
"type": "boolean"
|
|
},
|
|
"envs_dirs": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/path"
|
|
}
|
|
},
|
|
"anaconda_upload": {
|
|
"type": "boolean"
|
|
},
|
|
"conda-build": {
|
|
"type": "object",
|
|
"properties": {
|
|
"root-dir": {
|
|
"$ref": "#/definitions/path"
|
|
},
|
|
"quiet": {
|
|
"type": "boolean"
|
|
},
|
|
"filename_hashing": {
|
|
"type": "boolean"
|
|
},
|
|
"no_verify": {
|
|
"type": "boolean"
|
|
},
|
|
"set_build_id": {
|
|
"type": "boolean"
|
|
},
|
|
"skip_existing": {
|
|
"type": "boolean"
|
|
},
|
|
"include_recipe": {
|
|
"type": "boolean"
|
|
},
|
|
"activate": {
|
|
"type": "boolean"
|
|
},
|
|
"pypirc": {
|
|
"$ref": "#/definitions/path"
|
|
},
|
|
"pypi_repository": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|