diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b4c1359ca7..ee9debc09b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,73 @@ # Changelog -## 2019.10.0-rc (2 October 2019) +## 2019.10.1 (22 October 2019) + +### Enhancements + +1. Support other variables for notebookFileRoot besides ${workspaceRoot}. Specifically allow things like ${fileDirName} so that the dir of the first file run in the interactive window is used for the current directory. + ([#4441](https://github.com/Microsoft/vscode-python/issues/4441)) +1. Add command palette commands for native editor (run all cells, run selected cell, add new cell). And remove interactive window commands from contexts where they don't apply. + ([#7800](https://github.com/Microsoft/vscode-python/issues/7800)) +1. Added ability to auto-save chagnes made to the notebook. + ([#7831](https://github.com/Microsoft/vscode-python/issues/7831)) + +### Fixes + +1. Fix regression to allow connection to servers with no token and no password and add functional test for this scenario + ([#7137](https://github.com/Microsoft/vscode-python/issues/7137)) +1. Perf improvements for opening notebooks with more than 100 cells. + ([#7483](https://github.com/Microsoft/vscode-python/issues/7483)) +1. Fix jupyter server startup hang when xeus-cling kernel is installed. + ([#7569](https://github.com/Microsoft/vscode-python/issues/7569)) +1. Make interactive window and native take their fontSize and fontFamily from the settings in VS Code. + ([#7624](https://github.com/Microsoft/vscode-python/issues/7624)) +1. Fix a hang in the Interactive window when connecting guest to host after the host has already started the interactive window. + ([#7638](https://github.com/Microsoft/vscode-python/issues/7638)) +1. Change the default cell marker to '# %%' instead of '#%%' to prevent linter errors in python files with markers. + Also added a new setting to change this - 'python.dataScience.defaultCellMarker'. + ([#7674](https://github.com/Microsoft/vscode-python/issues/7674)) +1. When there's no workspace open, use the directory of the opened file as the root directory for a jupyter session. + ([#7688](https://github.com/Microsoft/vscode-python/issues/7688)) +1. Fix selection and focus not updating when clicking around in a notebook editor. + ([#7802](https://github.com/Microsoft/vscode-python/issues/7802)) +1. Fix add new cell buttons in the notebook editor to give the new cell focus. + ([#7820](https://github.com/Microsoft/vscode-python/issues/7820)) +1. Do not use the PTVSD package version in the folder name for the wheel experiment. + ([#7836](https://github.com/Microsoft/vscode-python/issues/7836)) +1. Prevent updates to the cell text when cell execution of the same cell has commenced or completed. + ([#7844](https://github.com/Microsoft/vscode-python/issues/7844)) +1. Hide the parameters intellisense widget in the `Notebook Editor` when it is not longer required. + ([#7851](https://github.com/Microsoft/vscode-python/issues/7851)) +1. Allow the "Create New Blank Jupyter Notebook" command to be run when the python extension is not loaded yet. + ([#7888](https://github.com/Microsoft/vscode-python/issues/7888)) +1. Ensure the `*.trie` files related to `font kit` npm module are copied into the output directory as part of the `Webpack` bundling operation. + ([#7899](https://github.com/Microsoft/vscode-python/issues/7899)) +1. CTRL+S is not saving a Notebook file. + ([#7904](https://github.com/Microsoft/vscode-python/issues/7904)) +1. When automatically opening the `Notebook Editor`, then ignore uris that do not have a `file` scheme + ([#7905](https://github.com/Microsoft/vscode-python/issues/7905)) +1. Minimize the changes to an ipynb file when saving - preserve metadata and spacing. + ([#7960](https://github.com/Microsoft/vscode-python/issues/7960)) +1. Fix intellisense popping up in the wrong spot when first typing in a cell. + ([#8009](https://github.com/Microsoft/vscode-python/issues/8009)) +1. Fix python.dataScience.maxOutputSize to be honored again. + ([#8010](https://github.com/Microsoft/vscode-python/issues/8010)) +1. Fix markdown disappearing after editing and hitting the escape key. + ([#8045](https://github.com/Microsoft/vscode-python/issues/8045)) + +### Code Health + +1. Add functional tests for notebook editor's use of the variable list. + ([#7369](https://github.com/Microsoft/vscode-python/issues/7369)) +1. More functional tests for the notebook editor. + ([#7372](https://github.com/Microsoft/vscode-python/issues/7372)) +1. Update version of `@types/vscode`. + ([#7832](https://github.com/Microsoft/vscode-python/issues/7832)) +1. Use `Webview.asWebviewUri` to generate a URI for use in the `Webview Panel` instead of hardcoding the resource `vscode-resource`. + ([#7834](https://github.com/Microsoft/vscode-python/issues/7834)) + + +## 2019.10.0 (8 October 2019) ### Enhancements @@ -36,6 +103,8 @@ ([#7517](https://github.com/Microsoft/vscode-python/issues/7517)) 1. Add support for ptvsd and debug adapter experiments in remote debugging API. ([#7549](https://github.com/Microsoft/vscode-python/issues/7549)) +1. Support other variables for `notebookFileRoot` besides `${workspaceRoot}`. Specifically allow things like `${fileDirName}` so that the directory of the first file run in the interactive window is used for the current directory. + ([#4441](https://github.com/Microsoft/vscode-python/issues/4441)) ### Fixes @@ -183,6 +252,14 @@ ([#7636](https://github.com/Microsoft/vscode-python/issues/7636)) 1. Goto cell code lens was not scrolling. ([#7639](https://github.com/Microsoft/vscode-python/issues/7639)) +1. Make interactive window and native take their `fontSize` and `fontFamily` from the settings in VS Code. + ([#7624](https://github.com/Microsoft/vscode-python/issues/7624)) +1. Fix a hang in the Interactive window when connecting guest to host after the host has already started the interactive window. + ([#7638](https://github.com/Microsoft/vscode-python/issues/7638)) +1. When there's no workspace open, use the directory of the opened file as the root directory for a Jupyter session. + ([#7688](https://github.com/Microsoft/vscode-python/issues/7688)) +1. Allow the language server to pick a default caching mode. + ([#7821](https://github.com/Microsoft/vscode-python/issues/7821)) ### Code Health @@ -4144,4 +4221,4 @@ the following people who contributed code: * Added ability to view global variables, arguments, add and remove break points ## Version 0.0.3 -* Added support for debugging using PDB +* Added support for debugging using PDB \ No newline at end of file diff --git a/ThirdPartyNotices-Distribution.txt b/ThirdPartyNotices-Distribution.txt index 874bcbbe67f2..f943b45d1343 100644 --- a/ThirdPartyNotices-Distribution.txt +++ b/ThirdPartyNotices-Distribution.txt @@ -104,66 +104,66 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater 97. character-entities-legacy 1.1.3 (https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz) 98. character-reference-invalid 1.1.3 (https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz) 99. charenc 0.0.2 (https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz) -100. cjson 0.3.0 (https://registry.npmjs.org/cjson/-/cjson-0.3.0.tgz) -101. classnames 2.2.6 (https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz) -102. clone 1.0.4 (https://registry.npmjs.org/clone/-/clone-1.0.4.tgz) -103. clsx 1.0.4 (https://registry.npmjs.org/clsx/-/clsx-1.0.4.tgz) -104. co 4.6.0 (https://registry.npmjs.org/co/-/co-4.6.0.tgz) -105. codemirror 5.39.2 (https://registry.npmjs.org/codemirror/-/codemirror-5.39.2.tgz) -106. collapse-white-space 1.0.5 (https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz) -107. color 3.0.0 (https://registry.npmjs.org/color/-/color-3.0.0.tgz) -108. color-convert 1.9.3 (https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz) -109. color-name 1.1.3 (https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz) -110. color-string 1.5.3 (https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz) -111. colornames 1.1.1 (https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz) -112. colors 1.3.3 (https://registry.npmjs.org/colors/-/colors-1.3.3.tgz) -113. colorspace 1.1.2 (https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz) -114. combined-stream 1.0.8 (https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz) -115. commander 2.20.0 (https://registry.npmjs.org/commander/-/commander-2.20.0.tgz) -116. comment-json 1.1.3 (https://registry.npmjs.org/comment-json/-/comment-json-1.1.3.tgz) -117. concat-map 0.0.1 (https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz) -118. concat-stream 1.6.2 (https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz) -119. convert-source-map 1.6.0 (https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz) -120. core-js 1.2.7 (https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz) -121. core-util-is 1.0.2 (https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz) -122. create-emotion 9.2.12 (https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz) -123. create-react-context 0.3.0 (https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz) -124. crypt 0.0.2 (https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz) -125. crypto-js 3.1.9-1 (https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz) -126. css-loader 1.0.1 (https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz) -127. csstype 2.6.6 (https://registry.npmjs.org/csstype/-/csstype-2.6.6.tgz) -128. d3-array 1.2.4 (https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz) -129. d3-bboxCollide 1.0.4 (https://registry.npmjs.org/d3-bboxCollide/-/d3-bboxCollide-1.0.4.tgz) -130. d3-brush 1.0.6 (https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.6.tgz) -131. d3-chord 1.0.6 (https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz) -132. d3-collection 1.0.7 (https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz) -133. d3-color 1.2.8 (https://registry.npmjs.org/d3-color/-/d3-color-1.2.8.tgz) -134. d3-contour 1.3.2 (https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz) -135. d3-dispatch 1.0.5 (https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.5.tgz) -136. d3-drag 1.2.3 (https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.3.tgz) -137. d3-ease 1.0.5 (https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.5.tgz) -138. d3-force 1.2.1 (https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz) -139. d3-format 1.3.2 (https://registry.npmjs.org/d3-format/-/d3-format-1.3.2.tgz) -140. d3-glyphedge 1.2.0 (https://registry.npmjs.org/d3-glyphedge/-/d3-glyphedge-1.2.0.tgz) -141. d3-hexbin 0.2.2 (https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz) -142. d3-hierarchy 1.1.8 (https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz) -143. d3-interpolate 1.3.2 (https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz) -144. d3-path 1.0.7 (https://registry.npmjs.org/d3-path/-/d3-path-1.0.7.tgz) -145. d3-polygon 1.0.5 (https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.5.tgz) -146. d3-quadtree 1.0.1 (https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.1.tgz) -147. d3-sankey-circular 0.25.0 (https://registry.npmjs.org/d3-sankey-circular/-/d3-sankey-circular-0.25.0.tgz) -148. d3-scale 2.2.2 (https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz) -149. d3-selection 1.4.0 (https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.0.tgz) -150. d3-shape 1.3.5 (https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.5.tgz) -151. d3-time 1.0.11 (https://registry.npmjs.org/d3-time/-/d3-time-1.0.11.tgz) -152. d3-time-format 2.1.3 (https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz) -153. d3-timer 1.0.9 (https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.9.tgz) -154. d3-transition 1.2.0 (https://registry.npmjs.org/d3-transition/-/d3-transition-1.2.0.tgz) -155. d3-voronoi 1.1.4 (https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz) -156. dashdash 1.14.1 (https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz) -157. deep-equal 1.0.1 (https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz) -158. deep-is 0.1.3 (https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz) -159. delayed-stream 1.0.0 (https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz) +100. classnames 2.2.6 (https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz) +101. clone 1.0.4 (https://registry.npmjs.org/clone/-/clone-1.0.4.tgz) +102. clsx 1.0.4 (https://registry.npmjs.org/clsx/-/clsx-1.0.4.tgz) +103. co 4.6.0 (https://registry.npmjs.org/co/-/co-4.6.0.tgz) +104. codemirror 5.39.2 (https://registry.npmjs.org/codemirror/-/codemirror-5.39.2.tgz) +105. collapse-white-space 1.0.5 (https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz) +106. color 3.0.0 (https://registry.npmjs.org/color/-/color-3.0.0.tgz) +107. color-convert 1.9.3 (https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz) +108. color-name 1.1.3 (https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz) +109. color-string 1.5.3 (https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz) +110. colornames 1.1.1 (https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz) +111. colors 1.3.3 (https://registry.npmjs.org/colors/-/colors-1.3.3.tgz) +112. colorspace 1.1.2 (https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz) +113. combined-stream 1.0.8 (https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz) +114. commander 2.20.0 (https://registry.npmjs.org/commander/-/commander-2.20.0.tgz) +115. comment-json 1.1.3 (https://registry.npmjs.org/comment-json/-/comment-json-1.1.3.tgz) +116. concat-map 0.0.1 (https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz) +117. concat-stream 1.6.2 (https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz) +118. convert-source-map 1.6.0 (https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz) +119. core-js 1.2.7 (https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz) +120. core-util-is 1.0.2 (https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz) +121. create-emotion 9.2.12 (https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz) +122. create-react-context 0.3.0 (https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz) +123. crypt 0.0.2 (https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz) +124. crypto-js 3.1.9-1 (https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz) +125. css-loader 1.0.1 (https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz) +126. csstype 2.6.6 (https://registry.npmjs.org/csstype/-/csstype-2.6.6.tgz) +127. d3-array 1.2.4 (https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz) +128. d3-bboxCollide 1.0.4 (https://registry.npmjs.org/d3-bboxCollide/-/d3-bboxCollide-1.0.4.tgz) +129. d3-brush 1.0.6 (https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.6.tgz) +130. d3-chord 1.0.6 (https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz) +131. d3-collection 1.0.7 (https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz) +132. d3-color 1.2.8 (https://registry.npmjs.org/d3-color/-/d3-color-1.2.8.tgz) +133. d3-contour 1.3.2 (https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz) +134. d3-dispatch 1.0.5 (https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.5.tgz) +135. d3-drag 1.2.3 (https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.3.tgz) +136. d3-ease 1.0.5 (https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.5.tgz) +137. d3-force 1.2.1 (https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz) +138. d3-format 1.3.2 (https://registry.npmjs.org/d3-format/-/d3-format-1.3.2.tgz) +139. d3-glyphedge 1.2.0 (https://registry.npmjs.org/d3-glyphedge/-/d3-glyphedge-1.2.0.tgz) +140. d3-hexbin 0.2.2 (https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz) +141. d3-hierarchy 1.1.8 (https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz) +142. d3-interpolate 1.3.2 (https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz) +143. d3-path 1.0.7 (https://registry.npmjs.org/d3-path/-/d3-path-1.0.7.tgz) +144. d3-polygon 1.0.5 (https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.5.tgz) +145. d3-quadtree 1.0.1 (https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.1.tgz) +146. d3-sankey-circular 0.25.0 (https://registry.npmjs.org/d3-sankey-circular/-/d3-sankey-circular-0.25.0.tgz) +147. d3-scale 2.2.2 (https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz) +148. d3-selection 1.4.0 (https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.0.tgz) +149. d3-shape 1.3.5 (https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.5.tgz) +150. d3-time 1.0.11 (https://registry.npmjs.org/d3-time/-/d3-time-1.0.11.tgz) +151. d3-time-format 2.1.3 (https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz) +152. d3-timer 1.0.9 (https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.9.tgz) +153. d3-transition 1.2.0 (https://registry.npmjs.org/d3-transition/-/d3-transition-1.2.0.tgz) +154. d3-voronoi 1.1.4 (https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz) +155. dashdash 1.14.1 (https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz) +156. deep-equal 1.0.1 (https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz) +157. deep-is 0.1.3 (https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz) +158. delayed-stream 1.0.0 (https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz) +159. detect-indent 6.0.0 (https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz) 160. dfa 1.2.0 (https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz) 161. diagnostic-channel 0.2.0 (https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-0.2.0.tgz) 162. diagnostic-channel-publishers 0.2.1 (https://registry.npmjs.org/diagnostic-channel-publishers/-/diagnostic-channel-publishers-0.2.1.tgz) @@ -177,330 +177,321 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater 170. domhandler 2.4.2 (https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz) 171. domutils 1.7.0 (https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz) 172. duplexer2 0.1.4 (https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz) -173. ebnf-parser 0.1.10 (https://registry.npmjs.org/ebnf-parser/-/ebnf-parser-0.1.10.tgz) -174. ecc-jsbn 0.1.2 (https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz) -175. emotion 9.2.12 (https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz) -176. enabled 1.0.2 (https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz) -177. encoding 0.1.12 (https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz) -178. entities 1.1.2 (https://registry.npmjs.org/entities/-/entities-1.1.2.tgz) -179. env-variable 0.0.5 (https://registry.npmjs.org/env-variable/-/env-variable-0.0.5.tgz) -180. escape-carriage 1.3.0 (https://registry.npmjs.org/escape-carriage/-/escape-carriage-1.3.0.tgz) -181. escape-string-regexp 1.0.5 (https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz) -182. escodegen 1.3.3 (https://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz) -183. esprima 2.7.3 (https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz) -184. estraverse 1.5.1 (https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz) -185. esutils 1.0.0 (https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz) -186. extend 3.0.2 (https://registry.npmjs.org/extend/-/extend-3.0.2.tgz) -187. extsprintf 1.3.0 (https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz) -188. falafel 2.1.0 (https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz) -189. fast-deep-equal 2.0.1 (https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz) -190. fast-json-stable-stringify 2.0.0 (https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz) -191. fast-levenshtein 2.0.6 (https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz) -192. fast-plist 0.1.2 (https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz) -193. fast-safe-stringify 2.0.6 (https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz) -194. fbjs 0.8.17 (https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz) -195. fecha 2.3.3 (https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz) -196. fontkit 1.8.0 (https://registry.npmjs.org/fontkit/-/fontkit-1.8.0.tgz) -197. foreach 2.0.5 (https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz) -198. forever-agent 0.6.1 (https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz) -199. form-data 2.3.3 (https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz) -200. fs-extra 4.0.3 (https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz) -201. fs.realpath 1.0.0 (https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz) -202. function-bind 1.1.1 (https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz) -203. fuzzy 0.1.3 (https://registry.npmjs.org/fuzzy/-/fuzzy-0.1.3.tgz) -204. get-port 3.2.0 (https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz) -205. getpass 0.1.7 (https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz) -206. glob 7.1.4 (https://registry.npmjs.org/glob/-/glob-7.1.4.tgz) -207. graceful-fs 4.2.0 (https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz) -208. gud 1.0.0 (https://registry.npmjs.org/gud/-/gud-1.0.0.tgz) -209. har-schema 2.0.0 (https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz) -210. har-validator 5.1.3 (https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz) -211. has 1.0.3 (https://registry.npmjs.org/has/-/has-1.0.3.tgz) -212. has-flag 3.0.0 (https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz) -213. hash-base 3.0.4 (https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz) -214. hash.js 1.1.7 (https://github.com/indutny/hash.js/tree/v1.1.7) -215. htmlparser2 3.10.1 (https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz) -216. http-signature 1.2.0 (https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz) -217. iconv-lite 0.4.24 (https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz) -218. inflight 1.0.6 (https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz) -219. inherits 2.0.4 (https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz) -220. inversify 4.13.0 (https://registry.npmjs.org/inversify/-/inversify-4.13.0.tgz) -221. IPython (for PyDev.Debugger) (https://ipython.org/) -222. is-alphabetical 1.0.3 (https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.3.tgz) -223. is-alphanumerical 1.0.3 (https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz) -224. is-arrayish 0.3.2 (https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz) -225. is-buffer 1.1.6 (https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz) -226. is-decimal 1.0.3 (https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.3.tgz) -227. is-hexadecimal 1.0.3 (https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz) -228. is-plain-obj 1.1.0 (https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz) -229. is-stream 1.1.0 (https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz) -230. is-typedarray 1.0.0 (https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz) -231. is-whitespace-character 1.0.3 (https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz) -232. is-word-character 1.0.3 (https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.3.tgz) -233. isarray 1.0.0 (https://github.com/juliangruber/isarray/blob/v1.0.0) -234. isomorphic-fetch 2.2.1 (https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz) -235. isort 4.3.4 (https://github.com/timothycrosley/isort/tree/4.3.4) -236. isstream 0.1.2 (https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz) -237. Jedi 0.13.3 (https://github.com/davidhalter/jedi/tree/v0.13.3) -238. jison 0.4.18 (https://registry.npmjs.org/jison/-/jison-0.4.18.tgz) -239. jison-lex 0.3.4 (https://registry.npmjs.org/jison-lex/-/jison-lex-0.3.4.tgz) -240. jquery 3.4.1 (https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz) -241. jquery-ui 1.12.1 (https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz) -242. js-tokens 4.0.0 (https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz) -243. js-yaml 3.13.1 (https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz) -244. jsbn 0.1.1 (https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz) -245. json-edm-parser 0.1.2 (https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz) -246. json-parser 1.1.5 (https://registry.npmjs.org/json-parser/-/json-parser-1.1.5.tgz) -247. json-schema 0.2.3 (https://www.npmjs.com/package/json-schema) -248. json-schema-traverse 0.4.1 (https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz) -249. json-stable-stringify 1.0.1 (https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz) -250. json-stringify-safe 5.0.1 (https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz) -251. json2csv 4.5.2 (https://registry.npmjs.org/json2csv/-/json2csv-4.5.2.tgz) -252. jsonc-parser 2.1.0 (https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz) -253. jsonfile 4.0.0 (https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz) -254. jsonify 0.0.0 (https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz) -255. jsonlint 1.6.0 (https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.0.tgz) -256. jsonparse 1.2.0 (https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz) -257. JSONSelect 0.4.0 (https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.4.0.tgz) -258. jsprim 1.4.1 (https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz) -259. JSV 4.0.2 (https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz) -260. kuler 1.0.1 (https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz) -261. labella 1.1.4 (https://registry.npmjs.org/labella/-/labella-1.1.4.tgz) -262. leaflet 1.5.1 (https://registry.npmjs.org/leaflet/-/leaflet-1.5.1.tgz) -263. less-plugin-inline-urls 1.2.0 (https://registry.npmjs.org/less-plugin-inline-urls/-/less-plugin-inline-urls-1.2.0.tgz) -264. levn 0.3.0 (https://registry.npmjs.org/levn/-/levn-0.3.0.tgz) -265. lex-parser 0.1.4 (https://registry.npmjs.org/lex-parser/-/lex-parser-0.1.4.tgz) -266. line-by-line 0.1.6 (https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz) -267. linear-layout-vector 0.0.1 (https://registry.npmjs.org/linear-layout-vector/-/linear-layout-vector-0.0.1.tgz) -268. linebreak 0.3.0 (https://registry.npmjs.org/linebreak/-/linebreak-0.3.0.tgz) -269. lodash 4.17.15 (https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz) -270. lodash.clonedeep 4.5.0 (https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz) -271. lodash.curry 4.1.1 (https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz) -272. lodash.escaperegexp 4.1.2 (https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz) -273. lodash.flow 3.5.0 (https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz) -274. lodash.isplainobject 4.0.6 (https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz) -275. lodash.isstring 4.0.1 (https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz) -276. lodash.mergewith 4.6.2 (https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz) -277. logform 2.1.2 (https://registry.npmjs.org/logform/-/logform-2.1.2.tgz) -278. loose-envify 1.4.0 (https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz) -279. lru-cache 4.1.5 (https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz) -280. magic-string 0.22.5 (https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz) -281. markdown-escapes 1.0.3 (https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.3.tgz) -282. marked 0.4.0 (https://registry.npmjs.org/marked/-/marked-0.4.0.tgz) -283. martinez-polygon-clipping 0.1.5 (https://registry.npmjs.org/martinez-polygon-clipping/-/martinez-polygon-clipping-0.1.5.tgz) -284. material-colors 1.2.6 (https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz) -285. md5 2.2.1 (https://registry.npmjs.org/md5/-/md5-2.2.1.tgz) -286. md5.js 1.3.4 (https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz) -287. mdast-add-list-metadata 1.0.1 (https://registry.npmjs.org/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz) -288. memoize-one 5.1.1 (https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz) -289. merge-source-map 1.0.4 (https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz) -290. mime-db 1.40.0 (https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz) -291. mime-types 2.1.24 (https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz) -292. minimalistic-assert 1.0.1 (https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz) -293. minimatch 3.0.4 (https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz) -294. minimist 1.2.0 (https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz) -295. mkdirp 0.5.1 (https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz) -296. monaco-editor 0.16.2 (https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.16.2.tgz) -297. monaco-editor-textmate 2.1.1 (https://registry.npmjs.org/monaco-editor-textmate/-/monaco-editor-textmate-2.1.1.tgz) -298. monaco-textmate 3.0.0 (https://registry.npmjs.org/monaco-textmate/-/monaco-textmate-3.0.0.tgz) -299. ms 2.1.2 (https://registry.npmjs.org/ms/-/ms-2.1.2.tgz) -300. named-js-regexp 1.3.5 (https://registry.npmjs.org/named-js-regexp/-/named-js-regexp-1.3.5.tgz) -301. node-fetch 1.7.3 (https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz) -302. node-stream-zip 1.8.2 (https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.8.2.tgz) -303. nomnom 1.5.2 (https://registry.npmjs.org/nomnom/-/nomnom-1.5.2.tgz) -304. normalize.css 8.0.1 (https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz) -305. number-is-nan 1.0.1 (https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz) -306. numeral 2.0.6 (https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz) -307. oauth-sign 0.9.0 (https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz) -308. object-assign 4.1.1 (https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz) -309. object-inspect 1.4.1 (https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz) -310. object-keys 1.1.1 (https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz) -311. once 1.4.0 (https://registry.npmjs.org/once/-/once-1.4.0.tgz) -312. one-time 0.0.4 (https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz) -313. onigasm 2.2.2 (https://registry.npmjs.org/onigasm/-/onigasm-2.2.2.tgz) -314. optionator 0.8.2 (https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz) -315. os-tmpdir 1.0.2 (https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz) -316. packaging 19.2 (https://github.com/pypa/packaging/tree/19.2) -317. pako 0.2.9 (https://registry.npmjs.org/pako/-/pako-0.2.9.tgz) -318. parse-entities 1.2.2 (https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz) -319. parso 0.5.0 (https://github.com/davidhalter/parso/tree/v0.5.0) -320. path-browserify 0.0.1 (https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz) -321. path-is-absolute 1.0.1 (https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz) -322. path-parse 1.0.6 (https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz) -323. path-posix 1.0.0 (https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz) -324. pdfkit 0.10.0 (https://registry.npmjs.org/pdfkit/-/pdfkit-0.10.0.tgz) -325. performance-now 2.1.0 (https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz) -326. pidusage 1.2.0 (https://registry.npmjs.org/pidusage/-/pidusage-1.2.0.tgz) -327. png-js 0.1.1 (https://registry.npmjs.org/png-js/-/png-js-0.1.1.tgz) -328. polygon-offset 0.3.1 (https://registry.npmjs.org/polygon-offset/-/polygon-offset-0.3.1.tgz) -329. popper.js 1.15.0 (https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz) -330. postcss 6.0.23 (https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz) -331. prelude-ls 1.1.2 (https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz) -332. process 0.11.10 (https://registry.npmjs.org/process/-/process-0.11.10.tgz) -333. process-nextick-args 1.0.7 (https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz) -334. promise 7.3.1 (https://registry.npmjs.org/promise/-/promise-7.3.1.tgz) -335. prop-types 15.7.2 (https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz) -336. pseudomap 1.0.2 (https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz) -337. psl 1.2.0 (https://registry.npmjs.org/psl/-/psl-1.2.0.tgz) -338. ptvsd 4.2.4 (https://github.com/Microsoft/ptvsd/tree/v4.2.4) -339. punycode 2.1.1 (https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz) -340. pure-color 1.3.0 (https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz) -341. py2app (for PyDev.Debugger) (https://bitbucket.org/ronaldoussoren/py2app) -342. PyDev.Debugger (for ptvsd 4) (https://pypi.org/project/pydevd/) -343. pyparsing 2.4.0 (https://github.com/pyparsing/pyparsing/tree/pyparsing_2.4.0) -344. qs 6.5.2 (https://registry.npmjs.org/qs/-/qs-6.5.2.tgz) -345. querystringify 2.1.1 (https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz) -346. quote-stream 1.0.2 (https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz) -347. raf 3.4.1 (https://registry.npmjs.org/raf/-/raf-3.4.1.tgz) -348. react 16.8.6 (https://registry.npmjs.org/react/-/react-16.8.6.tgz) -349. react-annotation 2.1.6 (https://registry.npmjs.org/react-annotation/-/react-annotation-2.1.6.tgz) -350. react-base16-styling 0.5.3 (https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz) -351. react-color 2.17.3 (https://registry.npmjs.org/react-color/-/react-color-2.17.3.tgz) -352. react-data-grid 6.1.0 (https://registry.npmjs.org/react-data-grid/-/react-data-grid-6.1.0.tgz) -353. react-dom 16.8.6 (https://registry.npmjs.org/react-dom/-/react-dom-16.8.6.tgz) -354. react-hot-loader 4.12.6 (https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.12.6.tgz) -355. react-is 16.8.6 (https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz) -356. react-json-tree 0.11.2 (https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.2.tgz) -357. react-lifecycles-compat 3.0.4 (https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz) -358. react-markdown 4.1.0 (https://registry.npmjs.org/react-markdown/-/react-markdown-4.1.0.tgz) -359. react-motion 0.5.2 (https://registry.npmjs.org/react-motion/-/react-motion-0.5.2.tgz) -360. react-move 2.9.1 (https://registry.npmjs.org/react-move/-/react-move-2.9.1.tgz) -361. react-popper 1.3.4 (https://registry.npmjs.org/react-popper/-/react-popper-1.3.4.tgz) -362. react-svg-pan-zoom 3.1.0 (https://registry.npmjs.org/react-svg-pan-zoom/-/react-svg-pan-zoom-3.1.0.tgz) -363. react-svgmt 1.1.8 (https://registry.npmjs.org/react-svgmt/-/react-svgmt-1.1.8.tgz) -364. react-table 6.10.0 (https://registry.npmjs.org/react-table/-/react-table-6.10.0.tgz) -365. react-table-hoc-fixed-columns 1.0.2 (https://registry.npmjs.org/react-table-hoc-fixed-columns/-/react-table-hoc-fixed-columns-1.0.2.tgz) -366. react-transition-group 2.9.0 (https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz) -367. react-virtualized 9.21.1 (https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.21.1.tgz) -368. reactcss 1.2.3 (https://registry.npmjs.org/reactcss/-/reactcss-1.2.3.tgz) -369. readable-stream 3.4.0 (https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz) -370. reflect-metadata 0.1.13 (https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz) -371. regenerator-runtime 0.13.2 (https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz) -372. regression 2.0.1 (https://registry.npmjs.org/regression/-/regression-2.0.1.tgz) -373. remark-parse 5.0.0 (https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz) -374. repeat-string 1.6.1 (https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz) -375. replace-ext 1.0.0 (https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz) -376. request 2.88.0 (https://registry.npmjs.org/request/-/request-2.88.0.tgz) -377. request-progress 3.0.0 (https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz) -378. requires-port 1.0.0 (https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz) -379. resize-observer-polyfill 1.5.1 (https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz) -380. resolve 1.11.1 (https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz) -381. restructure 0.5.4 (https://registry.npmjs.org/restructure/-/restructure-0.5.4.tgz) -382. roughjs-es5 0.1.0 (https://registry.npmjs.org/roughjs-es5/-/roughjs-es5-0.1.0.tgz) -383. rxjs 5.5.12 (https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz) -384. safe-buffer 5.1.2 (https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz) -385. safer-buffer 2.1.2 (https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz) -386. sanitize-html 1.18.5 (https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.5.tgz) -387. sax 0.5.8 (https://registry.npmjs.org/sax/-/sax-0.5.8.tgz) -388. scheduler 0.13.6 (https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz) -389. semiotic 1.19.11 (https://registry.npmjs.org/semiotic/-/semiotic-1.19.11.tgz) -390. semiotic-mark 0.3.1 (https://registry.npmjs.org/semiotic-mark/-/semiotic-mark-0.3.1.tgz) -391. semver 5.7.0 (https://registry.npmjs.org/semver/-/semver-5.7.0.tgz) -392. setImmediate (for RxJS 5.5) (https://github.com/YuzuJS/setImmediate) -393. setimmediate 1.0.5 (https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz) -394. shallow-copy 0.0.1 (https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz) -395. simple-swizzle 0.2.2 (https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz) -396. six 1.12.0 (https://github.com/benjaminp/six/tree/1.12.0) -397. sizzle (for lodash 4.17) (https://sizzlejs.com/) -398. slickgrid 2.4.9 (https://registry.npmjs.org/slickgrid/-/slickgrid-2.4.9.tgz) -399. source-map 0.6.1 (https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz) -400. sprintf-js 1.0.3 (https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz) -401. srcset 1.0.0 (https://registry.npmjs.org/srcset/-/srcset-1.0.0.tgz) -402. sshpk 1.16.1 (https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz) -403. stack-trace 0.0.10 (https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz) -404. state-toggle 1.0.2 (https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.2.tgz) -405. static-eval 2.0.2 (https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz) -406. static-module 2.2.5 (https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz) -407. string-hash 1.1.3 (https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz) -408. string_decoder 1.2.0 (https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz) -409. strip-ansi 5.2.0 (https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz) -410. style-loader 0.23.1 (https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz) -411. styled-jsx 3.2.1 (https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.2.1.tgz) -412. stylis-rule-sheet 0.0.10 (https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz) -413. sudo-prompt 8.2.5 (https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz) -414. supports-color 5.5.0 (https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz) -415. svg-inline-react 3.1.0 (https://registry.npmjs.org/svg-inline-react/-/svg-inline-react-3.1.0.tgz) -416. svg-path-bounding-box 1.0.4 (https://registry.npmjs.org/svg-path-bounding-box/-/svg-path-bounding-box-1.0.4.tgz) -417. svg-to-pdfkit 0.1.7 (https://registry.npmjs.org/svg-to-pdfkit/-/svg-to-pdfkit-0.1.7.tgz) -418. svgpath 2.2.2 (https://registry.npmjs.org/svgpath/-/svgpath-2.2.2.tgz) -419. symbol-observable 1.0.1 (https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz) -420. text-hex 1.0.0 (https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz) -421. throttleit 1.0.0 (https://github.com/component/throttle/tree/1.0.0) -422. through 2.3.8 (https://registry.npmjs.org/through/-/through-2.3.8.tgz) -423. through2 2.0.5 (https://registry.npmjs.org/through2/-/through2-2.0.5.tgz) -424. timers-browserify 2.0.10 (https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz) -425. tiny-inflate 1.0.2 (https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.2.tgz) -426. tinycolor2 1.4.1 (https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz) -427. tinyqueue 1.2.3 (https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz) -428. tmp 0.0.29 (https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz) -429. tough-cookie 2.4.3 (https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz) -430. transformation-matrix 2.0.5 (https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.0.5.tgz) -431. tree-kill 1.2.1 (https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz) -432. trim 0.0.1 (https://registry.npmjs.org/trim/-/trim-0.0.1.tgz) -433. trim-trailing-lines 1.1.2 (https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz) -434. triple-beam 1.3.0 (https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz) -435. trough 1.0.4 (https://registry.npmjs.org/trough/-/trough-1.0.4.tgz) -436. tslib 1.10.0 (https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz) -437. tslint 5.18.0 (https://registry.npmjs.org/tslint/-/tslint-5.18.0.tgz) -438. tsutils 2.29.0 (https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz) -439. tunnel-agent 0.6.0 (https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz) -440. tweetnacl 0.14.5 (https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz) -441. type-check 0.3.2 (https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz) -442. typed-styles 0.0.7 (https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz) -443. typedarray 0.0.6 (https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz) -444. typescript-char 0.0.0 (https://github.com/mason-lang/typescript-char) -445. ua-parser-js 0.7.20 (https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz) -446. uint64be 1.0.1 (https://registry.npmjs.org/uint64be/-/uint64be-1.0.1.tgz) -447. underscore 1.8.3 (https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz) -448. unherit 1.1.2 (https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz) -449. unicode 10.0.0 (https://registry.npmjs.org/unicode/-/unicode-10.0.0.tgz) -450. unicode-trie 0.3.1 (https://registry.npmjs.org/unicode-trie/-/unicode-trie-0.3.1.tgz) -451. unified 6.2.0 (https://registry.npmjs.org/unified/-/unified-6.2.0.tgz) -452. uniqid 5.0.3 (https://registry.npmjs.org/uniqid/-/uniqid-5.0.3.tgz) -453. unist-util-is 3.0.0 (https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz) -454. unist-util-remove-position 1.1.3 (https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz) -455. unist-util-stringify-position 1.1.2 (https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz) -456. unist-util-visit 1.4.1 (https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz) -457. unist-util-visit-parents 1.1.2 (https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz) -458. universalify 0.1.2 (https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz) -459. untildify 3.0.3 (https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz) -460. uri-js 4.2.2 (https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz) -461. url-parse 1.4.7 (https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz) -462. util 0.11.1 (https://registry.npmjs.org/util/-/util-0.11.1.tgz) -463. util-deprecate 1.0.2 (https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz) -464. uuid 3.3.2 (https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz) -465. validator 9.4.1 (https://registry.npmjs.org/validator/-/validator-9.4.1.tgz) -466. verror 1.10.0 (https://registry.npmjs.org/verror/-/verror-1.10.0.tgz) -467. vfile 2.3.0 (https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz) -468. vfile-location 2.0.5 (https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz) -469. vfile-message 1.1.1 (https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz) -470. viz-annotation 0.0.3 (https://registry.npmjs.org/viz-annotation/-/viz-annotation-0.0.3.tgz) -471. vlq 0.2.3 (https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz) -472. vscode-debugadapter 1.35.0 (https://registry.npmjs.org/vscode-debugadapter/-/vscode-debugadapter-1.35.0.tgz) -473. vscode-debugprotocol 1.35.0 (https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.35.0.tgz) -474. vscode-extension-telemetry 0.1.0 (https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.1.0.tgz) -475. vscode-jsonrpc 4.0.0 (https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz) -476. vscode-languageclient 5.2.1 (https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-5.2.1.tgz) -477. vscode-languageserver 5.2.1 (https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz) -478. vscode-languageserver-protocol 3.14.1 (https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz) -479. vscode-languageserver-types 3.14.0 (https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz) -480. vscode-uri 1.0.8 (https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz) -481. vsls 0.3.1291 (https://registry.npmjs.org/vsls/-/vsls-0.3.1291.tgz) -482. warning 4.0.3 (https://registry.npmjs.org/warning/-/warning-4.0.3.tgz) -483. webpack (for lodash 4) (https://webpack.js.org/) -484. whatwg-fetch 3.0.0 (https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz) -485. winreg 1.2.4 (https://github.com/fresc81/node-winreg/tree/v1.2.4) -486. winston 3.2.1 (https://registry.npmjs.org/winston/-/winston-3.2.1.tgz) -487. winston-transport 4.3.0 (https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz) -488. wordwrap 1.0.0 (https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz) -489. wrappy 1.0.2 (https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz) -490. ws 6.2.1 (https://registry.npmjs.org/ws/-/ws-6.2.1.tgz) -491. x-is-string 0.1.0 (https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz) -492. xml2js 0.4.19 (https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz) -493. xmlbuilder 9.0.7 (https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz) -494. xtend 4.0.2 (https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz) -495. yallist 2.1.2 (https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz) -496. zone.js 0.7.6 (https://registry.npmjs.org/zone.js/-/zone.js-0.7.6.tgz) +173. ecc-jsbn 0.1.2 (https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz) +174. emotion 9.2.12 (https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz) +175. enabled 1.0.2 (https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz) +176. encoding 0.1.12 (https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz) +177. entities 1.1.2 (https://registry.npmjs.org/entities/-/entities-1.1.2.tgz) +178. env-variable 0.0.5 (https://registry.npmjs.org/env-variable/-/env-variable-0.0.5.tgz) +179. escape-carriage 1.3.0 (https://registry.npmjs.org/escape-carriage/-/escape-carriage-1.3.0.tgz) +180. escape-string-regexp 1.0.5 (https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz) +181. esprima 2.7.3 (https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz) +182. estraverse 1.5.1 (https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz) +183. esutils 1.0.0 (https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz) +184. extend 3.0.2 (https://registry.npmjs.org/extend/-/extend-3.0.2.tgz) +185. extsprintf 1.3.0 (https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz) +186. falafel 2.1.0 (https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz) +187. fast-deep-equal 2.0.1 (https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz) +188. fast-json-stable-stringify 2.0.0 (https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz) +189. fast-levenshtein 2.0.6 (https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz) +190. fast-plist 0.1.2 (https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz) +191. fast-safe-stringify 2.0.6 (https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz) +192. fbjs 0.8.17 (https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz) +193. fecha 2.3.3 (https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz) +194. fontkit 1.8.0 (https://registry.npmjs.org/fontkit/-/fontkit-1.8.0.tgz) +195. foreach 2.0.5 (https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz) +196. forever-agent 0.6.1 (https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz) +197. form-data 2.3.3 (https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz) +198. fs-extra 4.0.3 (https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz) +199. fs.realpath 1.0.0 (https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz) +200. function-bind 1.1.1 (https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz) +201. fuzzy 0.1.3 (https://registry.npmjs.org/fuzzy/-/fuzzy-0.1.3.tgz) +202. get-port 3.2.0 (https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz) +203. getpass 0.1.7 (https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz) +204. glob 7.1.4 (https://registry.npmjs.org/glob/-/glob-7.1.4.tgz) +205. graceful-fs 4.2.0 (https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz) +206. gud 1.0.0 (https://registry.npmjs.org/gud/-/gud-1.0.0.tgz) +207. har-schema 2.0.0 (https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz) +208. har-validator 5.1.3 (https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz) +209. has 1.0.3 (https://registry.npmjs.org/has/-/has-1.0.3.tgz) +210. has-flag 3.0.0 (https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz) +211. hash-base 3.0.4 (https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz) +212. hash.js 1.1.7 (https://github.com/indutny/hash.js/tree/v1.1.7) +213. htmlparser2 3.10.1 (https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz) +214. http-signature 1.2.0 (https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz) +215. iconv-lite 0.4.24 (https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz) +216. immutable 4.0.0-rc.12 (https://registry.npmjs.org/immutable/-/immutable-4.0.0-rc.12.tgz) +217. inflight 1.0.6 (https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz) +218. inherits 2.0.4 (https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz) +219. inversify 4.13.0 (https://registry.npmjs.org/inversify/-/inversify-4.13.0.tgz) +220. IPython (for PyDev.Debugger) (https://ipython.org/) +221. is-alphabetical 1.0.3 (https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.3.tgz) +222. is-alphanumerical 1.0.3 (https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz) +223. is-arrayish 0.3.2 (https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz) +224. is-buffer 1.1.6 (https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz) +225. is-decimal 1.0.3 (https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.3.tgz) +226. is-hexadecimal 1.0.3 (https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz) +227. is-plain-obj 1.1.0 (https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz) +228. is-stream 1.1.0 (https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz) +229. is-typedarray 1.0.0 (https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz) +230. is-whitespace-character 1.0.3 (https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz) +231. is-word-character 1.0.3 (https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.3.tgz) +232. isarray 1.0.0 (https://github.com/juliangruber/isarray/blob/v1.0.0) +233. isomorphic-fetch 2.2.1 (https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz) +234. isort 4.3.4 (https://github.com/timothycrosley/isort/tree/4.3.4) +235. isstream 0.1.2 (https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz) +236. Jedi 0.13.3 (https://github.com/davidhalter/jedi/tree/v0.13.3) +237. jquery 3.4.1 (https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz) +238. jquery-ui 1.12.1 (https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz) +239. js-tokens 4.0.0 (https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz) +240. js-yaml 3.13.1 (https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz) +241. jsbn 0.1.1 (https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz) +242. json-edm-parser 0.1.2 (https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz) +243. json-parser 1.1.5 (https://registry.npmjs.org/json-parser/-/json-parser-1.1.5.tgz) +244. json-schema 0.2.3 (https://www.npmjs.com/package/json-schema) +245. json-schema-traverse 0.4.1 (https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz) +246. json-stable-stringify 1.0.1 (https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz) +247. json-stringify-safe 5.0.1 (https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz) +248. json2csv 4.5.2 (https://registry.npmjs.org/json2csv/-/json2csv-4.5.2.tgz) +249. jsonc-parser 2.1.0 (https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz) +250. jsonfile 4.0.0 (https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz) +251. jsonify 0.0.0 (https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz) +252. jsonparse 1.2.0 (https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz) +253. jsprim 1.4.1 (https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz) +254. kuler 1.0.1 (https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz) +255. labella 1.1.4 (https://registry.npmjs.org/labella/-/labella-1.1.4.tgz) +256. leaflet 1.5.1 (https://registry.npmjs.org/leaflet/-/leaflet-1.5.1.tgz) +257. less-plugin-inline-urls 1.2.0 (https://registry.npmjs.org/less-plugin-inline-urls/-/less-plugin-inline-urls-1.2.0.tgz) +258. levn 0.3.0 (https://registry.npmjs.org/levn/-/levn-0.3.0.tgz) +259. line-by-line 0.1.6 (https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz) +260. linear-layout-vector 0.0.1 (https://registry.npmjs.org/linear-layout-vector/-/linear-layout-vector-0.0.1.tgz) +261. linebreak 0.3.0 (https://registry.npmjs.org/linebreak/-/linebreak-0.3.0.tgz) +262. lodash 4.17.15 (https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz) +263. lodash.clonedeep 4.5.0 (https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz) +264. lodash.curry 4.1.1 (https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz) +265. lodash.escaperegexp 4.1.2 (https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz) +266. lodash.flow 3.5.0 (https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz) +267. lodash.isplainobject 4.0.6 (https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz) +268. lodash.isstring 4.0.1 (https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz) +269. lodash.mergewith 4.6.2 (https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz) +270. logform 2.1.2 (https://registry.npmjs.org/logform/-/logform-2.1.2.tgz) +271. loose-envify 1.4.0 (https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz) +272. lru-cache 4.1.5 (https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz) +273. magic-string 0.22.5 (https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz) +274. markdown-escapes 1.0.3 (https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.3.tgz) +275. marked 0.4.0 (https://registry.npmjs.org/marked/-/marked-0.4.0.tgz) +276. martinez-polygon-clipping 0.1.5 (https://registry.npmjs.org/martinez-polygon-clipping/-/martinez-polygon-clipping-0.1.5.tgz) +277. material-colors 1.2.6 (https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz) +278. md5 2.2.1 (https://registry.npmjs.org/md5/-/md5-2.2.1.tgz) +279. md5.js 1.3.4 (https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz) +280. mdast-add-list-metadata 1.0.1 (https://registry.npmjs.org/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz) +281. memoize-one 5.1.1 (https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz) +282. merge-source-map 1.0.4 (https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz) +283. mime-db 1.40.0 (https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz) +284. mime-types 2.1.24 (https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz) +285. minimalistic-assert 1.0.1 (https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz) +286. minimatch 3.0.4 (https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz) +287. minimist 1.2.0 (https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz) +288. mkdirp 0.5.1 (https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz) +289. monaco-editor 0.16.2 (https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.16.2.tgz) +290. monaco-editor-textmate 2.1.1 (https://registry.npmjs.org/monaco-editor-textmate/-/monaco-editor-textmate-2.1.1.tgz) +291. monaco-textmate 3.0.0 (https://registry.npmjs.org/monaco-textmate/-/monaco-textmate-3.0.0.tgz) +292. ms 2.1.2 (https://registry.npmjs.org/ms/-/ms-2.1.2.tgz) +293. named-js-regexp 1.3.5 (https://registry.npmjs.org/named-js-regexp/-/named-js-regexp-1.3.5.tgz) +294. node-fetch 1.7.3 (https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz) +295. node-stream-zip 1.8.2 (https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.8.2.tgz) +296. normalize.css 8.0.1 (https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz) +297. number-is-nan 1.0.1 (https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz) +298. numeral 2.0.6 (https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz) +299. oauth-sign 0.9.0 (https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz) +300. object-assign 4.1.1 (https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz) +301. object-inspect 1.4.1 (https://registry.npmjs.org/object-inspect/-/object-inspect-1.4.1.tgz) +302. object-keys 1.1.1 (https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz) +303. once 1.4.0 (https://registry.npmjs.org/once/-/once-1.4.0.tgz) +304. one-time 0.0.4 (https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz) +305. onigasm 2.2.2 (https://registry.npmjs.org/onigasm/-/onigasm-2.2.2.tgz) +306. optionator 0.8.2 (https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz) +307. os-tmpdir 1.0.2 (https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz) +308. packaging 19.2 (https://github.com/pypa/packaging/tree/19.2) +309. pako 0.2.9 (https://registry.npmjs.org/pako/-/pako-0.2.9.tgz) +310. parse-entities 1.2.2 (https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz) +311. parso 0.5.0 (https://github.com/davidhalter/parso/tree/v0.5.0) +312. path-browserify 0.0.1 (https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz) +313. path-is-absolute 1.0.1 (https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz) +314. path-parse 1.0.6 (https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz) +315. path-posix 1.0.0 (https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz) +316. pdfkit 0.10.0 (https://registry.npmjs.org/pdfkit/-/pdfkit-0.10.0.tgz) +317. performance-now 2.1.0 (https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz) +318. pidusage 1.2.0 (https://registry.npmjs.org/pidusage/-/pidusage-1.2.0.tgz) +319. png-js 0.1.1 (https://registry.npmjs.org/png-js/-/png-js-0.1.1.tgz) +320. polygon-offset 0.3.1 (https://registry.npmjs.org/polygon-offset/-/polygon-offset-0.3.1.tgz) +321. popper.js 1.15.0 (https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz) +322. postcss 6.0.23 (https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz) +323. prelude-ls 1.1.2 (https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz) +324. process 0.11.10 (https://registry.npmjs.org/process/-/process-0.11.10.tgz) +325. process-nextick-args 1.0.7 (https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz) +326. promise 7.3.1 (https://registry.npmjs.org/promise/-/promise-7.3.1.tgz) +327. prop-types 15.7.2 (https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz) +328. pseudomap 1.0.2 (https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz) +329. psl 1.2.0 (https://registry.npmjs.org/psl/-/psl-1.2.0.tgz) +330. ptvsd 4.2.4 (https://github.com/Microsoft/ptvsd/tree/v4.2.4) +331. punycode 2.1.1 (https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz) +332. pure-color 1.3.0 (https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz) +333. py2app (for PyDev.Debugger) (https://bitbucket.org/ronaldoussoren/py2app) +334. PyDev.Debugger (for ptvsd 4) (https://pypi.org/project/pydevd/) +335. pyparsing 2.4.0 (https://github.com/pyparsing/pyparsing/tree/pyparsing_2.4.0) +336. qs 6.5.2 (https://registry.npmjs.org/qs/-/qs-6.5.2.tgz) +337. querystringify 2.1.1 (https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz) +338. quote-stream 1.0.2 (https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz) +339. raf 3.4.1 (https://registry.npmjs.org/raf/-/raf-3.4.1.tgz) +340. react 16.8.6 (https://registry.npmjs.org/react/-/react-16.8.6.tgz) +341. react-annotation 2.1.6 (https://registry.npmjs.org/react-annotation/-/react-annotation-2.1.6.tgz) +342. react-base16-styling 0.5.3 (https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz) +343. react-color 2.17.3 (https://registry.npmjs.org/react-color/-/react-color-2.17.3.tgz) +344. react-data-grid 6.1.0 (https://registry.npmjs.org/react-data-grid/-/react-data-grid-6.1.0.tgz) +345. react-dom 16.8.6 (https://registry.npmjs.org/react-dom/-/react-dom-16.8.6.tgz) +346. react-hot-loader 4.12.6 (https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.12.6.tgz) +347. react-is 16.8.6 (https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz) +348. react-json-tree 0.11.2 (https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.2.tgz) +349. react-lifecycles-compat 3.0.4 (https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz) +350. react-markdown 4.1.0 (https://registry.npmjs.org/react-markdown/-/react-markdown-4.1.0.tgz) +351. react-motion 0.5.2 (https://registry.npmjs.org/react-motion/-/react-motion-0.5.2.tgz) +352. react-move 2.9.1 (https://registry.npmjs.org/react-move/-/react-move-2.9.1.tgz) +353. react-popper 1.3.4 (https://registry.npmjs.org/react-popper/-/react-popper-1.3.4.tgz) +354. react-svg-pan-zoom 3.1.0 (https://registry.npmjs.org/react-svg-pan-zoom/-/react-svg-pan-zoom-3.1.0.tgz) +355. react-svgmt 1.1.8 (https://registry.npmjs.org/react-svgmt/-/react-svgmt-1.1.8.tgz) +356. react-table 6.10.0 (https://registry.npmjs.org/react-table/-/react-table-6.10.0.tgz) +357. react-table-hoc-fixed-columns 1.0.2 (https://registry.npmjs.org/react-table-hoc-fixed-columns/-/react-table-hoc-fixed-columns-1.0.2.tgz) +358. react-transition-group 2.9.0 (https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz) +359. react-virtualized 9.21.1 (https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.21.1.tgz) +360. reactcss 1.2.3 (https://registry.npmjs.org/reactcss/-/reactcss-1.2.3.tgz) +361. readable-stream 3.4.0 (https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz) +362. reflect-metadata 0.1.13 (https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz) +363. regenerator-runtime 0.13.2 (https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz) +364. regression 2.0.1 (https://registry.npmjs.org/regression/-/regression-2.0.1.tgz) +365. remark-parse 5.0.0 (https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz) +366. repeat-string 1.6.1 (https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz) +367. replace-ext 1.0.0 (https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz) +368. request 2.88.0 (https://registry.npmjs.org/request/-/request-2.88.0.tgz) +369. request-progress 3.0.0 (https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz) +370. requires-port 1.0.0 (https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz) +371. resize-observer-polyfill 1.5.1 (https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz) +372. resolve 1.11.1 (https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz) +373. restructure 0.5.4 (https://registry.npmjs.org/restructure/-/restructure-0.5.4.tgz) +374. roughjs-es5 0.1.0 (https://registry.npmjs.org/roughjs-es5/-/roughjs-es5-0.1.0.tgz) +375. rxjs 5.5.12 (https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz) +376. safe-buffer 5.1.2 (https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz) +377. safer-buffer 2.1.2 (https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz) +378. sanitize-html 1.18.5 (https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.5.tgz) +379. sax 0.5.8 (https://registry.npmjs.org/sax/-/sax-0.5.8.tgz) +380. scheduler 0.13.6 (https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz) +381. semiotic 1.19.11 (https://registry.npmjs.org/semiotic/-/semiotic-1.19.11.tgz) +382. semiotic-mark 0.3.1 (https://registry.npmjs.org/semiotic-mark/-/semiotic-mark-0.3.1.tgz) +383. semver 5.7.0 (https://registry.npmjs.org/semver/-/semver-5.7.0.tgz) +384. setImmediate (for RxJS 5.5) (https://github.com/YuzuJS/setImmediate) +385. setimmediate 1.0.5 (https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz) +386. shallow-copy 0.0.1 (https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz) +387. simple-swizzle 0.2.2 (https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz) +388. six 1.12.0 (https://github.com/benjaminp/six/tree/1.12.0) +389. sizzle (for lodash 4.17) (https://sizzlejs.com/) +390. slickgrid 2.4.9 (https://registry.npmjs.org/slickgrid/-/slickgrid-2.4.9.tgz) +391. source-map 0.6.1 (https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz) +392. sprintf-js 1.0.3 (https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz) +393. srcset 1.0.0 (https://registry.npmjs.org/srcset/-/srcset-1.0.0.tgz) +394. sshpk 1.16.1 (https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz) +395. stack-trace 0.0.10 (https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz) +396. state-toggle 1.0.2 (https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.2.tgz) +397. static-eval 2.0.2 (https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz) +398. static-module 2.2.5 (https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz) +399. string-hash 1.1.3 (https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz) +400. string_decoder 1.2.0 (https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz) +401. strip-ansi 5.2.0 (https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz) +402. style-loader 0.23.1 (https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz) +403. styled-jsx 3.2.1 (https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.2.1.tgz) +404. stylis-rule-sheet 0.0.10 (https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz) +405. sudo-prompt 8.2.5 (https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz) +406. supports-color 5.5.0 (https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz) +407. svg-inline-react 3.1.0 (https://registry.npmjs.org/svg-inline-react/-/svg-inline-react-3.1.0.tgz) +408. svg-path-bounding-box 1.0.4 (https://registry.npmjs.org/svg-path-bounding-box/-/svg-path-bounding-box-1.0.4.tgz) +409. svg-to-pdfkit 0.1.7 (https://registry.npmjs.org/svg-to-pdfkit/-/svg-to-pdfkit-0.1.7.tgz) +410. svgpath 2.2.2 (https://registry.npmjs.org/svgpath/-/svgpath-2.2.2.tgz) +411. symbol-observable 1.0.1 (https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz) +412. text-hex 1.0.0 (https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz) +413. throttleit 1.0.0 (https://github.com/component/throttle/tree/1.0.0) +414. through 2.3.8 (https://registry.npmjs.org/through/-/through-2.3.8.tgz) +415. through2 2.0.5 (https://registry.npmjs.org/through2/-/through2-2.0.5.tgz) +416. timers-browserify 2.0.10 (https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz) +417. tiny-inflate 1.0.2 (https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.2.tgz) +418. tinycolor2 1.4.1 (https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz) +419. tinyqueue 1.2.3 (https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz) +420. tmp 0.0.29 (https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz) +421. tough-cookie 2.4.3 (https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz) +422. transformation-matrix 2.0.5 (https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.0.5.tgz) +423. tree-kill 1.2.1 (https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz) +424. trim 0.0.1 (https://registry.npmjs.org/trim/-/trim-0.0.1.tgz) +425. trim-trailing-lines 1.1.2 (https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz) +426. triple-beam 1.3.0 (https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz) +427. trough 1.0.4 (https://registry.npmjs.org/trough/-/trough-1.0.4.tgz) +428. tslib 1.10.0 (https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz) +429. tslint 5.18.0 (https://registry.npmjs.org/tslint/-/tslint-5.18.0.tgz) +430. tsutils 2.29.0 (https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz) +431. tunnel-agent 0.6.0 (https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz) +432. tweetnacl 0.14.5 (https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz) +433. type-check 0.3.2 (https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz) +434. typed-styles 0.0.7 (https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz) +435. typedarray 0.0.6 (https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz) +436. typescript-char 0.0.0 (https://github.com/mason-lang/typescript-char) +437. ua-parser-js 0.7.20 (https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz) +438. uint64be 1.0.1 (https://registry.npmjs.org/uint64be/-/uint64be-1.0.1.tgz) +439. underscore 1.8.3 (https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz) +440. unherit 1.1.2 (https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz) +441. unicode 10.0.0 (https://registry.npmjs.org/unicode/-/unicode-10.0.0.tgz) +442. unicode-trie 0.3.1 (https://registry.npmjs.org/unicode-trie/-/unicode-trie-0.3.1.tgz) +443. unified 6.2.0 (https://registry.npmjs.org/unified/-/unified-6.2.0.tgz) +444. uniqid 5.0.3 (https://registry.npmjs.org/uniqid/-/uniqid-5.0.3.tgz) +445. unist-util-is 3.0.0 (https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz) +446. unist-util-remove-position 1.1.3 (https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz) +447. unist-util-stringify-position 1.1.2 (https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz) +448. unist-util-visit 1.4.1 (https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz) +449. unist-util-visit-parents 1.1.2 (https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz) +450. universalify 0.1.2 (https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz) +451. untildify 3.0.3 (https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz) +452. uri-js 4.2.2 (https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz) +453. url-parse 1.4.7 (https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz) +454. util 0.11.1 (https://registry.npmjs.org/util/-/util-0.11.1.tgz) +455. util-deprecate 1.0.2 (https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz) +456. uuid 3.3.2 (https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz) +457. validator 9.4.1 (https://registry.npmjs.org/validator/-/validator-9.4.1.tgz) +458. verror 1.10.0 (https://registry.npmjs.org/verror/-/verror-1.10.0.tgz) +459. vfile 2.3.0 (https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz) +460. vfile-location 2.0.5 (https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz) +461. vfile-message 1.1.1 (https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz) +462. viz-annotation 0.0.3 (https://registry.npmjs.org/viz-annotation/-/viz-annotation-0.0.3.tgz) +463. vlq 0.2.3 (https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz) +464. vscode-debugadapter 1.35.0 (https://registry.npmjs.org/vscode-debugadapter/-/vscode-debugadapter-1.35.0.tgz) +465. vscode-debugprotocol 1.35.0 (https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.35.0.tgz) +466. vscode-extension-telemetry 0.1.0 (https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.1.0.tgz) +467. vscode-jsonrpc 4.0.0 (https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz) +468. vscode-languageclient 5.2.1 (https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-5.2.1.tgz) +469. vscode-languageserver 5.2.1 (https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz) +470. vscode-languageserver-protocol 3.14.1 (https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz) +471. vscode-languageserver-types 3.14.0 (https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz) +472. vsls 0.3.1291 (https://registry.npmjs.org/vsls/-/vsls-0.3.1291.tgz) +473. warning 4.0.3 (https://registry.npmjs.org/warning/-/warning-4.0.3.tgz) +474. webpack (for lodash 4) (https://webpack.js.org/) +475. whatwg-fetch 3.0.0 (https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz) +476. winreg 1.2.4 (https://github.com/fresc81/node-winreg/tree/v1.2.4) +477. winston 3.2.1 (https://registry.npmjs.org/winston/-/winston-3.2.1.tgz) +478. winston-transport 4.3.0 (https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz) +479. wordwrap 1.0.0 (https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz) +480. wrappy 1.0.2 (https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz) +481. ws 6.2.1 (https://registry.npmjs.org/ws/-/ws-6.2.1.tgz) +482. x-is-string 0.1.0 (https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz) +483. xml2js 0.4.19 (https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz) +484. xmlbuilder 9.0.7 (https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz) +485. xtend 4.0.2 (https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz) +486. yallist 2.1.2 (https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz) +487. zone.js 0.7.6 (https://registry.npmjs.org/zone.js/-/zone.js-0.7.6.tgz) %% @babel/code-frame 7.0.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz) @@ -4090,32 +4081,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ========================================= END OF charenc NOTICES AND INFORMATION -%% cjson 0.3.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/cjson/-/cjson-0.3.0.tgz) -========================================= -Copyright (c) 2015 Oleg Slobodskoi - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF cjson NOTICES AND INFORMATION - %% classnames 2.2.6 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz) ========================================= The MIT License (MIT) @@ -5894,6 +5859,21 @@ THE SOFTWARE. ========================================= END OF delayed-stream NOTICES AND INFORMATION +%% detect-indent 6.0.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz) +========================================= +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +========================================= +END OF detect-indent NOTICES AND INFORMATION + %% dfa 1.2.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz) ========================================= Copyright 2019 dfa developers @@ -6394,19 +6374,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ========================================= END OF duplexer2 NOTICES AND INFORMATION -%% ebnf-parser 0.1.10 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/ebnf-parser/-/ebnf-parser-0.1.10.tgz) -========================================= -Copyright 2014 ebnf-parser contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF ebnf-parser NOTICES AND INFORMATION - %% ecc-jsbn 0.1.2 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz) ========================================= The MIT License (MIT) @@ -6592,31 +6559,6 @@ THE SOFTWARE. ========================================= END OF escape-string-regexp NOTICES AND INFORMATION -%% escodegen 1.3.3 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz) -========================================= -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -========================================= -END OF escodegen NOTICES AND INFORMATION - %% esprima 2.7.3 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz) ========================================= Copyright (c) jQuery Foundation, Inc. and Contributors, All Rights Reserved. @@ -7538,6 +7480,33 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ========================================= END OF iconv-lite NOTICES AND INFORMATION +%% immutable 4.0.0-rc.12 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/immutable/-/immutable-4.0.0-rc.12.tgz) +========================================= +MIT License + +Copyright (c) 2014-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +========================================= +END OF immutable NOTICES AND INFORMATION + %% inflight 1.0.6 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz) ========================================= The ISC License @@ -8074,32 +8043,6 @@ THE SOFTWARE. ========================================= END OF Jedi NOTICES AND INFORMATION -%% jison 0.4.18 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jison/-/jison-0.4.18.tgz) -========================================= -Copyright (c) 2009-2014 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF jison NOTICES AND INFORMATION - -%% jison-lex 0.3.4 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jison-lex/-/jison-lex-0.3.4.tgz) -========================================= -Copyright 2014 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF jison-lex NOTICES AND INFORMATION - %% jquery 3.4.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz) ========================================= Copyright JS Foundation and other contributors, https://js.foundation/ @@ -8490,19 +8433,6 @@ public domain ========================================= END OF jsonify NOTICES AND INFORMATION -%% jsonlint 1.6.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.0.tgz) -========================================= -Copyright (C) 2012 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF jsonlint NOTICES AND INFORMATION - %% jsonparse 1.2.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz) ========================================= The MIT License @@ -8533,25 +8463,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ========================================= END OF jsonparse NOTICES AND INFORMATION -%% JSONSelect 0.4.0 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.4.0.tgz) -========================================= -Copyright (c) 2011, Lloyd Hilaiel - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -========================================= -END OF JSONSelect NOTICES AND INFORMATION - %% jsprim 1.4.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz) ========================================= Copyright (c) 2012, Joyent, Inc. All rights reserved. @@ -8577,37 +8488,6 @@ THE SOFTWARE ========================================= END OF jsprim NOTICES AND INFORMATION -%% JSV 4.0.2 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz) -========================================= -Copyright 2010 Gary Court. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are -permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of - conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list - of conditions and the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The views and conclusions contained in the software and documentation are those of the -authors and should not be interpreted as representing official policies, either expressed -or implied, of Gary Court or the JSON Schema specification. - -========================================= -END OF JSV NOTICES AND INFORMATION - %% kuler 1.0.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz) ========================================= Copyright 2014 Arnout Kazemier @@ -8904,19 +8784,6 @@ OTHER DEALINGS IN THE SOFTWARE. ========================================= END OF levn NOTICES AND INFORMATION -%% lex-parser 0.1.4 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/lex-parser/-/lex-parser-0.1.4.tgz) -========================================= -Copyright 2013 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF lex-parser NOTICES AND INFORMATION - %% line-by-line 0.1.6 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz) ========================================= @@ -10092,32 +9959,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ========================================= END OF node-stream-zip NOTICES AND INFORMATION -%% nomnom 1.5.2 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/nomnom/-/nomnom-1.5.2.tgz) -========================================= -Copyright (c) 2010 Heather Arthur - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -========================================= -END OF nomnom NOTICES AND INFORMATION - %% normalize.css 8.0.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz) ========================================= # The MIT License (MIT) @@ -10678,6 +10519,219 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +========================================= +END OF os-tmpdir NOTICES AND INFORMATION + +%% packaging 19.2 NOTICES AND INFORMATION BEGIN HERE (https://github.com/pypa/packaging/tree/19.2) +========================================= +LICENSE +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. + +LICENSE.APACHE + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +LICENSE.BSD +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + ========================================= END OF packaging NOTICES AND INFORMATION @@ -15719,20 +15773,6 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ========================================= END OF vscode-languageserver-types NOTICES AND INFORMATION -%% vscode-uri 1.0.8 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz) -========================================= -The MIT License (MIT) - -Copyright (c) Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -========================================= -END OF vscode-uri NOTICES AND INFORMATION - %% vsls 0.3.1291 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/vsls/-/vsls-0.3.1291.tgz) ========================================= MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS diff --git a/news/1 Enhancements/4441.md b/news/1 Enhancements/4441.md deleted file mode 100644 index b3671783354c..000000000000 --- a/news/1 Enhancements/4441.md +++ /dev/null @@ -1 +0,0 @@ -Support other variables for notebookFileRoot besides ${workspaceRoot}. Specifically allow things like ${fileDirName} so that the dir of the first file run in the interactive window is used for the current directory. diff --git a/news/1 Enhancements/7800.md b/news/1 Enhancements/7800.md deleted file mode 100644 index 647a10db36eb..000000000000 --- a/news/1 Enhancements/7800.md +++ /dev/null @@ -1 +0,0 @@ -Add command palette commands for native editor (run all cells, run selected cell, add new cell). And remove interactive window commands from contexts where they don't apply. \ No newline at end of file diff --git a/news/1 Enhancements/7831.md b/news/1 Enhancements/7831.md deleted file mode 100644 index cd8ca8a6c628..000000000000 --- a/news/1 Enhancements/7831.md +++ /dev/null @@ -1 +0,0 @@ -Added ability to auto-save chagnes made to the notebook. diff --git a/news/2 Fixes/7483.md b/news/2 Fixes/7483.md deleted file mode 100644 index c8b22aada88f..000000000000 --- a/news/2 Fixes/7483.md +++ /dev/null @@ -1 +0,0 @@ -Perf improvements for opening notebooks with more than 100 cells. diff --git a/news/2 Fixes/7569.md b/news/2 Fixes/7569.md deleted file mode 100644 index 20e5e8a45853..000000000000 --- a/news/2 Fixes/7569.md +++ /dev/null @@ -1 +0,0 @@ -Fix jupyter server startup hang when xeus-cling kernel is installed. diff --git a/news/2 Fixes/7624.md b/news/2 Fixes/7624.md deleted file mode 100644 index 1875f4ca313b..000000000000 --- a/news/2 Fixes/7624.md +++ /dev/null @@ -1 +0,0 @@ -Make interactive window and native take their fontSize and fontFamily from the settings in VS Code. diff --git a/news/2 Fixes/7638.md b/news/2 Fixes/7638.md deleted file mode 100644 index dea499b65438..000000000000 --- a/news/2 Fixes/7638.md +++ /dev/null @@ -1 +0,0 @@ -Fix a hang in the Interactive window when connecting guest to host after the host has already started the interactive window. \ No newline at end of file diff --git a/news/2 Fixes/7674.md b/news/2 Fixes/7674.md deleted file mode 100644 index 69467e4d436b..000000000000 --- a/news/2 Fixes/7674.md +++ /dev/null @@ -1,2 +0,0 @@ -Change the default cell marker to '# %%' instead of '#%%' to prevent linter errors in python files with markers. -Also added a new setting to change this - 'python.dataScience.defaultCellMarker'. diff --git a/news/2 Fixes/7688.md b/news/2 Fixes/7688.md deleted file mode 100644 index 9c7cea856132..000000000000 --- a/news/2 Fixes/7688.md +++ /dev/null @@ -1 +0,0 @@ -When there's no workspace open, use the directory of the opened file as the root directory for a jupyter session. diff --git a/news/2 Fixes/7802.md b/news/2 Fixes/7802.md deleted file mode 100644 index 969f2f7feccd..000000000000 --- a/news/2 Fixes/7802.md +++ /dev/null @@ -1 +0,0 @@ -Fix selection and focus not updating when clicking around in a notebook editor. diff --git a/news/2 Fixes/7820.md b/news/2 Fixes/7820.md deleted file mode 100644 index 74f0775bdb7d..000000000000 --- a/news/2 Fixes/7820.md +++ /dev/null @@ -1 +0,0 @@ -Fix add new cell buttons in the notebook editor to give the new cell focus. diff --git a/news/2 Fixes/7836.md b/news/2 Fixes/7836.md deleted file mode 100644 index aea13d8ebb88..000000000000 --- a/news/2 Fixes/7836.md +++ /dev/null @@ -1 +0,0 @@ -Do not use the PTVSD package version in the folder name for the wheel experiment. \ No newline at end of file diff --git a/news/2 Fixes/7844.md b/news/2 Fixes/7844.md deleted file mode 100644 index f49616593f8a..000000000000 --- a/news/2 Fixes/7844.md +++ /dev/null @@ -1 +0,0 @@ -Prevent updates to the cell text when cell execution of the same cell has commenced or completed. diff --git a/news/2 Fixes/7851.md b/news/2 Fixes/7851.md deleted file mode 100644 index d45e641a6d22..000000000000 --- a/news/2 Fixes/7851.md +++ /dev/null @@ -1 +0,0 @@ -Hide the parameters intellisense widget in the `Notebook Editor` when it is not longer required. diff --git a/news/2 Fixes/7888.md b/news/2 Fixes/7888.md deleted file mode 100644 index c1714788317c..000000000000 --- a/news/2 Fixes/7888.md +++ /dev/null @@ -1 +0,0 @@ -Allow the "Create New Blank Jupyter Notebook" command to be run when the python extension is not loaded yet. \ No newline at end of file diff --git a/news/2 Fixes/7899.md b/news/2 Fixes/7899.md deleted file mode 100644 index 7fe6b48d5688..000000000000 --- a/news/2 Fixes/7899.md +++ /dev/null @@ -1 +0,0 @@ -Ensure the `*.trie` files related to `font kit` npm module are copied into the output directory as part of the `Webpack` bundling operation. diff --git a/news/2 Fixes/7904.md b/news/2 Fixes/7904.md deleted file mode 100644 index 6680937198b7..000000000000 --- a/news/2 Fixes/7904.md +++ /dev/null @@ -1 +0,0 @@ -CTRL+S is not saving a Notebook file. diff --git a/news/2 Fixes/7905.md b/news/2 Fixes/7905.md deleted file mode 100644 index 096640f862c8..000000000000 --- a/news/2 Fixes/7905.md +++ /dev/null @@ -1 +0,0 @@ -When automatically opening the `Notebook Editor`, then ignore uris that do not have a `file` scheme diff --git a/news/2 Fixes/7960.md b/news/2 Fixes/7960.md deleted file mode 100644 index a341718fdcb0..000000000000 --- a/news/2 Fixes/7960.md +++ /dev/null @@ -1 +0,0 @@ -Minimize the changes to an ipynb file when saving - preserve metadata and spacing. diff --git a/news/2 Fixes/8009.md b/news/2 Fixes/8009.md deleted file mode 100644 index 045df2aba2ce..000000000000 --- a/news/2 Fixes/8009.md +++ /dev/null @@ -1 +0,0 @@ -Fix intellisense popping up in the wrong spot when first typing in a cell. diff --git a/news/2 Fixes/8010.md b/news/2 Fixes/8010.md deleted file mode 100644 index a0b0378621d2..000000000000 --- a/news/2 Fixes/8010.md +++ /dev/null @@ -1 +0,0 @@ -Fix python.dataScience.maxOutputSize to be honored again. diff --git a/news/2 Fixes/8045.md b/news/2 Fixes/8045.md deleted file mode 100644 index aa1a10ecd523..000000000000 --- a/news/2 Fixes/8045.md +++ /dev/null @@ -1 +0,0 @@ -Fix markdown disappearing after editing and hitting the escape key. diff --git a/news/3 Code Health/7372.md b/news/3 Code Health/7372.md deleted file mode 100644 index 332da98db687..000000000000 --- a/news/3 Code Health/7372.md +++ /dev/null @@ -1 +0,0 @@ -More functional tests for the notebook editor. diff --git a/news/3 Code Health/7832.md b/news/3 Code Health/7832.md deleted file mode 100644 index ee4faa776756..000000000000 --- a/news/3 Code Health/7832.md +++ /dev/null @@ -1 +0,0 @@ -Update version of `@types/vscode`. diff --git a/news/3 Code Health/7834.md b/news/3 Code Health/7834.md deleted file mode 100644 index 3bd2421b2b27..000000000000 --- a/news/3 Code Health/7834.md +++ /dev/null @@ -1 +0,0 @@ -Use `Webview.asWebviewUri` to generate a URI for use in the `Webview Panel` instead of hardcoding the resource `vscode-resource`. diff --git a/package-lock.json b/package-lock.json index 6ab89ccda965..5abaca6979da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2159,13 +2159,13 @@ }, "@types/json5": { "version": "0.0.29", - "resolved": "http://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", "dev": true }, "@types/loader-utils": { "version": "1.1.3", - "resolved": "http://registry.npmjs.org/@types/loader-utils/-/loader-utils-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/@types/loader-utils/-/loader-utils-1.1.3.tgz", "integrity": "sha512-euKGFr2oCB3ASBwG39CYJMR3N9T0nanVqXdiH7Zu/Nqddt6SmFRxytq/i2w9LQYNQekEtGBz+pE3qG6fQTNvRg==", "dev": true, "requires": { @@ -2290,7 +2290,7 @@ }, "@types/relateurl": { "version": "0.2.28", - "resolved": "http://registry.npmjs.org/@types/relateurl/-/relateurl-0.2.28.tgz", + "resolved": "https://registry.npmjs.org/@types/relateurl/-/relateurl-0.2.28.tgz", "integrity": "sha1-a9p9uGU/piZD9e5p6facEaOS46Y=", "dev": true }, @@ -3709,7 +3709,7 @@ }, "babel-plugin-syntax-jsx": { "version": "6.18.0", - "resolved": "http://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", "dev": true }, @@ -4248,7 +4248,7 @@ }, "browserify-aes": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "requires": { @@ -4300,7 +4300,7 @@ }, "browserify-rsa": { "version": "4.0.1", - "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", "dev": true, "requires": { @@ -4558,13 +4558,14 @@ "dev": true }, "canvas": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/canvas/-/canvas-2.0.1.tgz", - "integrity": "sha512-aVESjDBMXGRL+aZqjFtxMVOg8KzHhNcKIscoeC8OROccmApKOriHsnySxq228Kc+3tzB9Qc6tzD4ukp9Zjwz1Q==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/canvas/-/canvas-2.6.0.tgz", + "integrity": "sha512-bEO9f1ThmbknLPxCa8Es7obPlN9W3stB1bo7njlhOFKIdUTldeTqXCh9YclCPAi2pSQs84XA0jq/QEZXSzgyMw==", "dev": true, "requires": { - "nan": "^2.11.1", - "node-pre-gyp": "^0.11.0" + "nan": "^2.14.0", + "node-pre-gyp": "^0.11.0", + "simple-get": "^3.0.3" } }, "caseless": { @@ -5845,7 +5846,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "requires": { "core-util-is": "~1.0.0", @@ -6346,7 +6347,7 @@ }, "create-hash": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "dev": true, "requires": { @@ -6359,7 +6360,7 @@ }, "create-hmac": { "version": "1.1.7", - "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "requires": { @@ -7371,7 +7372,7 @@ }, "diffie-hellman": { "version": "5.0.3", - "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "requires": { @@ -8096,7 +8097,7 @@ }, "event-stream": { "version": "3.3.4", - "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", "dev": true, "requires": { @@ -8436,7 +8437,7 @@ }, "external-editor": { "version": "2.2.0", - "resolved": "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", "dev": true, "requires": { @@ -9106,12 +9107,12 @@ } }, "fs-minipass": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz", - "integrity": "sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "dev": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.6.0" } }, "fs-mkdirp-stream": { @@ -9992,7 +9993,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { @@ -10718,7 +10719,7 @@ }, "html-webpack-plugin": { "version": "3.2.0", - "resolved": "http://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz", "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=", "dev": true, "requires": { @@ -12717,7 +12718,7 @@ }, "media-typer": { "version": "0.3.0", - "resolved": "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "dev": true }, @@ -12944,9 +12945,9 @@ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, "minipass": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz", - "integrity": "sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, "requires": { "safe-buffer": "^5.1.2", @@ -12954,20 +12955,20 @@ }, "dependencies": { "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } }, "minizlib": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz", - "integrity": "sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", "dev": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.9.0" } }, "mississippi": { @@ -13867,9 +13868,9 @@ } }, "npm-packlist": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.4.tgz", - "integrity": "sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==", + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.6.tgz", + "integrity": "sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg==", "dev": true, "requires": { "ignore-walk": "^3.0.1", @@ -14632,7 +14633,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { @@ -15456,7 +15457,7 @@ }, "queue": { "version": "3.1.0", - "resolved": "http://registry.npmjs.org/queue/-/queue-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/queue/-/queue-3.1.0.tgz", "integrity": "sha1-bEnQHwCeIlZ4h4nyv/rGuLmZBYU=", "dev": true, "requires": { @@ -16931,7 +16932,7 @@ }, "sha.js": { "version": "2.4.11", - "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dev": true, "requires": { @@ -17025,9 +17026,43 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, + "simple-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz", + "integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=", + "dev": true + }, + "simple-get": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", + "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "dev": true, + "requires": { + "decompress-response": "^4.2.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + }, + "dependencies": { + "decompress-response": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", + "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", + "dev": true, + "requires": { + "mimic-response": "^2.0.0" + } + }, + "mimic-response": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.0.0.tgz", + "integrity": "sha512-8ilDoEapqA4uQ3TwS0jakGONKXVJqpy+RpM+3b7pLdOjghCrEiGp9SRkFbUHAmZW9vdnrENWHjaweIoTIJExSQ==", + "dev": true + } + } + }, "simple-html-tokenizer": { "version": "0.1.1", - "resolved": "http://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz", "integrity": "sha1-BcLuxXn//+FFoDCsJs/qYbmA+r4=", "dev": true }, @@ -17630,7 +17665,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { @@ -18002,14 +18037,14 @@ "dev": true }, "tar": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz", - "integrity": "sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==", + "version": "4.4.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", + "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", "dev": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", - "minipass": "^2.3.5", + "minipass": "^2.8.6", "minizlib": "^1.2.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", @@ -18017,9 +18052,9 @@ }, "dependencies": { "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } @@ -18822,7 +18857,7 @@ "dependencies": { "@types/react": { "version": "0.14.57", - "resolved": "http://registry.npmjs.org/@types/react/-/react-0.14.57.tgz", + "resolved": "https://registry.npmjs.org/@types/react/-/react-0.14.57.tgz", "integrity": "sha1-GHioZU+v3R04G4RXKStkM0mMW2I=", "dev": true } @@ -19479,7 +19514,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { @@ -20004,7 +20039,7 @@ }, "webpack-node-externals": { "version": "1.7.2", - "resolved": "http://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-1.7.2.tgz", + "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-1.7.2.tgz", "integrity": "sha512-ajerHZ+BJKeCLviLUUmnyd5B4RavLF76uv3cs6KNuO8W+HuQaEs0y0L7o40NQxdPy5w0pcv8Ew7yPUAQG0UdCg==", "dev": true }, @@ -20189,7 +20224,7 @@ }, "wrap-ansi": { "version": "2.1.0", - "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "dev": true, "requires": { diff --git a/package.json b/package.json index ff9717b9cf9f..f7b874406d61 100644 --- a/package.json +++ b/package.json @@ -2812,7 +2812,7 @@ "bootstrap": "^4.3.1", "bootstrap-less": "^3.3.8", "brfs": "^2.0.2", - "canvas": "2.0.1", + "canvas": "^2.6.0", "chai": "^4.1.2", "chai-arrays": "^2.0.0", "chai-as-promised": "^7.1.1", diff --git a/tpn/distribution.toml b/tpn/distribution.toml index 93395388d7d4..4c9d743606ec 100644 --- a/tpn/distribution.toml +++ b/tpn/distribution.toml @@ -598,39 +598,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ -[[project]] -name = "JSV" -version = "4.0.2" -url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz" -purpose = "npm" -license = """ -Copyright 2010 Gary Court. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are -permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of - conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list - of conditions and the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The views and conclusions contained in the software and documentation are those of the -authors and should not be interpreted as representing official policies, either expressed -or implied, of Gary Court or the JSON Schema specification. -""" - [[project]] name = "Jedi" version = "0.13.3" @@ -1143,34 +1110,6 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -[[project]] -name = "cjson" -version = "0.3.0" -url = "https://registry.npmjs.org/cjson/-/cjson-0.3.0.tgz" -purpose = "npm" -license = """ -Copyright (c) 2015 Oleg Slobodskoi - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - [[project]] name = "dfa" version = "1.2.0" @@ -1199,21 +1138,6 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -[[project]] -name = "ebnf-parser" -version = "0.1.10" -url = "https://registry.npmjs.org/ebnf-parser/-/ebnf-parser-0.1.10.tgz" -purpose = "npm" -license = """ -Copyright 2014 ebnf-parser contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - [[project]] name = "esutils" version = "1.0.0" @@ -1401,36 +1325,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -[[project]] -name = "jison" -version = "0.4.18" -url = "https://registry.npmjs.org/jison/-/jison-0.4.18.tgz" -purpose = "npm" -license = """ -Copyright (c) 2009-2014 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - -[[project]] -name = "jison-lex" -version = "0.3.4" -url = "https://registry.npmjs.org/jison-lex/-/jison-lex-0.3.4.tgz" -purpose = "npm" -license = """ -Copyright 2014 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - [[project]] name = "json-schema" version = "0.2.3" @@ -1457,36 +1351,6 @@ license = """ public domain """ -[[project]] -name = "jsonlint" -version = "1.6.0" -url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.0.tgz" -purpose = "npm" -license = """ -Copyright (C) 2012 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - -[[project]] -name = "lex-parser" -version = "0.1.4" -url = "https://registry.npmjs.org/lex-parser/-/lex-parser-0.1.4.tgz" -purpose = "npm" -license = """ -Copyright 2013 Zachary Carter - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -""" - [[project]] name = "linear-layout-vector" version = "0.0.1" @@ -1583,31 +1447,218 @@ SOFTWARE. """ [[project]] -name = "nomnom" -version = "1.5.2" -url = "https://registry.npmjs.org/nomnom/-/nomnom-1.5.2.tgz" -purpose = "npm" -license = """ -Copyright (c) 2010 Heather Arthur +name = "packaging" +version = "19.2" +url = "https://github.com/pypa/packaging/tree/19.2" +purpose="PyPI" +license=""" +LICENSE +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +LICENSE.APACHE + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +LICENSE.BSD +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ [[project]]