1 | {
|
2 | "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
3 | "schematics": {
|
4 | "ng-add": {
|
5 | "description": "Installs the Angular CDK",
|
6 | "factory": "./ng-add/index",
|
7 | "schema": "./ng-add/schema.json",
|
8 | "aliases": ["install"],
|
9 | "hidden": true
|
10 | },
|
11 | "drag-drop": {
|
12 | "description": "Generates a component using the Drag and Drop module",
|
13 | "factory": "./ng-generate/drag-drop/index",
|
14 | "schema": "./ng-generate/drag-drop/schema.json",
|
15 | "aliases": ["dragdrop", "drag-and-drop"]
|
16 | }
|
17 | }
|
18 | }
|