mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
4a4ef8c0f6
Merge in latest in preparation for review of changes for WTD-806
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"name": "Data bundle",
|
|
"description": "Interfaces and infrastructure for real-time and historical data",
|
|
"configuration": {
|
|
"paths": {
|
|
"moment": "moment.min"
|
|
},
|
|
"shim": {
|
|
"moment": {
|
|
"exports": "moment"
|
|
}
|
|
}
|
|
},
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "telemetryService",
|
|
"type": "aggregator",
|
|
"implementation": "TelemetryAggregator.js",
|
|
"depends": [ "$q" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TelemetryController",
|
|
"implementation": "TelemetryController.js",
|
|
"depends": [ "$scope", "$q", "$timeout", "$log" ]
|
|
}
|
|
],
|
|
"capabilities": [
|
|
{
|
|
"key": "telemetry",
|
|
"implementation": "TelemetryCapability.js",
|
|
"depends": [ "$injector", "$q", "$log" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "telemetryFormatter",
|
|
"implementation": "TelemetryFormatter.js"
|
|
},
|
|
{
|
|
"key": "telemetrySubscriber",
|
|
"implementation": "TelemetrySubscriber.js",
|
|
"depends": [ "$q", "$timeout" ]
|
|
},
|
|
{
|
|
"key": "telemetryHandler",
|
|
"implementation": "TelemetryHandler.js",
|
|
"depends": [ "$q", "telemetrySubscriber" ]
|
|
}
|
|
],
|
|
"licenses": [
|
|
{
|
|
"name": "Moment.js",
|
|
"version": "2.7.0",
|
|
"author": "Tim Wood, Iskren Chernev, Moment.js contributors",
|
|
"description": "Time/date parsing/formatting",
|
|
"website": "http://momentjs.com",
|
|
"copyright": "Copyright (c) 2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors",
|
|
"license": "license-mit",
|
|
"link": "https://raw.githubusercontent.com/moment/moment/develop/LICENSE"
|
|
}
|
|
]
|
|
}
|
|
} |