2014-11-29 00:06:54 +00:00
|
|
|
{
|
|
|
|
"name": "Data bundle",
|
2015-04-16 00:40:12 +00:00
|
|
|
"description": "Interfaces and infrastructure for real-time and historical data",
|
2015-01-05 18:12:19 +00:00
|
|
|
"configuration": {
|
|
|
|
"paths": {
|
2015-02-04 00:11:48 +00:00
|
|
|
"moment": "moment.min"
|
2015-01-05 18:12:19 +00:00
|
|
|
},
|
|
|
|
"shim": {
|
|
|
|
"moment": {
|
|
|
|
"exports": "moment"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2014-11-29 00:06:54 +00:00
|
|
|
"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",
|
2014-11-29 04:29:30 +00:00
|
|
|
"depends": [ "$injector", "$q", "$log" ]
|
2014-11-29 00:06:54 +00:00
|
|
|
}
|
2014-12-24 19:14:38 +00:00
|
|
|
],
|
|
|
|
"services": [
|
|
|
|
{
|
|
|
|
"key": "telemetryFormatter",
|
2015-10-27 18:21:44 +00:00
|
|
|
"implementation": "TelemetryFormatter.js",
|
2015-11-02 20:28:46 +00:00
|
|
|
"depends": [ "formatService", "DEFAULT_TIME_FORMAT" ]
|
2014-12-30 21:27:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "telemetrySubscriber",
|
|
|
|
"implementation": "TelemetrySubscriber.js",
|
|
|
|
"depends": [ "$q", "$timeout" ]
|
2015-04-17 21:53:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "telemetryHandler",
|
|
|
|
"implementation": "TelemetryHandler.js",
|
|
|
|
"depends": [ "$q", "telemetrySubscriber" ]
|
2014-12-24 19:14:38 +00:00
|
|
|
}
|
2015-01-27 23:37:47 +00:00
|
|
|
],
|
|
|
|
"licenses": [
|
|
|
|
{
|
|
|
|
"name": "Moment.js",
|
|
|
|
"version": "2.7.0",
|
|
|
|
"author": "Tim Wood, Iskren Chernev, Moment.js contributors",
|
2015-04-16 00:40:12 +00:00
|
|
|
"description": "Time/date parsing/formatting",
|
2015-01-27 23:37:47 +00:00
|
|
|
"website": "http://momentjs.com",
|
2015-04-16 00:40:12 +00:00
|
|
|
"copyright": "Copyright (c) 2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors",
|
|
|
|
"license": "license-mit",
|
2015-01-27 23:37:47 +00:00
|
|
|
"link": "https://raw.githubusercontent.com/moment/moment/develop/LICENSE"
|
|
|
|
}
|
2014-11-29 00:06:54 +00:00
|
|
|
]
|
|
|
|
}
|
2015-10-27 18:21:44 +00:00
|
|
|
}
|