-
Notifications
You must be signed in to change notification settings - Fork 18
/
collection.json
136 lines (136 loc) · 3.72 KB
/
collection.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"schematics": {
"ng-new": {
"factory": "./ng-new",
"schema": "./ng-new/schema.json",
"description": "Create an Angular workspace.",
"hidden": true
},
"workspace": {
"factory": "./workspace",
"schema": "./workspace/schema.json",
"description": "Create an Angular workspace.",
"hidden": true
},
"service-worker": {
"factory": "./service-worker",
"description": "Initializes a service worker setup.",
"schema": "./service-worker/schema.json"
},
"application": {
"aliases": ["app"],
"factory": "./application",
"schema": "./application/schema.json",
"description": "Create an Angular application."
},
"private-e2e": {
"factory": "./e2e",
"schema": "./e2e/schema.json",
"description": "PRIVATE API - Do not use.",
"hidden": true
},
"class": {
"aliases": ["cl"],
"factory": "./class",
"description": "Create a class.",
"schema": "./class/schema.json"
},
"component": {
"aliases": ["c"],
"factory": "./component",
"description": "Create an Angular component.",
"schema": "./component/schema.json"
},
"directive": {
"aliases": ["d"],
"factory": "./directive",
"description": "Create an Angular directive.",
"schema": "./directive/schema.json"
},
"enum": {
"aliases": ["e"],
"factory": "./enum",
"description": "Create an enumeration.",
"schema": "./enum/schema.json"
},
"guard": {
"aliases": ["g"],
"factory": "./guard",
"description": "Create a guard.",
"schema": "./guard/schema.json"
},
"resolver": {
"aliases": ["r"],
"factory": "./resolver",
"description": "Create a resolver.",
"schema": "./resolver/schema.json"
},
"interceptor": {
"factory": "./interceptor",
"description": "Create an interceptor.",
"schema": "./interceptor/schema.json"
},
"interface": {
"aliases": ["i"],
"factory": "./interface",
"description": "Create an interface.",
"schema": "./interface/schema.json"
},
"module": {
"aliases": ["m"],
"factory": "./module",
"description": "Create an Angular module.",
"schema": "./module/schema.json"
},
"pipe": {
"aliases": ["p"],
"factory": "./pipe",
"description": "Create an Angular pipe.",
"schema": "./pipe/schema.json"
},
"service": {
"aliases": ["s"],
"factory": "./service",
"description": "Create an Angular service.",
"schema": "./service/schema.json"
},
"server": {
"factory": "./server",
"description": "Create an Angular server app.",
"schema": "./server/schema.json",
"hidden": true
},
"ssr": {
"factory": "./ssr",
"description": "Adds SSR to an Angular app.",
"schema": "./ssr/schema.json",
"hidden": true
},
"app-shell": {
"factory": "./app-shell",
"description": "Create an application shell.",
"schema": "./app-shell/schema.json"
},
"library": {
"aliases": ["lib"],
"factory": "./library",
"schema": "./library/schema.json",
"description": "Generate a library project for Angular."
},
"web-worker": {
"factory": "./web-worker",
"schema": "./web-worker/schema.json",
"description": "Create a Web Worker."
},
"environments": {
"factory": "./environments",
"schema": "./environments/schema.json",
"description": "Generate project environment files."
},
"config": {
"factory": "./config",
"schema": "./config/schema.json",
"description": "Generates a configuration file."
}
}
}