collection.json 537 B

1234567891011121314151617
  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. },
  10. "drag-drop": {
  11. "description": "Generates a component using the Drag and Drop module",
  12. "factory": "./ng-generate/drag-drop/index",
  13. "schema": "./ng-generate/drag-drop/schema.json",
  14. "aliases": ["dragdrop", "drag-and-drop"]
  15. }
  16. }
  17. }