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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "ng-cli://commands/add.json",
"description": "Adds support for an external 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
}
},
"registry": {
"description": "The NPM registry to use.",
"type": "string",
"oneOf": [
{
"format": "uri"
},
{
"format": "hostname"
}
]
},
"verbose": {
"description": "Display additional details about internal operations during execution.",
"type": "boolean",
"default": false
},
"skipConfirmation": {
"description": "Skip asking a confirmation prompt before installing and executing the package. Ensure package name is correct prior to using this option.",
"type": "boolean",
"default": false
}
},
"required": []
},
{
"$ref": "./definitions.json#/definitions/interactive"
},
{
"$ref": "./definitions.json#/definitions/base"
}
]
}
|