openmct/example/builtins/bundle.json
Victor Woeltjen aeb670bf5f [Example] Add new example bundle
Add an example bundle containing custom extensions,
which can be recognized by extensions from another
bundle. WTD-518.
2014-11-05 13:38:46 -08:00

32 lines
893 B
JSON

{
"name": "Angular Built-ins Example",
"description": "Example showing how to declare extensions with built-in support from Angular.",
"sources": "src",
"extensions": {
"controllers": [
{
"key": "ExampleController",
"implementation": "ExampleController.js",
"depends": [ "$scope", "exampleService" ]
}
],
"directives": [
{
"key": "exampleDirective",
"implementation": "ExampleDirective.js",
"depends": [ "examples[]" ]
}
],
"routes": [
{
"templateUrl": "templates/example.html"
}
],
"services": [
{
"key": "exampleService",
"implementation": "ExampleService.js"
}
]
}
}