@webos-tools/cli 3.1.2 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1402) hide show
  1. package/.eslintignore +1 -1
  2. package/.eslintrc.js +52 -52
  3. package/APIs.js +79 -79
  4. package/CHANGELOG.md +201 -166
  5. package/LICENSE +201 -201
  6. package/LICENSES/342/200/216/LicenseRef-3rd_party_licenses.txt +1355 -0
  7. package/README.md +226 -219
  8. package/bin/ares-config.js +211 -202
  9. package/bin/ares-device-info.js +30 -30
  10. package/bin/ares-device.js +222 -219
  11. package/bin/ares-generate.js +274 -274
  12. package/bin/ares-inspect.js +179 -179
  13. package/bin/ares-install.js +223 -223
  14. package/bin/ares-launch.js +318 -318
  15. package/bin/ares-log.js +259 -259
  16. package/bin/ares-novacom.js +220 -220
  17. package/bin/ares-package.js +347 -336
  18. package/bin/ares-pull.js +156 -156
  19. package/bin/ares-push.js +155 -155
  20. package/bin/ares-server.js +174 -174
  21. package/bin/ares-setup-device.js +577 -525
  22. package/bin/ares-shell.js +132 -132
  23. package/bin/ares.js +166 -166
  24. package/files/conf/ares.json +50 -49
  25. package/files/conf/command-service.json +78 -73
  26. package/files/conf/config.json +31 -31
  27. package/files/conf/ipk.json +30 -30
  28. package/files/conf/novacom-devices.json +69 -52
  29. package/files/conf/query/query-app.json +14 -14
  30. package/files/conf/query/query-hosted.json +18 -18
  31. package/files/conf/query/query-package.json +10 -10
  32. package/files/conf/query/query-service.json +6 -6
  33. package/files/conf/sdk.json +8 -8
  34. package/files/conf/template.json +57 -57
  35. package/files/conf/webos_emul +27 -27
  36. package/files/conf-base/env/sdk-apollo.json +8 -8
  37. package/files/conf-base/env/sdk-ose.json +8 -8
  38. package/files/conf-base/env/sdk-signage.json +8 -0
  39. package/files/conf-base/env/sdk-tv.json +8 -8
  40. package/files/conf-base/key/pubkey-signage.pem +9 -0
  41. package/files/conf-base/profile/config-apollo.json +29 -29
  42. package/files/conf-base/profile/config-ose.json +29 -29
  43. package/files/conf-base/profile/config-signage.json +29 -0
  44. package/files/conf-base/profile/config-tv.json +31 -31
  45. package/files/conf-base/query/query-app.json +14 -14
  46. package/files/conf-base/query/query-hosted.json +18 -18
  47. package/files/conf-base/query/query-package.json +10 -10
  48. package/files/conf-base/query/query-service.json +6 -6
  49. package/files/conf-base/query/signage/query-app.json +14 -0
  50. package/files/conf-base/query/signage/query-service.json +6 -0
  51. package/files/conf-base/template-conf/apollo-sdk-templates.json +55 -50
  52. package/files/conf-base/template-conf/ose-templates.json +67 -67
  53. package/files/conf-base/template-conf/signage-sdk-templates.json +239 -0
  54. package/files/conf-base/template-conf/tv-sdk-templates.json +57 -57
  55. package/files/help/ares-config.help +48 -48
  56. package/files/help/ares-device.help +109 -109
  57. package/files/help/ares-generate.help +101 -91
  58. package/files/help/ares-inspect.help +77 -76
  59. package/files/help/ares-install.help +95 -95
  60. package/files/help/ares-launch.help +111 -105
  61. package/files/help/ares-log-pmlogd.help +84 -84
  62. package/files/help/ares-log.help +101 -101
  63. package/files/help/ares-novacom.help +68 -68
  64. package/files/help/ares-package.help +103 -101
  65. package/files/help/ares-pull.help +38 -38
  66. package/files/help/ares-push.help +38 -38
  67. package/files/help/ares-server.help +44 -44
  68. package/files/help/ares-setup-device.help +196 -156
  69. package/files/help/ares-shell.help +42 -42
  70. package/files/help/ares.help +52 -52
  71. package/files/help/readme.help +23 -23
  72. package/files/schema/ApplicationDescription.schema +319 -319
  73. package/files/schema/NovacomDevices.schema +63 -62
  74. package/files/templates/apollo-sdk-templates/appinfo/appinfo.json +10 -10
  75. package/files/templates/apollo-sdk-templates/bootplate-web/index.html +88 -88
  76. package/files/templates/apollo-sdk-templates/hosted-webapp/index.html +13 -13
  77. package/files/templates/apollo-sdk-templates/js-service/helloclient.js +31 -31
  78. package/files/templates/apollo-sdk-templates/js-service/helloworld_webos_service.js +188 -188
  79. package/files/templates/apollo-sdk-templates/native-service/CMakeLists.txt +72 -0
  80. package/files/templates/apollo-sdk-templates/native-service/services.json +11 -0
  81. package/files/templates/apollo-sdk-templates/native-service/src/main.c +144 -0
  82. package/files/templates/apollo-sdk-templates/serviceinfo/package.json +11 -11
  83. package/files/templates/apollo-sdk-templates/serviceinfo/services.json +8 -8
  84. package/files/templates/ose-sdk-templates/appinfo/appinfo.json +10 -10
  85. package/files/templates/ose-sdk-templates/bootplate-web/index.html +88 -88
  86. package/files/templates/ose-sdk-templates/hosted-webapp/index.html +13 -13
  87. package/files/templates/ose-sdk-templates/js-service/helloclient.js +31 -31
  88. package/files/templates/ose-sdk-templates/js-service/helloworld_webos_service.js +188 -188
  89. package/files/templates/ose-sdk-templates/qml-app/main.qml +68 -68
  90. package/files/templates/ose-sdk-templates/qmlappinfo/appinfo.json +10 -10
  91. package/files/templates/ose-sdk-templates/serviceinfo/package.json +11 -11
  92. package/files/templates/ose-sdk-templates/serviceinfo/services.json +8 -8
  93. package/files/templates/signage-sdk-templates/Backlight_Scheduling/clockTable.js +29 -0
  94. package/files/templates/signage-sdk-templates/Backlight_Scheduling/index.html +53 -0
  95. package/files/templates/signage-sdk-templates/Backlight_Scheduling/js/idcap.js +21 -0
  96. package/files/templates/signage-sdk-templates/Backlight_Scheduling/remocon.js +214 -0
  97. package/files/templates/signage-sdk-templates/Backlight_Scheduling/scheduler.js +123 -0
  98. package/files/templates/signage-sdk-templates/Backlight_Scheduling/setanddelete.js +25 -0
  99. package/files/templates/signage-sdk-templates/Backlight_Scheduling/style.css +213 -0
  100. package/files/templates/signage-sdk-templates/Download_Progress/app.css +27 -0
  101. package/files/templates/signage-sdk-templates/Download_Progress/app.js +407 -0
  102. package/files/templates/signage-sdk-templates/Download_Progress/index.html +32 -0
  103. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/2.7.0/cordova.webos.js +7038 -0
  104. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/LICENSE +201 -0
  105. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/configuration.js +1 -0
  106. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/deviceInfo.js +1 -0
  107. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/inputSource.js +1 -0
  108. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/power.js +1 -0
  109. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/signage.js +1 -0
  110. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/sound.js +1 -0
  111. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/storage.js +1 -0
  112. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/video.js +1 -0
  113. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/configuration.js +1 -0
  114. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/deviceInfo.js +1 -0
  115. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/inputSource.js +1 -0
  116. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/power.js +1 -0
  117. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/signage.js +1 -0
  118. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/sound.js +1 -0
  119. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/storage.js +1 -0
  120. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/video.js +1 -0
  121. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/configuration.js +1 -0
  122. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/deviceInfo.js +1 -0
  123. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/inputSource.js +1 -0
  124. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/power.js +1 -0
  125. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/signage.js +1 -0
  126. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/sound.js +1 -0
  127. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/storage.js +23 -0
  128. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/video.js +1 -0
  129. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/configuration.js +1 -0
  130. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/deviceInfo.js +1 -0
  131. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/inputSource.js +1 -0
  132. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/power.js +1 -0
  133. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/signage.js +1 -0
  134. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/sound.js +1 -0
  135. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/storage.js +1 -0
  136. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/video.js +1 -0
  137. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/configuration.js +9 -0
  138. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/deviceInfo.js +9 -0
  139. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/inputSource.js +9 -0
  140. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/power.js +9 -0
  141. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/security.js +9 -0
  142. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/signage.js +9 -0
  143. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/sound.js +9 -0
  144. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/storage.js +9 -0
  145. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/time.js +9 -0
  146. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/utility.js +9 -0
  147. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/video.js +9 -0
  148. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/configuration.js +9 -0
  149. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/deviceInfo.js +9 -0
  150. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/inputSource.js +9 -0
  151. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/power.js +9 -0
  152. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/security.js +9 -0
  153. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/signage.js +9 -0
  154. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/sound.js +9 -0
  155. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/storage.js +9 -0
  156. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/time.js +9 -0
  157. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/utility.js +9 -0
  158. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/video.js +9 -0
  159. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/configuration.js +9 -0
  160. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/deviceInfo.js +9 -0
  161. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/inputSource.js +9 -0
  162. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/power.js +9 -0
  163. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/security.js +9 -0
  164. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/signage.js +8 -0
  165. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/sound.js +9 -0
  166. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/storage.js +9 -0
  167. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/time.js +9 -0
  168. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/utility.js +9 -0
  169. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/video.js +9 -0
  170. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/configuration.js +9 -0
  171. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/deviceInfo.js +9 -0
  172. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/inputSource.js +9 -0
  173. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/power.js +9 -0
  174. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/security.js +9 -0
  175. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/signage.js +9 -0
  176. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/sound.js +9 -0
  177. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/storage.js +9 -0
  178. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/time.js +9 -0
  179. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/utility.js +9 -0
  180. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/video.js +9 -0
  181. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/configuration.js +1 -0
  182. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/deviceInfo.js +1 -0
  183. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/inputSource.js +1 -0
  184. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/power.js +1 -0
  185. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/security.js +1 -0
  186. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/signage.js +1 -0
  187. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/sound.js +1 -0
  188. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/storage.js +1 -0
  189. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/time.js +1 -0
  190. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/utility.js +1 -0
  191. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/video.js +1 -0
  192. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/configuration.js +1 -0
  193. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  194. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/inputSource.js +1 -0
  195. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/power.js +1 -0
  196. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/security.js +1 -0
  197. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/signage.js +1 -0
  198. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/sound.js +1 -0
  199. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/storage.js +1 -0
  200. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/time.js +1 -0
  201. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/utility.js +1 -0
  202. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/video.js +1 -0
  203. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/configuration.js +1 -0
  204. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/deviceInfo.js +1 -0
  205. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/inputSource.js +1 -0
  206. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/power.js +1 -0
  207. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/security.js +1 -0
  208. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/signage.js +1 -0
  209. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/sound.js +1 -0
  210. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/storage.js +1 -0
  211. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/time.js +1 -0
  212. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/utility.js +1 -0
  213. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/video.js +1 -0
  214. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/configuration.js +1 -0
  215. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/deviceInfo.js +1 -0
  216. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/inputSource.js +1 -0
  217. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/power.js +1 -0
  218. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/security.js +1 -0
  219. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/signage.js +1 -0
  220. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/sound.js +1 -0
  221. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/storage.js +1 -0
  222. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/time.js +1 -0
  223. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/utility.js +1 -0
  224. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/video.js +1 -0
  225. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/configuration.js +1 -0
  226. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/deviceInfo.js +1 -0
  227. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/inputSource.js +1 -0
  228. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/power.js +1 -0
  229. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/security.js +1 -0
  230. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/signage.js +1 -0
  231. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/sound.js +1 -0
  232. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/storage.js +1 -0
  233. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/time.js +1 -0
  234. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/utility.js +1 -0
  235. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/video.js +1 -0
  236. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/configuration.js +1 -0
  237. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  238. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/inputSource.js +1 -0
  239. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/power.js +1 -0
  240. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/security.js +1 -0
  241. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/signage.js +1 -0
  242. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/sound.js +1 -0
  243. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/storage.js +1 -0
  244. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/time.js +1 -0
  245. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/utility.js +1 -0
  246. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/video.js +1 -0
  247. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/configuration.js +1 -0
  248. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/deviceInfo.js +1 -0
  249. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/inputSource.js +1 -0
  250. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/power.js +1 -0
  251. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/security.js +1 -0
  252. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/signage.js +1 -0
  253. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/sound.js +1 -0
  254. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/storage.js +1 -0
  255. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/time.js +1 -0
  256. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/utility.js +1 -0
  257. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/video.js +1 -0
  258. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/configuration.js +1 -0
  259. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/deviceInfo.js +1 -0
  260. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/inputSource.js +1 -0
  261. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/power.js +1 -0
  262. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/security.js +1 -0
  263. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/signage.js +1 -0
  264. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/sound.js +1 -0
  265. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/storage.js +1 -0
  266. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/time.js +1 -0
  267. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/utility.js +1 -0
  268. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/video.js +1 -0
  269. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/configuration.js +1 -0
  270. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/deviceInfo.js +1 -0
  271. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/inputSource.js +1 -0
  272. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/power.js +1 -0
  273. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/security.js +1 -0
  274. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/signage.js +1 -0
  275. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/sound.js +1 -0
  276. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/storage.js +1 -0
  277. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/time.js +1 -0
  278. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/utility.js +1 -0
  279. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/video.js +1 -0
  280. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/configuration.js +1 -0
  281. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/deviceInfo.js +1 -0
  282. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/inputSource.js +1 -0
  283. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/power.js +1 -0
  284. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/security.js +1 -0
  285. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/signage.js +1 -0
  286. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/sound.js +1 -0
  287. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/storage.js +1 -0
  288. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/time.js +1 -0
  289. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/utility.js +1 -0
  290. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/video.js +1 -0
  291. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/configuration.js +1 -0
  292. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/deviceInfo.js +1 -0
  293. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/inputSource.js +1 -0
  294. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/power.js +1 -0
  295. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/security.js +1 -0
  296. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/signage.js +1 -0
  297. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/sound.js +1 -0
  298. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/storage.js +1 -0
  299. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/time.js +1 -0
  300. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/utility.js +1 -0
  301. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/video.js +1 -0
  302. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/configuration.js +1 -0
  303. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/deviceInfo.js +1 -0
  304. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/inputSource.js +1 -0
  305. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/power.js +1 -0
  306. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/security.js +1 -0
  307. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/signage.js +1 -0
  308. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/sound.js +1 -0
  309. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/storage.js +1 -0
  310. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/time.js +1 -0
  311. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/utility.js +1 -0
  312. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/video.js +1 -0
  313. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/configuration.js +1 -0
  314. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/deviceInfo.js +1 -0
  315. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/inputSource.js +1 -0
  316. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/power.js +1 -0
  317. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/security.js +1 -0
  318. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/signage.js +1 -0
  319. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/sound.js +1 -0
  320. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/storage.js +1 -0
  321. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/time.js +1 -0
  322. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/utility.js +1 -0
  323. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/video.js +1 -0
  324. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/configuration.js +1 -0
  325. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/deviceInfo.js +1 -0
  326. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/inputSource.js +1 -0
  327. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/power.js +1 -0
  328. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/security.js +1 -0
  329. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/signage.js +1 -0
  330. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/sound.js +1 -0
  331. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/storage.js +1 -0
  332. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/time.js +1 -0
  333. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/utility.js +1 -0
  334. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/video.js +1 -0
  335. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/configuration.js +1 -0
  336. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/deviceInfo.js +1 -0
  337. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/inputSource.js +1 -0
  338. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/power.js +1 -0
  339. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/security.js +1 -0
  340. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/signage.js +1 -0
  341. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/sound.js +1 -0
  342. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/storage.js +1 -0
  343. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/time.js +1 -0
  344. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/utility.js +1 -0
  345. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/video.js +1 -0
  346. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/configuration.js +1 -0
  347. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/deviceInfo.js +1 -0
  348. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/inputSource.js +1 -0
  349. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/power.js +1 -0
  350. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/security.js +1 -0
  351. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/signage.js +1 -0
  352. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/sound.js +1 -0
  353. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/storage.js +1 -0
  354. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/time.js +1 -0
  355. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/utility.js +1 -0
  356. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/video.js +1 -0
  357. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/configuration.js +1 -0
  358. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/deviceInfo.js +1 -0
  359. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/inputSource.js +1 -0
  360. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/power.js +1 -0
  361. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/security.js +1 -0
  362. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/signage.js +1 -0
  363. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/sound.js +1 -0
  364. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/storage.js +1 -0
  365. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/time.js +1 -0
  366. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/utility.js +1 -0
  367. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/video.js +1 -0
  368. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/configuration.js +1 -0
  369. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/deviceInfo.js +1 -0
  370. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/inputSource.js +1 -0
  371. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/led.js +1 -0
  372. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/power.js +1 -0
  373. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/security.js +1 -0
  374. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/signage.js +1 -0
  375. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/sound.js +1 -0
  376. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/storage.js +1 -0
  377. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/time.js +1 -0
  378. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/utility.js +1 -0
  379. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/video.js +1 -0
  380. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/configuration.js +1 -0
  381. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  382. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/inputSource.js +1 -0
  383. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/led.js +1 -0
  384. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/power.js +1 -0
  385. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/security.js +1 -0
  386. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/signage.js +1 -0
  387. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/sound.js +1 -0
  388. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/storage.js +1 -0
  389. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/time.js +1 -0
  390. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/utility.js +1 -0
  391. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/video.js +1 -0
  392. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/configuration.js +1 -0
  393. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/deviceInfo.js +1 -0
  394. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/inputSource.js +1 -0
  395. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/iot.js +1 -0
  396. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/power.js +1 -0
  397. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/security.js +1 -0
  398. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/signage.js +1 -0
  399. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/sound.js +1 -0
  400. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/storage.js +1 -0
  401. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/time.js +1 -0
  402. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/utility.js +1 -0
  403. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/video.js +1 -0
  404. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/configuration.js +1 -0
  405. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/deviceInfo.js +1 -0
  406. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/inputSource.js +1 -0
  407. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/iot.js +1 -0
  408. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/power.js +1 -0
  409. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/security.js +1 -0
  410. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/signage.js +1 -0
  411. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/sound.js +1 -0
  412. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/storage.js +1 -0
  413. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/time.js +1 -0
  414. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/utility.js +1 -0
  415. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/video.js +1 -0
  416. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/configuration.js +1 -0
  417. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/deviceInfo.js +1 -0
  418. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/inputSource.js +1 -0
  419. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/iot.js +1 -0
  420. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/led.js +1 -0
  421. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/power.js +1 -0
  422. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/security.js +1 -0
  423. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/signage.js +1 -0
  424. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/sound.js +1 -0
  425. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/storage.js +1 -0
  426. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/time.js +1 -0
  427. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/utility.js +1 -0
  428. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/video.js +1 -0
  429. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/configuration.js +1 -0
  430. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  431. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/inputSource.js +1 -0
  432. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/iot.js +1 -0
  433. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/led.js +1 -0
  434. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/power.js +1 -0
  435. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/security.js +1 -0
  436. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/signage.js +1 -0
  437. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/sound.js +1 -0
  438. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/storage.js +1 -0
  439. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/time.js +1 -0
  440. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/utility.js +1 -0
  441. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/video.js +1 -0
  442. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/configuration.js +1 -0
  443. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/deviceInfo.js +1 -0
  444. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/inputSource.js +1 -0
  445. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/iot.js +1 -0
  446. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/power.js +1 -0
  447. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/security.js +1 -0
  448. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/signage.js +1 -0
  449. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/sound.js +1 -0
  450. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/storage.js +1 -0
  451. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/time.js +1 -0
  452. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/utility.js +1 -0
  453. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/video.js +1 -0
  454. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/configuration.js +1 -0
  455. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  456. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/inputSource.js +1 -0
  457. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/iot.js +1 -0
  458. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/power.js +1 -0
  459. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/security.js +1 -0
  460. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/signage.js +1 -0
  461. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/sound.js +1 -0
  462. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/storage.js +1 -0
  463. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/time.js +1 -0
  464. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/utility.js +1 -0
  465. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/video.js +1 -0
  466. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.2.js +14 -0
  467. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.1.js +1 -0
  468. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.js +1 -0
  469. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.4.js +14 -0
  470. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/README.txt +40 -0
  471. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gpio.js +16 -0
  472. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gps.js +16 -0
  473. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/humidity.js +16 -0
  474. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/light.js +16 -0
  475. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/nfc.js +16 -0
  476. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/rfid.js +16 -0
  477. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/temperature.js +16 -0
  478. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/thermalPrinter.js +16 -0
  479. package/files/templates/signage-sdk-templates/Download_Progress/js/idcap.js +21 -0
  480. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/LICENSE-2.0.txt +202 -0
  481. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/webOS.js +1 -0
  482. package/files/templates/signage-sdk-templates/Download_Progress/res/webossignage_logo.png +0 -0
  483. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/css/styles.css +270 -0
  484. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/data/data.json +12 -0
  485. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans300.otf +0 -0
  486. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans700Italic.otf +0 -0
  487. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/index.html +43 -0
  488. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/controller.js +263 -0
  489. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/helpers/util.js +130 -0
  490. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/readme.txt +26 -0
  491. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_img_sign.png +0 -0
  492. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_logo_nike.png +0 -0
  493. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/videos/tpl_01_video.mp4 +0 -0
  494. package/files/templates/signage-sdk-templates/File_Explorer/README.txt +16 -0
  495. package/files/templates/signage-sdk-templates/File_Explorer/index.html +44 -0
  496. package/files/templates/signage-sdk-templates/File_Explorer/js/Root.js +48 -0
  497. package/files/templates/signage-sdk-templates/File_Explorer/js/definition.js +59 -0
  498. package/files/templates/signage-sdk-templates/File_Explorer/js/explorer.js +367 -0
  499. package/files/templates/signage-sdk-templates/File_Explorer/js/explorerController.js +462 -0
  500. package/files/templates/signage-sdk-templates/File_Explorer/js/idcap.js +21 -0
  501. package/files/templates/signage-sdk-templates/File_Explorer/js/mainController.js +261 -0
  502. package/files/templates/signage-sdk-templates/File_Explorer/style.css +233 -0
  503. package/files/templates/signage-sdk-templates/Flight_Schedule/appinfo.json +11 -0
  504. package/files/templates/signage-sdk-templates/Flight_Schedule/css/styles.css +168 -0
  505. package/files/templates/signage-sdk-templates/Flight_Schedule/data/data.json +5 -0
  506. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans300.otf +0 -0
  507. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans500.otf +0 -0
  508. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans700.otf +0 -0
  509. package/files/templates/signage-sdk-templates/Flight_Schedule/images/AAir.png +0 -0
  510. package/files/templates/signage-sdk-templates/Flight_Schedule/images/BAirline.png +0 -0
  511. package/files/templates/signage-sdk-templates/Flight_Schedule/images/CAirline.png +0 -0
  512. package/files/templates/signage-sdk-templates/Flight_Schedule/images/DAir.png +0 -0
  513. package/files/templates/signage-sdk-templates/Flight_Schedule/images/EAirline.png +0 -0
  514. package/files/templates/signage-sdk-templates/Flight_Schedule/images/tpl_05_img_flight.png +0 -0
  515. package/files/templates/signage-sdk-templates/Flight_Schedule/index.html +32 -0
  516. package/files/templates/signage-sdk-templates/Flight_Schedule/js/controller.js +235 -0
  517. package/files/templates/signage-sdk-templates/Flight_Schedule/js/helpers/util.js +183 -0
  518. package/files/templates/signage-sdk-templates/Flight_Schedule/readme.txt +29 -0
  519. package/files/templates/signage-sdk-templates/Flight_Schedule/server/example.json +4 -0
  520. package/files/templates/signage-sdk-templates/Flight_Schedule/server/package.json +9 -0
  521. package/files/templates/signage-sdk-templates/Flight_Schedule/server/readme.txt +30 -0
  522. package/files/templates/signage-sdk-templates/Flight_Schedule/server/routes/flights.js +493 -0
  523. package/files/templates/signage-sdk-templates/Flight_Schedule/server/server.js +43 -0
  524. package/files/templates/signage-sdk-templates/Information_Board/css/styles.css +239 -0
  525. package/files/templates/signage-sdk-templates/Information_Board/data/data.json +49 -0
  526. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 300.otf +0 -0
  527. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 500.otf +0 -0
  528. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 700.otf +0 -0
  529. package/files/templates/signage-sdk-templates/Information_Board/index.html +101 -0
  530. package/files/templates/signage-sdk-templates/Information_Board/js/controller.js +111 -0
  531. package/files/templates/signage-sdk-templates/Information_Board/js/helpers/util.js +130 -0
  532. package/files/templates/signage-sdk-templates/Information_Board/readme.txt +22 -0
  533. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_main_01.png +0 -0
  534. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_news.png +0 -0
  535. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_logo_harvard.png +0 -0
  536. package/files/templates/signage-sdk-templates/Information_Kiosk/css/styles.css +387 -0
  537. package/files/templates/signage-sdk-templates/Information_Kiosk/data/data.json +185 -0
  538. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300 Italic.otf +0 -0
  539. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300.otf +0 -0
  540. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500 Italic.otf +0 -0
  541. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500.otf +0 -0
  542. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700 Italic.otf +0 -0
  543. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700.otf +0 -0
  544. package/files/templates/signage-sdk-templates/Information_Kiosk/index.html +320 -0
  545. package/files/templates/signage-sdk-templates/Information_Kiosk/js/controller.js +373 -0
  546. package/files/templates/signage-sdk-templates/Information_Kiosk/js/helpers/util.js +130 -0
  547. package/files/templates/signage-sdk-templates/Information_Kiosk/readme.txt +26 -0
  548. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_n.png +0 -0
  549. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_p.png +0 -0
  550. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_n.png +0 -0
  551. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_p.png +0 -0
  552. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_n.png +0 -0
  553. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_p.png +0 -0
  554. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_n.png +0 -0
  555. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_p.png +0 -0
  556. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_bg_01.png +0 -0
  557. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_01.png +0 -0
  558. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_02.png +0 -0
  559. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_03.png +0 -0
  560. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_04.png +0 -0
  561. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_05.png +0 -0
  562. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_06.png +0 -0
  563. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_07.png +0 -0
  564. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_08.png +0 -0
  565. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_09.png +0 -0
  566. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_10.png +0 -0
  567. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_11.png +0 -0
  568. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_12.png +0 -0
  569. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_01.png +0 -0
  570. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_02.png +0 -0
  571. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_03.png +0 -0
  572. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_04.png +0 -0
  573. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_05.png +0 -0
  574. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_06.png +0 -0
  575. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_01.png +0 -0
  576. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_02.png +0 -0
  577. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_03.png +0 -0
  578. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_04.png +0 -0
  579. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_05.png +0 -0
  580. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_06.png +0 -0
  581. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_07.png +0 -0
  582. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_08.png +0 -0
  583. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_09.png +0 -0
  584. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_10.png +0 -0
  585. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_11.png +0 -0
  586. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_12.png +0 -0
  587. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_01.png +0 -0
  588. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_02.png +0 -0
  589. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_logo.png +0 -0
  590. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/index.html +40 -0
  591. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/2.7.0/cordova.webos.js +7038 -0
  592. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/LICENSE +201 -0
  593. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/configuration.js +1 -0
  594. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/deviceInfo.js +1 -0
  595. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/inputSource.js +1 -0
  596. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/power.js +1 -0
  597. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/signage.js +1 -0
  598. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/sound.js +1 -0
  599. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/storage.js +23 -0
  600. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/video.js +1 -0
  601. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/configuration.js +1 -0
  602. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/deviceInfo.js +1 -0
  603. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/inputSource.js +1 -0
  604. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/power.js +1 -0
  605. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/signage.js +1 -0
  606. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/sound.js +1 -0
  607. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/storage.js +1 -0
  608. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/video.js +1 -0
  609. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/configuration.js +1 -0
  610. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  611. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/inputSource.js +1 -0
  612. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/power.js +1 -0
  613. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/security.js +1 -0
  614. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/signage.js +1 -0
  615. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/sound.js +1 -0
  616. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/storage.js +1 -0
  617. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/time.js +1 -0
  618. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/utility.js +1 -0
  619. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/video.js +1 -0
  620. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/configuration.js +1 -0
  621. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  622. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/inputSource.js +1 -0
  623. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/power.js +1 -0
  624. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/security.js +1 -0
  625. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/signage.js +1 -0
  626. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/sound.js +1 -0
  627. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/storage.js +1 -0
  628. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/time.js +1 -0
  629. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/utility.js +1 -0
  630. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/video.js +1 -0
  631. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/configuration.js +1 -0
  632. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  633. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/inputSource.js +1 -0
  634. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/led.js +1 -0
  635. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/power.js +1 -0
  636. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/security.js +1 -0
  637. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/signage.js +1 -0
  638. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/sound.js +1 -0
  639. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/storage.js +1 -0
  640. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/time.js +1 -0
  641. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/utility.js +1 -0
  642. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/video.js +1 -0
  643. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/configuration.js +1 -0
  644. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  645. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/inputSource.js +1 -0
  646. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/iot.js +1 -0
  647. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/led.js +1 -0
  648. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/power.js +1 -0
  649. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/security.js +1 -0
  650. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/signage.js +1 -0
  651. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/sound.js +1 -0
  652. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/storage.js +1 -0
  653. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/time.js +1 -0
  654. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/utility.js +1 -0
  655. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/video.js +1 -0
  656. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/configuration.js +1 -0
  657. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  658. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/inputSource.js +1 -0
  659. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/iot.js +1 -0
  660. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/power.js +1 -0
  661. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/security.js +1 -0
  662. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/signage.js +1 -0
  663. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/sound.js +1 -0
  664. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/storage.js +1 -0
  665. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/time.js +1 -0
  666. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/utility.js +1 -0
  667. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/video.js +1 -0
  668. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/custom1.4.js +14 -0
  669. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/idcap.js +21 -0
  670. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/initializer.js +234 -0
  671. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/remocon.js +73 -0
  672. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/scheduler.js +84 -0
  673. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/videoPlayer.js +352 -0
  674. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/remocon.png +0 -0
  675. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/style.css +99 -0
  676. package/files/templates/signage-sdk-templates/Mart/css/styles.css +248 -0
  677. package/files/templates/signage-sdk-templates/Mart/data/data.json +37 -0
  678. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300 Italic.otf +0 -0
  679. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300.otf +0 -0
  680. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 500.otf +0 -0
  681. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 700.otf +0 -0
  682. package/files/templates/signage-sdk-templates/Mart/index.html +81 -0
  683. package/files/templates/signage-sdk-templates/Mart/js/controller.js +102 -0
  684. package/files/templates/signage-sdk-templates/Mart/js/helpers/util.js +130 -0
  685. package/files/templates/signage-sdk-templates/Mart/readme.txt +26 -0
  686. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img.png +0 -0
  687. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_bg.png +0 -0
  688. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_brand.png +0 -0
  689. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_01.png +0 -0
  690. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_02.png +0 -0
  691. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_03.png +0 -0
  692. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_04.png +0 -0
  693. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_tag.png +0 -0
  694. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_logo.png +0 -0
  695. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/css/styles.css +40 -0
  696. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/data/data.json +6 -0
  697. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/index.html +28 -0
  698. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/controller.js +427 -0
  699. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/helpers/util.js +134 -0
  700. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/readme.txt +26 -0
  701. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/images/tpl_02_img_poster.jpg +0 -0
  702. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_01.mp4 +0 -0
  703. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_02.mp4 +0 -0
  704. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/css/styles.css +163 -0
  705. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/data/data.json +92 -0
  706. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans300.otf +0 -0
  707. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans500.otf +0 -0
  708. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700.otf +0 -0
  709. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700Italic.otf +0 -0
  710. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/index.html +197 -0
  711. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/controller.js +158 -0
  712. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/helpers/util.js +130 -0
  713. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/readme.txt +26 -0
  714. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_bg_top.png +0 -0
  715. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_01.png +0 -0
  716. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_02.png +0 -0
  717. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_03.png +0 -0
  718. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_04.png +0 -0
  719. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_05.png +0 -0
  720. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_06.png +0 -0
  721. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_07.png +0 -0
  722. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_08.png +0 -0
  723. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_09.png +0 -0
  724. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_logo.png +0 -0
  725. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/index.html +29 -0
  726. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/js/idcap.js +21 -0
  727. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/networkMonitor.js +136 -0
  728. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/style.css +142 -0
  729. package/files/templates/signage-sdk-templates/Special_Menu_Board/css/styles.css +281 -0
  730. package/files/templates/signage-sdk-templates/Special_Menu_Board/data/data.json +33 -0
  731. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300 Italic.otf +0 -0
  732. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300.otf +0 -0
  733. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500 Italic.otf +0 -0
  734. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500.otf +0 -0
  735. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700 Italic.otf +0 -0
  736. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700.otf +0 -0
  737. package/files/templates/signage-sdk-templates/Special_Menu_Board/index.html +110 -0
  738. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/controller.js +171 -0
  739. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/helpers/util.js +130 -0
  740. package/files/templates/signage-sdk-templates/Special_Menu_Board/readme.txt +26 -0
  741. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_bg.png +0 -0
  742. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01.png +0 -0
  743. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01_l.png +0 -0
  744. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_02.png +0 -0
  745. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_03.png +0 -0
  746. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_04.png +0 -0
  747. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_05.png +0 -0
  748. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_01.png +0 -0
  749. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_02.png +0 -0
  750. package/files/templates/signage-sdk-templates/Wayfinder/css/styles.css +634 -0
  751. package/files/templates/signage-sdk-templates/Wayfinder/data/data.json +339 -0
  752. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans300.otf +0 -0
  753. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans500.otf +0 -0
  754. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700.otf +0 -0
  755. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700Italic.otf +0 -0
  756. package/files/templates/signage-sdk-templates/Wayfinder/index.html +171 -0
  757. package/files/templates/signage-sdk-templates/Wayfinder/js/controller.js +447 -0
  758. package/files/templates/signage-sdk-templates/Wayfinder/js/helpers/util.js +175 -0
  759. package/files/templates/signage-sdk-templates/Wayfinder/readme.txt +26 -0
  760. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_btn_back_n.png +0 -0
  761. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_n.png +0 -0
  762. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_s.png +0 -0
  763. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_01.png +0 -0
  764. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_02.png +0 -0
  765. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_03.png +0 -0
  766. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_d.png +0 -0
  767. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_n.png +0 -0
  768. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_d.png +0 -0
  769. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_n.png +0 -0
  770. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_d.png +0 -0
  771. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_n.png +0 -0
  772. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_shadow.png +0 -0
  773. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_01_n.png +0 -0
  774. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_02_n.png +0 -0
  775. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_03_n.png +0 -0
  776. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point.png +0 -0
  777. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point_shadow.png +0 -0
  778. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_elevator.png +0 -0
  779. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_escalator.png +0 -0
  780. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_exit.png +0 -0
  781. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_info.png +0 -0
  782. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_parking.png +0 -0
  783. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_toilet.png +0 -0
  784. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_lg.png +0 -0
  785. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_shoppingmall_name.png +0 -0
  786. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_store.png +0 -0
  787. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_popup_bg.png +0 -0
  788. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/css/styles.css +136 -0
  789. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/data/data.json +33 -0
  790. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 300.otf +0 -0
  791. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 500.otf +0 -0
  792. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 700.otf +0 -0
  793. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/index.html +51 -0
  794. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/controller.js +265 -0
  795. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/helpers/util.js +130 -0
  796. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/readme.txt +26 -0
  797. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/ajax.gif +0 -0
  798. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_cloudy.png +0 -0
  799. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_partlycloudy.png +0 -0
  800. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_rainy.png +0 -0
  801. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_snowy.png +0 -0
  802. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_sunny.png +0 -0
  803. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_thunder.png +0 -0
  804. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_windy.png +0 -0
  805. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_01.png +0 -0
  806. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_02.png +0 -0
  807. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_03.png +0 -0
  808. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_04.png +0 -0
  809. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_05.png +0 -0
  810. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_06.png +0 -0
  811. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_07.png +0 -0
  812. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_logo.png +0 -0
  813. package/files/templates/signage-sdk-templates/Widget_Overlay/css/styles.css +312 -0
  814. package/files/templates/signage-sdk-templates/Widget_Overlay/data/data.json +16 -0
  815. package/files/templates/signage-sdk-templates/Widget_Overlay/data/newsWidget.json +21 -0
  816. package/files/templates/signage-sdk-templates/Widget_Overlay/data/shareWidget.json +112 -0
  817. package/files/templates/signage-sdk-templates/Widget_Overlay/data/weatherWidget.json +45 -0
  818. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans300.otf +0 -0
  819. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans500.otf +0 -0
  820. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans700.otf +0 -0
  821. package/files/templates/signage-sdk-templates/Widget_Overlay/index.html +62 -0
  822. package/files/templates/signage-sdk-templates/Widget_Overlay/js/controller.js +390 -0
  823. package/files/templates/signage-sdk-templates/Widget_Overlay/js/helpers/util.js +162 -0
  824. package/files/templates/signage-sdk-templates/Widget_Overlay/readme.txt +26 -0
  825. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/Namo.jpg +0 -0
  826. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/NotAvailable.png +0 -0
  827. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clear.png +0 -0
  828. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clouds.png +0 -0
  829. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/default.png +0 -0
  830. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/koreanFt.jpg +0 -0
  831. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/mist.png +0 -0
  832. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/rain.png +0 -0
  833. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/snow.png +0 -0
  834. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/thunder.png +0 -0
  835. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_01.png +0 -0
  836. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_02.png +0 -0
  837. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_01.png +0 -0
  838. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_02.png +0 -0
  839. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news.png +0 -0
  840. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news1.png +0 -0
  841. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_video_dim.png +0 -0
  842. package/files/templates/signage-sdk-templates/Widget_Overlay/res/videos/tpl_07_video.mp4 +0 -0
  843. package/files/templates/signage-sdk-templates/appinfo/appinfo.json +11 -0
  844. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/idcap.js +21 -0
  845. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/release_notes.txt +25 -0
  846. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/2.7.0/cordova.webos.js +7025 -0
  847. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/LICENSE +7025 -0
  848. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/configuration.js +1 -0
  849. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/deviceInfo.js +1 -0
  850. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/inputSource.js +1 -0
  851. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/power.js +1 -0
  852. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/signage.js +1 -0
  853. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/sound.js +1 -0
  854. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/storage.js +1 -0
  855. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/video.js +1 -0
  856. package/files/templates/signage-sdk-templates/scap_api/1.3/js/release_notes.txt +109 -0
  857. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/2.7.0/cordova.webos.js +7038 -0
  858. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/LICENSE +201 -0
  859. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/configuration.js +1 -0
  860. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/deviceInfo.js +1 -0
  861. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/inputSource.js +1 -0
  862. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/power.js +1 -0
  863. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/security.js +1 -0
  864. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/signage.js +1 -0
  865. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/sound.js +1 -0
  866. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/storage.js +1 -0
  867. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/time.js +1 -0
  868. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/utility.js +1 -0
  869. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/video.js +1 -0
  870. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/all.css +358 -0
  871. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  872. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  873. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  874. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  875. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  876. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  877. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  878. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  879. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/handheld.css +217 -0
  880. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/screen.css +405 -0
  881. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/files.html +577 -0
  882. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/index.html +1203 -0
  883. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/intro.html +100 -0
  884. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/all.js +326 -0
  885. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/dessert.css +34 -0
  886. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  887. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-clj.js +64 -0
  888. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-css.js +78 -0
  889. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-go.js +58 -0
  890. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-hs.js +101 -0
  891. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  892. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lua.js +59 -0
  893. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-ml.js +56 -0
  894. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-n.js +62 -0
  895. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-proto.js +35 -0
  896. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-scala.js +54 -0
  897. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-sql.js +57 -0
  898. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-tex.js +46 -0
  899. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vb.js +61 -0
  900. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  901. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  902. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-xq.js +67 -0
  903. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  904. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.css +52 -0
  905. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.js +1477 -0
  906. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/html5.js +6 -0
  907. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#clearCache.html +550 -0
  908. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getCurrentTime.html +560 -0
  909. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getLocaleList.html +560 -0
  910. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLanguage.html +560 -0
  911. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLock.html +560 -0
  912. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureMode.html +560 -0
  913. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureProperty.html +560 -0
  914. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getProperty.html +561 -0
  915. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getServerProperty.html +560 -0
  916. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZone.html +560 -0
  917. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZoneList.html +560 -0
  918. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getUSBLock.html +560 -0
  919. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +560 -0
  920. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#restartApplication.html +550 -0
  921. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setCurrentTime.html +566 -0
  922. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLanguage.html +566 -0
  923. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLock.html +566 -0
  924. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureMode.html +566 -0
  925. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureProperty.html +566 -0
  926. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setProperty.html +561 -0
  927. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setServerProperty.html +610 -0
  928. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setTimeZone.html +566 -0
  929. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setUSBLock.html +566 -0
  930. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +566 -0
  931. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppMode.html +685 -0
  932. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppType.html +640 -0
  933. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.PictureMode.html +910 -0
  934. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#connectWifi.html +561 -0
  935. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getBeaconInfo.html +560 -0
  936. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +560 -0
  937. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkInfo.html +560 -0
  938. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +560 -0
  939. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getPlatformInfo.html +560 -0
  940. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getProxyInfo.html +560 -0
  941. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSoftApInfo.html +560 -0
  942. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +566 -0
  943. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getWifiList.html +560 -0
  944. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +560 -0
  945. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setBeaconInfo.html +561 -0
  946. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +566 -0
  947. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setNetworkInfo.html +561 -0
  948. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setProxyInfo.html +566 -0
  949. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setSoftApInfo.html +561 -0
  950. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +566 -0
  951. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#startWps.html +566 -0
  952. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#stopWps.html +555 -0
  953. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo.EddystoneFrame.html +640 -0
  954. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.ERROR_CODE.html +820 -0
  955. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.html +460 -0
  956. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#changeInputSource.html +566 -0
  957. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#getInputSourceStatus.html +560 -0
  958. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#initialize.html +561 -0
  959. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOffTimer.html +566 -0
  960. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOnTimer.html +566 -0
  961. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOffTimer.html +566 -0
  962. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOnTimer.html +566 -0
  963. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOffTimer.html +566 -0
  964. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOnTimer.html +566 -0
  965. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableWakeOnLan.html +566 -0
  966. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#executePowerCommand.html +566 -0
  967. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getDPMWakeup.html +560 -0
  968. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOffTimerList.html +560 -0
  969. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOnTimerList.html +560 -0
  970. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPMMode.html +560 -0
  971. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerOnDelay.html +560 -0
  972. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerStatus.html +560 -0
  973. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDPMWakeup.html +566 -0
  974. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDisplayMode.html +566 -0
  975. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPMMode.html +566 -0
  976. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPowerOnDelay.html +566 -0
  977. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DPMSignalType.html +640 -0
  978. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DisplayMode.html +640 -0
  979. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PMMode.html +775 -0
  980. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PowerCommand.html +640 -0
  981. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.TimerWeek.html +910 -0
  982. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#existServerCertificate.html +561 -0
  983. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#registerServerCertificate.html +561 -2
  984. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#unregisterServerCertificate.html +561 -0
  985. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#captureScreen.html +561 -0
  986. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#enableCheckScreen.html +566 -0
  987. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getFailoverMode.html +555 -0
  988. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getIntelligentAuto.html +560 -0
  989. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getLanDaisyChain.html +560 -0
  990. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getPowerSaveMode.html +555 -0
  991. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSignageInfo.html +555 -0
  992. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getStudioMode.html +560 -0
  993. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSystemMonitoringInfo.html +555 -0
  994. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getTileInfo.html +555 -0
  995. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsageData.html +555 -0
  996. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsagePermission.html +555 -0
  997. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#registerSystemMonitor.html +573 -0
  998. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setDigitalAudioInputMode.html +567 -0
  999. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setFailoverMode.html +567 -0
  1000. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIntelligentAuto.html +566 -0
  1001. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIsmMethod.html +567 -0
  1002. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setLanDaisyChain.html +566 -0
  1003. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPortraitMode.html +567 -0
  1004. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPowerSaveMode.html +567 -0
  1005. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setStudioMode.html +566 -0
  1006. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setTileInfo.html +567 -0
  1007. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setUsagePermission.html +567 -0
  1008. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#unregisterSystemMonitor.html +555 -0
  1009. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.AutomaticStandbyMode.html +640 -0
  1010. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DigitalAudioInput.html +640 -0
  1011. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DpmMode.html +910 -0
  1012. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.EventType.html +775 -0
  1013. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.FailoverMode.html +685 -0
  1014. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.ImgResolution.html +640 -0
  1015. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.IsmMethod.html +910 -0
  1016. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.KeyOperationMode.html +685 -0
  1017. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.MonitoringSource.html +775 -0
  1018. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.OsdPortraitMode.html +640 -0
  1019. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundMode.html +560 -0
  1020. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundOut.html +560 -0
  1021. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundStatus.html +560 -0
  1022. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setExternalSpeaker.html +566 -0
  1023. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setMuted.html +566 -0
  1024. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundMode.html +566 -0
  1025. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundOut.html +566 -0
  1026. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setVolumeLevel.html +566 -0
  1027. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SoundMode.html +820 -0
  1028. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SpeakerType.html +640 -0
  1029. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#changeLogoImage.html +566 -0
  1030. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#copyFile.html +561 -0
  1031. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#downloadFirmware.html +566 -0
  1032. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#exists.html +561 -0
  1033. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#fsync.html +561 -0
  1034. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +560 -0
  1035. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getStorageInfo.html +555 -0
  1036. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#listFiles.html +561 -0
  1037. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#mkdir.html +561 -0
  1038. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#moveFile.html +561 -0
  1039. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#readFile.html +563 -0
  1040. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeAll.html +561 -0
  1041. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeApplication.html +566 -0
  1042. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeFile.html +561 -0
  1043. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#statFile.html +561 -0
  1044. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#unzipFile.html +561 -0
  1045. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeApplication.html +566 -0
  1046. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeFirmware.html +560 -0
  1047. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#writeFile.html +561 -0
  1048. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppMode.html +640 -0
  1049. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppType.html +640 -0
  1050. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.SCAP_URI.html +512 -0
  1051. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#addHolidaySchedule.html +566 -0
  1052. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delAllHolidaySchedules.html +566 -0
  1053. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delHolidaySchedule.html +566 -0
  1054. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getAllHolidaySchedules.html +560 -0
  1055. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getHolidayScheduleMode.html +560 -0
  1056. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#setHolidayScheduleMode.html +566 -0
  1057. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Utility#createToast.html +561 -0
  1058. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getContentRotation.html +560 -0
  1059. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getVideoStatus.html +560 -0
  1060. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setContentRotation.html +566 -0
  1061. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setRotatedVideoTransform.html +566 -0
  1062. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoSize.html +566 -0
  1063. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoViewTransform.html +566 -0
  1064. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/_global_.html +453 -0
  1065. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/media_status.jpg +0 -0
  1066. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/setVideoSize.png +0 -0
  1067. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1068. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_deviceInfo.js.html +1860 -0
  1069. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_inputSource.js.html +1382 -0
  1070. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_power.js.html +2697 -0
  1071. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_security.js.html +357 -0
  1072. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_signage.js.html +3601 -0
  1073. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_sound.js.html +1123 -0
  1074. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_storage.js.html +2615 -0
  1075. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_time.js.html +720 -0
  1076. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_utility.js.html +196 -0
  1077. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_video.js.html +1090 -0
  1078. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/release_notes.txt +148 -0
  1079. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/2.7.0/cordova.webos.js +7038 -0
  1080. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/LICENSE +201 -0
  1081. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/configuration.js +1 -0
  1082. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/deviceInfo.js +1 -0
  1083. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/inputSource.js +1 -0
  1084. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/power.js +1 -0
  1085. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/security.js +1 -0
  1086. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/signage.js +1 -0
  1087. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/sound.js +1 -0
  1088. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/storage.js +1 -0
  1089. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/time.js +1 -0
  1090. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/utility.js +1 -0
  1091. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/video.js +1 -0
  1092. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/all.css +358 -0
  1093. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  1094. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  1095. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  1096. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  1097. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  1098. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  1099. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  1100. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  1101. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/handheld.css +217 -0
  1102. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/screen.css +405 -0
  1103. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/files.html +599 -0
  1104. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/index.html +1280 -0
  1105. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/intro.html +100 -0
  1106. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/all.js +326 -0
  1107. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/dessert.css +34 -0
  1108. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  1109. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-clj.js +64 -0
  1110. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-css.js +78 -0
  1111. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-go.js +58 -0
  1112. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-hs.js +101 -0
  1113. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  1114. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lua.js +59 -0
  1115. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-ml.js +56 -0
  1116. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-n.js +62 -0
  1117. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-proto.js +35 -0
  1118. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-scala.js +54 -0
  1119. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-sql.js +57 -0
  1120. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-tex.js +46 -0
  1121. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vb.js +61 -0
  1122. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  1123. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  1124. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-xq.js +67 -0
  1125. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  1126. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.css +52 -0
  1127. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.js +1477 -0
  1128. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/html5.js +6 -0
  1129. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#clearCache.html +572 -0
  1130. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getCurrentTime.html +582 -0
  1131. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getLocaleList.html +582 -0
  1132. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLanguage.html +582 -0
  1133. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLock.html +582 -0
  1134. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureMode.html +582 -0
  1135. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureProperty.html +582 -0
  1136. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getProperty.html +583 -0
  1137. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getServerProperty.html +582 -0
  1138. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZone.html +582 -0
  1139. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZoneList.html +582 -0
  1140. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getUSBLock.html +582 -0
  1141. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +582 -0
  1142. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#restartApplication.html +572 -0
  1143. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setCurrentTime.html +588 -0
  1144. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLanguage.html +588 -0
  1145. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLock.html +588 -0
  1146. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureMode.html +588 -0
  1147. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureProperty.html +588 -0
  1148. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setProperty.html +583 -0
  1149. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setServerProperty.html +632 -0
  1150. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setTimeZone.html +588 -0
  1151. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setUSBLock.html +588 -0
  1152. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +588 -0
  1153. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppMode.html +707 -0
  1154. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppType.html +662 -0
  1155. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.PictureMode.html +932 -0
  1156. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#connectWifi.html +583 -0
  1157. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getBeaconInfo.html +582 -0
  1158. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +582 -0
  1159. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getExternalInputList.html +588 -0
  1160. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkInfo.html +582 -0
  1161. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +582 -0
  1162. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getPlatformInfo.html +582 -0
  1163. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getProxyInfo.html +582 -0
  1164. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSoftApInfo.html +582 -0
  1165. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +588 -0
  1166. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getWifiList.html +582 -0
  1167. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +582 -0
  1168. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setBeaconInfo.html +583 -0
  1169. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +588 -0
  1170. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setNetworkInfo.html +583 -0
  1171. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setProxyInfo.html +588 -0
  1172. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setSoftApInfo.html +583 -0
  1173. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +588 -0
  1174. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#startWps.html +588 -0
  1175. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#stopWps.html +577 -0
  1176. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo.EddystoneFrame.html +662 -0
  1177. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.ERROR_CODE.html +842 -0
  1178. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.html +482 -0
  1179. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#changeInputSource.html +588 -0
  1180. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#getInputSourceStatus.html +582 -0
  1181. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#initialize.html +583 -0
  1182. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOffTimer.html +588 -0
  1183. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOnTimer.html +588 -0
  1184. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOffTimer.html +588 -0
  1185. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOnTimer.html +588 -0
  1186. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOffTimer.html +588 -0
  1187. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOnTimer.html +588 -0
  1188. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableWakeOnLan.html +588 -0
  1189. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#executePowerCommand.html +588 -0
  1190. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getDPMWakeup.html +582 -0
  1191. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOffTimerList.html +582 -0
  1192. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnOffTimeSchedule.html +582 -0
  1193. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnTimerList.html +582 -0
  1194. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPMMode.html +582 -0
  1195. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerOnDelay.html +582 -0
  1196. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerStatus.html +582 -0
  1197. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDPMWakeup.html +588 -0
  1198. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDisplayMode.html +588 -0
  1199. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setOnOffTimeSchedule.html +583 -0
  1200. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPMMode.html +588 -0
  1201. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPowerOnDelay.html +588 -0
  1202. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#unsetOnOffTimeSchedule.html +582 -0
  1203. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DPMSignalType.html +662 -0
  1204. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DisplayMode.html +662 -0
  1205. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PMMode.html +797 -0
  1206. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PowerCommand.html +662 -0
  1207. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.TimerWeek.html +932 -0
  1208. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#existServerCertificate.html +583 -0
  1209. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#registerServerCertificate.html +583 -2
  1210. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#unregisterServerCertificate.html +583 -0
  1211. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#captureScreen.html +583 -0
  1212. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#enableCheckScreen.html +588 -0
  1213. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getFailoverMode.html +577 -0
  1214. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getIntelligentAuto.html +582 -0
  1215. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getLanDaisyChain.html +582 -0
  1216. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getPowerSaveMode.html +577 -0
  1217. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSignageInfo.html +577 -0
  1218. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getStudioMode.html +582 -0
  1219. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSystemMonitoringInfo.html +577 -0
  1220. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getTileInfo.html +577 -0
  1221. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsageData.html +577 -0
  1222. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsagePermission.html +577 -0
  1223. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerRS232CEventListener.html +594 -0
  1224. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerSystemMonitor.html +595 -0
  1225. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setDigitalAudioInputMode.html +589 -0
  1226. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setFailoverMode.html +589 -0
  1227. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIntelligentAuto.html +588 -0
  1228. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIsmMethod.html +589 -0
  1229. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setLanDaisyChain.html +588 -0
  1230. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPortraitMode.html +589 -0
  1231. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPowerSaveMode.html +589 -0
  1232. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setStudioMode.html +588 -0
  1233. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setTileInfo.html +589 -0
  1234. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setUsagePermission.html +589 -0
  1235. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterRS232CEventListener.html +582 -0
  1236. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterSystemMonitor.html +577 -0
  1237. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.AutomaticStandbyMode.html +662 -0
  1238. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DigitalAudioInput.html +662 -0
  1239. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DpmMode.html +932 -0
  1240. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.EventType.html +797 -0
  1241. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.FailoverMode.html +707 -0
  1242. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.ImgResolution.html +662 -0
  1243. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.IsmMethod.html +932 -0
  1244. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.KeyOperationMode.html +707 -0
  1245. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.MonitoringSource.html +797 -0
  1246. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.OsdPortraitMode.html +662 -0
  1247. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundMode.html +582 -0
  1248. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundOut.html +582 -0
  1249. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundStatus.html +582 -0
  1250. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setExternalSpeaker.html +588 -0
  1251. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setMuted.html +588 -0
  1252. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundMode.html +588 -0
  1253. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundOut.html +588 -0
  1254. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setVolumeLevel.html +588 -0
  1255. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SoundMode.html +842 -0
  1256. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SpeakerType.html +662 -0
  1257. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#changeLogoImage.html +588 -0
  1258. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#copyFile.html +583 -0
  1259. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#decryptFile.html +583 -0
  1260. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#downloadFirmware.html +588 -0
  1261. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#exists.html +583 -0
  1262. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#fsync.html +583 -0
  1263. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +582 -0
  1264. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getMD5Hash.html +583 -0
  1265. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getStorageInfo.html +577 -0
  1266. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#listFiles.html +583 -0
  1267. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#mkdir.html +583 -0
  1268. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#moveFile.html +583 -0
  1269. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#readFile.html +585 -0
  1270. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeAll.html +583 -0
  1271. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeApplication.html +588 -0
  1272. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeFile.html +583 -0
  1273. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#statFile.html +583 -0
  1274. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#unzipFile.html +583 -0
  1275. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeApplication.html +588 -0
  1276. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeFirmware.html +582 -0
  1277. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#writeFile.html +583 -0
  1278. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppMode.html +662 -0
  1279. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppType.html +662 -0
  1280. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.SCAP_URI.html +534 -0
  1281. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#addHolidaySchedule.html +588 -0
  1282. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delAllHolidaySchedules.html +588 -0
  1283. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delHolidaySchedule.html +588 -0
  1284. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getAllHolidaySchedules.html +582 -0
  1285. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidaySchedule.html +582 -0
  1286. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidayScheduleMode.html +582 -0
  1287. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidaySchedule.html +583 -0
  1288. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidayScheduleMode.html +588 -0
  1289. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#unsetHolidaySchedule.html +582 -0
  1290. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Utility#createToast.html +583 -0
  1291. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getContentRotation.html +586 -0
  1292. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getVideoStatus.html +582 -0
  1293. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setContentRotation.html +592 -0
  1294. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setRotatedVideoTransform.html +592 -0
  1295. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoSize.html +588 -0
  1296. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoViewTransform.html +592 -0
  1297. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/_global_.html +475 -0
  1298. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/media_status.jpg +0 -0
  1299. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/setVideoSize.png +0 -0
  1300. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1301. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_deviceInfo.js.html +1930 -0
  1302. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_inputSource.js.html +1383 -0
  1303. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_power.js.html +2942 -0
  1304. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_security.js.html +352 -0
  1305. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_signage.js.html +3853 -0
  1306. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_sound.js.html +1123 -0
  1307. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_storage.js.html +2747 -0
  1308. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_time.js.html +976 -0
  1309. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_utility.js.html +196 -0
  1310. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_video.js.html +754 -0
  1311. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/release_notes.txt +148 -0
  1312. package/files/templates/signage-sdk-templates/serviceinfo/package.json +11 -0
  1313. package/files/templates/signage-sdk-templates/serviceinfo/services.json +8 -0
  1314. package/files/templates/signage-sdk-templates/signageicon/icon.png +0 -0
  1315. package/files/templates/signage-sdk-templates/signageicon/largeIcon.png +0 -0
  1316. package/files/templates/signage-sdk-templates/webos-service/helloclient.js +23 -0
  1317. package/files/templates/signage-sdk-templates/webos-service/helloworld_webos_service.js +128 -0
  1318. package/files/templates/tv-sdk-templates/appinfo/appinfo.json +10 -10
  1319. package/files/templates/tv-sdk-templates/bootplate-web/index.html +58 -58
  1320. package/files/templates/tv-sdk-templates/bootplate-web/webOSTVjs-1.2.10/LICENSE-2.0.txt +202 -202
  1321. package/files/templates/tv-sdk-templates/hosted-webapp/index.html +14 -14
  1322. package/files/templates/tv-sdk-templates/js-service/helloworld_service.js +39 -39
  1323. package/files/templates/tv-sdk-templates/packageinfo/packageinfo.json +3 -3
  1324. package/files/templates/tv-sdk-templates/serviceinfo/package.json +11 -11
  1325. package/files/templates/tv-sdk-templates/serviceinfo/services.json +8 -8
  1326. package/lib/base/ares.html +40 -40
  1327. package/lib/base/cli-appdata.js +289 -290
  1328. package/lib/base/cli-control.js +44 -44
  1329. package/lib/base/common-tools.js +29 -29
  1330. package/lib/base/error-handler.js +265 -265
  1331. package/lib/base/file-watcher.js +155 -155
  1332. package/lib/base/help-format.js +147 -147
  1333. package/lib/base/luna.js +178 -178
  1334. package/lib/base/novacom.js +1214 -1202
  1335. package/lib/base/sdkenv.js +59 -59
  1336. package/lib/base/server.js +137 -137
  1337. package/lib/base/setup-device.js +356 -335
  1338. package/lib/base/version-tools.js +79 -79
  1339. package/lib/com.sdk.ares.signage.hostedapp.ipk +0 -0
  1340. package/lib/device.js +1419 -1419
  1341. package/lib/generator.js +408 -377
  1342. package/lib/inspect.js +493 -493
  1343. package/lib/install.js +465 -463
  1344. package/lib/launch.js +607 -605
  1345. package/lib/log.js +584 -584
  1346. package/lib/package.js +2253 -2149
  1347. package/lib/pull.js +231 -231
  1348. package/lib/pusher.js +210 -210
  1349. package/lib/session.js +74 -74
  1350. package/lib/shell.js +193 -193
  1351. package/lib/tar-filter-pack.js +62 -62
  1352. package/lib/util/copy.js +31 -31
  1353. package/lib/util/createFileName.js +40 -40
  1354. package/lib/util/eof.js +30 -30
  1355. package/lib/util/json.js +63 -63
  1356. package/lib/util/merge.js +14 -14
  1357. package/lib/util/objclone.js +40 -40
  1358. package/lib/util/spinner.js +37 -37
  1359. package/npm-shrinkwrap.json +9242 -9242
  1360. package/package.json +100 -100
  1361. package/sbom-info.yaml +1758 -0
  1362. package/scripts/postinstall.js +24 -24
  1363. package/spec/helpers/reporter.js +65 -65
  1364. package/spec/jsSpecs/apiTest/generator.spec.js +372 -372
  1365. package/spec/jsSpecs/apiTest/inspector.spec.js +89 -89
  1366. package/spec/jsSpecs/apiTest/installer.spec.js +67 -67
  1367. package/spec/jsSpecs/apiTest/launcher.spec.js +150 -150
  1368. package/spec/jsSpecs/apiTest/packager.spec.js +194 -194
  1369. package/spec/jsSpecs/apiTest/puller.spec.js +101 -101
  1370. package/spec/jsSpecs/apiTest/pusher.spec.js +103 -103
  1371. package/spec/jsSpecs/apiTest/server.spec.js +115 -115
  1372. package/spec/jsSpecs/apiTest/setupDevice.spec.js +93 -93
  1373. package/spec/jsSpecs/apiTest/shell.spec.js +49 -49
  1374. package/spec/jsSpecs/ares-config.spec.js +88 -88
  1375. package/spec/jsSpecs/ares-device.spec.js +443 -443
  1376. package/spec/jsSpecs/ares-generate.spec.js +401 -397
  1377. package/spec/jsSpecs/ares-inspect.spec.js +252 -252
  1378. package/spec/jsSpecs/ares-install.spec.js +150 -150
  1379. package/spec/jsSpecs/ares-launch.spec.js +303 -301
  1380. package/spec/jsSpecs/ares-log.spec.js +824 -824
  1381. package/spec/jsSpecs/ares-novacom.spec.js +149 -149
  1382. package/spec/jsSpecs/ares-package.spec.js +1277 -1211
  1383. package/spec/jsSpecs/ares-pull.spec.js +157 -157
  1384. package/spec/jsSpecs/ares-push.spec.js +146 -146
  1385. package/spec/jsSpecs/ares-server.spec.js +160 -160
  1386. package/spec/jsSpecs/ares-setup-device.spec.js +299 -300
  1387. package/spec/jsSpecs/ares-shell.spec.js +220 -220
  1388. package/spec/jsSpecs/ares.spec.js +83 -83
  1389. package/spec/jsSpecs/common-spec.js +177 -169
  1390. package/spec/support/jasmine.json +22 -22
  1391. package/spec/tempFiles/com.lg.app.signage.dev_0.0.1_all.ipk +0 -0
  1392. package/spec/tempFiles/nativeApp/auto/pkg_arm64/appinfo.json +9 -9
  1393. package/spec/tempFiles/nativeApp/ose/pkg_arm/appinfo.json +8 -8
  1394. package/spec/tempFiles/nativeApp/ose/pkg_arm/package.properties +2 -2
  1395. package/spec/tempFiles/nativeApp/oseEmul/pkg_x86/appinfo.json +9 -9
  1396. package/spec/tempFiles/nativeApp/rsi/pkg_x86/appinfo.json +9 -9
  1397. package/spec/tempFiles/sign/sign.crt +32 -32
  1398. package/spec/tempFiles/sign/signPriv.key +52 -52
  1399. package/spec/test_data/ares-generate.json +91 -58
  1400. package/spec/test_data/ares.json +50 -50
  1401. package/webos-tools-cli-3.2.0.tgz +0 -0
  1402. package/webos-tools-cli-3.1.2.tgz +0 -0
package/sbom-info.yaml ADDED
@@ -0,0 +1,1758 @@
1
+ Bytes utility:
2
+ - version: "3.1.0"
3
+ license: "MIT"
4
+ download location: "https://github.com/visionmedia/bytes.js/releases/tag/2.1.0"
5
+ homepage: "https://github.com/visionmedia/bytes.js"
6
+ copyright text:
7
+ - "Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>"
8
+ - "Copyright (c) 2015 Jed Watson <jed.watson@me.com>"
9
+ Inquirer.js:
10
+ - version: "7.0.0"
11
+ license: "MIT"
12
+ download location: "https://github.com/SBoudrias/Inquirer.js/releases"
13
+ homepage: "https://github.com/sboudrias/Inquirer.js"
14
+ copyright text: "Copyright (c) 2016 Simon Boudrias"
15
+ Microsoft-tslib:
16
+ - version: "1.14.1"
17
+ license: "0BSD"
18
+ download location: "https://github.com/Microsoft/tslib"
19
+ homepage: "https://www.npmjs.com/package/tslib"
20
+ copyright text: "Copyright (c) Microsoft Corporation."
21
+ Polyfill for Object.setPrototypeOf:
22
+ - version: "1.1.1"
23
+ license: "ISC"
24
+ download location: "https://github.com/wesleytodd/setprototypeof"
25
+ homepage: "https://github.com/wesleytodd/setprototypeof"
26
+ copyright text: "Copyright (c) 2015, Wes Todd"
27
+ Punycode.js:
28
+ - version: "2.3.1"
29
+ license: "MIT"
30
+ download location: "https://github.com/bestiejs/punycode.js"
31
+ homepage: "https://github.com/bestiejs/punycode.js"
32
+ copyright text: "Copyright (c) Mathias Bynens <http://mathiasbynens.be/>"
33
+ RxJS:
34
+ - version: "6.6.7"
35
+ license: "Apache-2.0"
36
+ download location: "https://github.com/reactivex/rxjs"
37
+ homepage: "https://github.com/reactivex/rxjs"
38
+ copyright text: "Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft\
39
+ \ Corp. and contributors"
40
+ abbrev-js:
41
+ - version: "1.1.1"
42
+ license: "ISC"
43
+ download location: "https://github.com/npm/abbrev-js"
44
+ homepage: "https://github.com/npm/abbrev-js"
45
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
46
+ accepts:
47
+ - version: "1.3.8"
48
+ license: "MIT"
49
+ download location: "https://github.com/jshttp/accepts/releases/tag/1.1.0"
50
+ homepage: "https://github.com/jshttp/accepts"
51
+ copyright text:
52
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
53
+ - "Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
54
+ ajv:
55
+ - version: "6.12.6"
56
+ license: "MIT"
57
+ download location: "https://github.com/epoberezkin/ajv"
58
+ homepage: "https://www.npmjs.org/ajv"
59
+ copyright text:
60
+ - "Copyright (c) 2015-2017 Evgeny Poberezkin"
61
+ - "Copyright (c) 2012 Julian Berman"
62
+ andyperlitch-jsbn:
63
+ - version: "0.1.1"
64
+ license: "MIT-like License (jsbn)"
65
+ download location: "https://github.com/andyperlitch/jsbn/tree/v0.1.1"
66
+ homepage: "https://github.com/andyperlitch/jsbn"
67
+ copyright text: "Copyright (c) 2003-2005 Tom Wu"
68
+ ansi-escapes:
69
+ - version: "4.3.2"
70
+ license: "MIT"
71
+ download location: "https://github.com/sindresorhus/ansi-escapes/tree/v1.4.0"
72
+ homepage: "https://github.com/sindresorhus/ansi-escapes"
73
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
74
+ ansi-regex:
75
+ - version: "5.0.1"
76
+ license: "MIT"
77
+ download location: "https://github.com/chalk/ansi-regex"
78
+ homepage: "https://github.com/sindresorhus/ansi-regex"
79
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
80
+ - version: "4.1.1"
81
+ license: "MIT"
82
+ download location: "https://github.com/chalk/ansi-regex"
83
+ homepage: "https://github.com/sindresorhus/ansi-regex"
84
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
85
+ - version: "3.0.1"
86
+ license: "MIT"
87
+ download location: "https://github.com/chalk/ansi-regex"
88
+ homepage: "https://github.com/sindresorhus/ansi-regex"
89
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
90
+ - version: "2.1.1"
91
+ license: "MIT"
92
+ download location: "https://github.com/chalk/ansi-regex"
93
+ homepage: "https://github.com/sindresorhus/ansi-regex"
94
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
95
+ ansi-styles:
96
+ - version: "4.3.0"
97
+ license: "MIT"
98
+ download location: "https://github.com/chalk/ansi-styles/releases/tag/v2.0.1"
99
+ homepage: "https://github.com/chalk/ansi-styles"
100
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
101
+ - version: "3.2.1"
102
+ license: "MIT"
103
+ download location: "https://github.com/chalk/ansi-styles/releases/tag/v2.0.1"
104
+ homepage: "https://github.com/chalk/ansi-styles"
105
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
106
+ - version: "2.2.1"
107
+ license: "MIT"
108
+ download location: "https://github.com/chalk/ansi-styles/releases/tag/v2.0.1"
109
+ homepage: "https://github.com/chalk/ansi-styles"
110
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
111
+ anymatch:
112
+ - version: "3.1.3"
113
+ license: "ISC"
114
+ download location: "https://github.com/es128/anymatch/releases/tag/1.3.0"
115
+ homepage: "https://github.com/es128/anymatch"
116
+ copyright text: "Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)"
117
+ aproba:
118
+ - version: "1.2.0"
119
+ license: "ISC"
120
+ download location: "https://github.com/iarna/aproba"
121
+ homepage: "https://www.npmjs.org/aproba"
122
+ copyright text: "Copyright (c) 2015, Rebecca Turner <me@re-becca.org>"
123
+ are-we-there-yet:
124
+ - version: "1.1.7"
125
+ license: "ISC"
126
+ download location: "https://github.com/iarna/are-we-there-yet"
127
+ homepage: "https://www.npmjs.org/are-we-there-yet"
128
+ copyright text: "Copyright (c) 2015, Rebecca Turner"
129
+ array-flatten:
130
+ - version: "1.1.1"
131
+ license: "MIT"
132
+ download location: "https://github.com/blakeembrey/array-flatten/releases/tag/v1.1.1"
133
+ homepage: "https://github.com/blakeembrey/array-flatten"
134
+ copyright text: "Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)"
135
+ async:
136
+ - version: "3.2.5"
137
+ license: "MIT"
138
+ download location: "https://github.com/caolan/async"
139
+ homepage: "https://www.npmjs.com/package/async"
140
+ copyright text: "Copyright (c) 2010-2018 Caolan McMahon"
141
+ asynckit:
142
+ - version: "0.4.0"
143
+ license: "MIT"
144
+ download location: "https://www.npmjs.com/package/asynckit"
145
+ homepage: "https://github.com/alexindigo/asynckit"
146
+ copyright text: "Copyright (c) 2016 Alex Indigo"
147
+ aws-sign2:
148
+ - version: "0.7.0"
149
+ license: "Apache-2.0"
150
+ download location: "https://github.com/mikeal/aws-sign"
151
+ homepage: "https://www.npmjs.org/aws-sign2"
152
+ copyright text: "Copyright (c) Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com)"
153
+ aws4:
154
+ - version: "1.12.0"
155
+ license: "MIT"
156
+ download location: "https://github.com/mhart/aws4"
157
+ homepage: "https://www.npmjs.org/aws4"
158
+ copyright text: "Copyright (c) 2013 Michael Hart (michael.hart.au@gmail.com)"
159
+ balanced-match:
160
+ - version: "1.0.2"
161
+ license: "MIT"
162
+ download location: "https://github.com/juliangruber/balanced-match/releases/tag/v0.3.0"
163
+ homepage: "https://github.com/juliangruber/balanced-match"
164
+ copyright text: "Copyright (c) 2013, Julian Gruber"
165
+ bcrypt-pbkdf:
166
+ - version: "1.0.2"
167
+ license: "BSD-3-Clause"
168
+ download location: "https://github.com/joyent/node-bcrypt-pbkdf"
169
+ homepage: "https://www.npmjs.org/bcrypt-pbkdf"
170
+ copyright text: "Copyright (c) 1997 Niels Provos <provos@physnet.uni-hamburg.de>"
171
+ beatgammit-base64-js:
172
+ - version: "1.5.1"
173
+ license: "MIT"
174
+ download location: "https://github.com/beatgammit/base64-js/releases"
175
+ homepage: "https://github.com/beatgammit/base64-js"
176
+ copyright text: "Copyright (c) 2014 Jameson Little"
177
+ binary-extensions:
178
+ - version: "2.2.0"
179
+ license: "MIT"
180
+ download location: "https://github.com/sindresorhus/binary-extensions/releases/tag/v1.5.0"
181
+ homepage: "https://github.com/sindresorhus/binary-extensions"
182
+ copyright text: "Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com),\
183
+ \ Paul Miller (https://paulmillr.com)"
184
+ bl:
185
+ - version: "4.1.0"
186
+ license: "MIT"
187
+ download location: "https://github.com/rvagg/bl/releases/tag/v1.1.2"
188
+ homepage: "https://github.com/rvagg/bl"
189
+ copyright text: "Copyright (c) 2013-2019 bl contributors"
190
+ - version: "1.2.3"
191
+ license: "MIT"
192
+ download location: "https://github.com/rvagg/bl/releases/tag/v1.1.2"
193
+ homepage: "https://github.com/rvagg/bl"
194
+ copyright text: "Copyright (c) 2013-2016 bl contributors"
195
+ bluebird:
196
+ - version: "3.7.2"
197
+ license: "MIT"
198
+ download location: "https://github.com/petkaantonov/bluebird/releases/tag/v2.10.2"
199
+ homepage: "http://bluebirdjs.com/docs/getting-started.html"
200
+ copyright text: "Copyright (c) 2013-2018 Petka Antonov"
201
+ body-parser:
202
+ - version: "1.19.0"
203
+ license: "MIT"
204
+ download location: "https://github.com/expressjs/body-parser/releases/tag/1.4.3"
205
+ homepage: "https://github.com/expressjs/body-parser"
206
+ copyright text:
207
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
208
+ - "Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
209
+ brace-expansion:
210
+ - version: "1.1.11"
211
+ license: "MIT"
212
+ download location: "https://github.com/juliangruber/brace-expansion/releases/tag/v1.1.3"
213
+ homepage: "https://github.com/juliangruber/brace-expansion"
214
+ copyright text: "Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>"
215
+ braces:
216
+ - version: "3.0.2"
217
+ license: "MIT"
218
+ download location: "https://github.com/jonschlinkert/braces/releases/tag/1.8.5"
219
+ homepage: "https://github.com/jonschlinkert/braces"
220
+ copyright text: "Copyright (c) 2014-2018, Jon Schlinkert."
221
+ buffer-alloc:
222
+ - version: "1.2.0"
223
+ license: "MIT"
224
+ download location: "https://github.com/LinusU/buffer-alloc"
225
+ homepage: "https://www.npmjs.org/package/buffer-alloc"
226
+ buffer-alloc-unsafe:
227
+ - version: "1.1.0"
228
+ license: "MIT"
229
+ download location: "https://github.com/LinusU/buffer-alloc-unsafe"
230
+ homepage: "https://www.npmjs.org/package/buffer-alloc-unsafe"
231
+ buffer-crc32:
232
+ - version: "0.2.13"
233
+ license: "MIT"
234
+ download location: "https://github.com/brianloveswords/buffer-crc32/releases/tag/v0.2.5"
235
+ homepage: "https://github.com/brianloveswords/buffer-crc32"
236
+ copyright text: "Copyright (c) 2013 Brian J. Brennan"
237
+ buffer-fill:
238
+ - version: "1.0.0"
239
+ license: "MIT"
240
+ download location: "https://github.com/LinusU/buffer-fill"
241
+ homepage: "https://www.npmjs.org/package/buffer-fill"
242
+ buffer-from:
243
+ - version: "1.1.2"
244
+ license: "MIT"
245
+ download location: "https://github.com/LinusU/buffer-from"
246
+ homepage: "https://github.com/LinusU/buffer-from"
247
+ copyright text: "Copyright (c) 2016, 2018 Linus Unneback"
248
+ caseless:
249
+ - version: "0.12.0"
250
+ license: "Apache-2.0"
251
+ download location: "https://github.com/mikeal/caseless"
252
+ homepage: "https://www.npmjs.org/caseless"
253
+ copyright text: "Copyright (c) Mikeal Rogers <mikeal.rogers@gmail.com>"
254
+ chalk:
255
+ - version: "4.1.2"
256
+ license: "MIT"
257
+ download location: "https://github.com/chalk/chalk/releases/tag/v1.1.3"
258
+ homepage: "https://github.com/sindresorhus/chalk"
259
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
260
+ - version: "2.4.2"
261
+ license: "MIT"
262
+ download location: "https://github.com/chalk/chalk/releases/tag/v1.1.3"
263
+ homepage: "https://github.com/sindresorhus/chalk"
264
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
265
+ - version: "1.1.3"
266
+ license: "MIT"
267
+ download location: "https://github.com/chalk/chalk/releases/tag/v1.1.3"
268
+ homepage: "https://github.com/sindresorhus/chalk"
269
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
270
+ chokidar:
271
+ - version: "3.5.2"
272
+ license: "MIT"
273
+ download location: "https://github.com/paulmillr/chokidar/releases"
274
+ homepage: "http://paulmillr.com"
275
+ copyright text: "Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan\
276
+ \ Shanker"
277
+ chownr:
278
+ - version: "2.0.0"
279
+ license: "ISC"
280
+ download location: "https://github.com/isaacs/chownr"
281
+ homepage: "https://github.com/isaacs/chownr"
282
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
283
+ cli-cursor:
284
+ - version: "3.1.0"
285
+ license: "MIT"
286
+ download location: "https://github.com/sindresorhus/cli-cursor/tree/v1.0.2"
287
+ homepage: "https://github.com/sindresorhus/cli-cursor"
288
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
289
+ cli-spinners:
290
+ - version: "2.9.2"
291
+ license: "MIT"
292
+ download location: "https://github.com/sindresorhus/cli-spinners"
293
+ homepage: "https://github.com/sindresorhus/cli-spinners"
294
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
295
+ cli-width:
296
+ - version: "2.2.1"
297
+ license: "ISC"
298
+ download location: "https://github.com/knownasilya/cli-width/releases/tag/v1.0.1"
299
+ homepage: "https://github.com/knownasilya/cli-width"
300
+ copyright text: "Copyright (c) 2015 Ilya Radchenko <ilya@burstcreations.com></ilya@burstcreations.com>"
301
+ code-point-at:
302
+ - version: "1.1.0"
303
+ license: "MIT"
304
+ download location: "https://github.com/sindresorhus/code-point-at"
305
+ homepage: "https://www.npmjs.org/code-point-at"
306
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com>"
307
+ color-convert:
308
+ - version: "2.0.1"
309
+ license: "MIT"
310
+ download location: "https://www.npmjs.com/package/color-convert"
311
+ homepage: "https://github.com/qix-/color-convert"
312
+ copyright text: "Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>"
313
+ - version: "1.9.3"
314
+ license: "MIT"
315
+ download location: "https://www.npmjs.com/package/color-convert"
316
+ homepage: "https://github.com/qix-/color-convert"
317
+ copyright text: "Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>"
318
+ color-name:
319
+ - version: "1.1.4"
320
+ license: "MIT"
321
+ download location: "https://www.npmjs.com/package/color-name"
322
+ homepage: "https://github.com/dfcreative/color-name"
323
+ copyright text: "Copyright (c) 2015 Dmitry Ivanov"
324
+ - version: "1.1.3"
325
+ license: "MIT"
326
+ download location: "https://www.npmjs.com/package/color-name"
327
+ homepage: "https://github.com/dfcreative/color-name"
328
+ copyright text: "Copyright (c) 2015 Dmitry Ivanov"
329
+ commander:
330
+ - version: "2.20.3"
331
+ license: "MIT"
332
+ download location: "https://github.com/tj/commander.js/releases/tag/v2.8.1"
333
+ homepage: "https://github.com/tj/commander.js"
334
+ copyright text: "Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>"
335
+ concat-stream:
336
+ - version: "1.6.2"
337
+ license: "MIT"
338
+ download location: "https://github.com/maxogden/concat-stream/releases/tag/v1.4.8"
339
+ homepage: "https://github.com/maxogden/concat-stream"
340
+ copyright text: "Copyright (c) 2013 Max Ogden"
341
+ console-control-strings:
342
+ - version: "1.1.0"
343
+ license: "ISC"
344
+ download location: "https://github.com/iarna/console-control-strings"
345
+ homepage: "https://www.npmjs.org/console-control-strings"
346
+ copyright text: "Copyright (c) 2014, Rebecca Turner <me@re-becca.org>"
347
+ content-disposition:
348
+ - version: "0.5.3"
349
+ license: "MIT"
350
+ download location: "https://github.com/jshttp/content-disposition/releases/tag/v0.5.0"
351
+ homepage: "https://github.com/jshttp/content-disposition"
352
+ copyright text: "Copyright (c) 2014-2017 Douglas Christopher Wilson"
353
+ content-type:
354
+ - version: "1.0.5"
355
+ license: "MIT"
356
+ download location: "https://github.com/jshttp/content-type/releases/tag/v1.0.2"
357
+ homepage: "https://github.com/jshttp/content-type"
358
+ copyright text: "Copyright (c) 2015 Douglas Christopher Wilson"
359
+ core-util-is:
360
+ - version: "1.0.3"
361
+ license: "MIT"
362
+ download location: "https://github.com/isaacs/core-util-is/releases/tag/v1.0.2"
363
+ homepage: "https://github.com/isaacs/core-util-is"
364
+ copyright text: "Copyright (c) Node.js contributors"
365
+ - version: "1.0.2"
366
+ license: "MIT"
367
+ download location: "https://github.com/isaacs/core-util-is/releases/tag/v1.0.2"
368
+ homepage: "https://github.com/isaacs/core-util-is"
369
+ copyright text: "Copyright (c) Node.js contributors."
370
+ csv-writer:
371
+ - version: "1.6.0"
372
+ license: "MIT"
373
+ download location: "https://www.npmjs.com/package/csv-writer"
374
+ homepage: "https://www.npmjs.com/package/csv-writer"
375
+ decompress:
376
+ - version: "4.2.1"
377
+ license: "MIT"
378
+ download location: "https://github.com/kevva/decompress"
379
+ homepage: "https://github.com/kevva/decompress"
380
+ copyright text: "Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>"
381
+ decompress-tar:
382
+ - version: "4.1.1"
383
+ license: "MIT"
384
+ download location: "https://github.com/kevva/decompress-tar"
385
+ homepage: "https://github.com/kevva/decompress-tar"
386
+ copyright text: "Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>"
387
+ decompress-tarbz2:
388
+ - version: "4.1.1"
389
+ license: "MIT"
390
+ download location: "https://github.com/kevva/decompress-tarbz2"
391
+ homepage: "https://github.com/kevva/decompress-tarbz2"
392
+ copyright text: "Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>"
393
+ decompress-targz:
394
+ - version: "4.1.1"
395
+ license: "MIT"
396
+ download location: "https://github.com/kevva/decompress-targz"
397
+ homepage: "https://github.com/kevva/decompress-targz"
398
+ copyright text:
399
+ - "Copyright (c) Kevin Martensson (https://github.com/kevva)"
400
+ - "Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>"
401
+ decompress-unzip:
402
+ - version: "4.0.1"
403
+ license: "MIT"
404
+ download location: "https://github.com/kevva/decompress-unzip"
405
+ homepage: "https://github.com/kevva/decompress-unzip"
406
+ copyright text: "Copyright (c) Kevin Martensson <kevinmartensson@gmail.com>"
407
+ defaults:
408
+ - version: "1.0.4"
409
+ license: "MIT"
410
+ download location: "https://github.com/tmpvar/defaults"
411
+ homepage: "https://github.com/tmpvar/defaults"
412
+ copyright text:
413
+ - "Copyright (c) 2015 Elijah Insua"
414
+ - "Copyright (c) 2022 Sindre Sorhus"
415
+ destroy:
416
+ - version: "1.0.4"
417
+ license: "MIT"
418
+ download location: "https://github.com/stream-utils/destroy/releases"
419
+ homepage: "https://github.com/stream-utils/destroy"
420
+ copyright text: "Copyright (c) 2014 Jonathan Ong me@jongleberry.com"
421
+ easy-table:
422
+ - version: "1.1.1"
423
+ license: "MIT"
424
+ download location: "https://github.com/eldargab/easy-table/releases/tag/0.3.0"
425
+ homepage: "https://www.npmjs.org/package/easy-table"
426
+ copyright text: "Copyright (c) 2012 Eldar Gabdullin (eldargab@gmail.com)"
427
+ ecc-jsbn:
428
+ - version: "0.1.2"
429
+ license: "MIT"
430
+ download location: "https://github.com/quartzjer/ecc-jsbn"
431
+ homepage: "https://www.npmjs.org/ecc-jsbn"
432
+ copyright text: "Copyright (c) 2014 Jeremie Miller"
433
+ ee-first:
434
+ - version: "1.1.1"
435
+ license: "MIT"
436
+ download location: "https://github.com/jonathanong/ee-first/releases/tag/1.0.5"
437
+ homepage: "https://github.com/jonathanong/ee-first"
438
+ copyright text: "Copyright (c) 2014 Jonathan Ong me@jongleberry.com"
439
+ elfy:
440
+ - version: "1.0.0"
441
+ license: "MIT"
442
+ download location: "https://github.com/indutny/elfy/releases/tag/v0.1.0"
443
+ homepage: "https://github.com/indutny/elfy"
444
+ copyright text: "Copyright (c) 2014 Fedor Indutny."
445
+ emoji-regex:
446
+ - version: "8.0.0"
447
+ license: "MIT"
448
+ download location: "https://github.com/mathiasbynens/emoji-regex/releases/tag/v6.5.1"
449
+ homepage: "https://github.com/mathiasbynens/emoji-regex"
450
+ copyright text: "Copyright (c) Mathias Bynens <https://mathiasbynens.be/>"
451
+ encodeurl:
452
+ - version: "1.0.2"
453
+ license: "MIT"
454
+ download location: "https://github.com/pillarjs/encodeurl/releases/tag/v1.0.1"
455
+ homepage: "https://github.com/pillarjs/encodeurl"
456
+ copyright text: "Copyright (c) 2016 Douglas Christopher Wilson"
457
+ encoding:
458
+ - version: "0.1.13"
459
+ license: "MIT"
460
+ download location: "https://github.com/andris9/encoding/releases/tag/v0.1.11"
461
+ homepage: "https://github.com/andris9/encoding"
462
+ copyright text: "Copyright (c) 2012-2014 Andris Reinman"
463
+ end-of-stream:
464
+ - version: "1.4.4"
465
+ license: "MIT"
466
+ download location: "https://www.npmjs.com/package/end-of-stream"
467
+ homepage: "https://www.npmjs.com/package/end-of-stream"
468
+ copyright text: "Copyright (c) 2014 Mathias Buus"
469
+ endian-reader:
470
+ - version: "0.3.0"
471
+ license: "MIT"
472
+ download location: "https://github.com/indutny/endian-reader"
473
+ homepage: "https://github.com/indutny/endian-reader"
474
+ copyright text: "Copyright (c) 2014 Fedor Indutny"
475
+ escape-html:
476
+ - version: "1.0.3"
477
+ license: "MIT"
478
+ download location: "https://github.com/component/escape-html/releases"
479
+ homepage: "https://github.com/component/escape-html"
480
+ copyright text:
481
+ - "Copyright (c) 2012-2013 TJ Holowaychuk"
482
+ - "Copyright (c) 2015 Andreas Lubbe"
483
+ - "Copyright (c) 2015 Tiancheng \"Timothy\" Gu"
484
+ escape-string-regexp:
485
+ - version: "1.0.5"
486
+ license: "MIT"
487
+ download location: "https://github.com/sindresorhus/escape-string-regexp/releases/tag/v1.0.3"
488
+ homepage: "https://github.com/sindresorhus/escape-string-regexp"
489
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
490
+ etag:
491
+ - version: "1.8.1"
492
+ license: "MIT"
493
+ download location: "https://github.com/jshttp/etag/releases"
494
+ homepage: "https://github.com/jshttp/etag"
495
+ copyright text: "Copyright (c) 2014-2016 Douglas Christopher Wilson"
496
+ express:
497
+ - version: "4.17.1"
498
+ license: "MIT"
499
+ download location: "https://github.com/expressjs/express/releases/tag/4.12.4"
500
+ homepage: "http://expressjs.com"
501
+ copyright text:
502
+ - "Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>"
503
+ - "Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>"
504
+ - "Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
505
+ external-editor:
506
+ - version: "3.1.0"
507
+ license: "MIT"
508
+ download location: "https://github.com/mrkmg/node-external-editor/tree/3.0.3"
509
+ homepage: "https://github.com/mrkmg/node-external-editor"
510
+ copyright text: "Copyright (c) 2016 Kevin Gravier"
511
+ extract-zip:
512
+ - version: "1.7.0"
513
+ license: "BSD-2-Clause"
514
+ download location: "https://libraries.io/npm/extract-zip/1.0.3"
515
+ homepage: "https://github.com/maxogden/extract-zip"
516
+ copyright text: "Copyright (c) 2014 Max Ogden and other contributors"
517
+ fast-deep-equal:
518
+ - version: "3.1.3"
519
+ license: "MIT"
520
+ download location: "https://github.com/epoberezkin/fast-deep-equal"
521
+ homepage: "https://www.npmjs.org/fast-deep-equal"
522
+ copyright text: "Copyright (c) 2017 Evgeny Poberezkin"
523
+ fast-json-stable-stringify:
524
+ - version: "2.1.0"
525
+ license: "MIT"
526
+ download location: "https://github.com/epoberezkin/fast-json-stable-stringify"
527
+ homepage: "https://github.com/epoberezkin/fast-json-stable-stringify"
528
+ copyright text:
529
+ - "Copyright (c) 2017 Evgeny Poberezkin"
530
+ - "Copyright (c) 2013 James Halliday"
531
+ feross-buffer:
532
+ - version: "5.7.1"
533
+ license: "MIT"
534
+ download location: "https://github.com/feross/buffer"
535
+ homepage: "https://github.com/feross/buffer"
536
+ copyright text: "Copyright (c) Feross Aboukhadijeh, and other contributors."
537
+ figures:
538
+ - version: "3.2.0"
539
+ license: "MIT"
540
+ download location: "https://github.com/sindresorhus/figures/releases"
541
+ homepage: "https://github.com/sindresorhus/figures"
542
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
543
+ file-type:
544
+ - version: "6.2.0"
545
+ license: "MIT"
546
+ download location: "https://github.com/sindresorhus/file-type/releases/tag/v4.3.0"
547
+ homepage: "https://github.com/sindresorhus/file-type"
548
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
549
+ - version: "5.2.0"
550
+ license: "MIT"
551
+ download location: "https://github.com/sindresorhus/file-type/releases/tag/v4.3.0"
552
+ homepage: "https://github.com/sindresorhus/file-type"
553
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
554
+ - version: "3.9.0"
555
+ license: "MIT"
556
+ download location: "https://github.com/sindresorhus/file-type/releases/tag/v4.3.0"
557
+ homepage: "https://github.com/sindresorhus/file-type"
558
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
559
+ fill-range:
560
+ - version: "7.0.1"
561
+ license: "MIT"
562
+ download location: "https://github.com/jonschlinkert/fill-range/releases"
563
+ homepage: "https://github.com/jonschlinkert/fill-range"
564
+ copyright text: "Copyright (c) 2014-present, Jon Schlinkert."
565
+ finalhandler:
566
+ - version: "1.1.2"
567
+ license: "MIT"
568
+ download location: "https://github.com/pillarjs/finalhandler/releases"
569
+ homepage: "https://github.com/pillarjs/finalhandler"
570
+ copyright text: "Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>"
571
+ first-chunk-stream:
572
+ - version: "1.0.0"
573
+ license: "MIT"
574
+ download location: "https://github.com/sindresorhus/first-chunk-stream"
575
+ homepage: "https://github.com/sindresorhus/first-chunk-stream"
576
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
577
+ forever-agent:
578
+ - version: "0.6.1"
579
+ license: "Apache-2.0"
580
+ download location: "https://github.com/request/forever-agent/releases"
581
+ homepage: "http://github.com/mikeal/forever-agent"
582
+ form-data:
583
+ - version: "2.3.3"
584
+ license: "MIT"
585
+ download location: "https://github.com/form-data/form-data/releases"
586
+ homepage: "https://github.com/felixge/node-form-data"
587
+ copyright text: "Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and\
588
+ \ contributors"
589
+ forwarded:
590
+ - version: "0.2.0"
591
+ license: "MIT"
592
+ download location: "https://github.com/jshttp/forwarded/releases"
593
+ homepage: "https://github.com/jshttp/forwarded"
594
+ copyright text: "Copyright (c) 2014-2017 Douglas Christopher Wilson"
595
+ fresh:
596
+ - version: "0.5.2"
597
+ license: "MIT"
598
+ download location: "https://github.com/jshttp/fresh"
599
+ homepage: "https://github.com/jshttp/fresh"
600
+ copyright text:
601
+ - "Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>"
602
+ - "Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>"
603
+ fs-constants:
604
+ - version: "1.0.0"
605
+ license: "MIT"
606
+ download location: "https://github.com/mafintosh/fs-constants"
607
+ homepage: "https://github.com/mafintosh/fs-constants"
608
+ copyright text: "Copyright (c) 2018 Mathias Buus"
609
+ fs-minipass:
610
+ - version: "2.1.0"
611
+ license: "ISC"
612
+ download location: "https://github.com/npm/fs-minipass/tree/v1.2.5"
613
+ homepage: "https://github.com/npm/fs-minipass"
614
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
615
+ fs.realpath:
616
+ - version: "1.0.0"
617
+ license: "ISC"
618
+ download location: "https://github.com/isaacs/fs.realpath"
619
+ homepage: "https://github.com/isaacs/fs.realpath"
620
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
621
+ fstream:
622
+ - version: "1.0.12"
623
+ license: "ISC"
624
+ download location: "https://github.com/npm/fstream"
625
+ homepage: "https://github.com/npm/fstream"
626
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
627
+ function-bind:
628
+ - version: "1.1.2"
629
+ license: "MIT"
630
+ download location: "https://www.npmjs.com/package/function-bind"
631
+ homepage: "https://github.com/Raynos/function-bind"
632
+ copyright text: "Copyright (c) 2013 Raynos"
633
+ gauge:
634
+ - version: "2.7.4"
635
+ license: "ISC"
636
+ download location: "https://github.com/iarna/gauge"
637
+ homepage: "https://www.npmjs.org/gauge"
638
+ copyright text: "Copyright (c) 2014, Rebecca Turner <me@re-becca.org>"
639
+ get-stream:
640
+ - version: "2.3.1"
641
+ license: "MIT"
642
+ download location: "https://github.com/sindresorhus/get-stream"
643
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
644
+ glob-parent:
645
+ - version: "5.1.2"
646
+ license: "ISC"
647
+ download location: "https://github.com/es128/glob-parent/releases"
648
+ homepage: "https://github.com/es128/glob-parent"
649
+ copyright text: "Copyright (c) 2015, 2019 Elan Shanker"
650
+ har-schema:
651
+ - version: "2.0.0"
652
+ license: "ISC"
653
+ download location: "https://github.com/ahmadnassri/har-schema"
654
+ homepage: "https://www.npmjs.org/har-schema"
655
+ copyright text: "Copyright (c) 2015, Ahmad Nassri <ahmad@ahmadnassri.com>"
656
+ har-validator:
657
+ - version: "5.1.5"
658
+ license: "MIT"
659
+ download location: "https://github.com/ahmadnassri/har-validator"
660
+ homepage: "https://www.npmjs.org/har-validator"
661
+ copyright text: "Copyright (c) 2018 Ahmad Nassri <ahmad@ahmadnassri.com>"
662
+ has-ansi:
663
+ - version: "2.0.0"
664
+ license: "MIT"
665
+ download location: "https://github.com/chalk/has-ansi/releases"
666
+ homepage: "https://github.com/sindresorhus/has-ansi"
667
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
668
+ has-flag:
669
+ - version: "4.0.0"
670
+ license: "MIT"
671
+ download location: "https://www.npmjs.com/package/has-flag"
672
+ homepage: "https://github.com/sindresorhus/has-flag"
673
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com>"
674
+ - version: "3.0.0"
675
+ license: "MIT"
676
+ download location: "https://www.npmjs.com/package/has-flag"
677
+ homepage: "https://github.com/sindresorhus/has-flag"
678
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
679
+ has-unicode:
680
+ - version: "2.0.1"
681
+ license: "ISC"
682
+ download location: "https://github.com/iarna/has-unicode"
683
+ homepage: "https://www.npmjs.org/has-unicode"
684
+ copyright text: "Copyright (c) 2014, Rebecca Turner <me@re-becca.org>"
685
+ hasOwn:
686
+ - version: "2.0.1"
687
+ license: "MIT"
688
+ download location: "https://www.npmjs.com/package/hasown"
689
+ homepage: "https://github.com/inspect-js/hasOwn"
690
+ copyright text: "Copyright (c) Jordan Harband and contributors"
691
+ http-errors:
692
+ - version: "1.7.2"
693
+ license: "MIT"
694
+ download location: "https://github.com/jshttp/http-errors/releases"
695
+ homepage: "https://github.com/jshttp/http-errors"
696
+ copyright text:
697
+ - "Copyright (c) 2014 Jonathan Ong me@jongleberry.com"
698
+ - "Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com"
699
+ iconv-lite:
700
+ - version: "0.6.3"
701
+ license: "MIT"
702
+ download location: "https://github.com/ashtuchkin/iconv-lite/releases"
703
+ homepage: "https://github.com/ashtuchkin/iconv-lite"
704
+ copyright text: "Copyright (c) 2011 Alexander Shtuchkin"
705
+ - version: "0.4.24"
706
+ license: "MIT"
707
+ download location: "https://github.com/ashtuchkin/iconv-lite/releases"
708
+ homepage: "https://github.com/ashtuchkin/iconv-lite"
709
+ copyright text: "Copyright (c) 2011 Alexander Shtuchkin"
710
+ ieee754:
711
+ - version: "1.2.1"
712
+ license: "BSD-3-Clause"
713
+ download location: "https://github.com/feross/ieee754"
714
+ homepage: "https://github.com/feross/ieee754"
715
+ copyright text: "Copyright (c) 2008, Fair Oaks Labs, Inc."
716
+ inflight:
717
+ - version: "1.0.6"
718
+ license: "ISC"
719
+ download location: "https://github.com/npm/inflight/releases"
720
+ homepage: "https://github.com/npm/inflight"
721
+ copyright text: "Copyright (c) Isaac Z. Schlueter"
722
+ inherits:
723
+ - version: "2.0.4"
724
+ license: "ISC"
725
+ download location: "https://github.com/isaacs/inherits/releases"
726
+ homepage: "https://github.com/isaacs/inherits"
727
+ copyright text: "Copyright (c) Isaac Z. Schlueter"
728
+ - version: "2.0.3"
729
+ license: "ISC"
730
+ download location: "https://github.com/isaacs/inherits/releases"
731
+ homepage: "https://github.com/isaacs/inherits"
732
+ copyright text: "Copyright (c) Isaac Z. Schlueter"
733
+ - version: "1.0.2"
734
+ license: "ISC"
735
+ download location: "https://github.com/isaacs/inherits/releases"
736
+ homepage: "https://github.com/isaacs/inherits"
737
+ copyright text: "Copyright (c) Isaac Z. Schlueter"
738
+ interpret:
739
+ - version: "1.4.0"
740
+ license: "MIT"
741
+ download location: "https://github.com/tkellen/node-interpret"
742
+ homepage: "https://www.npmjs.org/interpret"
743
+ copyright text: "Copyright (c) 2014-2018 Tyler Kellen <tyler@sleekcode.net>, Blaine\
744
+ \ Bublitz <blaine.bublitz@gmail.com>, and Eric Schoffstall <yo@contra.io>"
745
+ ipaddr.js:
746
+ - version: "1.9.1"
747
+ license: "MIT"
748
+ download location: "https://github.com/whitequark/ipaddr.js/releases"
749
+ homepage: "https://github.com/whitequark/ipaddr.js"
750
+ copyright text: "Copyright (c) 2011-2017 whitequark <whitequark@whitequark.org>"
751
+ is-binary-path:
752
+ - version: "2.1.0"
753
+ license: "MIT"
754
+ download location: "https://github.com/sindresorhus/is-binary-path/releases"
755
+ homepage: "https://github.com/sindresorhus/is-binary-path"
756
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
757
+ is-core-module:
758
+ - version: "2.13.1"
759
+ license: "MIT"
760
+ download location: "https://www.npmjs.com/package/is-core-module"
761
+ homepage: "https://www.npmjs.com/package/is-core-module"
762
+ copyright text: "Copyright (c) 2014 Dave Justice"
763
+ is-extglob:
764
+ - version: "2.1.1"
765
+ license: "MIT"
766
+ download location: "https://github.com/jonschlinkert/is-extglob/releases"
767
+ homepage: "https://github.com/jonschlinkert/is-extglob"
768
+ copyright text: "Copyright (c) 2014-2015, Jon Schlinkert."
769
+ is-fullwidth-code-point:
770
+ - version: "3.0.0"
771
+ license: "MIT"
772
+ download location: "https://github.com/sindresorhus/is-fullwidth-code-point"
773
+ homepage: "https://www.npmjs.org/is-fullwidth-code-point"
774
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
775
+ - version: "1.0.0"
776
+ license: "MIT"
777
+ download location: "https://github.com/sindresorhus/is-fullwidth-code-point"
778
+ homepage: "https://www.npmjs.org/is-fullwidth-code-point"
779
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
780
+ is-glob:
781
+ - version: "4.0.3"
782
+ license: "MIT"
783
+ download location: "https://github.com/jonschlinkert/is-glob/releases"
784
+ homepage: "https://github.com/jonschlinkert/is-glob"
785
+ copyright text: "Copyright (c) 2014-2017, Jon Schlinkert"
786
+ is-interactive:
787
+ - version: "1.0.0"
788
+ license: "MIT"
789
+ download location: "https://www.npmjs.com/package/is-interactive"
790
+ homepage: "https://www.npmjs.com/package/is-interactive"
791
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
792
+ is-natural-number:
793
+ - version: "4.0.1"
794
+ license: "MIT"
795
+ download location: "https://github.com/shinnn/is-natural-number.js"
796
+ homepage: "https://github.com/shinnn/is-natural-number.js"
797
+ copyright text: "Copyright (c) 2014 - 2016 Shinnosuke Watanabe"
798
+ is-number:
799
+ - version: "7.0.0"
800
+ license: "MIT"
801
+ download location: "https://github.com/jonschlinkert/is-number/releases"
802
+ homepage: "https://github.com/jonschlinkert/is-number"
803
+ copyright text: "Copyright (c) 2014-present, Jon Schlinkert."
804
+ is-stream:
805
+ - version: "1.1.0"
806
+ license: "MIT"
807
+ download location: "https://github.com/sindresorhus/is-stream"
808
+ homepage: "https://github.com/sindresorhus/is-stream"
809
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
810
+ is-typedarray:
811
+ - version: "1.0.0"
812
+ license: "MIT"
813
+ download location: "https://github.com/hughsk/is-typedarray"
814
+ homepage: "https://www.npmjs.org/is-typedarray"
815
+ copyright text: "Copyright (c) Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/)"
816
+ is-unicode-supported:
817
+ - version: "0.1.0"
818
+ license: "MIT"
819
+ download location: "https://github.com/sindresorhus/is-unicode-supported"
820
+ homepage: "https://www.npmjs.com/package/is-unicode-supported"
821
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
822
+ is-utf8:
823
+ - version: "0.2.1"
824
+ license: "MIT"
825
+ download location: "https://github.com/wayfind/is-utf8"
826
+ homepage: "https://github.com/wayfind/is-utf8"
827
+ copyright text: "Copyright (c) 2014 Wei Fanzhe"
828
+ isStream:
829
+ - version: "0.1.2"
830
+ license: "MIT"
831
+ download location: "https://github.com/rvagg/isstream/releases"
832
+ homepage: "https://github.com/rvagg/isstream"
833
+ copyright text: "Copyright (c) 2015 Rod Vagg"
834
+ isarray:
835
+ - version: "1.0.0"
836
+ license: "MIT"
837
+ download location: "https://github.com/juliangruber/isarray/releases"
838
+ homepage: "https://github.com/juliangruber/isarray"
839
+ copyright text: "Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>"
840
+ jshttp-cookie:
841
+ - version: "0.4.0"
842
+ license: "MIT"
843
+ download location: "https://github.com/jshttp/cookie/releases/tag/v0.3.1"
844
+ homepage: "https://github.com/jshttp/cookie"
845
+ copyright text:
846
+ - "Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>"
847
+ - "Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
848
+ json-schema:
849
+ - version: "0.4.0"
850
+ license: "BSD-3-Clause"
851
+ download location: "https://github.com/kriszyp/json-schema"
852
+ homepage: "https://www.npmjs.org/json-schema"
853
+ copyright text: "Copyright (c) 2005-2015, The Dojo Foundation"
854
+ json-schema-traverse:
855
+ - version: "0.4.1"
856
+ license: "MIT"
857
+ download location: "https://github.com/epoberezkin/json-schema-traverse"
858
+ homepage: "https://www.npmjs.org/json-schema-traverse"
859
+ copyright text: "Copyright (c) 2017 Evgeny Poberezkin"
860
+ json-stringify-safe:
861
+ - version: "5.0.1"
862
+ license: "ISC"
863
+ download location: "https://github.com/isaacs/json-stringify-safe/releases"
864
+ homepage: "https://github.com/isaacs/json-stringify-safe"
865
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
866
+ lodash:
867
+ - version: "4.17.21"
868
+ license: "MIT"
869
+ download location: "https://github.com/lodash/lodash/releases/tag/3.10.1"
870
+ homepage: "https://github.com/lodash/lodash"
871
+ copyright text: "Copyright (c) JS Foundation and other contributors "
872
+ log-symbols:
873
+ - version: "4.1.0"
874
+ license: "MIT"
875
+ download location: "https://github.com/sindresorhus/log-symbols"
876
+ homepage: "https://github.com/sindresorhus/log-symbols"
877
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
878
+ make-dir:
879
+ - version: "1.3.0"
880
+ license: "MIT"
881
+ download location: "https://github.com/sindresorhus/make-dir"
882
+ homepage: "https://github.com/sindresorhus/make-dir"
883
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
884
+ media-typer:
885
+ - version: "0.3.0"
886
+ license: "MIT"
887
+ download location: "https://github.com/jshttp/media-typer/releases/tag/v0.2.0"
888
+ homepage: "https://github.com/jshttp/media-typer"
889
+ copyright text: "Copyright (c) 2014 Douglas Christopher Wilson"
890
+ merge-descriptors:
891
+ - version: "1.0.1"
892
+ license: "MIT"
893
+ download location: "https://github.com/component/merge-descriptors/releases"
894
+ homepage: "https://github.com/component/merge-descriptors"
895
+ copyright text:
896
+ - "Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>"
897
+ - "Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
898
+ methods:
899
+ - version: "1.1.2"
900
+ license: "MIT"
901
+ download location: "https://github.com/jshttp/methods/releases/tag/v1.1.0"
902
+ homepage: "https://github.com/jshttp/methods"
903
+ copyright text:
904
+ - "Copyright (c) 2013-2014 TJ Holowaychuk <tj@vision-media.ca>"
905
+ - "Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>"
906
+ mime-db:
907
+ - version: "1.52.0"
908
+ license: "MIT"
909
+ download location: "https://github.com/jshttp/mime-db/releases/tag/v1.1.2"
910
+ homepage: "https://github.com/jshttp/mime-db"
911
+ copyright text:
912
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
913
+ - "Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>"
914
+ mime-types:
915
+ - version: "2.1.35"
916
+ license: "MIT"
917
+ download location: "https://github.com/jshttp/mime-types/releases/tag/2.0.1"
918
+ homepage: "https://github.com/jshttp/mime-types"
919
+ copyright text:
920
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
921
+ - "Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
922
+ mimic-fn:
923
+ - version: "2.1.0"
924
+ license: "MIT"
925
+ download location: "https://github.com/sindresorhus/mimic-fn"
926
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
927
+ minimatch:
928
+ - version: "3.1.2"
929
+ license: "ISC"
930
+ download location: "https://github.com/isaacs/minimatch/releases/tag/v3.0.0"
931
+ homepage: "https://github.com/isaacs/minimatch"
932
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
933
+ minimist:
934
+ - version: "1.2.8"
935
+ license: "MIT"
936
+ download location: "https://github.com/substack/minimist/releases/tag/1.2.0"
937
+ homepage: "https://github.com/substack/minimist"
938
+ minipass:
939
+ - version: "5.0.0"
940
+ license: "ISC"
941
+ download location: "https://github.com/isaacs/minipass/tree/v2.3.5"
942
+ homepage: "https://github.com/isaacs/minipass"
943
+ copyright text: "Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors"
944
+ - version: "3.3.6"
945
+ license: "ISC"
946
+ download location: "https://github.com/isaacs/minipass/tree/v2.3.5"
947
+ homepage: "https://github.com/isaacs/minipass"
948
+ copyright text: "Copyright (c) 2017-2022 npm, Inc., Isaac Z. Schlueter, and Contributors"
949
+ minizlib:
950
+ - version: "2.1.2"
951
+ license: "MIT"
952
+ download location: "https://github.com/isaacs/minizlib/tree/v1.1.1"
953
+ homepage: "https://github.com/isaacs/minizlib"
954
+ copyright text:
955
+ - "Copyright (c) Isaac Z. Schlueter and Contributors"
956
+ - "Copyright (c) Joyent, Inc. and other Node contributors."
957
+ ms.js:
958
+ - version: "2.1.1"
959
+ license: "MIT"
960
+ download location: "https://github.com/zeit/ms/releases/tag/0.6.2"
961
+ homepage: "https://www.npmjs.com/package/ms"
962
+ copyright text: "Copyright (c) 2016 Zeit, Inc."
963
+ - version: "2.0.0"
964
+ license: "MIT"
965
+ download location: "https://github.com/zeit/ms/releases/tag/0.6.2"
966
+ homepage: "https://www.npmjs.com/package/ms"
967
+ copyright text: "Copyright (c) 2016 Zeit, Inc."
968
+ mute-stream:
969
+ - version: "0.0.8"
970
+ license: "ISC"
971
+ download location: "https://github.com/npm/mute-stream/releases/tag/v0.0.4"
972
+ homepage: "https://github.com/isaacs/mute-stream"
973
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
974
+ negotiator:
975
+ - version: "0.6.3"
976
+ license: "MIT"
977
+ download location: "https://github.com/jshttp/negotiator/releases/tag/0.4.9"
978
+ homepage: "https://github.com/jshttp/negotiator"
979
+ copyright text:
980
+ - "Copyright (c) 2012-2014 Federico Romero"
981
+ - "Copyright (c) 2012-2014 Isaac Z. Schlueter"
982
+ - "Copyright (c) 2014-2015 Douglas Christopher Wilson"
983
+ node-ar-async:
984
+ - version: "0.1.4"
985
+ license: "MIT"
986
+ download location: "https://github.com/JayCanuck/node-ar-async"
987
+ homepage: "https://www.npmjs.com/package/ar-async"
988
+ copyright text:
989
+ - "Copyright (c) 2014 Jason Robitaille. "
990
+ - "Copyright (c) 2013 John Vilk. "
991
+ node-asn1:
992
+ - version: "0.2.6"
993
+ license: "MIT"
994
+ download location: "https://github.com/mcavage/node-asn1"
995
+ homepage: "https://github.com/mcavage/node-asn1"
996
+ copyright text: "Copyright (c) 2011 Mark Cavage"
997
+ node-assert-plus:
998
+ - version: "1.0.0"
999
+ license: "MIT"
1000
+ download location: "https://github.com/mcavage/node-assert-plus/releases"
1001
+ homepage: "https://github.com/mcavage/node-assert-plus"
1002
+ copyright text: "Copyright (c) 2012 Mark Cavage"
1003
+ node-chardet:
1004
+ - version: "0.8.0"
1005
+ license: "MIT"
1006
+ download location: "https://www.npmjs.com/package/chardet?activeTab=versions"
1007
+ homepage: "https://github.com/runk/node-chardet"
1008
+ copyright text: "Copyright (c) 2017 Dmitry Shirokov"
1009
+ - version: "0.7.0"
1010
+ license: "MIT"
1011
+ download location: "https://www.npmjs.com/package/chardet?activeTab=versions"
1012
+ homepage: "https://github.com/runk/node-chardet"
1013
+ copyright text: "Copyright (c) 2018 Dmitry Shirokov"
1014
+ node-clone:
1015
+ - version: "1.0.4"
1016
+ license: "MIT"
1017
+ download location: "https://github.com/pvorb/node-clone/releases/tag/v1.0.2"
1018
+ homepage: "https://github.com/pvorb/node-clone"
1019
+ copyright text: "Copyright (c) 2011-2015 Paul Vorbach <paul@vorba.ch>"
1020
+ node-combined-stream:
1021
+ - version: "1.0.8"
1022
+ license: "MIT"
1023
+ download location: "https://github.com/felixge/node-combined-stream/releases"
1024
+ homepage: "https://github.com/felixge/node-combined-stream"
1025
+ copyright text: "Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>"
1026
+ node-concat-map:
1027
+ - version: "0.0.1"
1028
+ license: "MIT"
1029
+ download location: "https://github.com/substack/node-concat-map"
1030
+ homepage: "https://github.com/substack/node-concat-map"
1031
+ node-cookie-signature:
1032
+ - version: "1.0.6"
1033
+ license: "MIT"
1034
+ download location: "https://github.com/tj/node-cookie-signature"
1035
+ homepage: "http://github.com/visionmedia/node-cookie-signature"
1036
+ copyright text: "Copyright (c) 2012 LearnBoost <tj@learnboost.com>"
1037
+ node-dashdash:
1038
+ - version: "1.14.1"
1039
+ license: "MIT"
1040
+ download location: "https://github.com/trentm/node-dashdash"
1041
+ homepage: "https://www.npmjs.org/dashdash"
1042
+ copyright text:
1043
+ - "Copyright (c) 2013 Trent Mick."
1044
+ - "Copyright (c) 2013 Joyent Inc."
1045
+ node-delayed-stream:
1046
+ - version: "1.0.0"
1047
+ license: "MIT"
1048
+ download location: "https://github.com/felixge/node-delayed-stream/releases"
1049
+ homepage: "https://github.com/felixge/node-delayed-stream"
1050
+ copyright text: "Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>"
1051
+ node-delegates:
1052
+ - version: "1.0.0"
1053
+ license: "MIT"
1054
+ download location: "https://github.com/visionmedia/node-delegates"
1055
+ homepage: "https://www.npmjs.org/delegates"
1056
+ copyright text: "Copyright (c) 2015 TJ Holowaychuk <tj@vision-media.ca>"
1057
+ node-extend:
1058
+ - version: "3.0.2"
1059
+ license: "MIT"
1060
+ download location: "https://www.npmjs.com/package/extend"
1061
+ homepage: "https://github.com/justmoon/node-extend"
1062
+ copyright text: "Copyright (c) 2014 Stefan Thomas"
1063
+ node-extsprintf:
1064
+ - version: "1.3.0"
1065
+ license: "MIT"
1066
+ download location: "https://github.com/davepacheco/node-extsprintf"
1067
+ homepage: "https://www.npmjs.org/extsprintf"
1068
+ copyright text: "Copyright (c) 2012, Joyent, Inc."
1069
+ node-fd-slicer:
1070
+ - version: "1.1.0"
1071
+ license: "MIT"
1072
+ download location: "https://github.com/andrewrk/node-fd-slicer/releases/tag/1.0.1"
1073
+ homepage: "https://github.com/andrewrk/node-fd-slicer"
1074
+ copyright text: "Copyright (c) 2014 Andrew Kelley"
1075
+ node-fs-extra:
1076
+ - version: "8.1.0"
1077
+ license: "MIT"
1078
+ download location: "https://github.com/jprichardson/node-fs-extra/releases/tag/0.18.4"
1079
+ homepage: "https://github.com/jprichardson/node-fs-extra"
1080
+ copyright text: "Copyright (c) 2011-2017 JP Richardson"
1081
+ node-getpass:
1082
+ - version: "0.1.7"
1083
+ license: "MIT"
1084
+ download location: "https://github.com/arekinath/node-getpass"
1085
+ homepage: "https://www.npmjs.org/getpass"
1086
+ copyright text: "Copyright (c) Joyent, Inc. "
1087
+ node-glob:
1088
+ - version: "7.2.3"
1089
+ license: "ISC"
1090
+ download location: "https://github.com/isaacs/node-glob/releases/tag/v5.0.15"
1091
+ homepage: "https://github.com/isaacs/node-glob"
1092
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1093
+ node-graceful-fs:
1094
+ - version: "4.2.4"
1095
+ license: "ISC"
1096
+ download location: "https://github.com/isaacs/node-graceful-fs/releases/tag/v2.0.2"
1097
+ homepage: "https://github.com/isaacs/node-graceful-fs"
1098
+ copyright text: "Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors"
1099
+ node-http-signature:
1100
+ - version: "1.2.0"
1101
+ license: "MIT"
1102
+ download location: "https://github.com/joyent/node-http-signature/releases"
1103
+ homepage: "https://github.com/joyent/node-http-signature"
1104
+ copyright text: "Copyright (c) Joyent, Inc."
1105
+ node-jsonfile:
1106
+ - version: "4.0.0"
1107
+ license: "MIT"
1108
+ download location: "https://github.com/jprichardson/node-jsonfile/releases/tag/2.3.1"
1109
+ homepage: "https://github.com/jprichardson/node-jsonfile"
1110
+ copyright text: "Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>"
1111
+ node-jsprim:
1112
+ - version: "1.4.2"
1113
+ license: "MIT"
1114
+ download location: "https://github.com/joyent/node-jsprim"
1115
+ homepage: "https://www.npmjs.org/jsprim"
1116
+ copyright text: "Copyright (c) 2012, Joyent, Inc."
1117
+ node-mime:
1118
+ - version: "1.6.0"
1119
+ license: "MIT"
1120
+ download location: "https://github.com/broofa/node-mime/releases"
1121
+ homepage: "http://github.com/broofa/node-mime"
1122
+ copyright text: "Copyright (c) 2010, Benjamin Thomas, Robert Kieffer"
1123
+ node-mkdirp:
1124
+ - version: "1.0.4"
1125
+ license: "MIT"
1126
+ download location: "https://github.com/substack/node-mkdirp"
1127
+ homepage: "https://github.com/substack/node-mkdirp"
1128
+ copyright text: "Copyright (c) James Halliday (mail@substack.net) and Isaac Z. Schlueter\
1129
+ \ (i@izs.me)"
1130
+ - version: "0.5.5"
1131
+ license: "MIT"
1132
+ download location: "https://github.com/substack/node-mkdirp"
1133
+ homepage: "https://github.com/substack/node-mkdirp"
1134
+ copyright text: "Copyright (c) 2010 James Halliday (mail@substack.net)"
1135
+ node-pend:
1136
+ - version: "1.2.0"
1137
+ license: "MIT"
1138
+ download location: "https://github.com/andrewrk/node-pend"
1139
+ homepage: "https://github.com/andrewrk/node-pend"
1140
+ copyright text: "Copyright (c) 2014 Andrew Kelley"
1141
+ node-rechoir:
1142
+ - version: "0.6.2"
1143
+ license: "MIT"
1144
+ download location: "https://github.com/gulpjs/rechoir"
1145
+ homepage: "https://github.com/gulpjs/rechoir"
1146
+ copyright text: "Copyright (c) 2015 Tyler Kellen"
1147
+ node-semver:
1148
+ - version: "7.3.2"
1149
+ license: "ISC"
1150
+ download location: "https://github.com/npm/node-semver/releases/tag/v2.1.0"
1151
+ homepage: "https://github.com/npm/node-semver"
1152
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1153
+ node-source-map-support:
1154
+ - version: "0.5.21"
1155
+ license: "MIT"
1156
+ download location: "https://github.com/evanw/node-source-map-support"
1157
+ homepage: "https://www.npmjs.org/source-map-support"
1158
+ copyright text: "Copyright (c) 2014 Evan Wallace"
1159
+ node-sshpk:
1160
+ - version: "1.18.0"
1161
+ license: "MIT"
1162
+ download location: "https://github.com/arekinath/node-sshpk"
1163
+ homepage: "https://www.npmjs.org/sshpk"
1164
+ copyright text: "Copyright Joyent, Inc."
1165
+ node-stream-buffers:
1166
+ - version: "3.0.2"
1167
+ license: "Unlicense"
1168
+ download location: "https://github.com/samcday/node-stream-buffer/releases/tag/v0.2.6"
1169
+ homepage: "https://github.com/samcday/node-stream-buffer"
1170
+ node-supports-preserve-symlinks-flag:
1171
+ - version: "1.0.0"
1172
+ license: "MIT"
1173
+ download location: "https://github.com/inspect-js/node-supports-preserve-symlinks-flag"
1174
+ homepage: "https://github.com/inspect-js/node-supports-preserve-symlinks-flag"
1175
+ copyright text: "Copyright (c) 2022 Inspect JS"
1176
+ node-tar:
1177
+ - version: "6.2.0"
1178
+ license: "ISC"
1179
+ download location: "https://github.com/npm/node-tar/releases/tag/v1.0.2"
1180
+ homepage: "https://github.com/isaacs/node-tar"
1181
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1182
+ node-temp:
1183
+ - version: "0.9.1"
1184
+ license: "MIT"
1185
+ download location: "https://github.com/bruce/node-temp/releases"
1186
+ homepage: "https://github.com/bruce/node-temp"
1187
+ copyright text: "Copyright (c) 2010-2014 Bruce Williams"
1188
+ node-tmp:
1189
+ - version: "0.0.33"
1190
+ license: "MIT"
1191
+ download location: "https://github.com/raszi/node-tmp/releases"
1192
+ homepage: "https://github.com/raszi/node-tmp"
1193
+ copyright text: "Copyright (c) 2014 KARASZI István"
1194
+ node-uuid:
1195
+ - version: "3.4.0"
1196
+ license: "MIT"
1197
+ download location: "https://github.com/broofa/node-uuid/releases"
1198
+ homepage: "https://github.com/broofa/node-uuid"
1199
+ copyright text: "Copyright (c) 2010-2016 Robert Kieffer and other contributors"
1200
+ node-verror:
1201
+ - version: "1.10.0"
1202
+ license: "MIT"
1203
+ download location: "https://github.com/davepacheco/node-verror"
1204
+ homepage: "https://www.npmjs.org/verror"
1205
+ copyright text: "Copyright (c) 2016, Joyent, Inc. "
1206
+ nodejs-depd:
1207
+ - version: "1.1.2"
1208
+ license: "MIT"
1209
+ download location: "https://github.com/dougwilson/nodejs-depd/releases/tag/v0.3.0"
1210
+ homepage: "https://github.com/dougwilson/nodejs-depd"
1211
+ copyright text: "Copyright (c) 2014-2017 Douglas Christopher Wilson"
1212
+ nopt:
1213
+ - version: "2.1.2"
1214
+ license: "MIT"
1215
+ download location: "https://github.com/npm/nopt/releases/tag/v3.0.6"
1216
+ homepage: "https://github.com/npm/nopt"
1217
+ copyright text: "Copyright (c) 2009, 2010, 2011 Isaac Z. Schlueter."
1218
+ normalize-path:
1219
+ - version: "3.0.0"
1220
+ license: "MIT"
1221
+ download location: "https://github.com/jonschlinkert/normalize-path"
1222
+ homepage: "https://github.com/jonschlinkert/normalize-path"
1223
+ copyright text: "Copyright (c) 2014-2018, Jon Schlinkert."
1224
+ npmlog:
1225
+ - version: "4.1.2"
1226
+ license: "ISC"
1227
+ download location: "https://github.com/npm/npmlog/releases"
1228
+ homepage: "https://github.com/npm/npmlog"
1229
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1230
+ number-is-nan:
1231
+ - version: "1.0.1"
1232
+ license: "MIT"
1233
+ download location: "https://github.com/sindresorhus/number-is-nan"
1234
+ homepage: "https://www.npmjs.org/number-is-nan"
1235
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1236
+ oauth-sign:
1237
+ - version: "0.9.0"
1238
+ license: "Apache-2.0"
1239
+ download location: "https://github.com/request/oauth-sign/releases"
1240
+ homepage: "https://github.com/request/oauth-sign"
1241
+ copyright text: "Copyright (c) Mikeal Rogers <mikeal.rogers@gmail.com>"
1242
+ object-assign:
1243
+ - version: "4.1.1"
1244
+ license: "MIT"
1245
+ download location: "https://github.com/sindresorhus/object-assign/releases/tag/v4.1.0"
1246
+ homepage: "https://github.com/sindresorhus/object-assign"
1247
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1248
+ on-finished:
1249
+ - version: "2.3.0"
1250
+ license: "MIT"
1251
+ download location: "https://github.com/jshttp/on-finished/releases"
1252
+ homepage: "https://github.com/jshttp/on-finished"
1253
+ copyright text:
1254
+ - "Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>"
1255
+ - "Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>"
1256
+ once:
1257
+ - version: "1.4.0"
1258
+ license: "ISC"
1259
+ download location: "https://github.com/isaacs/once/releases/tag/v1.3.3"
1260
+ homepage: "https://github.com/isaacs/once"
1261
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1262
+ onetime:
1263
+ - version: "5.1.2"
1264
+ license: "MIT"
1265
+ download location: "https://github.com/sindresorhus/onetime/tree/v1.1.0"
1266
+ homepage: "https://github.com/sindresorhus/onetime"
1267
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
1268
+ ora:
1269
+ - version: "5.4.0"
1270
+ license: "MIT"
1271
+ download location: "https://github.com/sindresorhus/ora"
1272
+ homepage: "https://github.com/sindresorhus/ora"
1273
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
1274
+ os-tmpdir:
1275
+ - version: "1.0.2"
1276
+ license: "MIT"
1277
+ download location: "https://github.com/sindresorhus/os-tmpdir/releases/tag/1.0.1"
1278
+ homepage: "https://github.com/sindresorhus/os-tmpdir"
1279
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1280
+ parseurl:
1281
+ - version: "1.3.3"
1282
+ license: "MIT"
1283
+ download location: "https://github.com/pillarjs/parseurl/releases/tag/1.3.1"
1284
+ homepage: "https://github.com/pillarjs/parseurl"
1285
+ copyright text:
1286
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
1287
+ - "Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>"
1288
+ path-is-absolute:
1289
+ - version: "1.0.1"
1290
+ license: "MIT"
1291
+ download location: "https://github.com/sindresorhus/path-is-absolute/releases/tag/v1.0.0"
1292
+ homepage: "https://github.com/sindresorhus/path-is-absolute"
1293
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1294
+ path-parse:
1295
+ - version: "1.0.7"
1296
+ license: "MIT"
1297
+ download location: "https://www.npmjs.com/package/path-parse"
1298
+ homepage: "https://github.com/jbgutierrez/path-parse"
1299
+ copyright text: "Copyright (c) 2015 Javier Blanco"
1300
+ path-to-regexp:
1301
+ - version: "0.1.7"
1302
+ license: "MIT"
1303
+ download location: "https://github.com/component/path-to-regexp"
1304
+ homepage: "https://github.com/component/path-to-regexp"
1305
+ copyright text: "Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)"
1306
+ performance-now:
1307
+ - version: "2.1.0"
1308
+ license: "MIT"
1309
+ download location: "https://github.com/braveg1rl/performance-now"
1310
+ homepage: "https://www.npmjs.org/performance-now"
1311
+ copyright text: "Copyright (c) 2013 Braveg1rl"
1312
+ picomatch:
1313
+ - version: "2.3.1"
1314
+ license: "MIT"
1315
+ download location: "https://github.com/micromatch/picomatch"
1316
+ homepage: "https://github.com/micromatch/picomatch"
1317
+ copyright text: "Copyright (c) 2017-present, Jon Schlinkert"
1318
+ pify:
1319
+ - version: "3.0.0"
1320
+ license: "MIT"
1321
+ download location: "https://github.com/sindresorhus/pify"
1322
+ homepage: "https://www.npmjs.org/pify"
1323
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1324
+ - version: "2.3.0"
1325
+ license: "MIT"
1326
+ download location: "https://github.com/sindresorhus/pify"
1327
+ homepage: "https://www.npmjs.org/pify"
1328
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1329
+ pinkie:
1330
+ - version: "2.0.4"
1331
+ license: "MIT"
1332
+ download location: "https://github.com/floatdrop/pinkie"
1333
+ homepage: "https://www.npmjs.org/pinkie"
1334
+ copyright text: "Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)"
1335
+ pinkie-promise:
1336
+ - version: "2.0.1"
1337
+ license: "MIT"
1338
+ download location: "https://github.com/floatdrop/pinkie-promise"
1339
+ homepage: "https://www.npmjs.org/pinkie-promise"
1340
+ copyright text: "Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)"
1341
+ process-nextick-args:
1342
+ - version: "2.0.1"
1343
+ license: "MIT"
1344
+ download location: "https://github.com/calvinmetcalf/process-nextick-args/tree/v1.0.6"
1345
+ homepage: "https://github.com/calvinmetcalf/process-nextick-args"
1346
+ copyright text: "Copyright (c) 2015 Calvin Metcalf"
1347
+ proxy-addr:
1348
+ - version: "2.0.7"
1349
+ license: "MIT"
1350
+ download location: "https://github.com/jshttp/proxy-addr/tree/v1.1.2"
1351
+ homepage: "https://github.com/jshttp/proxy-addr"
1352
+ copyright text: "Copyright (c) 2014-2016 Douglas Christopher Wilson"
1353
+ psl:
1354
+ - version: "1.9.0"
1355
+ license: "MIT"
1356
+ download location: "https://github.com/wrangr/psl/tree/v1.1.29"
1357
+ homepage: "https://github.com/wrangr/psl"
1358
+ copyright text: "Copyright (c) 2017 Lupo Montero lupomontero@gmail.com"
1359
+ qs:
1360
+ - version: "6.7.0"
1361
+ license: "BSD-3-Clause"
1362
+ download location: "https://github.com/ljharb/qs/tree/v6.2.0"
1363
+ homepage: "https://www.npmjs.com/package/qs"
1364
+ copyright text: "Copyright (c) 2014 Nathan LaFreniere and other contributors."
1365
+ - version: "6.5.3"
1366
+ license: "BSD-3-Clause"
1367
+ download location: "https://github.com/ljharb/qs/tree/v6.2.0"
1368
+ homepage: "https://www.npmjs.com/package/qs"
1369
+ copyright text: "Copyright (c) 2014, Nathan LaFreniere and other contributors (https://github.com/ljharb/qs/graphs/contributors)"
1370
+ range-parser:
1371
+ - version: "1.2.1"
1372
+ license: "MIT"
1373
+ download location: "https://github.com/jshttp/range-parser"
1374
+ homepage: "http://github.com/jshttp/range-parser"
1375
+ copyright text:
1376
+ - "Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>"
1377
+ - "Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com"
1378
+ raw-body:
1379
+ - version: "2.4.0"
1380
+ license: "MIT"
1381
+ download location: "https://github.com/stream-utils/raw-body"
1382
+ homepage: "https://github.com/stream-utils/raw-body"
1383
+ copyright text:
1384
+ - "Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>"
1385
+ - "Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
1386
+ readable-stream:
1387
+ - version: "3.6.2"
1388
+ license: "MIT"
1389
+ download location: "https://github.com/nodejs/readable-stream/tree/v2.0.6"
1390
+ homepage: "https://github.com/nodejs/readable-stream"
1391
+ copyright text: "Copyright Joyent, Inc. and other Node contributors"
1392
+ - version: "2.3.8"
1393
+ license: "MIT"
1394
+ download location: "https://github.com/nodejs/readable-stream/tree/v2.0.6"
1395
+ homepage: "https://github.com/nodejs/readable-stream"
1396
+ copyright text: "Copyright Joyent, Inc. and other Node contributors"
1397
+ readdirp:
1398
+ - version: "3.6.0"
1399
+ license: "MIT"
1400
+ download location: "https://github.com/thlorenz/readdirp/tree/v2.1.0"
1401
+ homepage: "https://github.com/thlorenz/readdirp"
1402
+ copyright text: "Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)"
1403
+ request:
1404
+ - version: "2.88.2"
1405
+ license: "Apache-2.0"
1406
+ download location: "https://github.com/request/request"
1407
+ homepage: "https://github.com/mikeal/request"
1408
+ copyright text: "Copyright (c) 2010-2012 Mikeal Rogers"
1409
+ resolve:
1410
+ - version: "1.22.8"
1411
+ license: "MIT"
1412
+ download location: "https://www.npmjs.com/package/resolve"
1413
+ homepage: "https://github.com/browserify/resolve"
1414
+ copyright text: "Copyright (c) 2012 James Halliday"
1415
+ restore-cursor:
1416
+ - version: "3.1.0"
1417
+ license: "MIT"
1418
+ download location: "https://github.com/sindresorhus/restore-cursor/tree/v1.0.1"
1419
+ homepage: "https://github.com/sindresorhus/restore-cursor"
1420
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1421
+ rimraf:
1422
+ - version: "3.0.2"
1423
+ license: "ISC"
1424
+ download location: "https://github.com/isaacs/rimraf/tree/v2.2.8"
1425
+ homepage: "https://github.com/isaacs/rimraf"
1426
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1427
+ - version: "2.7.1"
1428
+ license: "ISC"
1429
+ download location: "https://github.com/isaacs/rimraf/tree/v2.2.8"
1430
+ homepage: "https://github.com/isaacs/rimraf"
1431
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1432
+ - version: "2.6.3"
1433
+ license: "ISC"
1434
+ download location: "https://github.com/isaacs/rimraf/tree/v2.2.8"
1435
+ homepage: "https://github.com/isaacs/rimraf"
1436
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1437
+ run-async:
1438
+ - version: "2.4.1"
1439
+ license: "MIT"
1440
+ download location: "https://github.com/SBoudrias/run-async/tree/0.1.0"
1441
+ homepage: "https://github.com/SBoudrias/run-async"
1442
+ copyright text: "Copyright (c) 2014 Simon Boudrias"
1443
+ safe-buffer:
1444
+ - version: "5.1.2"
1445
+ license: "MIT"
1446
+ download location: "https://www.npmjs.com/package/safe-buffer"
1447
+ homepage: "https://github.com/feross/safe-buffer"
1448
+ copyright text: "Copyright (c) Feross Aboukhadijeh"
1449
+ safer-buffer:
1450
+ - version: "2.1.2"
1451
+ license: "MIT"
1452
+ download location: "https://github.com/ChALkeR/safer-buffer"
1453
+ homepage: "https://github.com/ChALkeR/safer-buffer"
1454
+ copyright text: "Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>"
1455
+ seek-bzip:
1456
+ - version: "1.0.6"
1457
+ license: "MIT"
1458
+ download location: "https://github.com/cscott/seek-bzip"
1459
+ homepage: "https://github.com/cscott/seek-bzip"
1460
+ copyright text:
1461
+ - "Copyright (c) 2013-2015 C. Scott Ananian"
1462
+ - "Copyright (c) 2011 Kevin Kwok"
1463
+ - "Copyright (c) 2012-2015 Eli Skeggs"
1464
+ send:
1465
+ - version: "0.17.1"
1466
+ license: "MIT"
1467
+ download location: "https://github.com/pillarjs/send"
1468
+ homepage: "http://github.com/visionmedia/send"
1469
+ copyright text:
1470
+ - "Copyright (c) 2012 TJ Holowaychuk"
1471
+ - "Copyright (c) 2014-2016 Douglas Christopher Wilson"
1472
+ serve-static:
1473
+ - version: "1.14.1"
1474
+ license: "MIT"
1475
+ download location: "https://github.com/expressjs/serve-static"
1476
+ homepage: "https://github.com/expressjs/serve-static"
1477
+ copyright text:
1478
+ - "Copyright (c) 2010 Sencha Inc."
1479
+ - "Copyright (c) 2011 LearnBoost"
1480
+ - "Copyright (c) 2011 TJ Holowaychuk"
1481
+ - "Copyright (c) 2014-2016 Douglas Christopher Wilson"
1482
+ set-blocking:
1483
+ - version: "2.0.0"
1484
+ license: "ISC"
1485
+ download location: "https://github.com/yargs/set-blocking"
1486
+ homepage: "https://www.npmjs.org/set-blocking"
1487
+ copyright text: "Copyright (c) 2016, Contributors"
1488
+ shelljs:
1489
+ - version: "0.8.5"
1490
+ license: "BSD-3-Clause"
1491
+ download location: "https://www.npmjs.com/package/shelljs"
1492
+ homepage: "https://www.npmjs.com/package/shelljs"
1493
+ copyright text: "Copyright (c) 2012, Artur Adib <aadib@mozilla.com>"
1494
+ signal-exit:
1495
+ - version: "3.0.7"
1496
+ license: "ISC"
1497
+ download location: "https://github.com/tapjs/signal-exit"
1498
+ homepage: "https://www.npmjs.org/signal-exit"
1499
+ copyright text: "Copyright (c) 2015, Contributors"
1500
+ source-map:
1501
+ - version: "0.6.1"
1502
+ license: "BSD-3-Clause"
1503
+ download location: "https://github.com/mozilla/source-map"
1504
+ homepage: "https://github.com/mozilla/source-map"
1505
+ copyright text: "Copyright (c) 2009-2011, Mozilla Foundation and contributors"
1506
+ sprintf-js:
1507
+ - version: "1.1.2"
1508
+ license: "BSD-3-Clause"
1509
+ download location: "https://github.com/alexei/sprintf.js"
1510
+ homepage: "https://github.com/alexei/sprintf.js"
1511
+ copyright text: "Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>"
1512
+ ssdp-js:
1513
+ - version: "1.0.1"
1514
+ license: "MIT"
1515
+ download location: "https://github.com/Ivshti/node-ssdp-js"
1516
+ homepage: "https://github.com/Ivshti/node-ssdp-js"
1517
+ ssh2:
1518
+ - version: "1.15.0"
1519
+ license: "MIT"
1520
+ download location: "https://github.com/mscdex/ssh2"
1521
+ homepage: "https://github.com/mscdex/ssh2"
1522
+ copyright text: "Copyright Brian White"
1523
+ statuses:
1524
+ - version: "1.5.0"
1525
+ license: "MIT"
1526
+ download location: "https://github.com/jshttp/statuses"
1527
+ homepage: "https://github.com/jshttp/statuses"
1528
+ copyright text:
1529
+ - "Copyright (c) 2014 Jonathan Ong me@jongleberry.com"
1530
+ - "Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com"
1531
+ string-width:
1532
+ - version: "4.2.3"
1533
+ license: "MIT"
1534
+ download location: "https://github.com/sindresorhus/string-width"
1535
+ homepage: "https://www.npmjs.org/string-width"
1536
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1537
+ - version: "1.0.2"
1538
+ license: "MIT"
1539
+ download location: "https://github.com/sindresorhus/string-width"
1540
+ homepage: "https://www.npmjs.org/string-width"
1541
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1542
+ string_decoder:
1543
+ - version: "1.1.1"
1544
+ license: "MIT"
1545
+ download location: "https://github.com/nodejs/string_decoder"
1546
+ homepage: "https://github.com/rvagg/string_decoder"
1547
+ copyright text:
1548
+ - "Copyright (c) Node.js contributors."
1549
+ - "Copyright (c) Joyent, Inc. and other Node contributors."
1550
+ strip-ansi:
1551
+ - version: "6.0.1"
1552
+ license: "MIT"
1553
+ download location: "https://github.com/chalk/strip-ansi"
1554
+ homepage: "https://github.com/sindresorhus/strip-ansi"
1555
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1556
+ - version: "5.2.0"
1557
+ license: "MIT"
1558
+ download location: "https://github.com/chalk/strip-ansi"
1559
+ homepage: "https://github.com/sindresorhus/strip-ansi"
1560
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1561
+ - version: "3.0.1"
1562
+ license: "MIT"
1563
+ download location: "https://github.com/chalk/strip-ansi"
1564
+ homepage: "https://github.com/sindresorhus/strip-ansi"
1565
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1566
+ strip-bom:
1567
+ - version: "1.0.0"
1568
+ license: "MIT"
1569
+ download location: "https://github.com/sindresorhus/strip-bom"
1570
+ homepage: "https://github.com/sindresorhus/strip-bom"
1571
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1572
+ strip-dirs:
1573
+ - version: "2.1.0"
1574
+ license: "MIT"
1575
+ download location: "https://github.com/shinnn/node-strip-dirs"
1576
+ homepage: "https://github.com/shinnn/node-strip-dirs"
1577
+ copyright text: "Copyright (c) Shinnosuke Watanabe https://github.com/shinnn/node-strip-dirs"
1578
+ supports-color:
1579
+ - version: "7.2.0"
1580
+ license: "MIT"
1581
+ download location: "https://github.com/chalk/supports-color"
1582
+ homepage: "https://github.com/sindresorhus/supports-color"
1583
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)"
1584
+ - version: "5.5.0"
1585
+ license: "MIT"
1586
+ download location: "https://github.com/chalk/supports-color"
1587
+ homepage: "https://github.com/sindresorhus/supports-color"
1588
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1589
+ - version: "2.0.0"
1590
+ license: "MIT"
1591
+ download location: "https://github.com/chalk/supports-color"
1592
+ homepage: "https://github.com/sindresorhus/supports-color"
1593
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
1594
+ tar-stream:
1595
+ - version: "1.6.2"
1596
+ license: "MIT"
1597
+ download location: "https://github.com/mafintosh/tar-stream"
1598
+ homepage: "https://github.com/mafintosh/tar-stream"
1599
+ copyright text: "Copyright (c) 2014 Mathias Buus"
1600
+ tdegrunt-jsonschema:
1601
+ - version: "1.2.6"
1602
+ license: "MIT"
1603
+ download location: "https://github.com/tdegrunt/jsonschema"
1604
+ homepage: "https://github.com/tdegrunt/jsonschema"
1605
+ copyright text: "Copyright (c) 2012-2015 Tom de Grunt <tom@degrunt.nl>"
1606
+ terser:
1607
+ - version: "4.8.0"
1608
+ license: "BSD-2-Clause"
1609
+ download location: "https://github.com/terser-js/terser"
1610
+ homepage: "https://github.com/terser-js/terser"
1611
+ copyright text: "Copyright (c) 2012-2018 Mihai Bazon <mihai.bazon@gmail.com>"
1612
+ through:
1613
+ - version: "2.3.8"
1614
+ license: "MIT"
1615
+ download location: "https://github.com/dominictarr/through"
1616
+ homepage: "https://github.com/dominictarr/through"
1617
+ copyright text: "Copyright (c) 2011 Dominic Tarr"
1618
+ timoxley-wcwidth:
1619
+ - version: "1.0.1"
1620
+ license: "MIT"
1621
+ download location: "https://www.npmjs.com/package/wcwidth"
1622
+ homepage: "https://github.com/timoxley/wcwidth"
1623
+ copyright text: "Copyright (c) 2012 by Jun Woong."
1624
+ to-buffer:
1625
+ - version: "1.1.1"
1626
+ license: "MIT"
1627
+ download location: "https://github.com/mafintosh/to-buffer"
1628
+ homepage: "https://www.npmjs.org/package/to-buffer"
1629
+ copyright text: "Copyright (c) 2016 Mathias Buus"
1630
+ to-regex-range:
1631
+ - version: "5.0.1"
1632
+ license: "MIT"
1633
+ download location: "https://github.com/micromatch/to-regex-range"
1634
+ homepage: "https://github.com/micromatch/to-regex-range"
1635
+ copyright text: "Copyright (c) 2015-present, Jon Schlinkert."
1636
+ toidentifier:
1637
+ - version: "1.0.0"
1638
+ license: "MIT"
1639
+ download location: "https://github.com/component/toidentifier"
1640
+ homepage: "https://github.com/component/toidentifier"
1641
+ copyright text: "Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>"
1642
+ tough-cookie:
1643
+ - version: "2.5.0"
1644
+ license: "BSD-3-Clause"
1645
+ download location: "https://github.com/salesforce/tough-cookie"
1646
+ homepage: "https://github.com/salesforce/tough-cookie"
1647
+ copyright text: "Copyright (c) 2015, Salesforce.com, Inc."
1648
+ tunnel-agent:
1649
+ - version: "0.6.0"
1650
+ license: "Apache-2.0"
1651
+ download location: "https://github.com/request/tunnel-agent"
1652
+ homepage: "https://github.com/request/tunnel-agent"
1653
+ copyright text: "Copyright (c) Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.futurealoof.com)"
1654
+ tweetnacl-js:
1655
+ - version: "0.14.5"
1656
+ license: "Unlicense"
1657
+ download location: "https://github.com/dchest/tweetnacl-js"
1658
+ homepage: "https://www.npmjs.org/tweetnacl"
1659
+ type-fest:
1660
+ - version: "0.21.3"
1661
+ license: "MIT"
1662
+ download location: "https://github.com/sindresorhus/type-fest"
1663
+ homepage: "https://github.com/sindresorhus/type-fest"
1664
+ copyright text: "Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https:/sindresorhus.com)"
1665
+ type-is:
1666
+ - version: "1.6.18"
1667
+ license: "MIT"
1668
+ download location: "https://github.com/jshttp/type-is"
1669
+ homepage: "https://github.com/jshttp/type-is"
1670
+ copyright text:
1671
+ - "Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>"
1672
+ - "Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
1673
+ typedarray:
1674
+ - version: "0.0.6"
1675
+ license: "MIT"
1676
+ download location: "https://github.com/substack/typedarray"
1677
+ homepage: "https://github.com/substack/typedarray"
1678
+ copyright text:
1679
+ - "Copyright (c) 2010, Linden Research, Inc."
1680
+ - "Copyright (c) 2012, Joshua Bell"
1681
+ unbzip2-stream:
1682
+ - version: "1.4.3"
1683
+ license: "MIT"
1684
+ download location: "https://github.com/regular/unbzip2-stream"
1685
+ homepage: "https://github.com/regular/unbzip2-stream"
1686
+ copyright text: "Copyright (c) 2017 by Jan Boelsche (jan@lagomorph.de)"
1687
+ universalify:
1688
+ - version: "0.1.2"
1689
+ license: "MIT"
1690
+ download location: "https://github.com/RyanZim/universalify/tree/v0.1.2"
1691
+ homepage: "https://github.com/RyanZim/universalify"
1692
+ copyright text: "Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>"
1693
+ unpipe:
1694
+ - version: "1.0.0"
1695
+ license: "MIT"
1696
+ download location: "https://github.com/stream-utils/unpipe"
1697
+ homepage: "https://github.com/stream-utils/unpipe"
1698
+ copyright text: "Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>"
1699
+ uri-js:
1700
+ - version: "4.4.1"
1701
+ license: "BSD-2-Clause-Views"
1702
+ download location: "https://github.com/garycourt/uri-js/tree/4.2.2"
1703
+ homepage: "https://github.com/garycourt/uri-js"
1704
+ copyright text: "Copyright (c) 2011 Gary Court"
1705
+ util-deprecate:
1706
+ - version: "1.0.2"
1707
+ license: "MIT"
1708
+ download location: "https://github.com/TooTallNate/util-deprecate"
1709
+ homepage: "https://github.com/TooTallNate/util-deprecate"
1710
+ copyright text: "Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>"
1711
+ utils-merge:
1712
+ - version: "1.0.1"
1713
+ license: "MIT"
1714
+ download location: "https://github.com/jaredhanson/utils-merge"
1715
+ homepage: "https://github.com/jaredhanson/utils-merge"
1716
+ copyright text: "Copyright (c) 2013 Jared Hanson"
1717
+ vary:
1718
+ - version: "1.1.2"
1719
+ license: "MIT"
1720
+ download location: "https://github.com/jshttp/vary"
1721
+ homepage: "https://github.com/jshttp/vary"
1722
+ copyright text: "Copyright (c) 2014-2017 Douglas Christopher Wilson"
1723
+ visionmedia-debug:
1724
+ - version: "2.6.9"
1725
+ license: "MIT"
1726
+ download location: "https://github.com/visionmedia/debug"
1727
+ homepage: "https://github.com/visionmedia/debug"
1728
+ copyright text: "Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>"
1729
+ wide-align:
1730
+ - version: "1.1.5"
1731
+ license: "ISC"
1732
+ download location: "https://github.com/iarna/wide-align"
1733
+ homepage: "https://www.npmjs.org/wide-align"
1734
+ copyright text: "Copyright (c) 2015, Rebecca Turner <me@re-becca.org>"
1735
+ wrappy:
1736
+ - version: "1.0.2"
1737
+ license: "ISC"
1738
+ download location: "https://github.com/npm/wrappy"
1739
+ homepage: "https://github.com/npm/wrappy"
1740
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1741
+ xtend:
1742
+ - version: "4.0.2"
1743
+ license: "MIT"
1744
+ download location: "https://github.com/Raynos/xtend"
1745
+ homepage: "https://github.com/Raynos/xtend"
1746
+ copyright text: "Copyright (c) 2012-2014 Raynos."
1747
+ yallist:
1748
+ - version: "4.0.0"
1749
+ license: "ISC"
1750
+ download location: "https://www.npmjs.com/package/yallist"
1751
+ homepage: "https://github.com/isaacs/yallist"
1752
+ copyright text: "Copyright (c) Isaac Z. Schlueter and Contributors"
1753
+ yauzl:
1754
+ - version: "2.10.0"
1755
+ license: "MIT"
1756
+ download location: "https://github.com/thejoshwolfe/yauzl"
1757
+ homepage: "https://github.com/thejoshwolfe/yauzl"
1758
+ copyright text: "Copyright (c) 2014 Josh Wolfe"