Guest User

Untitled

a guest
Mar 25th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.58 KB | None | 0 0
  1. .
  2. ├── CordovaLib
  3. │   ├── Classes
  4. │   │   ├── Private
  5. │   │   │   ├── CDVDebug.h
  6. │   │   │   ├── CDVJSON_private.h
  7. │   │   │   ├── CDVJSON_private.m
  8. │   │   │   ├── CDVPlugin+Private.h
  9. │   │   │   └── Plugins
  10. │   │   │   ├── CDVGestureHandler
  11. │   │   │   │   ├── CDVGestureHandler.h
  12. │   │   │   │   └── CDVGestureHandler.m
  13. │   │   │   ├── CDVHandleOpenURL
  14. │   │   │   │   ├── CDVHandleOpenURL.h
  15. │   │   │   │   └── CDVHandleOpenURL.m
  16. │   │   │   ├── CDVIntentAndNavigationFilter
  17. │   │   │   │   ├── CDVIntentAndNavigationFilter.h
  18. │   │   │   │   └── CDVIntentAndNavigationFilter.m
  19. │   │   │   ├── CDVLocalStorage
  20. │   │   │   │   ├── CDVLocalStorage.h
  21. │   │   │   │   └── CDVLocalStorage.m
  22. │   │   │   ├── CDVLogger
  23. │   │   │   │   ├── CDVLogger.h
  24. │   │   │   │   └── CDVLogger.m
  25. │   │   │   └── CDVUIWebViewEngine
  26. │   │   │   ├── CDVUIWebViewDelegate.h
  27. │   │   │   ├── CDVUIWebViewDelegate.m
  28. │   │   │   ├── CDVUIWebViewEngine.h
  29. │   │   │   ├── CDVUIWebViewEngine.m
  30. │   │   │   ├── CDVUIWebViewNavigationDelegate.h
  31. │   │   │   └── CDVUIWebViewNavigationDelegate.m
  32. │   │   └── Public
  33. │   │   ├── CDV.h
  34. │   │   ├── CDVAppDelegate.h
  35. │   │   ├── CDVAppDelegate.m
  36. │   │   ├── CDVAvailability.h
  37. │   │   ├── CDVAvailabilityDeprecated.h
  38. │   │   ├── CDVCommandDelegate.h
  39. │   │   ├── CDVCommandDelegateImpl.h
  40. │   │   ├── CDVCommandDelegateImpl.m
  41. │   │   ├── CDVCommandQueue.h
  42. │   │   ├── CDVCommandQueue.m
  43. │   │   ├── CDVConfigParser.h
  44. │   │   ├── CDVConfigParser.m
  45. │   │   ├── CDVInvokedUrlCommand.h
  46. │   │   ├── CDVInvokedUrlCommand.m
  47. │   │   ├── CDVPlugin+Resources.h
  48. │   │   ├── CDVPlugin+Resources.m
  49. │   │   ├── CDVPlugin.h
  50. │   │   ├── CDVPlugin.m
  51. │   │   ├── CDVPluginResult.h
  52. │   │   ├── CDVPluginResult.m
  53. │   │   ├── CDVScreenOrientationDelegate.h
  54. │   │   ├── CDVTimer.h
  55. │   │   ├── CDVTimer.m
  56. │   │   ├── CDVURLProtocol.h
  57. │   │   ├── CDVURLProtocol.m
  58. │   │   ├── CDVUserAgentUtil.h
  59. │   │   ├── CDVUserAgentUtil.m
  60. │   │   ├── CDVViewController.h
  61. │   │   ├── CDVViewController.m
  62. │   │   ├── CDVWebViewEngineProtocol.h
  63. │   │   ├── CDVWhitelist.h
  64. │   │   ├── CDVWhitelist.m
  65. │   │   ├── NSDictionary+CordovaPreferences.h
  66. │   │   ├── NSDictionary+CordovaPreferences.m
  67. │   │   ├── NSMutableArray+QueueAdditions.h
  68. │   │   └── NSMutableArray+QueueAdditions.m
  69. │   ├── CordovaLib.xcodeproj
  70. │   │   ├── project.pbxproj
  71. │   │   └── xcuserdata
  72. │   │   └── manu.xcuserdatad
  73. │   │   └── xcschemes
  74. │   │   └── xcschememanagement.plist
  75. │   ├── CordovaLib_Prefix.pch
  76. │   ├── VERSION
  77. │   └── cordova.js
  78. ├── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA
  79. │   ├── Bridging-Header.h
  80. │   ├── CDVLaunchScreen.storyboard
  81. │   ├── Classes
  82. │   │   ├── AppDelegate.h
  83. │   │   ├── AppDelegate.m
  84. │   │   ├── MainViewController.h
  85. │   │   ├── MainViewController.m
  86. │   │   └── MainViewController.xib
  87. │   ├── Entitlements-Debug.plist
  88. │   ├── Entitlements-Release.plist
  89. │   ├── Images.xcassets
  90. │   │   ├── AppIcon.appiconset
  91. │   │   │   ├── AppIcon24x24@2x.png
  92. │   │   │   ├── AppIcon27.5x27.5@2x.png
  93. │   │   │   ├── AppIcon29x29@2x.png
  94. │   │   │   ├── AppIcon29x29@3x.png
  95. │   │   │   ├── AppIcon40x40@2x.png
  96. │   │   │   ├── AppIcon44x44@2x.png
  97. │   │   │   ├── AppIcon86x86@2x.png
  98. │   │   │   ├── AppIcon98x98@2x.png
  99. │   │   │   ├── Contents.json
  100. │   │   │   ├── icon-1024.png
  101. │   │   │   ├── icon-20.png
  102. │   │   │   ├── icon-20@2x.png
  103. │   │   │   ├── icon-20@3x.png
  104. │   │   │   ├── icon-40.png
  105. │   │   │   ├── icon-40@2x.png
  106. │   │   │   ├── icon-50.png
  107. │   │   │   ├── icon-50@2x.png
  108. │   │   │   ├── icon-60@2x.png
  109. │   │   │   ├── icon-60@3x.png
  110. │   │   │   ├── icon-72.png
  111. │   │   │   ├── icon-72@2x.png
  112. │   │   │   ├── icon-76.png
  113. │   │   │   ├── icon-76@2x.png
  114. │   │   │   ├── icon-83.5@2x.png
  115. │   │   │   ├── icon-small.png
  116. │   │   │   ├── icon-small@2x.png
  117. │   │   │   ├── icon-small@3x.png
  118. │   │   │   ├── icon.png
  119. │   │   │   └── icon@2x.png
  120. │   │   ├── Contents.json
  121. │   │   ├── LaunchImage.launchimage
  122. │   │   │   ├── Contents.json
  123. │   │   │   ├── Default-568h@2x~iphone.png
  124. │   │   │   ├── Default-667h.png
  125. │   │   │   ├── Default-736h.png
  126. │   │   │   ├── Default-Landscape-736h.png
  127. │   │   │   ├── Default-Landscape@2x~ipad.png
  128. │   │   │   ├── Default-Landscape~ipad.png
  129. │   │   │   ├── Default-Portrait@2x~ipad.png
  130. │   │   │   ├── Default-Portrait~ipad.png
  131. │   │   │   ├── Default@2x~iphone.png
  132. │   │   │   └── Default~iphone.png
  133. │   │   └── LaunchStoryboard.imageset
  134. │   │   └── Contents.json
  135. │   ├── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA-Info.plist
  136. │   ├── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA-Prefix.pch
  137. │   ├── Plugins
  138. │   │   ├── README
  139. │   │   ├── com.libreidee.cordova.vuforia
  140. │   │   │   ├── CDVVuforia.h
  141. │   │   │   ├── CDVVuforia.mm
  142. │   │   │   ├── libVuforia.a
  143. │   │   │   └── src
  144. │   │   │   ├── vuforia
  145. │   │   │   │   ├── EAGLView.h
  146. │   │   │   │   ├── EAGLView.mm
  147. │   │   │   │   ├── VuforiaApplicationSession.h
  148. │   │   │   │   ├── VuforiaApplicationSession.mm
  149. │   │   │   │   ├── VuforiaApplicationUtils.cpp
  150. │   │   │   │   ├── VuforiaApplicationUtils.h
  151. │   │   │   │   ├── VuforiaMath.cpp
  152. │   │   │   │   ├── VuforiaMath.h
  153. │   │   │   │   ├── VuforiaViewController.h
  154. │   │   │   │   └── VuforiaViewController.mm
  155. │   │   │   └── vuforiaSDK
  156. │   │   │   └── include
  157. │   │   │   └── Vuforia
  158. │   │   │   ├── Area.h
  159. │   │   │   ├── Box3D.h
  160. │   │   │   ├── CameraCalibration.h
  161. │   │   │   ├── CameraDevice.h
  162. │   │   │   ├── CameraField.h
  163. │   │   │   ├── CustomViewerParameters.h
  164. │   │   │   ├── CylinderTarget.h
  165. │   │   │   ├── CylinderTargetResult.h
  166. │   │   │   ├── DataSet.h
  167. │   │   │   ├── Device.h
  168. │   │   │   ├── DeviceTrackable.h
  169. │   │   │   ├── DeviceTrackableResult.h
  170. │   │   │   ├── DeviceTracker.h
  171. │   │   │   ├── EyeID.h
  172. │   │   │   ├── EyewearCalibrationProfileManager.h
  173. │   │   │   ├── EyewearCalibrationReading.h
  174. │   │   │   ├── EyewearDevice.h
  175. │   │   │   ├── EyewearUserCalibrator.h
  176. │   │   │   ├── Frame.h
  177. │   │   │   ├── GLRenderer.h
  178. │   │   │   ├── HandheldTransformModel.h
  179. │   │   │   ├── HeadTransformModel.h
  180. │   │   │   ├── Image.h
  181. │   │   │   ├── ImageTarget.h
  182. │   │   │   ├── ImageTargetBuilder.h
  183. │   │   │   ├── ImageTargetResult.h
  184. │   │   │   ├── InstanceId.h
  185. │   │   │   ├── Marker.h
  186. │   │   │   ├── MarkerResult.h
  187. │   │   │   ├── MarkerTracker.h
  188. │   │   │   ├── Matrices.h
  189. │   │   │   ├── Mesh.h
  190. │   │   │   ├── MetalRenderer.h
  191. │   │   │   ├── MultiTarget.h
  192. │   │   │   ├── MultiTargetResult.h
  193. │   │   │   ├── NonCopyable.h
  194. │   │   │   ├── Obb2D.h
  195. │   │   │   ├── Obb3D.h
  196. │   │   │   ├── ObjectTarget.h
  197. │   │   │   ├── ObjectTargetResult.h
  198. │   │   │   ├── ObjectTracker.h
  199. │   │   │   ├── Prop.h
  200. │   │   │   ├── PropResult.h
  201. │   │   │   ├── Reconstruction.h
  202. │   │   │   ├── ReconstructionFromTarget.h
  203. │   │   │   ├── Rectangle.h
  204. │   │   │   ├── Renderer.h
  205. │   │   │   ├── RenderingPrimitives.h
  206. │   │   │   ├── RotationalDeviceTracker.h
  207. │   │   │   ├── SmartTerrainBuilder.h
  208. │   │   │   ├── SmartTerrainTrackable.h
  209. │   │   │   ├── SmartTerrainTracker.h
  210. │   │   │   ├── State.h
  211. │   │   │   ├── StateUpdater.h
  212. │   │   │   ├── Surface.h
  213. │   │   │   ├── SurfaceResult.h
  214. │   │   │   ├── System.h
  215. │   │   │   ├── TargetFinder.h
  216. │   │   │   ├── TargetSearchResult.h
  217. │   │   │   ├── TextTracker.h
  218. │   │   │   ├── Tool.h
  219. │   │   │   ├── Trackable.h
  220. │   │   │   ├── TrackableResult.h
  221. │   │   │   ├── TrackableSource.h
  222. │   │   │   ├── Tracker.h
  223. │   │   │   ├── TrackerManager.h
  224. │   │   │   ├── TransformModel.h
  225. │   │   │   ├── Type.h
  226. │   │   │   ├── UIGLViewProtocol.h
  227. │   │   │   ├── UpdateCallback.h
  228. │   │   │   ├── Vectors.h
  229. │   │   │   ├── VideoBackgroundConfig.h
  230. │   │   │   ├── VideoBackgroundTextureInfo.h
  231. │   │   │   ├── VideoMode.h
  232. │   │   │   ├── View.h
  233. │   │   │   ├── ViewList.h
  234. │   │   │   ├── ViewerParameters.h
  235. │   │   │   ├── ViewerParametersList.h
  236. │   │   │   ├── VirtualButton.h
  237. │   │   │   ├── VirtualButtonResult.h
  238. │   │   │   ├── VuMarkTarget.h
  239. │   │   │   ├── VuMarkTargetResult.h
  240. │   │   │   ├── VuMarkTemplate.h
  241. │   │   │   ├── Vuforia.h
  242. │   │   │   ├── Vuforia_iOS.h
  243. │   │   │   ├── Word.h
  244. │   │   │   ├── WordList.h
  245. │   │   │   └── WordResult.h
  246. │   │   ├── cordova-plugin-device
  247. │   │   │   ├── CDVDevice.h
  248. │   │   │   └── CDVDevice.m
  249. │   │   ├── cordova-plugin-inappbrowser
  250. │   │   │   ├── CDVInAppBrowser.h
  251. │   │   │   └── CDVInAppBrowser.m
  252. │   │   ├── cordova-plugin-ionic-webview
  253. │   │   │   ├── CDVWKProcessPoolFactory.h
  254. │   │   │   ├── CDVWKProcessPoolFactory.m
  255. │   │   │   ├── CDVWKWebViewEngine.h
  256. │   │   │   ├── CDVWKWebViewEngine.m
  257. │   │   │   ├── CDVWKWebViewUIDelegate.h
  258. │   │   │   ├── CDVWKWebViewUIDelegate.m
  259. │   │   │   ├── GCDWebServer.h
  260. │   │   │   ├── GCDWebServer.m
  261. │   │   │   ├── GCDWebServerConnection.h
  262. │   │   │   ├── GCDWebServerConnection.m
  263. │   │   │   ├── GCDWebServerDataRequest.h
  264. │   │   │   ├── GCDWebServerDataRequest.m
  265. │   │   │   ├── GCDWebServerDataResponse.h
  266. │   │   │   ├── GCDWebServerDataResponse.m
  267. │   │   │   ├── GCDWebServerErrorResponse.h
  268. │   │   │   ├── GCDWebServerErrorResponse.m
  269. │   │   │   ├── GCDWebServerFileRequest.h
  270. │   │   │   ├── GCDWebServerFileRequest.m
  271. │   │   │   ├── GCDWebServerFileResponse.h
  272. │   │   │   ├── GCDWebServerFileResponse.m
  273. │   │   │   ├── GCDWebServerFunctions.h
  274. │   │   │   ├── GCDWebServerFunctions.m
  275. │   │   │   ├── GCDWebServerHTTPStatusCodes.h
  276. │   │   │   ├── GCDWebServerMultiPartFormRequest.h
  277. │   │   │   ├── GCDWebServerMultiPartFormRequest.m
  278. │   │   │   ├── GCDWebServerPrivate.h
  279. │   │   │   ├── GCDWebServerRequest.h
  280. │   │   │   ├── GCDWebServerRequest.m
  281. │   │   │   ├── GCDWebServerResponse.h
  282. │   │   │   ├── GCDWebServerResponse.m
  283. │   │   │   ├── GCDWebServerStreamedResponse.h
  284. │   │   │   ├── GCDWebServerStreamedResponse.m
  285. │   │   │   ├── GCDWebServerURLEncodedFormRequest.h
  286. │   │   │   └── GCDWebServerURLEncodedFormRequest.m
  287. │   │   ├── cordova-plugin-splashscreen
  288. │   │   │   ├── CDVSplashScreen.h
  289. │   │   │   ├── CDVSplashScreen.m
  290. │   │   │   ├── CDVViewController+SplashScreen.h
  291. │   │   │   └── CDVViewController+SplashScreen.m
  292. │   │   ├── cordova-plugin-statusbar
  293. │   │   │   ├── CDVStatusBar.h
  294. │   │   │   └── CDVStatusBar.m
  295. │   │   ├── cordova-plugin-vibration
  296. │   │   │   ├── CDVVibration.h
  297. │   │   │   └── CDVVibration.m
  298. │   │   ├── cordova.plugins.diagnostic
  299. │   │   │   ├── Diagnostic.h
  300. │   │   │   ├── Diagnostic.m
  301. │   │   │   ├── Diagnostic_Camera.h
  302. │   │   │   └── Diagnostic_Camera.m
  303. │   │   └── ionic-plugin-keyboard
  304. │   │   ├── IonicKeyboard.h
  305. │   │   └── IonicKeyboard.m
  306. │   ├── config.xml
  307. │   └── main.m
  308. ├── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA.xcodeproj
  309. │   ├── project.pbxproj
  310. │   ├── project.xcworkspace
  311. │   │   ├── contents.xcworkspacedata
  312. │   │   ├── xcshareddata
  313. │   │   │   └── IDEWorkspaceChecks.plist
  314. │   │   └── xcuserdata
  315. │   │   └── manu.xcuserdatad
  316. │   │   └── UserInterfaceState.xcuserstate
  317. │   └── xcuserdata
  318. │   └── manu.xcuserdatad
  319. │   └── xcschemes
  320. │   └── xcschememanagement.plist
  321. ├── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA.xcworkspace
  322. │   ├── contents.xcworkspacedata
  323. │   └── xcshareddata
  324. │   └── xcschemes
  325. │   └── La\ Scuola\ SMART.CONTENT\ -\ PRIMARIA.xcscheme
  326. ├── ciao.txt
  327. ├── cordova
  328. │   ├── Api.js
  329. │   ├── apple_ios_version
  330. │   ├── apple_osx_version
  331. │   ├── apple_xcode_version
  332. │   ├── build
  333. │   ├── build-debug.xcconfig
  334. │   ├── build-extras.xcconfig
  335. │   ├── build-release.xcconfig
  336. │   ├── build.bat
  337. │   ├── build.xcconfig
  338. │   ├── check_reqs
  339. │   ├── check_reqs.bat
  340. │   ├── clean
  341. │   ├── clean.bat
  342. │   ├── defaults.xml
  343. │   ├── lib
  344. │   │   ├── Podfile.js
  345. │   │   ├── PodsJson.js
  346. │   │   ├── build.js
  347. │   │   ├── check_reqs.js
  348. │   │   ├── clean.js
  349. │   │   ├── copy-www-build-step.js
  350. │   │   ├── list-devices
  351. │   │   ├── list-emulator-build-targets
  352. │   │   ├── list-emulator-images
  353. │   │   ├── list-started-emulators
  354. │   │   ├── plugman
  355. │   │   │   └── pluginHandlers.js
  356. │   │   ├── prepare.js
  357. │   │   ├── projectFile.js
  358. │   │   ├── run.js
  359. │   │   ├── spawn.js
  360. │   │   ├── start-emulator
  361. │   │   └── versions.js
  362. │   ├── log
  363. │   ├── log.bat
  364. │   ├── loggingHelper.js
  365. │   ├── node_modules
  366. │   │   ├── abbrev
  367. │   │   │   ├── LICENSE
  368. │   │   │   ├── README.md
  369. │   │   │   ├── abbrev.js
  370. │   │   │   └── package.json
  371. │   │   ├── ansi
  372. │   │   │   ├── History.md
  373. │   │   │   ├── LICENSE
  374. │   │   │   ├── README.md
  375. │   │   │   ├── examples
  376. │   │   │   │   ├── beep
  377. │   │   │   │   │   └── index.js
  378. │   │   │   │   ├── clear
  379. │   │   │   │   │   └── index.js
  380. │   │   │   │   ├── cursorPosition.js
  381. │   │   │   │   └── progress
  382. │   │   │   │   └── index.js
  383. │   │   │   ├── lib
  384. │   │   │   │   ├── ansi.js
  385. │   │   │   │   └── newlines.js
  386. │   │   │   └── package.json
  387. │   │   ├── balanced-match
  388. │   │   │   ├── LICENSE.md
  389. │   │   │   ├── README.md
  390. │   │   │   ├── index.js
  391. │   │   │   └── package.json
  392. │   │   ├── base64-js
  393. │   │   │   ├── LICENSE
  394. │   │   │   ├── README.md
  395. │   │   │   ├── base64js.min.js
  396. │   │   │   ├── index.js
  397. │   │   │   ├── package.json
  398. │   │   │   └── test
  399. │   │   │   ├── big-data.js
  400. │   │   │   ├── convert.js
  401. │   │   │   └── url-safe.js
  402. │   │   ├── big-integer
  403. │   │   │   ├── BigInteger.d.ts
  404. │   │   │   ├── BigInteger.js
  405. │   │   │   ├── BigInteger.min.js
  406. │   │   │   ├── LICENSE
  407. │   │   │   ├── README.md
  408. │   │   │   ├── bower.json
  409. │   │   │   ├── package.json
  410. │   │   │   └── tsconfig.json
  411. │   │   ├── bplist-creator
  412. │   │   │   ├── README.md
  413. │   │   │   ├── bplistCreator.js
  414. │   │   │   ├── package.json
  415. │   │   │   └── test
  416. │   │   │   ├── airplay.bplist
  417. │   │   │   ├── binaryData.bplist
  418. │   │   │   ├── creatorTest.js
  419. │   │   │   ├── iTunes-small.bplist
  420. │   │   │   ├── sample1.bplist
  421. │   │   │   ├── sample2.bplist
  422. │   │   │   ├── uid.bplist
  423. │   │   │   └── utf16.bplist
  424. │   │   ├── bplist-parser
  425. │   │   │   ├── README.md
  426. │   │   │   ├── bplistParser.js
  427. │   │   │   ├── package.json
  428. │   │   │   └── test
  429. │   │   │   ├── airplay.bplist
  430. │   │   │   ├── iTunes-small.bplist
  431. │   │   │   ├── int64.bplist
  432. │   │   │   ├── int64.xml
  433. │   │   │   ├── parseTest.js
  434. │   │   │   ├── sample1.bplist
  435. │   │   │   ├── sample2.bplist
  436. │   │   │   ├── uid.bplist
  437. │   │   │   ├── utf16.bplist
  438. │   │   │   └── utf16_chinese.plist
  439. │   │   ├── brace-expansion
  440. │   │   │   ├── LICENSE
  441. │   │   │   ├── README.md
  442. │   │   │   ├── index.js
  443. │   │   │   └── package.json
  444. │   │   ├── concat-map
  445. │   │   │   ├── LICENSE
  446. │   │   │   ├── README.markdown
  447. │   │   │   ├── example
  448. │   │   │   │   └── map.js
  449. │   │   │   ├── index.js
  450. │   │   │   ├── package.json
  451. │   │   │   └── test
  452. │   │   │   └── map.js
  453. │   │   ├── cordova-common
  454. │   │   │   ├── README.md
  455. │   │   │   ├── RELEASENOTES.md
  456. │   │   │   ├── appveyor.yml
  457. │   │   │   ├── cordova-common.js
  458. │   │   │   ├── package.json
  459. │   │   │   └── src
  460. │   │   │   ├── ActionStack.js
  461. │   │   │   ├── ConfigChanges
  462. │   │   │   │   ├── ConfigChanges.js
  463. │   │   │   │   ├── ConfigFile.js
  464. │   │   │   │   ├── ConfigKeeper.js
  465. │   │   │   │   └── munge-util.js
  466. │   │   │   ├── ConfigParser
  467. │   │   │   │   └── ConfigParser.js
  468. │   │   │   ├── CordovaCheck.js
  469. │   │   │   ├── CordovaError
  470. │   │   │   │   ├── CordovaError.js
  471. │   │   │   │   └── CordovaExternalToolErrorContext.js
  472. │   │   │   ├── CordovaLogger.js
  473. │   │   │   ├── FileUpdater.js
  474. │   │   │   ├── PlatformJson.js
  475. │   │   │   ├── PluginInfo
  476. │   │   │   │   ├── PluginInfo.js
  477. │   │   │   │   └── PluginInfoProvider.js
  478. │   │   │   ├── PluginManager.js
  479. │   │   │   ├── events.js
  480. │   │   │   ├── superspawn.js
  481. │   │   │   └── util
  482. │   │   │   ├── addProperty.js
  483. │   │   │   ├── plist-helpers.js
  484. │   │   │   └── xml-helpers.js
  485. │   │   ├── cordova-registry-mapper
  486. │   │   │   ├── README.md
  487. │   │   │   ├── index.js
  488. │   │   │   ├── package.json
  489. │   │   │   └── tests
  490. │   │   │   └── test.js
  491. │   │   ├── elementtree
  492. │   │   │   ├── CHANGES.md
  493. │   │   │   ├── LICENSE.txt
  494. │   │   │   ├── Makefile
  495. │   │   │   ├── NOTICE
  496. │   │   │   ├── README.md
  497. │   │   │   ├── lib
  498. │   │   │   │   ├── constants.js
  499. │   │   │   │   ├── elementpath.js
  500. │   │   │   │   ├── elementtree.js
  501. │   │   │   │   ├── errors.js
  502. │   │   │   │   ├── parser.js
  503. │   │   │   │   ├── parsers
  504. │   │   │   │   │   ├── index.js
  505. │   │   │   │   │   └── sax.js
  506. │   │   │   │   ├── sprintf.js
  507. │   │   │   │   ├── treebuilder.js
  508. │   │   │   │   └── utils.js
  509. │   │   │   ├── package.json
  510. │   │   │   └── tests
  511. │   │   │   ├── data
  512. │   │   │   │   ├── xml1.xml
  513. │   │   │   │   └── xml2.xml
  514. │   │   │   └── test-simple.js
  515. │   │   ├── glob
  516. │   │   │   ├── LICENSE
  517. │   │   │   ├── README.md
  518. │   │   │   ├── common.js
  519. │   │   │   ├── glob.js
  520. │   │   │   ├── package.json
  521. │   │   │   └── sync.js
  522. │   │   ├── inflight
  523. │   │   │   ├── LICENSE
  524. │   │   │   ├── README.md
  525. │   │   │   ├── inflight.js
  526. │   │   │   └── package.json
  527. │   │   ├── inherits
  528. │   │   │   ├── LICENSE
  529. │   │   │   ├── README.md
  530. │   │   │   ├── inherits.js
  531. │   │   │   ├── inherits_browser.js
  532. │   │   │   └── package.json
  533. │   │   ├── ios-sim
  534. │   │   │   ├── LICENSE
  535. │   │   │   ├── README.md
  536. │   │   │   ├── appveyor.yml
  537. │   │   │   ├── bin
  538. │   │   │   │   ├── ios-sim
  539. │   │   │   │   └── ios-sim.cmd
  540. │   │   │   ├── doc
  541. │   │   │   │   └── help.txt
  542. │   │   │   ├── ios-sim.js
  543. │   │   │   ├── node_modules
  544. │   │   │   │   ├── bplist-parser
  545. │   │   │   │   │   ├── README.md
  546. │   │   │   │   │   ├── bplistParser.js
  547. │   │   │   │   │   ├── package.json
  548. │   │   │   │   │   └── test
  549. │   │   │   │   │   ├── airplay.bplist
  550. │   │   │   │   │   ├── iTunes-small.bplist
  551. │   │   │   │   │   ├── parseTest.js
  552. │   │   │   │   │   ├── sample1.bplist
  553. │   │   │   │   │   ├── sample2.bplist
  554. │   │   │   │   │   ├── uid.bplist
  555. │   │   │   │   │   └── utf16.bplist
  556. │   │   │   │   └── nopt
  557. │   │   │   │   ├── LICENSE
  558. │   │   │   │   ├── README.md
  559. │   │   │   │   ├── bin
  560. │   │   │   │   │   └── nopt.js
  561. │   │   │   │   ├── examples
  562. │   │   │   │   │   └── my-program.js
  563. │   │   │   │   ├── lib
  564. │   │   │   │   │   └── nopt.js
  565. │   │   │   │   └── package.json
  566. │   │   │   ├── package.json
  567. │   │   │   ├── spec
  568. │   │   │   │   ├── cli.spec.js
  569. │   │   │   │   ├── commands.spec.js
  570. │   │   │   │   ├── fixture
  571. │   │   │   │   │   └── list.json
  572. │   │   │   │   ├── jasmine.json
  573. │   │   │   │   └── lib.spec.js
  574. │   │   │   └── src
  575. │   │   │   ├── cli.js
  576. │   │   │   ├── commands.js
  577. │   │   │   ├── help.js
  578. │   │   │   └── lib.js
  579. │   │   ├── minimatch
  580. │   │   │   ├── LICENSE
  581. │   │   │   ├── README.md
  582. │   │   │   ├── minimatch.js
  583. │   │   │   └── package.json
  584. │   │   ├── nopt
  585. │   │   │   ├── LICENSE
  586. │   │   │   ├── README.md
  587. │   │   │   ├── bin
  588. │   │   │   │   └── nopt.js
  589. │   │   │   ├── examples
  590. │   │   │   │   └── my-program.js
  591. │   │   │   ├── lib
  592. │   │   │   │   └── nopt.js
  593. │   │   │   ├── package.json
  594. │   │   │   └── test
  595. │   │   │   └── basic.js
  596. │   │   ├── once
  597. │   │   │   ├── LICENSE
  598. │   │   │   ├── README.md
  599. │   │   │   ├── once.js
  600. │   │   │   └── package.json
  601. │   │   ├── path-is-absolute
  602. │   │   │   ├── index.js
  603. │   │   │   ├── license
  604. │   │   │   ├── package.json
  605. │   │   │   └── readme.md
  606. │   │   ├── plist
  607. │   │   │   ├── History.md
  608. │   │   │   ├── LICENSE
  609. │   │   │   ├── Makefile
  610. │   │   │   ├── README.md
  611. │   │   │   ├── dist
  612. │   │   │   │   ├── plist-build.js
  613. │   │   │   │   ├── plist-parse.js
  614. │   │   │   │   └── plist.js
  615. │   │   │   ├── examples
  616. │   │   │   │   └── browser
  617. │   │   │   │   └── index.html
  618. │   │   │   ├── index.js
  619. │   │   │   ├── lib
  620. │   │   │   │   ├── build.js
  621. │   │   │   │   └── parse.js
  622. │   │   │   └── package.json
  623. │   │   ├── q
  624. │   │   │   ├── CHANGES.md
  625. │   │   │   ├── LICENSE
  626. │   │   │   ├── README.md
  627. │   │   │   ├── package.json
  628. │   │   │   ├── q.js
  629. │   │   │   └── queue.js
  630. │   │   ├── sax
  631. │   │   │   ├── AUTHORS
  632. │   │   │   ├── LICENSE
  633. │   │   │   ├── README.md
  634. │   │   │   ├── examples
  635. │   │   │   │   ├── big-not-pretty.xml
  636. │   │   │   │   ├── example.js
  637. │   │   │   │   ├── get-products.js
  638. │   │   │   │   ├── hello-world.js
  639. │   │   │   │   ├── not-pretty.xml
  640. │   │   │   │   ├── pretty-print.js
  641. │   │   │   │   ├── shopping.xml
  642. │   │   │   │   ├── strict.dtd
  643. │   │   │   │   ├── switch-bench.js
  644. │   │   │   │   ├── test.html
  645. │   │   │   │   └── test.xml
  646. │   │   │   ├── lib
  647. │   │   │   │   └── sax.js
  648. │   │   │   ├── package.json
  649. │   │   │   └── test
  650. │   │   │   ├── buffer-overrun.js
  651. │   │   │   ├── cdata-chunked.js
  652. │   │   │   ├── cdata-end-split.js
  653. │   │   │   ├── cdata-fake-end.js
  654. │   │   │   ├── cdata-multiple.js
  655. │   │   │   ├── cdata.js
  656. │   │   │   ├── index.js
  657. │   │   │   ├── issue-23.js
  658. │   │   │   ├── issue-30.js
  659. │   │   │   ├── issue-35.js
  660. │   │   │   ├── issue-47.js
  661. │   │   │   ├── issue-49.js
  662. │   │   │   ├── parser-position.js
  663. │   │   │   ├── script.js
  664. │   │   │   ├── self-closing-child-strict.js
  665. │   │   │   ├── self-closing-child.js
  666. │   │   │   ├── self-closing-tag.js
  667. │   │   │   ├── stray-ending.js
  668. │   │   │   ├── trailing-non-whitespace.js
  669. │   │   │   ├── unquoted.js
  670. │   │   │   ├── xmlns-issue-41.js
  671. │   │   │   ├── xmlns-rebinding.js
  672. │   │   │   ├── xmlns-strict.js
  673. │   │   │   ├── xmlns-unbound.js
  674. │   │   │   ├── xmlns-xml-default-prefix-attribute.js
  675. │   │   │   ├── xmlns-xml-default-prefix.js
  676. │   │   │   └── xmlns-xml-default-redefine.js
  677. │   │   ├── shelljs
  678. │   │   │   ├── LICENSE
  679. │   │   │   ├── README.md
  680. │   │   │   ├── RELEASE.md
  681. │   │   │   ├── bin
  682. │   │   │   │   └── shjs
  683. │   │   │   ├── global.js
  684. │   │   │   ├── make.js
  685. │   │   │   ├── package.json
  686. │   │   │   ├── scripts
  687. │   │   │   │   ├── generate-docs.js
  688. │   │   │   │   └── run-tests.js
  689. │   │   │   ├── shell.js
  690. │   │   │   └── src
  691. │   │   │   ├── cat.js
  692. │   │   │   ├── cd.js
  693. │   │   │   ├── chmod.js
  694. │   │   │   ├── common.js
  695. │   │   │   ├── cp.js
  696. │   │   │   ├── dirs.js
  697. │   │   │   ├── echo.js
  698. │   │   │   ├── error.js
  699. │   │   │   ├── exec.js
  700. │   │   │   ├── find.js
  701. │   │   │   ├── grep.js
  702. │   │   │   ├── ln.js
  703. │   │   │   ├── ls.js
  704. │   │   │   ├── mkdir.js
  705. │   │   │   ├── mv.js
  706. │   │   │   ├── popd.js
  707. │   │   │   ├── pushd.js
  708. │   │   │   ├── pwd.js
  709. │   │   │   ├── rm.js
  710. │   │   │   ├── sed.js
  711. │   │   │   ├── tempdir.js
  712. │   │   │   ├── test.js
  713. │   │   │   ├── to.js
  714. │   │   │   ├── toEnd.js
  715. │   │   │   └── which.js
  716. │   │   ├── simctl
  717. │   │   │   ├── LICENSE
  718. │   │   │   ├── README.md
  719. │   │   │   ├── appveyor.yml
  720. │   │   │   ├── lib
  721. │   │   │   │   └── simctl-extensions.js
  722. │   │   │   ├── node_modules
  723. │   │   │   │   └── shelljs
  724. │   │   │   │   ├── LICENSE
  725. │   │   │   │   ├── README.md
  726. │   │   │   │   ├── bin
  727. │   │   │   │   │   └── shjs
  728. │   │   │   │   ├── global.js
  729. │   │   │   │   ├── make.js
  730. │   │   │   │   ├── package.json
  731. │   │   │   │   ├── scripts
  732. │   │   │   │   │   ├── generate-docs.js
  733. │   │   │   │   │   └── run-tests.js
  734. │   │   │   │   ├── shell.js
  735. │   │   │   │   └── src
  736. │   │   │   │   ├── cat.js
  737. │   │   │   │   ├── cd.js
  738. │   │   │   │   ├── chmod.js
  739. │   │   │   │   ├── common.js
  740. │   │   │   │   ├── cp.js
  741. │   │   │   │   ├── dirs.js
  742. │   │   │   │   ├── echo.js
  743. │   │   │   │   ├── error.js
  744. │   │   │   │   ├── exec.js
  745. │   │   │   │   ├── find.js
  746. │   │   │   │   ├── grep.js
  747. │   │   │   │   ├── ls.js
  748. │   │   │   │   ├── mkdir.js
  749. │   │   │   │   ├── mv.js
  750. │   │   │   │   ├── popd.js
  751. │   │   │   │   ├── pushd.js
  752. │   │   │   │   ├── pwd.js
  753. │   │   │   │   ├── rm.js
  754. │   │   │   │   ├── sed.js
  755. │   │   │   │   ├── tempdir.js
  756. │   │   │   │   ├── test.js
  757. │   │   │   │   ├── to.js
  758. │   │   │   │   ├── toEnd.js
  759. │   │   │   │   └── which.js
  760. │   │   │   ├── package.json
  761. │   │   │   ├── simctl.js
  762. │   │   │   └── spec
  763. │   │   │   └── fixture
  764. │   │   │   └── list.json
  765. │   │   ├── simple-plist
  766. │   │   │   ├── LICENSE
  767. │   │   │   ├── README.md
  768. │   │   │   ├── node_modules
  769. │   │   │   │   ├── base64-js
  770. │   │   │   │   │   ├── LICENSE.MIT
  771. │   │   │   │   │   ├── README.md
  772. │   │   │   │   │   ├── base64js.min.js
  773. │   │   │   │   │   ├── bower.json
  774. │   │   │   │   │   ├── lib
  775. │   │   │   │   │   │   └── b64.js
  776. │   │   │   │   │   ├── package.json
  777. │   │   │   │   │   └── test
  778. │   │   │   │   │   ├── big-data.js
  779. │   │   │   │   │   ├── convert.js
  780. │   │   │   │   │   └── url-safe.js
  781. │   │   │   │   └── plist
  782. │   │   │   │   ├── History.md
  783. │   │   │   │   ├── LICENSE
  784. │   │   │   │   ├── Makefile
  785. │   │   │   │   ├── README.md
  786. │   │   │   │   ├── dist
  787. │   │   │   │   │   ├── plist-build.js
  788. │   │   │   │   │   ├── plist-parse.js
  789. │   │   │   │   │   └── plist.js
  790. │   │   │   │   ├── examples
  791. │   │   │   │   │   └── browser
  792. │   │   │   │   │   └── index.html
  793. │   │   │   │   ├── index.js
  794. │   │   │   │   ├── lib
  795. │   │   │   │   │   ├── build.js
  796. │   │   │   │   │   └── parse.js
  797. │   │   │   │   └── package.json
  798. │   │   │   ├── package.json
  799. │   │   │   └── simple-plist.js
  800. │   │   ├── stream-buffers
  801. │   │   │   ├── README.md
  802. │   │   │   ├── UNLICENSE
  803. │   │   │   ├── lib
  804. │   │   │   │   ├── constants.js
  805. │   │   │   │   ├── readable_streambuffer.js
  806. │   │   │   │   ├── streambuffer.js
  807. │   │   │   │   └── writable_streambuffer.js
  808. │   │   │   └── package.json
  809. │   │   ├── tail
  810. │   │   │   ├── README.md
  811. │   │   │   ├── package.json
  812. │   │   │   └── tail.js
  813. │   │   ├── underscore
  814. │   │   │   ├── LICENSE
  815. │   │   │   ├── README.md
  816. │   │   │   ├── package.json
  817. │   │   │   ├── underscore-min.js
  818. │   │   │   ├── underscore-min.js.map
  819. │   │   │   └── underscore.js
  820. │   │   ├── unorm
  821. │   │   │   ├── LICENSE.md
  822. │   │   │   ├── README.md
  823. │   │   │   ├── lib
  824. │   │   │   │   └── unorm.js
  825. │   │   │   └── package.json
  826. │   │   ├── uuid
  827. │   │   │   ├── AUTHORS
  828. │   │   │   ├── HISTORY.md
  829. │   │   │   ├── LICENSE.md
  830. │   │   │   ├── README.md
  831. │   │   │   ├── bin
  832. │   │   │   │   └── uuid
  833. │   │   │   ├── index.js
  834. │   │   │   ├── lib
  835. │   │   │   │   ├── bytesToUuid.js
  836. │   │   │   │   ├── rng-browser.js
  837. │   │   │   │   └── rng.js
  838. │   │   │   ├── package.json
  839. │   │   │   ├── test
  840. │   │   │   │   ├── mocha.opts
  841. │   │   │   │   └── test.js
  842. │   │   │   ├── v1.js
  843. │   │   │   └── v4.js
  844. │   │   ├── wrappy
  845. │   │   │   ├── LICENSE
  846. │   │   │   ├── README.md
  847. │   │   │   ├── package.json
  848. │   │   │   └── wrappy.js
  849. │   │   ├── xcode
  850. │   │   │   ├── AUTHORS
  851. │   │   │   ├── LICENSE
  852. │   │   │   ├── Makefile
  853. │   │   │   ├── README.md
  854. │   │   │   ├── index.js
  855. │   │   │   ├── lib
  856. │   │   │   │   ├── parseJob.js
  857. │   │   │   │   ├── parser
  858. │   │   │   │   │   ├── pbxproj.js
  859. │   │   │   │   │   └── pbxproj.pegjs
  860. │   │   │   │   ├── pbxFile.js
  861. │   │   │   │   ├── pbxProject.js
  862. │   │   │   │   └── pbxWriter.js
  863. │   │   │   └── package.json
  864. │   │   ├── xml-escape
  865. │   │   │   ├── LICENSE
  866. │   │   │   ├── README.md
  867. │   │   │   ├── index.js
  868. │   │   │   ├── package.json
  869. │   │   │   └── test.js
  870. │   │   ├── xmlbuilder
  871. │   │   │   ├── CHANGELOG.md
  872. │   │   │   ├── LICENSE
  873. │   │   │   ├── README.md
  874. │   │   │   ├── lib
  875. │   │   │   │   ├── Utility.js
  876. │   │   │   │   ├── XMLAttribute.js
  877. │   │   │   │   ├── XMLCData.js
  878. │   │   │   │   ├── XMLComment.js
  879. │   │   │   │   ├── XMLDTDAttList.js
  880. │   │   │   │   ├── XMLDTDElement.js
  881. │   │   │   │   ├── XMLDTDEntity.js
  882. │   │   │   │   ├── XMLDTDNotation.js
  883. │   │   │   │   ├── XMLDeclaration.js
  884. │   │   │   │   ├── XMLDocType.js
  885. │   │   │   │   ├── XMLDocument.js
  886. │   │   │   │   ├── XMLDocumentCB.js
  887. │   │   │   │   ├── XMLElement.js
  888. │   │   │   │   ├── XMLNode.js
  889. │   │   │   │   ├── XMLProcessingInstruction.js
  890. │   │   │   │   ├── XMLRaw.js
  891. │   │   │   │   ├── XMLStreamWriter.js
  892. │   │   │   │   ├── XMLStringWriter.js
  893. │   │   │   │   ├── XMLStringifier.js
  894. │   │   │   │   ├── XMLText.js
  895. │   │   │   │   ├── XMLWriterBase.js
  896. │   │   │   │   └── index.js
  897. │   │   │   └── package.json
  898. │   │   └── xmldom
  899. │   │   ├── LICENSE
  900. │   │   ├── __package__.js
  901. │   │   ├── changelog
  902. │   │   ├── component.json
  903. │   │   ├── dom-parser.js
  904. │   │   ├── dom.js
  905. │   │   ├── package.json
  906. │   │   ├── readme.md
  907. │   │   └── sax.js
  908. │   ├── run
  909. │   ├── run.bat
  910. │   ├── version
  911. │   └── version.bat
  912. ├── frameworks.json
  913. ├── ios.json
  914. ├── platform_www
  915. │   ├── cordova-js-src
  916. │   │   ├── exec.js
  917. │   │   ├── platform.js
  918. │   │   └── plugin
  919. │   │   └── ios
  920. │   │   ├── console.js
  921. │   │   └── logger.js
  922. │   ├── cordova.js
  923. │   ├── cordova_plugins.js
  924. │   ├── plugins
  925. │   │   ├── com.libreidee.cordova.vuforia
  926. │   │   │   └── www
  927. │   │   │   └── vuforia.js
  928. │   │   ├── cordova-plugin-device
  929. │   │   │   └── www
  930. │   │   │   └── device.js
  931. │   │   ├── cordova-plugin-inappbrowser
  932. │   │   │   └── www
  933. │   │   │   └── inappbrowser.js
  934. │   │   ├── cordova-plugin-ionic-webview
  935. │   │   │   └── src
  936. │   │   │   └── www
  937. │   │   │   └── ios
  938. │   │   │   └── ios-wkwebview-exec.js
  939. │   │   ├── cordova-plugin-splashscreen
  940. │   │   │   └── www
  941. │   │   │   └── splashscreen.js
  942. │   │   ├── cordova-plugin-statusbar
  943. │   │   │   └── www
  944. │   │   │   └── statusbar.js
  945. │   │   ├── cordova-plugin-vibration
  946. │   │   │   └── www
  947. │   │   │   └── vibration.js
  948. │   │   ├── cordova.plugins.diagnostic
  949. │   │   │   └── www
  950. │   │   │   └── ios
  951. │   │   │   ├── diagnostic.camera.js
  952. │   │   │   └── diagnostic.js
  953. │   │   └── ionic-plugin-keyboard
  954. │   │   └── www
  955. │   │   └── ios
  956. │   │   └── keyboard.js
  957. │   └── wk-plugin.js
  958. ├── pods-debug.xcconfig
  959. ├── pods-release.xcconfig
  960. └── www
  961. ├── README.md
  962. ├── cordova-js-src
  963. │   ├── exec.js
  964. │   ├── platform.js
  965. │   └── plugin
  966. │   └── ios
  967. │   ├── console.js
  968. │   └── logger.js
  969. ├── cordova.js
  970. ├── cordova_plugins.js
  971. ├── css
  972. │   ├── ionic.app.css
  973. │   ├── ionic.app.min.css
  974. │   └── style.css
  975. ├── img
  976. │   ├── copertine
  977. │   │   ├── esploramondo-geografia-classe-4-4.jpg
  978. │   │   ├── esploramondo-matematica-classe-4-4.jpg
  979. │   │   ├── esploramondo-scienze-classe-4-4.jpg
  980. │   │   ├── esploramondo-storia-classe-4-4.jpg
  981. │   │   ├── esplorastorie-classe-4-4.jpg
  982. │   │   ├── esplorastorie-classe-5-5.jpg
  983. │   │   └── siamo-tutti-campioni-1.jpg
  984. │   ├── home_logo.png
  985. │   └── icon.png
  986. ├── index.html
  987. ├── js
  988. │   ├── app.js
  989. │   ├── controllers.js
  990. │   └── services.js
  991. ├── lib
  992. │   ├── angular
  993. │   │   ├── README.md
  994. │   │   ├── angular-csp.css
  995. │   │   ├── angular.js
  996. │   │   ├── angular.min.js
  997. │   │   ├── angular.min.js.gzip
  998. │   │   ├── angular.min.js.map
  999. │   │   ├── bower.json
  1000. │   │   ├── index.js
  1001. │   │   └── package.json
  1002. │   ├── angular-animate
  1003. │   │   ├── README.md
  1004. │   │   ├── angular-animate.js
  1005. │   │   ├── angular-animate.min.js
  1006. │   │   ├── angular-animate.min.js.map
  1007. │   │   ├── bower.json
  1008. │   │   ├── index.js
  1009. │   │   └── package.json
  1010. │   ├── angular-sanitize
  1011. │   │   ├── README.md
  1012. │   │   ├── angular-sanitize.js
  1013. │   │   ├── angular-sanitize.min.js
  1014. │   │   ├── angular-sanitize.min.js.map
  1015. │   │   ├── bower.json
  1016. │   │   ├── index.js
  1017. │   │   └── package.json
  1018. │   ├── angular-ui-router
  1019. │   │   ├── CHANGELOG.md
  1020. │   │   ├── CONTRIBUTING.md
  1021. │   │   ├── LICENSE
  1022. │   │   ├── README.md
  1023. │   │   ├── api
  1024. │   │   │   └── angular-ui-router.d.ts
  1025. │   │   ├── bower.json
  1026. │   │   ├── release
  1027. │   │   │   ├── angular-ui-router.js
  1028. │   │   │   └── angular-ui-router.min.js
  1029. │   │   └── src
  1030. │   │   ├── common.js
  1031. │   │   ├── resolve.js
  1032. │   │   ├── state.js
  1033. │   │   ├── stateDirectives.js
  1034. │   │   ├── stateFilters.js
  1035. │   │   ├── templateFactory.js
  1036. │   │   ├── urlMatcherFactory.js
  1037. │   │   ├── urlRouter.js
  1038. │   │   ├── view.js
  1039. │   │   ├── viewDirective.js
  1040. │   │   └── viewScroll.js
  1041. │   ├── gsap
  1042. │   │   ├── README.md
  1043. │   │   ├── bower.json
  1044. │   │   ├── package.json
  1045. │   │   └── src
  1046. │   │   ├── minified
  1047. │   │   │   ├── TimelineLite.min.js
  1048. │   │   │   ├── TimelineMax.min.js
  1049. │   │   │   ├── TweenLite.min.js
  1050. │   │   │   ├── TweenMax.min.js
  1051. │   │   │   ├── easing
  1052. │   │   │   │   └── EasePack.min.js
  1053. │   │   │   ├── jquery.gsap.min.js
  1054. │   │   │   └── utils
  1055. │   │   │   └── Draggable.min.js
  1056. │   │   └── uncompressed
  1057. │   │   ├── TimelineLite.js
  1058. │   │   ├── TimelineMax.js
  1059. │   │   ├── TweenLite.js
  1060. │   │   ├── TweenMax.js
  1061. │   │   ├── easing
  1062. │   │   │   └── EasePack.js
  1063. │   │   ├── jquery.gsap.js
  1064. │   │   └── utils
  1065. │   │   └── Draggable.js
  1066. │   ├── ionic
  1067. │   │   ├── css
  1068. │   │   │   ├── ionic.css
  1069. │   │   │   └── ionic.min.css
  1070. │   │   ├── fonts
  1071. │   │   │   ├── ionicons.eot
  1072. │   │   │   ├── ionicons.svg
  1073. │   │   │   ├── ionicons.ttf
  1074. │   │   │   └── ionicons.woff
  1075. │   │   ├── js
  1076. │   │   │   ├── angular
  1077. │   │   │   │   ├── angular-animate.js
  1078. │   │   │   │   ├── angular-animate.min.js
  1079. │   │   │   │   ├── angular-resource.js
  1080. │   │   │   │   ├── angular-resource.min.js
  1081. │   │   │   │   ├── angular-sanitize.js
  1082. │   │   │   │   ├── angular-sanitize.min.js
  1083. │   │   │   │   ├── angular.js
  1084. │   │   │   │   └── angular.min.js
  1085. │   │   │   ├── angular-ui
  1086. │   │   │   │   ├── angular-ui-router.js
  1087. │   │   │   │   └── angular-ui-router.min.js
  1088. │   │   │   ├── ionic-angular.js
  1089. │   │   │   ├── ionic-angular.min.js
  1090. │   │   │   ├── ionic.bundle.js
  1091. │   │   │   ├── ionic.bundle.min.js
  1092. │   │   │   ├── ionic.js
  1093. │   │   │   └── ionic.min.js
  1094. │   │   ├── scss
  1095. │   │   │   ├── _action-sheet.scss
  1096. │   │   │   ├── _animations.scss
  1097. │   │   │   ├── _backdrop.scss
  1098. │   │   │   ├── _badge.scss
  1099. │   │   │   ├── _bar.scss
  1100. │   │   │   ├── _button-bar.scss
  1101. │   │   │   ├── _button.scss
  1102. │   │   │   ├── _checkbox.scss
  1103. │   │   │   ├── _form.scss
  1104. │   │   │   ├── _grid.scss
  1105. │   │   │   ├── _items.scss
  1106. │   │   │   ├── _list.scss
  1107. │   │   │   ├── _loading.scss
  1108. │   │   │   ├── _menu.scss
  1109. │   │   │   ├── _mixins.scss
  1110. │   │   │   ├── _modal.scss
  1111. │   │   │   ├── _platform.scss
  1112. │   │   │   ├── _popover.scss
  1113. │   │   │   ├── _popup.scss
  1114. │   │   │   ├── _progress.scss
  1115. │   │   │   ├── _radio.scss
  1116. │   │   │   ├── _range.scss
  1117. │   │   │   ├── _refresher.scss
  1118. │   │   │   ├── _reset.scss
  1119. │   │   │   ├── _scaffolding.scss
  1120. │   │   │   ├── _select.scss
  1121. │   │   │   ├── _slide-box.scss
  1122. │   │   │   ├── _slides.scss
  1123. │   │   │   ├── _spinner.scss
  1124. │   │   │   ├── _tabs.scss
  1125. │   │   │   ├── _toggle.scss
  1126. │   │   │   ├── _transitions.scss
  1127. │   │   │   ├── _type.scss
  1128. │   │   │   ├── _util.scss
  1129. │   │   │   ├── _variables.scss
  1130. │   │   │   ├── ionic.scss
  1131. │   │   │   ├── ionicons
  1132. │   │   │   │   ├── _ionicons-font.scss
  1133. │   │   │   │   ├── _ionicons-icons.scss
  1134. │   │   │   │   ├── _ionicons-variables.scss
  1135. │   │   │   │   └── ionicons.scss
  1136. │   │   │   └── tsconfig.json
  1137. │   │   └── version.json
  1138. │   └── varlab-arcursor
  1139. │   ├── README.md
  1140. │   └── varlab.arcursor.js
  1141. ├── plugins
  1142. │   ├── com.libreidee.cordova.vuforia
  1143. │   │   └── www
  1144. │   │   └── vuforia.js
  1145. │   ├── cordova-plugin-device
  1146. │   │   └── www
  1147. │   │   └── device.js
  1148. │   ├── cordova-plugin-inappbrowser
  1149. │   │   └── www
  1150. │   │   └── inappbrowser.js
  1151. │   ├── cordova-plugin-ionic-webview
  1152. │   │   └── src
  1153. │   │   └── www
  1154. │   │   └── ios
  1155. │   │   └── ios-wkwebview-exec.js
  1156. │   ├── cordova-plugin-splashscreen
  1157. │   │   └── www
  1158. │   │   └── splashscreen.js
  1159. │   ├── cordova-plugin-statusbar
  1160. │   │   └── www
  1161. │   │   └── statusbar.js
  1162. │   ├── cordova-plugin-vibration
  1163. │   │   └── www
  1164. │   │   └── vibration.js
  1165. │   ├── cordova.plugins.diagnostic
  1166. │   │   └── www
  1167. │   │   └── ios
  1168. │   │   ├── diagnostic.camera.js
  1169. │   │   └── diagnostic.js
  1170. │   └── ionic-plugin-keyboard
  1171. │   └── www
  1172. │   └── ios
  1173. │   └── keyboard.js
  1174. ├── stores
  1175. │   └── markers.json
  1176. ├── templates
  1177. │   ├── home.html
  1178. │   ├── info.html
  1179. │   ├── materiali-list.html
  1180. │   ├── materiali.html
  1181. │   ├── scansione.html
  1182. │   └── volumi.html
  1183. └── wk-plugin.js
  1184.  
  1185. 244 directories, 938 files
Add Comment
Please, Sign In to add comment