31 lines
621 B
JSON

{
"$schema": "http://json-schema.org/schema",
"$id": "ng-cli://commands/add.json",
"description": "Add support for a library to your project.",
"$longDescription": "./add.md",
"$scope": "in",
"$impl": "./add-impl#AddCommand",
"type": "object",
"allOf": [
{
"properties": {
"collection": {
"type": "string",
"description": "The package to be added.",
"$default": {
"$source": "argv",
"index": 0
}
}
},
"required": [
]
},
{
"$ref": "./definitions.json#/definitions/base"
}
]
}