UNPKG

@o3r/rules-engine

Version:

This module provides a rule engine that can be executed on your Otter application to customize your application (translations, placeholders and configs) based on a json file generated by your CMS.

27 lines (26 loc) 1.07 kB
{ "$schema": "https://raw.githubusercontent.com/angular/angular-cli/main/packages/angular_devkit/schematics/collection-schema.json", "schematics": { "ng-add": { "description": "Add Otter rules-engine to the project.", "factory": "./schematics/ng-add/index#ngAdd", "schema": "./schematics/ng-add/schema.json", "aliases": ["install", "i"] }, "rules-engine-to-component": { "description": "Generate the code to enable rules-engine to a Component", "factory": "./schematics/rules-engine-to-component/index#ngGenerateRulesEngineToComponent", "schema": "./schematics/rules-engine-to-component/schema.json" }, "facts-service": { "description": "Generate a facts service", "factory": "./schematics/facts-service/index#ngGenerateFactsService", "schema": "./schematics/facts-service/schema.json" }, "operator": { "description": "Generate an operator", "factory": "./schematics/operator/index#ngGenerateOperator", "schema": "./schematics/operator/schema.json" } } }