From e1e3f31839c32af3c2ac2c5564d22a4a5cd39f74 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 20 Sep 2016 10:02:16 +0200 Subject: [PATCH 01/11] Hide mouse pointer in full screen mode #620 --- dist/main.css | Bin 30732 -> 30744 bytes src/styles/_imageview.scss | 9 +++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dist/main.css b/dist/main.css index 458973fc9e8043ffd23be2b67e3284ce4294f1e2..4836b84f80fb20790e96862548966089e501b3fb 100644 GIT binary patch delta 27 jcmeDAz&PUr Date: Sun, 25 Sep 2016 12:58:31 +0200 Subject: [PATCH 02/11] Smoothing rotation of album #626 Keep the composited layer created by the browser during the animation. Makes the border of the transformed thumb look better. --- src/styles/_content.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/_content.scss b/src/styles/_content.scss index ebbb1a9..5b21654 100644 --- a/src/styles/_content.scss +++ b/src/styles/_content.scss @@ -85,6 +85,10 @@ &:hover img:nth-child(1), &:hover img:nth-child(2) { opacity: 1; + // Keep the composited layer created by the browser during the animation. + // Makes the border of the transformed thumb look better. + // See https://github.com/electerious/Lychee/pull/626 for more. + will-change: transform; } &:hover img:nth-child(1) { From 5c1ee46a219d63c7dbf0c2cc3d8dc448b1a63601 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Sun, 25 Sep 2016 13:01:02 +0200 Subject: [PATCH 03/11] Updated deps --- src/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/package.json b/src/package.json index 271a6e5..79529f6 100644 --- a/src/package.json +++ b/src/package.json @@ -14,20 +14,20 @@ "compile": "gulp" }, "dependencies": { - "babel-preset-es2015": "^6.13.2", + "babel-preset-es2015": "^6.14.0", "basiccontext": "^3.5.1", "basicmodal": "^3.3.7", "gulp": "^3.9.1", - "gulp-autoprefixer": "3.1.0", + "gulp-autoprefixer": "3.1.1", "gulp-babel": "^6.1.2", "gulp-concat": "^2.6.0", "gulp-inject": "^4.1.0", - "gulp-load-plugins": "^1.2.4", + "gulp-load-plugins": "^1.3.0", "gulp-minify-css": "^1.2.4", "gulp-rimraf": "^0.2.0", "gulp-sass": "^2.3.2", "gulp-uglify": "^2.0.0", - "jquery": "^3.1.0", + "jquery": "^3.1.1", "mousetrap": "^1.6.0" } } From 89b4f56160cb9197722ebe6e66b4c1cfde09063a Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Sun, 25 Sep 2016 13:01:36 +0200 Subject: [PATCH 04/11] Improve auto-fullscreen delay #625 --- src/scripts/view.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/scripts/view.js b/src/scripts/view.js index 5489fea..65da54a 100644 --- a/src/scripts/view.js +++ b/src/scripts/view.js @@ -309,11 +309,11 @@ view.photo = { $('body').css('overflow', 'hidden') // Fullscreen - var timeout + let timeout = null $(document).bind('mousemove', function() { clearTimeout(timeout) header.show() - timeout = setTimeout(header.hide, 1000) + timeout = setTimeout(header.hide, 2500) }) lychee.animate(lychee.imageview, 'fadeIn') @@ -331,8 +331,7 @@ view.photo = { $('body').css('overflow', 'auto') // Disable Fullscreen - $(document) - .unbind('mousemove') + $(document).unbind('mousemove') // Hide Photo lychee.animate(lychee.imageview, 'fadeOut') From 9c202f291baa6f2347431cd580ba85ee8adbe381 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Sun, 25 Sep 2016 13:04:35 +0200 Subject: [PATCH 05/11] Rebuild --- dist/main.css | Bin 30744 -> 30766 bytes dist/main.js | Bin 192964 -> 192970 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/dist/main.css b/dist/main.css index 4836b84f80fb20790e96862548966089e501b3fb..1a15394f95a8e6e8de8b1432c284f1ec2447fe46 100644 GIT binary patch delta 41 xcmbR7fpOgj#tm88V%FuEIXSw?8Hsu6sa7RLiFw6o`9-;t{d80}_iK0h003vA5R?D_ delta 18 acmZ4YfpNwM#tm88lc(zmY@VP!&j$chEC?E47Lq# delta 28 kcmX^0nES|M?uHh|Ele6ur|UjtN? Date: Tue, 25 Oct 2016 18:07:16 +0200 Subject: [PATCH 06/11] Updated deps --- src/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.json b/src/package.json index 79529f6..6abbc95 100644 --- a/src/package.json +++ b/src/package.json @@ -14,7 +14,7 @@ "compile": "gulp" }, "dependencies": { - "babel-preset-es2015": "^6.14.0", + "babel-preset-es2015": "^6.18.0", "basiccontext": "^3.5.1", "basicmodal": "^3.3.7", "gulp": "^3.9.1", From 3a6c89ba879bbea731ec50c874db92c6248d584f Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 25 Oct 2016 18:07:51 +0200 Subject: [PATCH 07/11] Added v3.1.5 to changelog --- docs/Changelog.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/Changelog.md b/docs/Changelog.md index b5fbb9c..b2be69a 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,3 +1,10 @@ +## v3.1.5 + +Released October 25, 2016 + +- `New` Hide mouse pointer in full screen mode (#620) +- `Improved` Smoothing rotation of album (#626) + ## v3.1.4 Released August 28, 2016 From 623325691f3d816b49bc1fc010460c8463a278b7 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 25 Oct 2016 18:11:27 +0200 Subject: [PATCH 08/11] =?UTF-8?q?Nobody=20needs=20a=20copyright=20in=20eac?= =?UTF-8?q?h=20file=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scripts/album.js | 1 - src/scripts/albums.js | 1 - src/scripts/api.js | 1 - src/scripts/build.js | 1 - src/scripts/contextMenu.js | 1 - src/scripts/header.js | 1 - src/scripts/init.js | 1 - src/scripts/loadingBar.js | 1 - src/scripts/lychee.js | 1 - src/scripts/multiselect.js | 1 - src/scripts/password.js | 1 - src/scripts/photo.js | 1 - src/scripts/search.js | 1 - src/scripts/settings.js | 1 - src/scripts/sidebar.js | 1 - src/scripts/swipe.js | 1 - src/scripts/upload.js | 1 - src/scripts/view.js | 1 - src/scripts/view/main.js | 1 - src/scripts/visible.js | 1 - src/styles/main.scss | 4 ---- 21 files changed, 24 deletions(-) diff --git a/src/scripts/album.js b/src/scripts/album.js index 544eb25..65cbaf6 100644 --- a/src/scripts/album.js +++ b/src/scripts/album.js @@ -1,6 +1,5 @@ /** * @description Takes care of every action an album can handle and execute. - * @copyright 2015 by Tobias Reich */ album = { diff --git a/src/scripts/albums.js b/src/scripts/albums.js index 26f8ea7..d6913d6 100644 --- a/src/scripts/albums.js +++ b/src/scripts/albums.js @@ -1,6 +1,5 @@ /** * @description Takes care of every action albums can handle and execute. - * @copyright 2015 by Tobias Reich */ albums = { diff --git a/src/scripts/api.js b/src/scripts/api.js index 0cbfc15..81d9faf 100644 --- a/src/scripts/api.js +++ b/src/scripts/api.js @@ -1,6 +1,5 @@ /** * @description This module communicates with Lychee's API - * @copyright 2015 by Tobias Reich */ api = { diff --git a/src/scripts/build.js b/src/scripts/build.js index 513f39b..1037169 100644 --- a/src/scripts/build.js +++ b/src/scripts/build.js @@ -1,6 +1,5 @@ /** * @description This module is used to generate HTML-Code. - * @copyright 2015 by Tobias Reich */ build = {} diff --git a/src/scripts/contextMenu.js b/src/scripts/contextMenu.js index 806487d..7a9904f 100644 --- a/src/scripts/contextMenu.js +++ b/src/scripts/contextMenu.js @@ -1,6 +1,5 @@ /** * @description This module is used for the context menu. - * @copyright 2015 by Tobias Reich */ contextMenu = {} diff --git a/src/scripts/header.js b/src/scripts/header.js index 58f6f6e..ee48783 100644 --- a/src/scripts/header.js +++ b/src/scripts/header.js @@ -1,6 +1,5 @@ /** * @description This module takes care of the header. - * @copyright 2015 by Tobias Reich */ header = { diff --git a/src/scripts/init.js b/src/scripts/init.js index de6211a..da535b7 100755 --- a/src/scripts/init.js +++ b/src/scripts/init.js @@ -1,6 +1,5 @@ /** * @description This module is used for bindings. - * @copyright 2015 by Tobias Reich */ $(document).ready(function() { diff --git a/src/scripts/loadingBar.js b/src/scripts/loadingBar.js index 732d0e5..0ab9726 100755 --- a/src/scripts/loadingBar.js +++ b/src/scripts/loadingBar.js @@ -1,6 +1,5 @@ /** * @description This module is used to show and hide the loading bar. - * @copyright 2015 by Tobias Reich */ loadingBar = { diff --git a/src/scripts/lychee.js b/src/scripts/lychee.js index 402b3a9..8764351 100644 --- a/src/scripts/lychee.js +++ b/src/scripts/lychee.js @@ -1,6 +1,5 @@ /** * @description This module provides the basic functions of Lychee. - * @copyright 2015 by Tobias Reich */ lychee = { diff --git a/src/scripts/multiselect.js b/src/scripts/multiselect.js index 7421def..31f2ffb 100644 --- a/src/scripts/multiselect.js +++ b/src/scripts/multiselect.js @@ -1,6 +1,5 @@ /** * @description Select multiple albums or photos. - * @copyright 2015 by Tobias Reich */ multiselect = {} diff --git a/src/scripts/password.js b/src/scripts/password.js index 4fc110a..6ca4484 100644 --- a/src/scripts/password.js +++ b/src/scripts/password.js @@ -1,6 +1,5 @@ /** * @description Controls the access to password-protected albums and photos. - * @copyright 2015 by Tobias Reich */ password = { diff --git a/src/scripts/photo.js b/src/scripts/photo.js index 8949e56..e0b2586 100644 --- a/src/scripts/photo.js +++ b/src/scripts/photo.js @@ -1,6 +1,5 @@ /** * @description Takes care of every action a photo can handle and execute. - * @copyright 2015 by Tobias Reich */ photo = { diff --git a/src/scripts/search.js b/src/scripts/search.js index 216c8c8..a7ea8f0 100755 --- a/src/scripts/search.js +++ b/src/scripts/search.js @@ -1,6 +1,5 @@ /** * @description Searches through your photos and albums. - * @copyright 2015 by Tobias Reich */ search = { diff --git a/src/scripts/settings.js b/src/scripts/settings.js index a28f84a..fa4a54b 100644 --- a/src/scripts/settings.js +++ b/src/scripts/settings.js @@ -1,6 +1,5 @@ /** * @description Lets you change settings. - * @copyright 2015 by Tobias Reich */ settings = {} diff --git a/src/scripts/sidebar.js b/src/scripts/sidebar.js index 69d42fa..832dba7 100644 --- a/src/scripts/sidebar.js +++ b/src/scripts/sidebar.js @@ -1,6 +1,5 @@ /** * @description This module takes care of the sidebar. - * @copyright 2015 by Tobias Reich */ sidebar = { diff --git a/src/scripts/swipe.js b/src/scripts/swipe.js index 16bd54e..b8fec14 100644 --- a/src/scripts/swipe.js +++ b/src/scripts/swipe.js @@ -1,6 +1,5 @@ /** * @description Swipes and moves an object. - * @copyright 2015 by Tobias Reich */ swipe = { diff --git a/src/scripts/upload.js b/src/scripts/upload.js index 46fb1d0..9ef1025 100755 --- a/src/scripts/upload.js +++ b/src/scripts/upload.js @@ -1,6 +1,5 @@ /** * @description Takes care of every action an album can handle and execute. - * @copyright 2015 by Tobias Reich */ upload = {} diff --git a/src/scripts/view.js b/src/scripts/view.js index 65da54a..57246ee 100644 --- a/src/scripts/view.js +++ b/src/scripts/view.js @@ -1,6 +1,5 @@ /** * @description Responsible to reflect data changes to the UI. - * @copyright 2015 by Tobias Reich */ view = {} diff --git a/src/scripts/view/main.js b/src/scripts/view/main.js index 107b2b8..48d03ef 100644 --- a/src/scripts/view/main.js +++ b/src/scripts/view/main.js @@ -1,6 +1,5 @@ /** * @description Used to view single photos with view.php - * @copyright 2015 by Tobias Reich */ // Sub-implementation of lychee -------------------------------------------------------------- // diff --git a/src/scripts/visible.js b/src/scripts/visible.js index 155f161..fd93189 100755 --- a/src/scripts/visible.js +++ b/src/scripts/visible.js @@ -1,6 +1,5 @@ /** * @description This module is used to check if elements are visible or not. - * @copyright 2015 by Tobias Reich */ visible = {} diff --git a/src/styles/main.scss b/src/styles/main.scss index f4f6c66..6d80680 100755 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -1,7 +1,3 @@ -/** - * @copyright 2015 by Tobias Reich - */ - // Functions --------------------------------------------------------------- // @function black($opacity) { @return rgba(0, 0, 0, $opacity); From 424ac3d5b59126eb416ab24ecf822a57f59f6860 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 25 Oct 2016 18:11:38 +0200 Subject: [PATCH 09/11] Removed npm-shrinkwrap --- src/npm-shrinkwrap.json | 3531 --------------------------------------- 1 file changed, 3531 deletions(-) delete mode 100644 src/npm-shrinkwrap.json diff --git a/src/npm-shrinkwrap.json b/src/npm-shrinkwrap.json deleted file mode 100644 index 0788375..0000000 --- a/src/npm-shrinkwrap.json +++ /dev/null @@ -1,3531 +0,0 @@ -{ - "name": "Lychee", - "version": "3.1.2", - "dependencies": { - "abbrev": { - "version": "1.0.9", - "from": "abbrev@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz" - }, - "align-text": { - "version": "0.1.4", - "from": "align-text@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz" - }, - "amdefine": { - "version": "1.0.0", - "from": "amdefine@>=0.0.4", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" - }, - "ansi-regex": { - "version": "2.0.0", - "from": "ansi-regex@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" - }, - "ansi-styles": { - "version": "2.2.0", - "from": "ansi-styles@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.0.tgz" - }, - "any-promise": { - "version": "1.3.0", - "from": "any-promise@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" - }, - "aproba": { - "version": "1.0.4", - "from": "aproba@>=1.0.3 <2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.0.4.tgz" - }, - "archy": { - "version": "1.0.0", - "from": "archy@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz" - }, - "are-we-there-yet": { - "version": "1.1.2", - "from": "are-we-there-yet@>=1.1.2 <1.2.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz" - }, - "arr-diff": { - "version": "2.0.0", - "from": "arr-diff@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz" - }, - "arr-flatten": { - "version": "1.0.1", - "from": "arr-flatten@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz" - }, - "array-differ": { - "version": "1.0.0", - "from": "array-differ@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz" - }, - "array-find-index": { - "version": "1.0.1", - "from": "array-find-index@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.1.tgz" - }, - "array-index": { - "version": "1.0.0", - "from": "array-index@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/array-index/-/array-index-1.0.0.tgz" - }, - "array-uniq": { - "version": "1.0.2", - "from": "array-uniq@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" - }, - "array-unique": { - "version": "0.2.1", - "from": "array-unique@>=0.2.1 <0.3.0", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" - }, - "arrify": { - "version": "1.0.1", - "from": "arrify@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" - }, - "asn1": { - "version": "0.2.3", - "from": "asn1@>=0.2.3 <0.3.0", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz" - }, - "assert-plus": { - "version": "0.2.0", - "from": "assert-plus@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" - }, - "async": { - "version": "1.5.2", - "from": "async@>=1.5.2 <2.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" - }, - "async-foreach": { - "version": "0.1.3", - "from": "async-foreach@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz" - }, - "autoprefixer": { - "version": "6.3.3", - "from": "autoprefixer@>=6.0.0 <7.0.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.3.3.tgz" - }, - "aws-sign2": { - "version": "0.6.0", - "from": "aws-sign2@>=0.6.0 <0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz" - }, - "aws4": { - "version": "1.4.1", - "from": "aws4@>=1.2.1 <2.0.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.4.1.tgz" - }, - "babel-code-frame": { - "version": "6.7.2", - "from": "babel-code-frame@>=6.7.2 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.7.2.tgz" - }, - "babel-core": { - "version": "6.7.2", - "from": "babel-core@>=6.6.5 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.7.2.tgz" - }, - "babel-generator": { - "version": "6.7.2", - "from": "babel-generator@>=6.7.2 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.7.2.tgz" - }, - "babel-helper-call-delegate": { - "version": "6.8.0", - "from": "babel-helper-call-delegate@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-define-map": { - "version": "6.9.0", - "from": "babel-helper-define-map@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.9.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-function-name": { - "version": "6.8.0", - "from": "babel-helper-function-name@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-get-function-arity": { - "version": "6.8.0", - "from": "babel-helper-get-function-arity@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-hoist-variables": { - "version": "6.8.0", - "from": "babel-helper-hoist-variables@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-optimise-call-expression": { - "version": "6.8.0", - "from": "babel-helper-optimise-call-expression@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-regex": { - "version": "6.9.0", - "from": "babel-helper-regex@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.9.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helper-replace-supers": { - "version": "6.8.0", - "from": "babel-helper-replace-supers@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-helpers": { - "version": "6.6.0", - "from": "babel-helpers@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.6.0.tgz" - }, - "babel-messages": { - "version": "6.7.2", - "from": "babel-messages@>=6.7.2 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.7.2.tgz" - }, - "babel-plugin-check-es2015-constants": { - "version": "6.8.0", - "from": "babel-plugin-check-es2015-constants@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@>=6.0.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@>=2.4.0 <3.0.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-syntax-async-functions": { - "version": "6.13.0", - "from": "babel-plugin-syntax-async-functions@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz" - }, - "babel-plugin-transform-es2015-arrow-functions": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-arrow-functions@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-block-scoped-functions": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-block-scoped-functions@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-block-scoping": { - "version": "6.10.1", - "from": "babel-plugin-transform-es2015-block-scoping@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.10.1.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@>=6.10.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@>=4.2.0 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-classes": { - "version": "6.9.0", - "from": "babel-plugin-transform-es2015-classes@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.9.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-computed-properties": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-computed-properties@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-destructuring": { - "version": "6.9.0", - "from": "babel-plugin-transform-es2015-destructuring@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.9.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-duplicate-keys": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-duplicate-keys@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-for-of": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-for-of@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-function-name": { - "version": "6.9.0", - "from": "babel-plugin-transform-es2015-function-name@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-literals": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-literals@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-modules-amd": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-modules-amd@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.11.5", - "from": "babel-plugin-transform-es2015-modules-commonjs@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.11.5.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-modules-systemjs": { - "version": "6.12.0", - "from": "babel-plugin-transform-es2015-modules-systemjs@>=6.12.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.12.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.11.6", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-modules-umd": { - "version": "6.12.0", - "from": "babel-plugin-transform-es2015-modules-umd@>=6.12.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.12.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-object-super": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-object-super@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-parameters": { - "version": "6.11.4", - "from": "babel-plugin-transform-es2015-parameters@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.11.4.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.11.4", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-shorthand-properties": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-shorthand-properties@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-spread": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-spread@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-sticky-regex": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-sticky-regex@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-plugin-transform-es2015-template-literals": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-template-literals@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-typeof-symbol": { - "version": "6.8.0", - "from": "babel-plugin-transform-es2015-typeof-symbol@>=6.6.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.8.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-es2015-unicode-regex": { - "version": "6.11.0", - "from": "babel-plugin-transform-es2015-unicode-regex@>=6.3.13 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz", - "dependencies": { - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - } - } - }, - "babel-plugin-transform-regenerator": { - "version": "6.11.4", - "from": "babel-plugin-transform-regenerator@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.11.4.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-core": { - "version": "6.13.2", - "from": "babel-core@>=6.11.4 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.13.2.tgz" - }, - "babel-generator": { - "version": "6.11.4", - "from": "babel-generator@>=6.11.4 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.11.4.tgz" - }, - "babel-helpers": { - "version": "6.8.0", - "from": "babel-helpers@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.8.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-register": { - "version": "6.11.6", - "from": "babel-register@>=6.9.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.11.6.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-template": { - "version": "6.9.0", - "from": "babel-template@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.9.0.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.11.4", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.9.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - }, - "minimatch": { - "version": "3.0.3", - "from": "minimatch@>=3.0.2 <4.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" - } - } - }, - "babel-plugin-transform-strict-mode": { - "version": "6.11.3", - "from": "babel-plugin-transform-strict-mode@>=6.8.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.11.3.tgz", - "dependencies": { - "babel-code-frame": { - "version": "6.11.0", - "from": "babel-code-frame@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.11.0.tgz" - }, - "babel-messages": { - "version": "6.8.0", - "from": "babel-messages@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz" - }, - "babel-runtime": { - "version": "6.11.6", - "from": "babel-runtime@^6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.11.6.tgz" - }, - "babel-traverse": { - "version": "6.13.0", - "from": "babel-traverse@^6.13.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz" - }, - "babel-types": { - "version": "6.13.0", - "from": "babel-types@^6.8.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz" - }, - "core-js": { - "version": "2.4.1", - "from": "core-js@^2.4.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz" - }, - "js-tokens": { - "version": "2.0.0", - "from": "js-tokens@^2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.2.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "babel-preset-es2015": { - "version": "6.13.2", - "from": "babel-preset-es2015@>=6.13.2 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.13.2.tgz" - }, - "babel-register": { - "version": "6.7.2", - "from": "babel-register@>=6.7.2 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.7.2.tgz", - "dependencies": { - "core-js": { - "version": "2.2.0", - "from": "core-js@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.2.0.tgz" - } - } - }, - "babel-runtime": { - "version": "5.8.35", - "from": "babel-runtime@>=5.0.0 <6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.35.tgz" - }, - "babel-template": { - "version": "6.7.0", - "from": "babel-template@>=6.7.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.7.0.tgz" - }, - "babel-traverse": { - "version": "6.7.3", - "from": "babel-traverse@>=6.7.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.7.3.tgz" - }, - "babel-types": { - "version": "6.7.2", - "from": "babel-types@>=6.7.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.7.2.tgz" - }, - "babylon": { - "version": "6.7.0", - "from": "babylon@>=6.7.0 <7.0.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.7.0.tgz" - }, - "balanced-match": { - "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" - }, - "basiccontext": { - "version": "3.5.1", - "from": "basiccontext@3.5.1", - "resolved": "https://registry.npmjs.org/basiccontext/-/basiccontext-3.5.1.tgz" - }, - "basicmodal": { - "version": "3.3.7", - "from": "basicmodal@>=3.3.7 <4.0.0", - "resolved": "https://registry.npmjs.org/basicmodal/-/basicmodal-3.3.7.tgz" - }, - "beeper": { - "version": "1.1.0", - "from": "beeper@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.0.tgz" - }, - "bl": { - "version": "1.1.2", - "from": "bl@>=1.1.2 <1.2.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", - "dependencies": { - "isarray": { - "version": "1.0.0", - "from": "isarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - }, - "readable-stream": { - "version": "2.0.6", - "from": "readable-stream@>=2.0.5 <2.1.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz" - } - } - }, - "block-stream": { - "version": "0.0.9", - "from": "block-stream@*", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz" - }, - "boom": { - "version": "2.10.1", - "from": "boom@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz" - }, - "brace-expansion": { - "version": "1.1.3", - "from": "brace-expansion@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz" - }, - "braces": { - "version": "1.8.5", - "from": "braces@>=1.8.2 <2.0.0", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz" - }, - "browserslist": { - "version": "1.1.3", - "from": "browserslist@>=1.1.3 <1.2.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.1.3.tgz" - }, - "bufferstreams": { - "version": "1.0.1", - "from": "bufferstreams@1.0.1", - "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.0.1.tgz" - }, - "builtin-modules": { - "version": "1.1.1", - "from": "builtin-modules@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" - }, - "camelcase": { - "version": "2.1.1", - "from": "camelcase@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz" - }, - "camelcase-keys": { - "version": "2.1.0", - "from": "camelcase-keys@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz" - }, - "caniuse-db": { - "version": "1.0.30000430", - "from": "caniuse-db@>=1.0.30000409 <2.0.0", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000430.tgz" - }, - "caseless": { - "version": "0.11.0", - "from": "caseless@>=0.11.0 <0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" - }, - "center-align": { - "version": "0.1.3", - "from": "center-align@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz" - }, - "chalk": { - "version": "1.1.1", - "from": "chalk@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz" - }, - "clean-css": { - "version": "3.4.10", - "from": "clean-css@>=3.3.3 <4.0.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.10.tgz", - "dependencies": { - "source-map": { - "version": "0.4.4", - "from": "source-map@>=0.4.0 <0.5.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz" - } - } - }, - "cliui": { - "version": "3.2.0", - "from": "cliui@>=3.2.0 <4.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz" - }, - "clone": { - "version": "1.0.2", - "from": "clone@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz" - }, - "clone-stats": { - "version": "0.0.1", - "from": "clone-stats@>=0.0.1 <0.0.2", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz" - }, - "code-point-at": { - "version": "1.0.0", - "from": "code-point-at@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz" - }, - "color-convert": { - "version": "1.0.0", - "from": "color-convert@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz" - }, - "combined-stream": { - "version": "1.0.5", - "from": "combined-stream@>=1.0.5 <1.1.0", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz" - }, - "commander": { - "version": "2.8.1", - "from": "commander@>=2.8.0 <2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz" - }, - "concat-map": { - "version": "0.0.1", - "from": "concat-map@0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - }, - "concat-with-sourcemaps": { - "version": "1.0.4", - "from": "concat-with-sourcemaps@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz" - }, - "console-control-strings": { - "version": "1.1.0", - "from": "console-control-strings@>=1.1.0 <1.2.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz" - }, - "convert-source-map": { - "version": "1.2.0", - "from": "convert-source-map@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.2.0.tgz" - }, - "core-js": { - "version": "1.2.6", - "from": "core-js@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.6.tgz" - }, - "core-util-is": { - "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" - }, - "cross-spawn": { - "version": "3.0.1", - "from": "cross-spawn@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "dependencies": { - "lru-cache": { - "version": "4.0.1", - "from": "lru-cache@>=4.0.1 <5.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz" - } - } - }, - "cryptiles": { - "version": "2.0.5", - "from": "cryptiles@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" - }, - "d": { - "version": "0.1.1", - "from": "d@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz" - }, - "dashdash": { - "version": "1.14.0", - "from": "dashdash@>=1.12.0 <2.0.0", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.0.tgz", - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "from": "assert-plus@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - } - } - }, - "dateformat": { - "version": "1.0.12", - "from": "dateformat@>=1.0.11 <2.0.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz" - }, - "debug": { - "version": "2.2.0", - "from": "debug@>=2.2.0 <3.0.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz" - }, - "decamelize": { - "version": "1.2.0", - "from": "decamelize@>=1.1.2 <2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" - }, - "defaults": { - "version": "1.0.3", - "from": "defaults@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz" - }, - "delayed-stream": { - "version": "1.0.0", - "from": "delayed-stream@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" - }, - "delegates": { - "version": "1.0.0", - "from": "delegates@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" - }, - "deprecated": { - "version": "0.0.1", - "from": "deprecated@>=0.0.1 <0.0.2", - "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz" - }, - "detect-file": { - "version": "0.1.0", - "from": "detect-file@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz" - }, - "detect-indent": { - "version": "3.0.1", - "from": "detect-indent@>=3.0.1 <4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz" - }, - "duplexer": { - "version": "0.1.1", - "from": "duplexer@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz" - }, - "duplexer2": { - "version": "0.0.2", - "from": "duplexer2@0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz" - }, - "ecc-jsbn": { - "version": "0.1.1", - "from": "ecc-jsbn@>=0.0.1 <1.0.0", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz" - }, - "end-of-stream": { - "version": "0.1.5", - "from": "end-of-stream@>=0.1.5 <0.2.0", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz" - }, - "error-ex": { - "version": "1.3.0", - "from": "error-ex@>=1.2.0 <2.0.0", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz" - }, - "es5-ext": { - "version": "0.10.11", - "from": "es5-ext@>=0.10.10 <0.11.0", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.11.tgz" - }, - "es6-iterator": { - "version": "2.0.0", - "from": "es6-iterator@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz" - }, - "es6-symbol": { - "version": "3.0.2", - "from": "es6-symbol@>=3.0.2 <4.0.0", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz" - }, - "escape-string-regexp": { - "version": "1.0.5", - "from": "escape-string-regexp@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - }, - "esutils": { - "version": "2.0.2", - "from": "esutils@>=2.0.2 <3.0.0", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" - }, - "event-stream": { - "version": "3.3.4", - "from": "event-stream@>=3.1.0 <4.0.0", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz" - }, - "expand-brackets": { - "version": "0.1.5", - "from": "expand-brackets@>=0.1.4 <0.2.0", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz" - }, - "expand-range": { - "version": "1.8.2", - "from": "expand-range@>=1.8.1 <2.0.0", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz" - }, - "expand-tilde": { - "version": "1.2.2", - "from": "expand-tilde@>=1.2.2 <2.0.0", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz" - }, - "extend": { - "version": "2.0.1", - "from": "extend@>=2.0.1 <3.0.0", - "resolved": "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz" - }, - "extglob": { - "version": "0.3.2", - "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" - }, - "extsprintf": { - "version": "1.0.2", - "from": "extsprintf@1.0.2", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz" - }, - "fancy-log": { - "version": "1.2.0", - "from": "fancy-log@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.2.0.tgz" - }, - "filename-regex": { - "version": "2.0.0", - "from": "filename-regex@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz" - }, - "fill-range": { - "version": "2.2.3", - "from": "fill-range@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz" - }, - "find-index": { - "version": "0.1.1", - "from": "find-index@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz" - }, - "find-up": { - "version": "1.1.2", - "from": "find-up@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "dependencies": { - "path-exists": { - "version": "2.1.0", - "from": "path-exists@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz" - } - } - }, - "findup-sync": { - "version": "0.3.0", - "from": "findup-sync@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz" - }, - "first-chunk-stream": { - "version": "1.0.0", - "from": "first-chunk-stream@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz" - }, - "flagged-respawn": { - "version": "0.3.1", - "from": "flagged-respawn@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.1.tgz" - }, - "for-in": { - "version": "0.1.5", - "from": "for-in@>=0.1.5 <0.2.0", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.5.tgz" - }, - "for-own": { - "version": "0.1.4", - "from": "for-own@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.4.tgz" - }, - "forever-agent": { - "version": "0.6.1", - "from": "forever-agent@>=0.6.1 <0.7.0", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" - }, - "form-data": { - "version": "1.0.0-rc4", - "from": "form-data@>=1.0.0-rc3 <1.1.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz" - }, - "from": { - "version": "0.1.3", - "from": "from@>=0.0.0 <1.0.0", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.3.tgz" - }, - "fs-exists-sync": { - "version": "0.1.0", - "from": "fs-exists-sync@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz" - }, - "fs.realpath": { - "version": "1.0.0", - "from": "fs.realpath@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" - }, - "fstream": { - "version": "1.0.10", - "from": "fstream@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.10.tgz" - }, - "gauge": { - "version": "2.6.0", - "from": "gauge@>=2.6.0 <2.7.0", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.6.0.tgz", - "dependencies": { - "object-assign": { - "version": "4.1.0", - "from": "object-assign@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz" - }, - "signal-exit": { - "version": "3.0.0", - "from": "signal-exit@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.0.tgz" - } - } - }, - "gaze": { - "version": "0.5.2", - "from": "gaze@>=0.5.1 <0.6.0", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz" - }, - "generate-function": { - "version": "2.0.0", - "from": "generate-function@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" - }, - "generate-object-property": { - "version": "1.2.0", - "from": "generate-object-property@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz" - }, - "get-caller-file": { - "version": "1.0.2", - "from": "get-caller-file@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz" - }, - "get-stdin": { - "version": "4.0.1", - "from": "get-stdin@>=4.0.1 <5.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz" - }, - "get-value": { - "version": "2.0.6", - "from": "get-value@>=2.0.6 <3.0.0", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" - }, - "getpass": { - "version": "0.1.6", - "from": "getpass@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz", - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "from": "assert-plus@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - } - } - }, - "glob": { - "version": "5.0.15", - "from": "glob@>=5.0.0 <5.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz" - }, - "glob-base": { - "version": "0.3.0", - "from": "glob-base@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz" - }, - "glob-parent": { - "version": "2.0.0", - "from": "glob-parent@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz" - }, - "glob-stream": { - "version": "3.1.18", - "from": "glob-stream@>=3.1.5 <4.0.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", - "dependencies": { - "glob": { - "version": "4.5.3", - "from": "glob@>=4.3.1 <5.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz" - }, - "readable-stream": { - "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" - }, - "through2": { - "version": "0.6.5", - "from": "through2@>=0.6.1 <0.7.0", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz" - } - } - }, - "glob-watcher": { - "version": "0.0.6", - "from": "glob-watcher@>=0.0.6 <0.0.7", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz" - }, - "glob2base": { - "version": "0.0.12", - "from": "glob2base@>=0.0.12 <0.0.13", - "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz" - }, - "global-modules": { - "version": "0.2.3", - "from": "global-modules@>=0.2.3 <0.3.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz" - }, - "global-prefix": { - "version": "0.1.4", - "from": "global-prefix@>=0.1.4 <0.2.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.4.tgz" - }, - "globals": { - "version": "8.18.0", - "from": "globals@>=8.3.0 <9.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz" - }, - "globule": { - "version": "0.1.0", - "from": "globule@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", - "dependencies": { - "glob": { - "version": "3.1.21", - "from": "glob@>=3.1.21 <3.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz" - }, - "graceful-fs": { - "version": "1.2.3", - "from": "graceful-fs@>=1.2.0 <1.3.0", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" - }, - "inherits": { - "version": "1.0.2", - "from": "inherits@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" - }, - "lodash": { - "version": "1.0.2", - "from": "lodash@>=1.0.1 <1.1.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz" - }, - "minimatch": { - "version": "0.2.14", - "from": "minimatch@>=0.2.11 <0.3.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz" - } - } - }, - "glogg": { - "version": "1.0.0", - "from": "glogg@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz" - }, - "graceful-fs": { - "version": "4.1.3", - "from": "graceful-fs@>=4.1.2 <5.0.0", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz" - }, - "graceful-readlink": { - "version": "1.0.1", - "from": "graceful-readlink@>=1.0.0", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" - }, - "group-array": { - "version": "0.3.1", - "from": "group-array@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/group-array/-/group-array-0.3.1.tgz" - }, - "gulp": { - "version": "3.9.1", - "from": "gulp@>=3.9.1 <4.0.0", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz" - }, - "gulp-autoprefixer": { - "version": "3.1.0", - "from": "gulp-autoprefixer@3.1.0", - "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-3.1.0.tgz" - }, - "gulp-babel": { - "version": "6.1.2", - "from": "gulp-babel@>=6.1.2 <7.0.0", - "resolved": "https://registry.npmjs.org/gulp-babel/-/gulp-babel-6.1.2.tgz", - "dependencies": { - "object-assign": { - "version": "4.0.1", - "from": "object-assign@>=4.0.1 <5.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" - } - } - }, - "gulp-concat": { - "version": "2.6.0", - "from": "gulp-concat@>=2.6.0 <3.0.0", - "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.0.tgz", - "dependencies": { - "readable-stream": { - "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" - }, - "through2": { - "version": "0.6.5", - "from": "through2@>=0.6.3 <0.7.0", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz" - } - } - }, - "gulp-inject": { - "version": "4.1.0", - "from": "gulp-inject@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/gulp-inject/-/gulp-inject-4.1.0.tgz" - }, - "gulp-load-plugins": { - "version": "1.2.4", - "from": "gulp-load-plugins@>=1.2.4 <2.0.0", - "resolved": "https://registry.npmjs.org/gulp-load-plugins/-/gulp-load-plugins-1.2.4.tgz", - "dependencies": { - "findup-sync": { - "version": "0.4.2", - "from": "findup-sync@>=0.4.0 <0.5.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.2.tgz" - } - } - }, - "gulp-minify-css": { - "version": "1.2.4", - "from": "gulp-minify-css@>=1.2.4 <2.0.0", - "resolved": "https://registry.npmjs.org/gulp-minify-css/-/gulp-minify-css-1.2.4.tgz", - "dependencies": { - "isarray": { - "version": "1.0.0", - "from": "isarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - }, - "object-assign": { - "version": "4.0.1", - "from": "object-assign@>=4.0.1 <5.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" - }, - "readable-stream": { - "version": "2.0.6", - "from": "readable-stream@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz" - } - } - }, - "gulp-rimraf": { - "version": "0.2.0", - "from": "gulp-rimraf@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/gulp-rimraf/-/gulp-rimraf-0.2.0.tgz" - }, - "gulp-sass": { - "version": "2.3.2", - "from": "gulp-sass@>=2.3.2 <3.0.0", - "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-2.3.2.tgz" - }, - "gulp-uglify": { - "version": "2.0.0", - "from": "gulp-uglify@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-2.0.0.tgz", - "dependencies": { - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.13.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - } - } - }, - "gulp-util": { - "version": "3.0.7", - "from": "gulp-util@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.7.tgz" - }, - "gulplog": { - "version": "1.0.0", - "from": "gulplog@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz" - }, - "har-validator": { - "version": "2.0.6", - "from": "har-validator@>=2.0.6 <2.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "dependencies": { - "commander": { - "version": "2.9.0", - "from": "commander@>=2.9.0 <3.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz" - } - } - }, - "has-ansi": { - "version": "2.0.0", - "from": "has-ansi@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" - }, - "has-color": { - "version": "0.1.7", - "from": "has-color@>=0.1.7 <0.2.0", - "resolved": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz" - }, - "has-flag": { - "version": "1.0.0", - "from": "has-flag@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz" - }, - "has-gulplog": { - "version": "0.1.0", - "from": "has-gulplog@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz" - }, - "has-unicode": { - "version": "2.0.1", - "from": "has-unicode@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz" - }, - "hawk": { - "version": "3.1.3", - "from": "hawk@>=3.1.0 <3.2.0", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz" - }, - "hoek": { - "version": "2.16.3", - "from": "hoek@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" - }, - "home-or-tmp": { - "version": "1.0.0", - "from": "home-or-tmp@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz" - }, - "hosted-git-info": { - "version": "2.1.4", - "from": "hosted-git-info@>=2.1.4 <3.0.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz" - }, - "http-signature": { - "version": "1.1.1", - "from": "http-signature@>=1.1.0 <1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz" - }, - "in-publish": { - "version": "2.0.0", - "from": "in-publish@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz" - }, - "indent-string": { - "version": "2.1.0", - "from": "indent-string@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "dependencies": { - "repeating": { - "version": "2.0.0", - "from": "repeating@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz" - } - } - }, - "inflight": { - "version": "1.0.4", - "from": "inflight@>=1.0.4 <2.0.0", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" - }, - "inherits": { - "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" - }, - "ini": { - "version": "1.3.4", - "from": "ini@>=1.2.0 <2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" - }, - "interpret": { - "version": "1.0.0", - "from": "interpret@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.0.tgz" - }, - "invariant": { - "version": "2.2.1", - "from": "invariant@>=2.2.0 <3.0.0", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.1.tgz" - }, - "invert-kv": { - "version": "1.0.0", - "from": "invert-kv@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" - }, - "is-arrayish": { - "version": "0.2.1", - "from": "is-arrayish@>=0.2.1 <0.3.0", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" - }, - "is-buffer": { - "version": "1.1.4", - "from": "is-buffer@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz" - }, - "is-builtin-module": { - "version": "1.0.0", - "from": "is-builtin-module@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz" - }, - "is-dotfile": { - "version": "1.0.2", - "from": "is-dotfile@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz" - }, - "is-equal-shallow": { - "version": "0.1.3", - "from": "is-equal-shallow@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz" - }, - "is-extendable": { - "version": "0.1.1", - "from": "is-extendable@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" - }, - "is-extglob": { - "version": "1.0.0", - "from": "is-extglob@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" - }, - "is-finite": { - "version": "1.0.1", - "from": "is-finite@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "from": "is-fullwidth-code-point@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" - }, - "is-glob": { - "version": "2.0.1", - "from": "is-glob@>=2.0.1 <3.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" - }, - "is-integer": { - "version": "1.0.6", - "from": "is-integer@>=1.0.4 <2.0.0", - "resolved": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.6.tgz" - }, - "is-my-json-valid": { - "version": "2.13.1", - "from": "is-my-json-valid@>=2.12.4 <3.0.0", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz" - }, - "is-number": { - "version": "2.1.0", - "from": "is-number@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz" - }, - "is-posix-bracket": { - "version": "0.1.1", - "from": "is-posix-bracket@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz" - }, - "is-primitive": { - "version": "2.0.0", - "from": "is-primitive@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz" - }, - "is-property": { - "version": "1.0.2", - "from": "is-property@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" - }, - "is-typedarray": { - "version": "1.0.0", - "from": "is-typedarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" - }, - "is-utf8": { - "version": "0.2.1", - "from": "is-utf8@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz" - }, - "is-windows": { - "version": "0.2.0", - "from": "is-windows@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz" - }, - "isarray": { - "version": "0.0.1", - "from": "isarray@0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - }, - "isexe": { - "version": "1.1.2", - "from": "isexe@>=1.1.1 <2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz" - }, - "isobject": { - "version": "2.1.0", - "from": "isobject@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "dependencies": { - "isarray": { - "version": "1.0.0", - "from": "isarray@1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - } - } - }, - "isstream": { - "version": "0.1.2", - "from": "isstream@>=0.1.2 <0.2.0", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" - }, - "jodid25519": { - "version": "1.0.2", - "from": "jodid25519@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz" - }, - "jquery": { - "version": "3.1.0", - "from": "jquery@>=3.1.0 <4.0.0", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.1.0.tgz" - }, - "js-base64": { - "version": "2.1.9", - "from": "js-base64@>=2.1.9 <3.0.0", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz" - }, - "js-tokens": { - "version": "1.0.2", - "from": "js-tokens@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.2.tgz" - }, - "jsbn": { - "version": "0.1.0", - "from": "jsbn@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz" - }, - "jsesc": { - "version": "0.5.0", - "from": "jsesc@>=0.5.0 <0.6.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" - }, - "json-schema": { - "version": "0.2.2", - "from": "json-schema@0.2.2", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz" - }, - "json-stringify-safe": { - "version": "5.0.1", - "from": "json-stringify-safe@>=5.0.1 <5.1.0", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" - }, - "json5": { - "version": "0.4.0", - "from": "json5@>=0.4.0 <0.5.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz" - }, - "jsonpointer": { - "version": "2.0.0", - "from": "jsonpointer@2.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" - }, - "jsprim": { - "version": "1.3.0", - "from": "jsprim@>=1.2.2 <2.0.0", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.3.0.tgz" - }, - "kind-of": { - "version": "3.0.4", - "from": "kind-of@>=3.0.3 <4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.4.tgz" - }, - "lazy-cache": { - "version": "1.0.4", - "from": "lazy-cache@>=1.0.3 <2.0.0", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz" - }, - "lcid": { - "version": "1.0.0", - "from": "lcid@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" - }, - "left-pad": { - "version": "0.0.3", - "from": "left-pad@0.0.3", - "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-0.0.3.tgz" - }, - "liftoff": { - "version": "2.2.0", - "from": "liftoff@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.2.0.tgz" - }, - "line-numbers": { - "version": "0.2.0", - "from": "line-numbers@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/line-numbers/-/line-numbers-0.2.0.tgz" - }, - "load-json-file": { - "version": "1.1.0", - "from": "load-json-file@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" - }, - "lodash": { - "version": "3.10.1", - "from": "lodash@>=3.10.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" - }, - "lodash._basecopy": { - "version": "3.0.1", - "from": "lodash._basecopy@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz" - }, - "lodash._basetostring": { - "version": "3.0.1", - "from": "lodash._basetostring@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" - }, - "lodash._basevalues": { - "version": "3.0.0", - "from": "lodash._basevalues@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz" - }, - "lodash._getnative": { - "version": "3.9.1", - "from": "lodash._getnative@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz" - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "from": "lodash._isiterateecall@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" - }, - "lodash._reescape": { - "version": "3.0.0", - "from": "lodash._reescape@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz" - }, - "lodash._reevaluate": { - "version": "3.0.0", - "from": "lodash._reevaluate@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "from": "lodash._reinterpolate@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" - }, - "lodash._root": { - "version": "3.0.1", - "from": "lodash._root@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz" - }, - "lodash.assign": { - "version": "4.1.0", - "from": "lodash.assign@>=4.0.3 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.1.0.tgz" - }, - "lodash.clonedeep": { - "version": "4.4.1", - "from": "lodash.clonedeep@>=4.3.2 <5.0.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.4.1.tgz" - }, - "lodash.escape": { - "version": "3.2.0", - "from": "lodash.escape@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz" - }, - "lodash.isarguments": { - "version": "3.0.8", - "from": "lodash.isarguments@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.8.tgz" - }, - "lodash.isarray": { - "version": "3.0.4", - "from": "lodash.isarray@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" - }, - "lodash.keys": { - "version": "3.1.2", - "from": "lodash.keys@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz" - }, - "lodash.restparam": { - "version": "3.6.1", - "from": "lodash.restparam@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz" - }, - "lodash.template": { - "version": "3.6.2", - "from": "lodash.template@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz" - }, - "lodash.templatesettings": { - "version": "3.1.1", - "from": "lodash.templatesettings@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz" - }, - "longest": { - "version": "1.0.1", - "from": "longest@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" - }, - "loose-envify": { - "version": "1.1.0", - "from": "loose-envify@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.1.0.tgz" - }, - "loud-rejection": { - "version": "1.3.0", - "from": "loud-rejection@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.3.0.tgz" - }, - "lru-cache": { - "version": "2.7.3", - "from": "lru-cache@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz" - }, - "make-error": { - "version": "1.2.0", - "from": "make-error@>=1.2.0 <2.0.0", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.2.0.tgz" - }, - "make-error-cause": { - "version": "1.2.1", - "from": "make-error-cause@>=1.1.1 <2.0.0", - "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.1.tgz" - }, - "map-obj": { - "version": "1.0.1", - "from": "map-obj@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" - }, - "map-stream": { - "version": "0.1.0", - "from": "map-stream@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz" - }, - "meow": { - "version": "3.7.0", - "from": "meow@>=3.3.0 <4.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "dependencies": { - "object-assign": { - "version": "4.0.1", - "from": "object-assign@>=4.0.1 <5.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" - } - } - }, - "micromatch": { - "version": "2.3.11", - "from": "micromatch@>=2.3.8 <3.0.0", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz" - }, - "mime-db": { - "version": "1.23.0", - "from": "mime-db@>=1.23.0 <1.24.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.23.0.tgz" - }, - "mime-types": { - "version": "2.1.11", - "from": "mime-types@>=2.1.7 <2.2.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.11.tgz" - }, - "minimatch": { - "version": "2.0.10", - "from": "minimatch@>=2.0.3 <3.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" - }, - "minimist": { - "version": "1.2.0", - "from": "minimist@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" - }, - "mkdirp": { - "version": "0.5.1", - "from": "mkdirp@>=0.5.1 <0.6.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "dependencies": { - "minimist": { - "version": "0.0.8", - "from": "minimist@0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" - } - } - }, - "mousetrap": { - "version": "1.6.0", - "from": "mousetrap@>=1.6.0 <2.0.0", - "resolved": "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.0.tgz" - }, - "ms": { - "version": "0.7.1", - "from": "ms@0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" - }, - "multipipe": { - "version": "0.1.2", - "from": "multipipe@>=0.1.2 <0.2.0", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz" - }, - "nan": { - "version": "2.4.0", - "from": "nan@>=2.3.2 <3.0.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz" - }, - "node-gyp": { - "version": "3.4.0", - "from": "node-gyp@>=3.3.1 <4.0.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.4.0.tgz", - "dependencies": { - "glob": { - "version": "7.0.5", - "from": "glob@^7.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz" - }, - "minimatch": { - "version": "3.0.3", - "from": "minimatch@^3.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" - } - } - }, - "node-sass": { - "version": "3.8.0", - "from": "node-sass@>=3.4.2 <4.0.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-3.8.0.tgz", - "dependencies": { - "gaze": { - "version": "1.1.1", - "from": "gaze@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.1.tgz" - }, - "glob": { - "version": "7.0.5", - "from": "glob@>=7.0.3 <8.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz" - }, - "globule": { - "version": "1.0.0", - "from": "globule@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.0.0.tgz" - }, - "lodash": { - "version": "4.9.0", - "from": "lodash@>=4.9.0 <4.10.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.9.0.tgz" - }, - "minimatch": { - "version": "3.0.3", - "from": "minimatch@~3.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" - } - } - }, - "node-uuid": { - "version": "1.4.7", - "from": "node-uuid@>=1.4.7 <1.5.0", - "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" - }, - "nopt": { - "version": "3.0.6", - "from": "nopt@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" - }, - "normalize-package-data": { - "version": "2.3.5", - "from": "normalize-package-data@>=2.3.4 <3.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz" - }, - "normalize-path": { - "version": "2.0.1", - "from": "normalize-path@>=2.0.1 <3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz" - }, - "normalize-range": { - "version": "0.1.2", - "from": "normalize-range@>=0.1.2 <0.2.0", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" - }, - "npmlog": { - "version": "3.1.2", - "from": "npmlog@>=0.0.0 <1.0.0||>=1.0.0 <2.0.0||>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-3.1.2.tgz" - }, - "num2fraction": { - "version": "1.2.2", - "from": "num2fraction@>=1.2.2 <2.0.0", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" - }, - "number-is-nan": { - "version": "1.0.0", - "from": "number-is-nan@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" - }, - "oauth-sign": { - "version": "0.8.2", - "from": "oauth-sign@>=0.8.1 <0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz" - }, - "object-assign": { - "version": "3.0.0", - "from": "object-assign@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz" - }, - "object.omit": { - "version": "2.0.0", - "from": "object.omit@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.0.tgz" - }, - "once": { - "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz" - }, - "orchestrator": { - "version": "0.3.7", - "from": "orchestrator@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.7.tgz" - }, - "ordered-read-streams": { - "version": "0.1.0", - "from": "ordered-read-streams@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz" - }, - "os-homedir": { - "version": "1.0.1", - "from": "os-homedir@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" - }, - "os-locale": { - "version": "1.4.0", - "from": "os-locale@>=1.4.0 <2.0.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz" - }, - "os-tmpdir": { - "version": "1.0.1", - "from": "os-tmpdir@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz" - }, - "osenv": { - "version": "0.1.3", - "from": "osenv@>=0.0.0 <1.0.0", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz" - }, - "parse-glob": { - "version": "3.0.4", - "from": "parse-glob@>=3.0.4 <4.0.0", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz" - }, - "parse-json": { - "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" - }, - "path-array": { - "version": "1.0.1", - "from": "path-array@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/path-array/-/path-array-1.0.1.tgz" - }, - "path-exists": { - "version": "1.0.0", - "from": "path-exists@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz" - }, - "path-is-absolute": { - "version": "1.0.0", - "from": "path-is-absolute@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" - }, - "path-type": { - "version": "1.1.0", - "from": "path-type@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" - }, - "pause-stream": { - "version": "0.0.11", - "from": "pause-stream@0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz" - }, - "pify": { - "version": "2.3.0", - "from": "pify@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" - }, - "pinkie": { - "version": "2.0.4", - "from": "pinkie@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" - }, - "pinkie-promise": { - "version": "2.0.0", - "from": "pinkie-promise@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz" - }, - "postcss": { - "version": "5.0.19", - "from": "postcss@>=5.0.4 <6.0.0", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.0.19.tgz", - "dependencies": { - "supports-color": { - "version": "3.1.2", - "from": "supports-color@>=3.1.2 <4.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz" - } - } - }, - "postcss-value-parser": { - "version": "3.3.0", - "from": "postcss-value-parser@>=3.2.3 <4.0.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz" - }, - "preserve": { - "version": "0.2.0", - "from": "preserve@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz" - }, - "pretty-hrtime": { - "version": "1.0.2", - "from": "pretty-hrtime@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.2.tgz" - }, - "private": { - "version": "0.1.6", - "from": "private@>=0.1.5 <0.2.0", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.6.tgz" - }, - "process-nextick-args": { - "version": "1.0.6", - "from": "process-nextick-args@>=1.0.6 <1.1.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz" - }, - "pseudomap": { - "version": "1.0.2", - "from": "pseudomap@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" - }, - "qs": { - "version": "6.2.1", - "from": "qs@>=6.2.0 <6.3.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.1.tgz" - }, - "randomatic": { - "version": "1.1.5", - "from": "randomatic@>=1.1.3 <2.0.0", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz" - }, - "read-pkg": { - "version": "1.1.0", - "from": "read-pkg@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" - }, - "read-pkg-up": { - "version": "1.0.1", - "from": "read-pkg-up@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz" - }, - "readable-stream": { - "version": "1.1.13", - "from": "readable-stream@>=1.1.9 <1.2.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz" - }, - "rechoir": { - "version": "0.6.2", - "from": "rechoir@>=0.6.0 <0.7.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" - }, - "redent": { - "version": "1.0.0", - "from": "redent@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz" - }, - "regenerate": { - "version": "1.3.1", - "from": "regenerate@>=1.2.1 <2.0.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.1.tgz" - }, - "regenerator-runtime": { - "version": "0.9.5", - "from": "regenerator-runtime@>=0.9.5 <0.10.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz" - }, - "regex-cache": { - "version": "0.4.3", - "from": "regex-cache@>=0.4.2 <0.5.0", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz" - }, - "regexpu-core": { - "version": "2.0.0", - "from": "regexpu-core@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz" - }, - "regjsgen": { - "version": "0.2.0", - "from": "regjsgen@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz" - }, - "regjsparser": { - "version": "0.1.5", - "from": "regjsparser@>=0.1.4 <0.2.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz" - }, - "repeat-element": { - "version": "1.1.2", - "from": "repeat-element@>=1.1.2 <2.0.0", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz" - }, - "repeat-string": { - "version": "1.5.4", - "from": "repeat-string@>=1.5.2 <2.0.0", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.4.tgz" - }, - "repeating": { - "version": "1.1.3", - "from": "repeating@>=1.1.3 <2.0.0", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz" - }, - "replace-ext": { - "version": "0.0.1", - "from": "replace-ext@0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz" - }, - "request": { - "version": "2.74.0", - "from": "request@>=2.61.0 <3.0.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.74.0.tgz", - "dependencies": { - "extend": { - "version": "3.0.0", - "from": "extend@>=3.0.0 <3.1.0", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" - } - } - }, - "require-directory": { - "version": "2.1.1", - "from": "require-directory@>=2.1.1 <3.0.0", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" - }, - "require-main-filename": { - "version": "1.0.1", - "from": "require-main-filename@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz" - }, - "resolve": { - "version": "1.1.7", - "from": "resolve@>=1.1.6 <2.0.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz" - }, - "resolve-dir": { - "version": "0.1.1", - "from": "resolve-dir@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz" - }, - "right-align": { - "version": "0.1.3", - "from": "right-align@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz" - }, - "rimraf": { - "version": "2.5.2", - "from": "rimraf@>=2.4.3 <3.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz", - "dependencies": { - "glob": { - "version": "7.0.3", - "from": "glob@>=7.0.0 <8.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz" - } - } - }, - "sass-graph": { - "version": "2.1.2", - "from": "sass-graph@>=2.1.1 <3.0.0", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.1.2.tgz", - "dependencies": { - "glob": { - "version": "7.0.5", - "from": "glob@^7.0.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz" - }, - "lodash": { - "version": "4.14.2", - "from": "lodash@^4.0.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz" - }, - "minimatch": { - "version": "3.0.3", - "from": "minimatch@^3.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" - } - } - }, - "semver": { - "version": "4.3.6", - "from": "semver@>=4.1.0 <5.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" - }, - "sequencify": { - "version": "0.0.7", - "from": "sequencify@>=0.0.7 <0.1.0", - "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz" - }, - "set-blocking": { - "version": "2.0.0", - "from": "set-blocking@>=2.0.0 <2.1.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" - }, - "shebang-regex": { - "version": "1.0.0", - "from": "shebang-regex@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" - }, - "sigmund": { - "version": "1.0.1", - "from": "sigmund@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" - }, - "signal-exit": { - "version": "2.1.2", - "from": "signal-exit@>=2.1.2 <3.0.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz" - }, - "slash": { - "version": "1.0.0", - "from": "slash@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz" - }, - "sntp": { - "version": "1.0.9", - "from": "sntp@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" - }, - "source-map": { - "version": "0.5.3", - "from": "source-map@>=0.5.0 <0.6.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" - }, - "source-map-support": { - "version": "0.2.10", - "from": "source-map-support@>=0.2.10 <0.3.0", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz", - "dependencies": { - "source-map": { - "version": "0.1.32", - "from": "source-map@0.1.32", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz" - } - } - }, - "sparkles": { - "version": "1.0.0", - "from": "sparkles@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz" - }, - "spdx-correct": { - "version": "1.0.2", - "from": "spdx-correct@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz" - }, - "spdx-exceptions": { - "version": "1.0.4", - "from": "spdx-exceptions@>=1.0.4 <2.0.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz" - }, - "spdx-expression-parse": { - "version": "1.0.2", - "from": "spdx-expression-parse@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz" - }, - "spdx-license-ids": { - "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" - }, - "split": { - "version": "0.3.3", - "from": "split@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz" - }, - "sshpk": { - "version": "1.9.2", - "from": "sshpk@>=1.7.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.9.2.tgz", - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "from": "assert-plus@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - } - } - }, - "stream-combiner": { - "version": "0.0.4", - "from": "stream-combiner@>=0.0.4 <0.1.0", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz" - }, - "stream-consume": { - "version": "0.1.0", - "from": "stream-consume@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz" - }, - "stream-to-array": { - "version": "2.3.0", - "from": "stream-to-array@>=2.3.0 <3.0.0", - "resolved": "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz" - }, - "string_decoder": { - "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - }, - "string-width": { - "version": "1.0.1", - "from": "string-width@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.1.tgz" - }, - "stringstream": { - "version": "0.0.5", - "from": "stringstream@>=0.0.4 <0.1.0", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" - }, - "strip-ansi": { - "version": "3.0.1", - "from": "strip-ansi@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" - }, - "strip-bom": { - "version": "2.0.0", - "from": "strip-bom@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" - }, - "strip-indent": { - "version": "1.0.1", - "from": "strip-indent@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz" - }, - "supports-color": { - "version": "2.0.0", - "from": "supports-color@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" - }, - "tar": { - "version": "2.2.1", - "from": "tar@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz" - }, - "through": { - "version": "2.3.8", - "from": "through@>=2.3.1 <2.4.0", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - }, - "through2": { - "version": "2.0.1", - "from": "through2@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.1.tgz", - "dependencies": { - "isarray": { - "version": "1.0.0", - "from": "isarray@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - }, - "readable-stream": { - "version": "2.0.6", - "from": "readable-stream@>=2.0.0 <2.1.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz" - } - } - }, - "tildify": { - "version": "1.1.2", - "from": "tildify@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.1.2.tgz" - }, - "time-stamp": { - "version": "1.0.0", - "from": "time-stamp@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.0.0.tgz" - }, - "to-fast-properties": { - "version": "1.0.1", - "from": "to-fast-properties@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.1.tgz" - }, - "tough-cookie": { - "version": "2.3.1", - "from": "tough-cookie@>=2.3.0 <2.4.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.1.tgz" - }, - "trim-newlines": { - "version": "1.0.0", - "from": "trim-newlines@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz" - }, - "trim-right": { - "version": "1.0.1", - "from": "trim-right@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz" - }, - "tunnel-agent": { - "version": "0.4.3", - "from": "tunnel-agent@>=0.4.1 <0.5.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz" - }, - "tweetnacl": { - "version": "0.13.3", - "from": "tweetnacl@>=0.13.0 <0.14.0", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.13.3.tgz" - }, - "uglify-js": { - "version": "2.7.0", - "from": "uglify-js@2.7.0", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.0.tgz", - "dependencies": { - "async": { - "version": "0.2.10", - "from": "async@>=0.2.6 <0.3.0", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" - }, - "camelcase": { - "version": "1.2.1", - "from": "camelcase@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" - }, - "cliui": { - "version": "2.1.0", - "from": "cliui@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz" - }, - "window-size": { - "version": "0.1.0", - "from": "window-size@0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz" - }, - "yargs": { - "version": "3.10.0", - "from": "yargs@>=3.10.0 <3.11.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz" - } - } - }, - "uglify-save-license": { - "version": "0.4.1", - "from": "uglify-save-license@>=0.4.1 <0.5.0", - "resolved": "https://registry.npmjs.org/uglify-save-license/-/uglify-save-license-0.4.1.tgz" - }, - "uglify-to-browserify": { - "version": "1.0.2", - "from": "uglify-to-browserify@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz" - }, - "unique-stream": { - "version": "1.0.0", - "from": "unique-stream@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz" - }, - "user-home": { - "version": "1.1.1", - "from": "user-home@>=1.1.1 <2.0.0", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" - }, - "util-deprecate": { - "version": "1.0.2", - "from": "util-deprecate@>=1.0.1 <1.1.0", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - }, - "v8flags": { - "version": "2.0.11", - "from": "v8flags@>=2.0.2 <3.0.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz" - }, - "validate-npm-package-license": { - "version": "3.0.1", - "from": "validate-npm-package-license@>=3.0.1 <4.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz" - }, - "verror": { - "version": "1.3.6", - "from": "verror@1.3.6", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz" - }, - "vinyl": { - "version": "0.5.3", - "from": "vinyl@>=0.5.0 <0.6.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz" - }, - "vinyl-bufferstream": { - "version": "1.0.1", - "from": "vinyl-bufferstream@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl-bufferstream/-/vinyl-bufferstream-1.0.1.tgz" - }, - "vinyl-fs": { - "version": "0.3.14", - "from": "vinyl-fs@>=0.3.0 <0.4.0", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", - "dependencies": { - "clone": { - "version": "0.2.0", - "from": "clone@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz" - }, - "graceful-fs": { - "version": "3.0.8", - "from": "graceful-fs@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" - }, - "readable-stream": { - "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz" - }, - "strip-bom": { - "version": "1.0.0", - "from": "strip-bom@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz" - }, - "through2": { - "version": "0.6.5", - "from": "through2@>=0.6.1 <0.7.0", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz" - }, - "vinyl": { - "version": "0.4.6", - "from": "vinyl@>=0.4.0 <0.5.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz" - } - } - }, - "vinyl-sourcemaps-apply": { - "version": "0.2.1", - "from": "vinyl-sourcemaps-apply@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz" - }, - "which": { - "version": "1.2.10", - "from": "which@>=1.2.10 <2.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-1.2.10.tgz" - }, - "which-module": { - "version": "1.0.0", - "from": "which-module@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz" - }, - "wide-align": { - "version": "1.1.0", - "from": "wide-align@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.0.tgz" - }, - "window-size": { - "version": "0.2.0", - "from": "window-size@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz" - }, - "wordwrap": { - "version": "0.0.2", - "from": "wordwrap@0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" - }, - "wrap-ansi": { - "version": "2.0.0", - "from": "wrap-ansi@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.0.0.tgz" - }, - "wrappy": { - "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" - }, - "xtend": { - "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" - }, - "y18n": { - "version": "3.2.1", - "from": "y18n@>=3.2.1 <4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz" - }, - "yallist": { - "version": "2.0.0", - "from": "yallist@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" - }, - "yargs": { - "version": "4.8.1", - "from": "yargs@>=4.7.1 <5.0.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz" - }, - "yargs-parser": { - "version": "2.4.1", - "from": "yargs-parser@>=2.4.1 <3.0.0", - "resolved": "https://registry.npmjs.com/yargs-parser/-/yargs-parser-2.4.1.tgz", - "dependencies": { - "camelcase": { - "version": "3.0.0", - "from": "camelcase@>=3.0.0 <4.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz" - } - } - } - } -} From d7bdddc4c5bfbd50bcb022319768d90785d72e5d Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 25 Oct 2016 18:15:45 +0200 Subject: [PATCH 10/11] Updated version --- src/package.json | 2 +- src/scripts/lychee.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/package.json b/src/package.json index 6abbc95..422273e 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "Lychee", - "version": "3.1.4", + "version": "3.1.5", "description": "Self-hosted photo-management done right.", "authors": "Tobias Reich ", "license": "MIT", diff --git a/src/scripts/lychee.js b/src/scripts/lychee.js index 8764351..3a3ea95 100644 --- a/src/scripts/lychee.js +++ b/src/scripts/lychee.js @@ -5,8 +5,8 @@ lychee = { title : document.title, - version : '3.1.4', - versionCode : '030104', + version : '3.1.5', + versionCode : '030105', updatePath : '//update.electerious.com/index.json', updateURL : 'https://github.com/electerious/Lychee', From cd471be2b0d0863fe00bb5b6a85cc7b8961e4b96 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Tue, 25 Oct 2016 18:15:52 +0200 Subject: [PATCH 11/11] Rebuild --- dist/main.css | Bin 30766 -> 30740 bytes dist/main.js | Bin 192970 -> 193340 bytes dist/view.js | Bin 111510 -> 111887 bytes 3 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 dist/main.css mode change 100644 => 100755 dist/view.js diff --git a/dist/main.css b/dist/main.css old mode 100644 new mode 100755 index 1a15394f95a8e6e8de8b1432c284f1ec2447fe46..cf7a0a540508d92beb857afd43ad869645fc96c4 GIT binary patch delta 14 WcmZ4YfpN+Q#tl6Vo0mCsm;(Sfg$DTm delta 27 jcmbR8fpOgj#tl6VJi58Xy6HukDY`}Z<(umqrkMi(rLGH5 diff --git a/dist/main.js b/dist/main.js index b5d924852406ebfa48fb333a3feb6e8c52d1cc22..f9dfc5940b66f75d1fcb6b530a6762f9b276b992 100644 GIT binary patch delta 13806 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 p(z{ZQe(gi-(i delta 13215 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 diff --git a/dist/view.js b/dist/view.js old mode 100644 new mode 100755 index eba878bbff7ae207bebec9f3da81ac1990d92017..3945e9c71232c66688bc93dcc13597a2e6a8c9c5 GIT binary patch delta 13633 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 delta 13162 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 SbHwEK-MgR*XWq`TX8aEq-nlRU