{
	"$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
	"schematics": {
		"ng-add": {
			"description": "Add my library to the project.",
			"factory": "./ng-add/index#ngAdd"
		},
		"editor": {
			"description": "Generate an editor ts and html into a separate folder file in the project.",
			"factory": "./editor/index#editor",
			"schema": "./editor/schema.json"
		},
		"list": {
			"description": "Generate a list ts and html into a separate folder file in the project.",
			"factory": "./list/index#list",
			"schema": "./list/schema.json"
		},
		"crud": {
			"description": "Generate an editor and a list.",
			"factory": "./crud/index#crud",
			"schema": "./crud/schema.json"
		},
		"adminbase": {
			"description": "Generate adminbase files",
			"factory": "./adminbase/index#adminbase",
			"schema": "./adminbase/schema.json"
		}
	}
}