nlu
Version:
Use this package to link your projects together for local development.
66 lines (65 loc) • 1.51 kB
JSON
{
"title": "JSON schema for NLU (npm-link-up) library.",
"type": "object",
"additionalProperties": true,
"required": [ "list" ],
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"comments": {
"$id": "/properties/comments",
"type": "array"
},
"linkToItself": {
"$id": "/properties/linkToItself",
"type": "boolean",
"title": "The Linktoitself Schema ",
"default": false,
"examples": [
true
]
},
"searchRoots": {
"$id": "/properties/searchRoots",
"type": "array",
"items": {
"$id": "/properties/searchRoots/items",
"type": "string",
"title": "The 0th Schema ",
"default": "",
"examples": [
"$HOME/WebstormProjects/xyz",
"$HOME/vscode_projects/foobar"
]
}
},
"ignore": {
"$id": "/properties/ignore",
"type": "array",
"items": {
"$id": "/properties/ignore/items",
"type": "string",
"title": "The 0th Schema ",
"default": "",
"examples": [
"/node_modules/",
"/.git/"
]
}
},
"list": {
"$id": "/properties/list",
"type": "array",
"items": {
"$id": "/properties/list/items",
"type": "string",
"title": "The 0th Schema ",
"default": "",
"examples": [
"residence",
"frankenstop"
]
}
}
}
}