46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "verdaccio",
|
|
"implementation": "/packages/js/src/executors/verdaccio/verdaccio.impl.ts",
|
|
"schema": {
|
|
"$schema": "https://json-schema.org/schema",
|
|
"version": 2,
|
|
"title": "Verdaccio Local Registry",
|
|
"description": "Start a local registry with Verdaccio.",
|
|
"cli": "nx",
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "Location option for npm config",
|
|
"default": "user",
|
|
"enum": ["global", "user", "project", "none"]
|
|
},
|
|
"storage": {
|
|
"type": "string",
|
|
"description": "Path to the custom storage directory for Verdaccio"
|
|
},
|
|
"port": {
|
|
"type": "number",
|
|
"description": "Port of local registry that Verdaccio should listen to",
|
|
"default": 4873
|
|
},
|
|
"config": {
|
|
"type": "string",
|
|
"description": "Path to the custom Verdaccio config file"
|
|
},
|
|
"clear": {
|
|
"type": "boolean",
|
|
"description": "Clear local registry storage before starting Verdaccio",
|
|
"default": true
|
|
}
|
|
},
|
|
"required": ["port"],
|
|
"presets": []
|
|
},
|
|
"description": "Start local registry with verdaccio",
|
|
"aliases": [],
|
|
"hidden": false,
|
|
"path": "/packages/js/src/executors/verdaccio/schema.json",
|
|
"type": "executor"
|
|
}
|