mirror of
https://github.com/nasa/openmct.git
synced 2025-01-20 11:38:56 +00:00
d4fd6824b6
Expose the moment library for time/date operations. For use in parsing WARP server messages (WTD-644.)
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "Data bundle",
|
|
"description": "Interfaces and infrastructure for real-time and historical data.",
|
|
"configuration": {
|
|
"paths": {
|
|
"moment": "moment.min.js"
|
|
},
|
|
"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" ]
|
|
}
|
|
]
|
|
}
|
|
} |