├── .npmignore
├── .jshintrc
├── .babelrc
├── .travis.yml
├── .gitignore
├── gulp
├── tasks
│ ├── default.js
│ ├── build.js
│ ├── tests.js
│ ├── browsersync.js
│ ├── watch.js
│ ├── js.js
│ └── scss.js
└── config.js
├── gulpfile.js
├── tests
├── tests.js
└── tests.html
├── demo
├── scss
│ └── tilt.scss
└── index.html
├── LICENSE
├── package.json
├── readme.md
├── dest
├── tilt.jquery.min.js
├── tilt.jquery.js
└── tilt.jquery.js.map
├── src
└── tilt.jquery.js
└── yarn.lock
/.npmignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "esversion": 6
3 | }
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["env"]
3 | }
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 4.2.6
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Created by .ignore support plugin (hsz.mobi)
2 | .idea/
3 | node_modules/
4 | css/
--------------------------------------------------------------------------------
/gulp/tasks/default.js:
--------------------------------------------------------------------------------
1 | /* default task */
2 |
3 | /**
4 | * Plugins
5 | */
6 | var gulp = require('gulp');
7 |
8 | /**
9 | * Tasks
10 | */
11 | gulp.task('default', [
12 | 'scss'
13 | ]);
14 |
--------------------------------------------------------------------------------
/gulp/tasks/build.js:
--------------------------------------------------------------------------------
1 | /* default task */
2 |
3 | /**
4 | * Plugins
5 | */
6 | var gulp = require('gulp');
7 |
8 | /**
9 | * Tasks
10 | */
11 | gulp.task('build', [
12 | 'scss', 'transpile', 'compress', 'test'
13 | ]);
14 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | /* Gulpfile */
2 |
3 | /**
4 | * Task to split tasks into seperate files
5 | */
6 | var requireDir = require('require-dir');
7 |
8 | /**
9 | * Require tasks from gulp/tasks folder
10 | */
11 | requireDir('./gulp/tasks', { recurse: true });
--------------------------------------------------------------------------------
/gulp/tasks/tests.js:
--------------------------------------------------------------------------------
1 | /* SCSS task */
2 |
3 | /**
4 | * plugins
5 | */
6 | var gulp = require('gulp'),
7 | qunit = require('node-qunit-phantomjs');
8 |
9 | /**
10 | * configfile
11 | */
12 | var config = require('../config');
13 |
14 | gulp.task('test', function() {
15 | qunit(config.tests.path);
16 | });
--------------------------------------------------------------------------------
/gulp/tasks/browsersync.js:
--------------------------------------------------------------------------------
1 | /* BrowserSync task */
2 |
3 | /**
4 | * plugins
5 | */
6 | var gulp = require('gulp'),
7 | browserSync = require('browser-sync');
8 |
9 | /**
10 | * configfile
11 | */
12 | var config = require('../config').browsersync;
13 |
14 | /**
15 | * Tasks
16 | */
17 | gulp.task('browsersync', function () {
18 | browserSync.init(config);
19 | });
20 | gulp.task('browsersyncReload', function () {
21 | browserSync.reload();
22 | });
--------------------------------------------------------------------------------
/tests/tests.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Global tests
3 | */
4 |
5 | const testElement = '.js-tilt';
6 |
7 | // Test if main function still works
8 | QUnit.test('global test', function (assert) {
9 | const tilt = $(testElement).tilt();
10 | assert.ok(tilt, 'tilt function works')
11 | });
12 |
13 | QUnit.test('getvalue method', function (assert) {
14 | const tilt = $(testElement).tilt();
15 | assert.ok(tilt.tilt.getValues.call(tilt)[0].tiltX === '0.00', 'tiltX set correctly')
16 | });
--------------------------------------------------------------------------------
/gulp/tasks/watch.js:
--------------------------------------------------------------------------------
1 | /* Watch task */
2 |
3 | /**
4 | * plugins
5 | */
6 | var gulp = require('gulp'),
7 | watch = require('gulp-watch');
8 |
9 | /**
10 | * configs
11 | */
12 | var config = require('../config');
13 |
14 | /**
15 | * Tasks
16 | */
17 | gulp.task('watch', ['default', 'browsersync', 'scss'], function () {
18 | gulp.watch(config.files, ['browsersyncReload']);
19 | gulp.watch(config.scss.glob, ['scss']);
20 | gulp.watch(config.js.glob, ['browsersyncReload', 'transpile']);
21 | });
22 |
--------------------------------------------------------------------------------
/demo/scss/tilt.scss:
--------------------------------------------------------------------------------
1 | html, body {
2 | height: 100%;
3 | }
4 |
5 | body{
6 | display: flex;
7 | justify-content: center;
8 | align-items: center;
9 | }
10 |
11 | .c-example__tilt {
12 | width: 50vw;
13 | height: 50vh;
14 | display: block;
15 | background-color: #9e21ff;
16 | background-image: linear-gradient(135deg, #ed21ff 0%, #9e21ff 100%, #9e21ff 100%);
17 | box-shadow: 0 3px 47px rgba(0, 0, 0, 0.2);
18 | transform-style: preserve-3d;
19 | transform: perspective(300px);
20 | }
21 |
22 | .c-example__tilt-inner {
23 | transform: translateZ(50px) translateY(-50%) translateX(-50%);
24 | position: absolute;
25 | top: 50%;
26 | left: 50%;
27 | width: 50px;
28 | height: 50px;
29 | background-color: white;
30 | box-shadow: 0 0 50px 0 rgba(51, 51, 51, 0.3);
31 | }
32 |
--------------------------------------------------------------------------------
/gulp/tasks/js.js:
--------------------------------------------------------------------------------
1 | /* JS task */
2 |
3 | /**
4 | * plugins
5 | */
6 | var gulp = require("gulp");
7 | var sourcemaps = require("gulp-sourcemaps");
8 | var plumber = require('gulp-plumber');
9 | var babel = require("gulp-babel");
10 | var uglify = require('gulp-uglify');
11 | var rename = require('gulp-rename');
12 |
13 | /**
14 | * Config file
15 | */
16 | var config = require('../config');
17 |
18 | /**
19 | * Transpile
20 | */
21 | gulp.task("transpile", function () {
22 | return gulp.src(config.js.glob)
23 | .pipe(sourcemaps.init())
24 | .pipe(plumber())
25 | .pipe(babel())
26 | .pipe(sourcemaps.write("."))
27 | .pipe(gulp.dest(config.js.dest));
28 | });
29 |
30 | gulp.task('compress', function (cb) {
31 | return gulp.src(config.js.dest + 'tilt.jquery.js')
32 | .pipe(uglify())
33 | .pipe(rename({suffix: '.min'}))
34 | .pipe(gulp.dest(config.js.dest))
35 | });
--------------------------------------------------------------------------------
/gulp/tasks/scss.js:
--------------------------------------------------------------------------------
1 | /* SCSS task */
2 |
3 | /**
4 | * plugins
5 | */
6 | var gulp = require('gulp'),
7 | plumber = require('gulp-plumber'),
8 | sass = require('gulp-sass'),
9 | syntax = require("postcss-scss"),
10 | postcss = require('gulp-postcss'),
11 | autoprefixer = require('autoprefixer'),
12 | browserSync = require('browser-sync'),
13 | sourcemaps = require('gulp-sourcemaps');
14 |
15 | /**
16 | * configfile
17 | */
18 | var config = require('../config');
19 |
20 | /**
21 | * Postcss processors
22 | */
23 | var processors = [
24 | autoprefixer(config.scss.prefix)
25 | ];
26 |
27 | gulp.task('scss', function () {
28 | gulp.src(config.scss.src)
29 | .pipe(plumber())
30 | .pipe(sourcemaps.init())
31 | .pipe(sass.sync(config.scss.settings)
32 | .pipe(sass())
33 | .on('error', sass.logError))
34 | .pipe(postcss(processors, {syntax: syntax}))
35 | .pipe(sourcemaps.write('.'))
36 | .pipe(gulp.dest(config.scss.dest))
37 | .pipe(browserSync.stream({match: '**/*.css'}))
38 | });
39 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2017 Gijs Rogé
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/tests/tests.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | simple-nav
6 |
7 |
8 |
9 |
10 |
11 |
12 |
26 |
27 |
28 |
29 |
30 |
31 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/gulp/config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Config file
3 | */
4 | var path = './';
5 |
6 | module.exports = {
7 |
8 | /**
9 | * Scss settings
10 | */
11 | scss: {
12 | src: path + 'demo/scss/tilt.scss',
13 | glob: path + 'demo/**/*.scss',
14 | settings: {
15 | outputStyle: 'expanded'
16 | },
17 | dest: path + 'demo/css/',
18 | prefix: [
19 | 'last 2 version',
20 | '> 1%',
21 | 'ie 8',
22 | 'ie 9',
23 | 'ios 6',
24 | 'android 4'
25 | ]
26 | },
27 |
28 | tests: {
29 | path: './tests/tests.html'
30 | },
31 |
32 | /**
33 | * Files
34 | */
35 | files: path + 'demo/**/*.html',
36 |
37 | /**
38 | * Js Settings
39 | */
40 | js: {
41 | glob: [path + 'js/**/*.js', path + 'src/**/*.js'],
42 | dest: path + 'dest/'
43 | },
44 |
45 | /**
46 | * BrowserSync settings
47 | */
48 | browsersync: {
49 | server: {
50 | baseDir: path,
51 | index: "demo/index.html"
52 | },
53 | notify: false
54 | },
55 | };
56 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tilt.js",
3 | "version": "1.1.21",
4 | "description": "A tiny requestAnimationFrame powered 60+fps lightweight parallax tilt effect for jQuery.",
5 | "main": "./src/tilt.jquery.js",
6 | "scripts": {
7 | "test": "node ./node_modules/jshint/bin/jshint src/tilt.jquery.js && gulp test --verbose --force"
8 | },
9 | "files": [
10 | "*/**"
11 | ],
12 | "repository": {
13 | "type": "git",
14 | "url": "git@github.com:gijsroge/tilt.js.git"
15 | },
16 | "author": "gijsroge ",
17 | "license": "MIT",
18 | "homepage": "https://github.com/gijsroge/tilt.js",
19 | "devDependencies": {
20 | "autoprefixer": "6.3.6",
21 | "babel-preset-env": "^1.1.8",
22 | "browser-sync": "2.16.0",
23 | "gulp": "3.9.1",
24 | "gulp-babel": "^6.1.2",
25 | "gulp-plumber": "1.1.0",
26 | "gulp-postcss": "6.1.1",
27 | "gulp-rename": "^1.2.2",
28 | "gulp-sass": "^3.1.0",
29 | "gulp-sourcemaps": "^2.4.0",
30 | "gulp-uglify": "^2.0.1",
31 | "gulp-watch": "4.3.6",
32 | "jshint": "^2.9.3",
33 | "node-qunit-phantomjs": "^1.4.0",
34 | "postcss-reporter": "1.3.3",
35 | "postcss-scss": "0.1.8",
36 | "qunitjs": "^2.0.1",
37 | "require-dir": "0.3.0"
38 | },
39 | "dependencies": {
40 | "jquery": "^3.1.1"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/demo/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tilt
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
16 |
17 |
18 |
49 |
50 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | [](https://travis-ci.org/gijsroge/tilt.js)
2 |
3 | # Tilt.js
4 | A tiny requestAnimationFrame powered 60+fps lightweight parallax tilt effect for jQuery.
5 |
6 | Weights just ⚖**1.71kb Gzipped**
7 | 
8 |
9 | #### Take a look at the **[landing page](http://gijsroge.github.io/tilt.js/)** for demos.
10 |
11 | ### Usage
12 |
13 | ```html
14 |
15 |
16 |
17 |
18 |
19 |
20 | ```
21 |
22 | ### Options
23 | ```js
24 | maxTilt: 20,
25 | perspective: 1000, // Transform perspective, the lower the more extreme the tilt gets.
26 | easing: "cubic-bezier(.03,.98,.52,.99)", // Easing on enter/exit.
27 | scale: 1, // 2 = 200%, 1.5 = 150%, etc..
28 | speed: 300, // Speed of the enter/exit transition.
29 | transition: true, // Set a transition on enter/exit.
30 | axis: null, // What axis should be disabled. Can be X or Y.
31 | reset: true, // If the tilt effect has to be reset on exit.
32 | glare: false, // Enables glare effect
33 | maxGlare: 1 // From 0 - 1.
34 | ```
35 |
36 | ### Events
37 | ```js
38 | const tilt = $('.js-tilt').tilt();
39 | tilt.on('change', callback); // parameters: event, transforms
40 | tilt.on('tilt.mouseLeave', callback); // parameters: event
41 | tilt.on('tilt.mouseEnter', callback); // parameters: event
42 | ```
43 |
44 | ### Methods
45 | ```js
46 | const tilt = $('.js-tilt').tilt();
47 |
48 | // Destroy instance
49 | tilt.tilt.destroy.call(tilt);
50 |
51 | // Get values of instance
52 | tilt.tilt.getValues.call(tilt); // returns [{},{},etc..]
53 |
54 | // Reset instance
55 | tilt.tilt.reset.call(tilt);
56 | ```
57 |
58 | ### Install
59 | - **yarn:** `yarn add tilt.js`
60 | - **npm:** `npm install --save tilt.js`
61 |
62 | ### CDN
63 | - https://unpkg.com/tilt.js@1.1.21/dest/tilt.jquery.min.js
64 |
65 | ### Alternatives
66 | - **Vanilla JS:** https://github.com/micku7zu/vanilla-tilt.js
67 | - **React:** https://github.com/jonathandion/react-tilt
68 |
--------------------------------------------------------------------------------
/dest/tilt.jquery.min.js:
--------------------------------------------------------------------------------
1 | "use strict";var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"===("undefined"==typeof module?"undefined":_typeof(module))&&module.exports?module.exports=function(i,s){return void 0===s&&(s="undefined"!=typeof window?require("jquery"):require("jquery")(i)),t(s),s}:t(jQuery)}(function(t){return t.fn.tilt=function(i){var s=function(){this.ticking||(requestAnimationFrame(g.bind(this)),this.ticking=!0)},e=function(){var i=this;t(this).on("mousemove",o),t(this).on("mouseenter",a),this.settings.reset&&t(this).on("mouseleave",h),this.settings.glare&&t(window).on("resize",u.bind(i))},n=function(){var i=this;void 0!==this.timeout&&clearTimeout(this.timeout),t(this).css({transition:this.settings.speed+"ms "+this.settings.easing}),this.settings.glare&&this.glareElement.css({transition:"opacity "+this.settings.speed+"ms "+this.settings.easing}),this.timeout=setTimeout(function(){t(i).css({transition:""}),i.settings.glare&&i.glareElement.css({transition:""})},this.settings.speed)},a=function(i){this.ticking=!1,t(this).css({"will-change":"transform"}),n.call(this),t(this).trigger("tilt.mouseEnter")},r=function(i){return"undefined"==typeof i&&(i={pageX:t(this).offset().left+t(this).outerWidth()/2,pageY:t(this).offset().top+t(this).outerHeight()/2}),{x:i.pageX,y:i.pageY}},o=function(t){this.mousePositions=r(t),s.call(this)},h=function(){n.call(this),this.reset=!0,s.call(this),t(this).trigger("tilt.mouseLeave")},l=function(){var i=t(this).outerWidth(),s=t(this).outerHeight(),e=t(this).offset().left,n=t(this).offset().top,a=(this.mousePositions.x-e)/i,r=(this.mousePositions.y-n)/s,o=(this.settings.maxTilt/2-a*this.settings.maxTilt).toFixed(2),h=(r*this.settings.maxTilt-this.settings.maxTilt/2).toFixed(2),l=Math.atan2(this.mousePositions.x-(e+i/2),-(this.mousePositions.y-(n+s/2)))*(180/Math.PI);return{tiltX:o,tiltY:h,percentageX:100*a,percentageY:100*r,angle:l}},g=function(){return this.transforms=l.call(this),this.reset?(this.reset=!1,t(this).css("transform","perspective("+this.settings.perspective+"px) rotateX(0deg) rotateY(0deg)"),void(this.settings.glare&&(this.glareElement.css("transform","rotate(180deg) translate(-50%, -50%)"),this.glareElement.css("opacity","0")))):(t(this).css("transform","perspective("+this.settings.perspective+"px) rotateX("+("x"===this.settings.axis?0:this.transforms.tiltY)+"deg) rotateY("+("y"===this.settings.axis?0:this.transforms.tiltX)+"deg) scale3d("+this.settings.scale+","+this.settings.scale+","+this.settings.scale+")"),this.settings.glare&&(this.glareElement.css("transform","rotate("+this.transforms.angle+"deg) translate(-50%, -50%)"),this.glareElement.css("opacity",""+this.transforms.percentageY*this.settings.maxGlare/100)),t(this).trigger("change",[this.transforms]),void(this.ticking=!1))},c=function(){var i=this.settings.glarePrerender;if(i||t(this).append(''),this.glareElementWrapper=t(this).find(".js-tilt-glare"),this.glareElement=t(this).find(".js-tilt-glare-inner"),!i){var s={position:"absolute",top:"0",left:"0",width:"100%",height:"100%"};this.glareElementWrapper.css(s).css({overflow:"hidden"}),this.glareElement.css({position:"absolute",top:"50%",left:"50%","pointer-events":"none","background-image":"linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)",width:""+2*t(this).outerWidth(),height:""+2*t(this).outerWidth(),transform:"rotate(180deg) translate(-50%, -50%)","transform-origin":"0% 0%",opacity:"0"})}},u=function(){this.glareElement.css({width:""+2*t(this).outerWidth(),height:""+2*t(this).outerWidth()})};return t.fn.tilt.destroy=function(){t(this).each(function(){t(this).find(".js-tilt-glare").remove(),t(this).css({"will-change":"",transform:""}),t(this).off("mousemove mouseenter mouseleave")})},t.fn.tilt.getValues=function(){var i=[];return t(this).each(function(){this.mousePositions=r.call(this),i.push(l.call(this))}),i},t.fn.tilt.reset=function(){t(this).each(function(){var i=this;this.mousePositions=r.call(this),this.settings=t(this).data("settings"),h.call(this),setTimeout(function(){i.reset=!1},this.settings.transition)})},this.each(function(){var s=this;this.settings=t.extend({maxTilt:t(this).is("[data-tilt-max]")?t(this).data("tilt-max"):20,perspective:t(this).is("[data-tilt-perspective]")?t(this).data("tilt-perspective"):300,easing:t(this).is("[data-tilt-easing]")?t(this).data("tilt-easing"):"cubic-bezier(.03,.98,.52,.99)",scale:t(this).is("[data-tilt-scale]")?t(this).data("tilt-scale"):"1",speed:t(this).is("[data-tilt-speed]")?t(this).data("tilt-speed"):"400",transition:!t(this).is("[data-tilt-transition]")||t(this).data("tilt-transition"),axis:t(this).is("[data-tilt-axis]")?t(this).data("tilt-axis"):null,reset:!t(this).is("[data-tilt-reset]")||t(this).data("tilt-reset"),glare:!!t(this).is("[data-tilt-glare]")&&t(this).data("tilt-glare"),maxGlare:t(this).is("[data-tilt-maxglare]")?t(this).data("tilt-maxglare"):1},i),this.init=function(){t(s).data("settings",s.settings),s.settings.glare&&c.call(s),e.call(s)},this.init()})},t("[data-tilt]").tilt(),!0});
--------------------------------------------------------------------------------
/src/tilt.jquery.js:
--------------------------------------------------------------------------------
1 | (function (factory) {
2 | if (typeof define === 'function' && define.amd) {
3 | // AMD. Register as an anonymous module.
4 | define(['jquery'], factory);
5 | } else if (typeof module === 'object' && module.exports) {
6 | // Node/CommonJS
7 | module.exports = function( root, jQuery ) {
8 | if ( jQuery === undefined ) {
9 | // require('jQuery') returns a factory that requires window to
10 | // build a jQuery instance, we normalize how we use modules
11 | // that require this pattern but the window provided is a noop
12 | // if it's defined (how jquery works)
13 | if ( typeof window !== 'undefined' ) {
14 | jQuery = require('jquery');
15 | }
16 | else {
17 | jQuery = require('jquery')(root);
18 | }
19 | }
20 | factory(jQuery);
21 | return jQuery;
22 | };
23 | } else {
24 | // Browser globals
25 | factory(jQuery);
26 | }
27 | }(function ($) {
28 | $.fn.tilt = function (options) {
29 |
30 | /**
31 | * RequestAnimationFrame
32 | */
33 | const requestTick = function() {
34 | if (this.ticking) return;
35 | requestAnimationFrame(updateTransforms.bind(this));
36 | this.ticking = true;
37 | };
38 |
39 | /**
40 | * Bind mouse movement evens on instance
41 | */
42 | const bindEvents = function() {
43 | const _this = this;
44 | $(this).on('mousemove', mouseMove);
45 | $(this).on('mouseenter', mouseEnter);
46 | if (this.settings.reset) $(this).on('mouseleave', mouseLeave);
47 | if (this.settings.glare) $(window).on('resize', updateGlareSize.bind(_this));
48 | };
49 |
50 | /**
51 | * Set transition only on mouse leave and mouse enter so it doesn't influence mouse move transforms
52 | */
53 | const setTransition = function() {
54 | if (this.timeout !== undefined) clearTimeout(this.timeout);
55 | $(this).css({'transition': `${this.settings.speed}ms ${this.settings.easing}`});
56 | if(this.settings.glare) this.glareElement.css({'transition': `opacity ${this.settings.speed}ms ${this.settings.easing}`});
57 | this.timeout = setTimeout(() => {
58 | $(this).css({'transition': ''});
59 | if(this.settings.glare) this.glareElement.css({'transition': ''});
60 | }, this.settings.speed);
61 | };
62 |
63 | /**
64 | * When user mouse enters tilt element
65 | */
66 | const mouseEnter = function(event) {
67 | this.ticking = false;
68 | $(this).css({'will-change': 'transform'});
69 | setTransition.call(this);
70 |
71 | // Trigger change event
72 | $(this).trigger("tilt.mouseEnter");
73 | };
74 |
75 | /**
76 | * Return the x,y position of the mouse on the tilt element
77 | * @returns {{x: *, y: *}}
78 | */
79 | const getMousePositions = function(event) {
80 | if (typeof(event) === "undefined") {
81 | event = {
82 | pageX: $(this).offset().left + $(this).outerWidth() / 2,
83 | pageY: $(this).offset().top + $(this).outerHeight() / 2
84 | };
85 | }
86 | return {x: event.pageX, y: event.pageY};
87 | };
88 |
89 | /**
90 | * When user mouse moves over the tilt element
91 | */
92 | const mouseMove = function(event) {
93 | this.mousePositions = getMousePositions(event);
94 | requestTick.call(this);
95 | };
96 |
97 | /**
98 | * When user mouse leaves tilt element
99 | */
100 | const mouseLeave = function() {
101 | setTransition.call(this);
102 | this.reset = true;
103 | requestTick.call(this);
104 |
105 | // Trigger change event
106 | $(this).trigger("tilt.mouseLeave");
107 | };
108 |
109 | /**
110 | * Get tilt values
111 | *
112 | * @returns {{x: tilt value, y: tilt value}}
113 | */
114 | const getValues = function() {
115 | const width = $(this).outerWidth();
116 | const height = $(this).outerHeight();
117 | const left = $(this).offset().left;
118 | const top = $(this).offset().top;
119 | const percentageX = (this.mousePositions.x - left) / width;
120 | const percentageY = (this.mousePositions.y - top) / height;
121 | // x or y position inside instance / width of instance = percentage of position inside instance * the max tilt value
122 | const tiltX = ((this.settings.maxTilt / 2) - ((percentageX) * this.settings.maxTilt)).toFixed(2);
123 | const tiltY = (((percentageY) * this.settings.maxTilt) - (this.settings.maxTilt / 2)).toFixed(2);
124 | // angle
125 | const angle = Math.atan2(this.mousePositions.x - (left+width/2),- (this.mousePositions.y - (top+height/2)) )*(180/Math.PI);
126 | // Return x & y tilt values
127 | return {tiltX, tiltY, 'percentageX': percentageX * 100, 'percentageY': percentageY * 100, angle};
128 | };
129 |
130 | /**
131 | * Update tilt transforms on mousemove
132 | */
133 | const updateTransforms = function() {
134 | this.transforms = getValues.call(this);
135 |
136 | if (this.reset) {
137 | this.reset = false;
138 | $(this).css('transform', `perspective(${this.settings.perspective}px) rotateX(0deg) rotateY(0deg)`);
139 |
140 | // Rotate glare if enabled
141 | if (this.settings.glare){
142 | this.glareElement.css('transform', `rotate(180deg) translate(-50%, -50%)`);
143 | this.glareElement.css('opacity', `0`);
144 | }
145 |
146 | return;
147 | } else {
148 | $(this).css('transform', `perspective(${this.settings.perspective}px) rotateX(${this.settings.axis === 'x' ? 0 : this.transforms.tiltY}deg) rotateY(${this.settings.axis === 'y' ? 0 : this.transforms.tiltX}deg) scale3d(${this.settings.scale},${this.settings.scale},${this.settings.scale})`);
149 |
150 | // Rotate glare if enabled
151 | if (this.settings.glare){
152 | this.glareElement.css('transform', `rotate(${this.transforms.angle}deg) translate(-50%, -50%)`);
153 | this.glareElement.css('opacity', `${this.transforms.percentageY * this.settings.maxGlare / 100}`);
154 | }
155 | }
156 |
157 | // Trigger change event
158 | $(this).trigger("change", [this.transforms]);
159 |
160 | this.ticking = false;
161 | };
162 |
163 | /**
164 | * Prepare elements
165 | */
166 | const prepareGlare = function () {
167 | const glarePrerender = this.settings.glarePrerender;
168 |
169 | // If option pre-render is enabled we assume all html/css is present for an optimal glare effect.
170 | if (!glarePrerender)
171 | // Create glare element
172 | $(this).append('');
173 |
174 | // Store glare selector if glare is enabled
175 | this.glareElementWrapper = $(this).find(".js-tilt-glare");
176 | this.glareElement = $(this).find(".js-tilt-glare-inner");
177 |
178 | // Remember? We assume all css is already set, so just return
179 | if (glarePrerender) return;
180 |
181 | // Abstracted re-usable glare styles
182 | const stretch = {
183 | 'position': 'absolute',
184 | 'top': '0',
185 | 'left': '0',
186 | 'width': '100%',
187 | 'height': '100%',
188 | };
189 |
190 | // Style glare wrapper
191 | this.glareElementWrapper.css(stretch).css({
192 | 'overflow': 'hidden',
193 | });
194 |
195 | // Style glare element
196 | this.glareElement.css({
197 | 'position': 'absolute',
198 | 'top': '50%',
199 | 'left': '50%',
200 | 'pointer-events': 'none',
201 | 'background-image': `linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)`,
202 | 'width': `${$(this).outerWidth()*2}`,
203 | 'height': `${$(this).outerWidth()*2}`,
204 | 'transform': 'rotate(180deg) translate(-50%, -50%)',
205 | 'transform-origin': '0% 0%',
206 | 'opacity': '0',
207 | });
208 |
209 | };
210 |
211 | /**
212 | * Update glare on resize
213 | */
214 | const updateGlareSize = function () {
215 | this.glareElement.css({
216 | 'width': `${$(this).outerWidth()*2}`,
217 | 'height': `${$(this).outerWidth()*2}`,
218 | });
219 | };
220 |
221 | /**
222 | * Public methods
223 | */
224 | $.fn.tilt.destroy = function() {
225 | $(this).each(function () {
226 | $(this).find('.js-tilt-glare').remove();
227 | $(this).css({'will-change': '', 'transform': ''});
228 | $(this).off('mousemove mouseenter mouseleave');
229 | });
230 | };
231 |
232 | $.fn.tilt.getValues = function() {
233 | const results = [];
234 | $(this).each(function () {
235 | this.mousePositions = getMousePositions.call(this);
236 | results.push(getValues.call(this));
237 | });
238 | return results;
239 | };
240 |
241 | $.fn.tilt.reset = function() {
242 | $(this).each(function () {
243 | this.mousePositions = getMousePositions.call(this);
244 | this.settings = $(this).data('settings');
245 | mouseLeave.call(this);
246 | setTimeout(() => {
247 | this.reset = false;
248 | }, this.settings.transition);
249 | });
250 | };
251 |
252 | /**
253 | * Loop every instance
254 | */
255 | return this.each(function () {
256 |
257 | /**
258 | * Default settings merged with user settings
259 | * Can be set trough data attributes or as parameter.
260 | * @type {*}
261 | */
262 | this.settings = $.extend({
263 | maxTilt: $(this).is('[data-tilt-max]') ? $(this).data('tilt-max') : 20,
264 | perspective: $(this).is('[data-tilt-perspective]') ? $(this).data('tilt-perspective') : 300,
265 | easing: $(this).is('[data-tilt-easing]') ? $(this).data('tilt-easing') : 'cubic-bezier(.03,.98,.52,.99)',
266 | scale: $(this).is('[data-tilt-scale]') ? $(this).data('tilt-scale') : '1',
267 | speed: $(this).is('[data-tilt-speed]') ? $(this).data('tilt-speed') : '400',
268 | transition: $(this).is('[data-tilt-transition]') ? $(this).data('tilt-transition') : true,
269 | axis: $(this).is('[data-tilt-axis]') ? $(this).data('tilt-axis') : null,
270 | reset: $(this).is('[data-tilt-reset]') ? $(this).data('tilt-reset') : true,
271 | glare: $(this).is('[data-tilt-glare]') ? $(this).data('tilt-glare') : false,
272 | maxGlare: $(this).is('[data-tilt-maxglare]') ? $(this).data('tilt-maxglare') : 1,
273 | }, options);
274 |
275 |
276 | this.init = () => {
277 | // Store settings
278 | $(this).data('settings', this.settings);
279 |
280 | // Prepare element
281 | if(this.settings.glare) prepareGlare.call(this);
282 |
283 | // Bind events
284 | bindEvents.call(this);
285 | };
286 |
287 | // Init
288 | this.init();
289 |
290 | });
291 | };
292 |
293 | /**
294 | * Auto load
295 | */
296 | $('[data-tilt]').tilt();
297 |
298 | return true;
299 | }));
--------------------------------------------------------------------------------
/dest/tilt.jquery.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
4 |
5 | (function (factory) {
6 | if (typeof define === 'function' && define.amd) {
7 | // AMD. Register as an anonymous module.
8 | define(['jquery'], factory);
9 | } else if ((typeof module === 'undefined' ? 'undefined' : _typeof(module)) === 'object' && module.exports) {
10 | // Node/CommonJS
11 | module.exports = function (root, jQuery) {
12 | if (jQuery === undefined) {
13 | // require('jQuery') returns a factory that requires window to
14 | // build a jQuery instance, we normalize how we use modules
15 | // that require this pattern but the window provided is a noop
16 | // if it's defined (how jquery works)
17 | if (typeof window !== 'undefined') {
18 | jQuery = require('jquery');
19 | } else {
20 | jQuery = require('jquery')(root);
21 | }
22 | }
23 | factory(jQuery);
24 | return jQuery;
25 | };
26 | } else {
27 | // Browser globals
28 | factory(jQuery);
29 | }
30 | })(function ($) {
31 | $.fn.tilt = function (options) {
32 |
33 | /**
34 | * RequestAnimationFrame
35 | */
36 | var requestTick = function requestTick() {
37 | if (this.ticking) return;
38 | requestAnimationFrame(updateTransforms.bind(this));
39 | this.ticking = true;
40 | };
41 |
42 | /**
43 | * Bind mouse movement evens on instance
44 | */
45 | var bindEvents = function bindEvents() {
46 | var _this = this;
47 | $(this).on('mousemove', mouseMove);
48 | $(this).on('mouseenter', mouseEnter);
49 | if (this.settings.reset) $(this).on('mouseleave', mouseLeave);
50 | if (this.settings.glare) $(window).on('resize', updateGlareSize.bind(_this));
51 | };
52 |
53 | /**
54 | * Set transition only on mouse leave and mouse enter so it doesn't influence mouse move transforms
55 | */
56 | var setTransition = function setTransition() {
57 | var _this2 = this;
58 |
59 | if (this.timeout !== undefined) clearTimeout(this.timeout);
60 | $(this).css({ 'transition': this.settings.speed + 'ms ' + this.settings.easing });
61 | if (this.settings.glare) this.glareElement.css({ 'transition': 'opacity ' + this.settings.speed + 'ms ' + this.settings.easing });
62 | this.timeout = setTimeout(function () {
63 | $(_this2).css({ 'transition': '' });
64 | if (_this2.settings.glare) _this2.glareElement.css({ 'transition': '' });
65 | }, this.settings.speed);
66 | };
67 |
68 | /**
69 | * When user mouse enters tilt element
70 | */
71 | var mouseEnter = function mouseEnter(event) {
72 | this.ticking = false;
73 | $(this).css({ 'will-change': 'transform' });
74 | setTransition.call(this);
75 |
76 | // Trigger change event
77 | $(this).trigger("tilt.mouseEnter");
78 | };
79 |
80 | /**
81 | * Return the x,y position of the mouse on the tilt element
82 | * @returns {{x: *, y: *}}
83 | */
84 | var getMousePositions = function getMousePositions(event) {
85 | if (typeof event === "undefined") {
86 | event = {
87 | pageX: $(this).offset().left + $(this).outerWidth() / 2,
88 | pageY: $(this).offset().top + $(this).outerHeight() / 2
89 | };
90 | }
91 | return { x: event.pageX, y: event.pageY };
92 | };
93 |
94 | /**
95 | * When user mouse moves over the tilt element
96 | */
97 | var mouseMove = function mouseMove(event) {
98 | this.mousePositions = getMousePositions(event);
99 | requestTick.call(this);
100 | };
101 |
102 | /**
103 | * When user mouse leaves tilt element
104 | */
105 | var mouseLeave = function mouseLeave() {
106 | setTransition.call(this);
107 | this.reset = true;
108 | requestTick.call(this);
109 |
110 | // Trigger change event
111 | $(this).trigger("tilt.mouseLeave");
112 | };
113 |
114 | /**
115 | * Get tilt values
116 | *
117 | * @returns {{x: tilt value, y: tilt value}}
118 | */
119 | var getValues = function getValues() {
120 | var width = $(this).outerWidth();
121 | var height = $(this).outerHeight();
122 | var left = $(this).offset().left;
123 | var top = $(this).offset().top;
124 | var percentageX = (this.mousePositions.x - left) / width;
125 | var percentageY = (this.mousePositions.y - top) / height;
126 | // x or y position inside instance / width of instance = percentage of position inside instance * the max tilt value
127 | var tiltX = (this.settings.maxTilt / 2 - percentageX * this.settings.maxTilt).toFixed(2);
128 | var tiltY = (percentageY * this.settings.maxTilt - this.settings.maxTilt / 2).toFixed(2);
129 | // angle
130 | var angle = Math.atan2(this.mousePositions.x - (left + width / 2), -(this.mousePositions.y - (top + height / 2))) * (180 / Math.PI);
131 | // Return x & y tilt values
132 | return { tiltX: tiltX, tiltY: tiltY, 'percentageX': percentageX * 100, 'percentageY': percentageY * 100, angle: angle };
133 | };
134 |
135 | /**
136 | * Update tilt transforms on mousemove
137 | */
138 | var updateTransforms = function updateTransforms() {
139 | this.transforms = getValues.call(this);
140 |
141 | if (this.reset) {
142 | this.reset = false;
143 | $(this).css('transform', 'perspective(' + this.settings.perspective + 'px) rotateX(0deg) rotateY(0deg)');
144 |
145 | // Rotate glare if enabled
146 | if (this.settings.glare) {
147 | this.glareElement.css('transform', 'rotate(180deg) translate(-50%, -50%)');
148 | this.glareElement.css('opacity', '0');
149 | }
150 |
151 | return;
152 | } else {
153 | $(this).css('transform', 'perspective(' + this.settings.perspective + 'px) rotateX(' + (this.settings.axis === 'x' ? 0 : this.transforms.tiltY) + 'deg) rotateY(' + (this.settings.axis === 'y' ? 0 : this.transforms.tiltX) + 'deg) scale3d(' + this.settings.scale + ',' + this.settings.scale + ',' + this.settings.scale + ')');
154 |
155 | // Rotate glare if enabled
156 | if (this.settings.glare) {
157 | this.glareElement.css('transform', 'rotate(' + this.transforms.angle + 'deg) translate(-50%, -50%)');
158 | this.glareElement.css('opacity', '' + this.transforms.percentageY * this.settings.maxGlare / 100);
159 | }
160 | }
161 |
162 | // Trigger change event
163 | $(this).trigger("change", [this.transforms]);
164 |
165 | this.ticking = false;
166 | };
167 |
168 | /**
169 | * Prepare elements
170 | */
171 | var prepareGlare = function prepareGlare() {
172 | var glarePrerender = this.settings.glarePrerender;
173 |
174 | // If option pre-render is enabled we assume all html/css is present for an optimal glare effect.
175 | if (!glarePrerender)
176 | // Create glare element
177 | $(this).append('');
178 |
179 | // Store glare selector if glare is enabled
180 | this.glareElementWrapper = $(this).find(".js-tilt-glare");
181 | this.glareElement = $(this).find(".js-tilt-glare-inner");
182 |
183 | // Remember? We assume all css is already set, so just return
184 | if (glarePrerender) return;
185 |
186 | // Abstracted re-usable glare styles
187 | var stretch = {
188 | 'position': 'absolute',
189 | 'top': '0',
190 | 'left': '0',
191 | 'width': '100%',
192 | 'height': '100%'
193 | };
194 |
195 | // Style glare wrapper
196 | this.glareElementWrapper.css(stretch).css({
197 | 'overflow': 'hidden'
198 | });
199 |
200 | // Style glare element
201 | this.glareElement.css({
202 | 'position': 'absolute',
203 | 'top': '50%',
204 | 'left': '50%',
205 | 'pointer-events': 'none',
206 | 'background-image': 'linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)',
207 | 'width': '' + $(this).outerWidth() * 2,
208 | 'height': '' + $(this).outerWidth() * 2,
209 | 'transform': 'rotate(180deg) translate(-50%, -50%)',
210 | 'transform-origin': '0% 0%',
211 | 'opacity': '0'
212 | });
213 | };
214 |
215 | /**
216 | * Update glare on resize
217 | */
218 | var updateGlareSize = function updateGlareSize() {
219 | this.glareElement.css({
220 | 'width': '' + $(this).outerWidth() * 2,
221 | 'height': '' + $(this).outerWidth() * 2
222 | });
223 | };
224 |
225 | /**
226 | * Public methods
227 | */
228 | $.fn.tilt.destroy = function () {
229 | $(this).each(function () {
230 | $(this).find('.js-tilt-glare').remove();
231 | $(this).css({ 'will-change': '', 'transform': '' });
232 | $(this).off('mousemove mouseenter mouseleave');
233 | });
234 | };
235 |
236 | $.fn.tilt.getValues = function () {
237 | var results = [];
238 | $(this).each(function () {
239 | this.mousePositions = getMousePositions.call(this);
240 | results.push(getValues.call(this));
241 | });
242 | return results;
243 | };
244 |
245 | $.fn.tilt.reset = function () {
246 | $(this).each(function () {
247 | var _this3 = this;
248 |
249 | this.mousePositions = getMousePositions.call(this);
250 | this.settings = $(this).data('settings');
251 | mouseLeave.call(this);
252 | setTimeout(function () {
253 | _this3.reset = false;
254 | }, this.settings.transition);
255 | });
256 | };
257 |
258 | /**
259 | * Loop every instance
260 | */
261 | return this.each(function () {
262 | var _this4 = this;
263 |
264 | /**
265 | * Default settings merged with user settings
266 | * Can be set trough data attributes or as parameter.
267 | * @type {*}
268 | */
269 | this.settings = $.extend({
270 | maxTilt: $(this).is('[data-tilt-max]') ? $(this).data('tilt-max') : 20,
271 | perspective: $(this).is('[data-tilt-perspective]') ? $(this).data('tilt-perspective') : 300,
272 | easing: $(this).is('[data-tilt-easing]') ? $(this).data('tilt-easing') : 'cubic-bezier(.03,.98,.52,.99)',
273 | scale: $(this).is('[data-tilt-scale]') ? $(this).data('tilt-scale') : '1',
274 | speed: $(this).is('[data-tilt-speed]') ? $(this).data('tilt-speed') : '400',
275 | transition: $(this).is('[data-tilt-transition]') ? $(this).data('tilt-transition') : true,
276 | axis: $(this).is('[data-tilt-axis]') ? $(this).data('tilt-axis') : null,
277 | reset: $(this).is('[data-tilt-reset]') ? $(this).data('tilt-reset') : true,
278 | glare: $(this).is('[data-tilt-glare]') ? $(this).data('tilt-glare') : false,
279 | maxGlare: $(this).is('[data-tilt-maxglare]') ? $(this).data('tilt-maxglare') : 1
280 | }, options);
281 |
282 | this.init = function () {
283 | // Store settings
284 | $(_this4).data('settings', _this4.settings);
285 |
286 | // Prepare element
287 | if (_this4.settings.glare) prepareGlare.call(_this4);
288 |
289 | // Bind events
290 | bindEvents.call(_this4);
291 | };
292 |
293 | // Init
294 | this.init();
295 | });
296 | };
297 |
298 | /**
299 | * Auto load
300 | */
301 | $('[data-tilt]').tilt();
302 |
303 | return true;
304 | });
305 | //# sourceMappingURL=tilt.jquery.js.map
306 |
--------------------------------------------------------------------------------
/dest/tilt.jquery.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["tilt.jquery.js"],"names":["factory","define","amd","module","exports","root","jQuery","undefined","window","require","$","fn","tilt","options","requestTick","ticking","requestAnimationFrame","updateTransforms","bind","bindEvents","_this","on","mouseMove","mouseEnter","settings","reset","mouseLeave","glare","updateGlareSize","setTransition","timeout","clearTimeout","css","speed","easing","glareElement","setTimeout","event","call","trigger","getMousePositions","pageX","offset","left","outerWidth","pageY","top","outerHeight","x","y","mousePositions","getValues","width","height","percentageX","percentageY","tiltX","maxTilt","toFixed","tiltY","angle","Math","atan2","PI","transforms","perspective","axis","scale","maxGlare","prepareGlare","glarePrerender","append","glareElementWrapper","find","stretch","destroy","each","remove","off","results","push","data","transition","extend","is","init"],"mappings":";;;;AAAC,WAAUA,OAAV,EAAmB;AAChB,QAAI,OAAOC,MAAP,KAAkB,UAAlB,IAAgCA,OAAOC,GAA3C,EAAgD;AAC5C;AACAD,eAAO,CAAC,QAAD,CAAP,EAAmBD,OAAnB;AACH,KAHD,MAGO,IAAI,QAAOG,MAAP,yCAAOA,MAAP,OAAkB,QAAlB,IAA8BA,OAAOC,OAAzC,EAAkD;AACrD;AACAD,eAAOC,OAAP,GAAiB,UAAUC,IAAV,EAAgBC,MAAhB,EAAyB;AACtC,gBAAKA,WAAWC,SAAhB,EAA4B;AACxB;AACA;AACA;AACA;AACA,oBAAK,OAAOC,MAAP,KAAkB,WAAvB,EAAqC;AACjCF,6BAASG,QAAQ,QAAR,CAAT;AACH,iBAFD,MAGK;AACDH,6BAASG,QAAQ,QAAR,EAAkBJ,IAAlB,CAAT;AACH;AACJ;AACDL,oBAAQM,MAAR;AACA,mBAAOA,MAAP;AACH,SAfD;AAgBH,KAlBM,MAkBA;AACH;AACAN,gBAAQM,MAAR;AACH;AACJ,CA1BA,EA0BC,UAAUI,CAAV,EAAa;AACXA,MAAEC,EAAF,CAAKC,IAAL,GAAY,UAAUC,OAAV,EAAmB;;AAE3B;;;AAGA,YAAMC,cAAc,SAAdA,WAAc,GAAW;AAC3B,gBAAI,KAAKC,OAAT,EAAkB;AAClBC,kCAAsBC,iBAAiBC,IAAjB,CAAsB,IAAtB,CAAtB;AACA,iBAAKH,OAAL,GAAe,IAAf;AACH,SAJD;;AAMA;;;AAGA,YAAMI,aAAa,SAAbA,UAAa,GAAW;AAC1B,gBAAMC,QAAQ,IAAd;AACAV,cAAE,IAAF,EAAQW,EAAR,CAAW,WAAX,EAAwBC,SAAxB;AACAZ,cAAE,IAAF,EAAQW,EAAR,CAAW,YAAX,EAAyBE,UAAzB;AACA,gBAAI,KAAKC,QAAL,CAAcC,KAAlB,EAAyBf,EAAE,IAAF,EAAQW,EAAR,CAAW,YAAX,EAAyBK,UAAzB;AACzB,gBAAI,KAAKF,QAAL,CAAcG,KAAlB,EAAyBjB,EAAEF,MAAF,EAAUa,EAAV,CAAa,QAAb,EAAuBO,gBAAgBV,IAAhB,CAAqBE,KAArB,CAAvB;AAC5B,SAND;;AAQA;;;AAGA,YAAMS,gBAAgB,SAAhBA,aAAgB,GAAW;AAAA;;AAC7B,gBAAI,KAAKC,OAAL,KAAiBvB,SAArB,EAAgCwB,aAAa,KAAKD,OAAlB;AAChCpB,cAAE,IAAF,EAAQsB,GAAR,CAAY,EAAC,cAAiB,KAAKR,QAAL,CAAcS,KAA/B,WAA0C,KAAKT,QAAL,CAAcU,MAAzD,EAAZ;AACA,gBAAG,KAAKV,QAAL,CAAcG,KAAjB,EAAwB,KAAKQ,YAAL,CAAkBH,GAAlB,CAAsB,EAAC,2BAAyB,KAAKR,QAAL,CAAcS,KAAvC,WAAkD,KAAKT,QAAL,CAAcU,MAAjE,EAAtB;AACxB,iBAAKJ,OAAL,GAAeM,WAAW,YAAM;AAC5B1B,0BAAQsB,GAAR,CAAY,EAAC,cAAc,EAAf,EAAZ;AACA,oBAAG,OAAKR,QAAL,CAAcG,KAAjB,EAAwB,OAAKQ,YAAL,CAAkBH,GAAlB,CAAsB,EAAC,cAAc,EAAf,EAAtB;AAC3B,aAHc,EAGZ,KAAKR,QAAL,CAAcS,KAHF,CAAf;AAIH,SARD;;AAUA;;;AAGA,YAAMV,aAAa,SAAbA,UAAa,CAASc,KAAT,EAAgB;AAC/B,iBAAKtB,OAAL,GAAe,KAAf;AACAL,cAAE,IAAF,EAAQsB,GAAR,CAAY,EAAC,eAAe,WAAhB,EAAZ;AACAH,0BAAcS,IAAd,CAAmB,IAAnB;;AAEA;AACA5B,cAAE,IAAF,EAAQ6B,OAAR,CAAgB,iBAAhB;AACH,SAPD;;AASA;;;;AAIA,YAAMC,oBAAoB,SAApBA,iBAAoB,CAASH,KAAT,EAAgB;AACtC,gBAAI,OAAOA,KAAP,KAAkB,WAAtB,EAAmC;AAC/BA,wBAAQ;AACJI,2BAAO/B,EAAE,IAAF,EAAQgC,MAAR,GAAiBC,IAAjB,GAAwBjC,EAAE,IAAF,EAAQkC,UAAR,KAAuB,CADlD;AAEJC,2BAAOnC,EAAE,IAAF,EAAQgC,MAAR,GAAiBI,GAAjB,GAAuBpC,EAAE,IAAF,EAAQqC,WAAR,KAAwB;AAFlD,iBAAR;AAIH;AACD,mBAAO,EAACC,GAAGX,MAAMI,KAAV,EAAiBQ,GAAGZ,MAAMQ,KAA1B,EAAP;AACH,SARD;;AAUA;;;AAGA,YAAMvB,YAAY,SAAZA,SAAY,CAASe,KAAT,EAAgB;AAC9B,iBAAKa,cAAL,GAAsBV,kBAAkBH,KAAlB,CAAtB;AACAvB,wBAAYwB,IAAZ,CAAiB,IAAjB;AACH,SAHD;;AAKA;;;AAGA,YAAMZ,aAAa,SAAbA,UAAa,GAAW;AAC1BG,0BAAcS,IAAd,CAAmB,IAAnB;AACA,iBAAKb,KAAL,GAAa,IAAb;AACAX,wBAAYwB,IAAZ,CAAiB,IAAjB;;AAEA;AACA5B,cAAE,IAAF,EAAQ6B,OAAR,CAAgB,iBAAhB;AACH,SAPD;;AASA;;;;;AAKA,YAAMY,YAAY,SAAZA,SAAY,GAAW;AACzB,gBAAMC,QAAQ1C,EAAE,IAAF,EAAQkC,UAAR,EAAd;AACA,gBAAMS,SAAS3C,EAAE,IAAF,EAAQqC,WAAR,EAAf;AACA,gBAAMJ,OAAOjC,EAAE,IAAF,EAAQgC,MAAR,GAAiBC,IAA9B;AACA,gBAAMG,MAAMpC,EAAE,IAAF,EAAQgC,MAAR,GAAiBI,GAA7B;AACA,gBAAMQ,cAAc,CAAC,KAAKJ,cAAL,CAAoBF,CAApB,GAAwBL,IAAzB,IAAiCS,KAArD;AACA,gBAAMG,cAAc,CAAC,KAAKL,cAAL,CAAoBD,CAApB,GAAwBH,GAAzB,IAAgCO,MAApD;AACA;AACA,gBAAMG,QAAQ,CAAE,KAAKhC,QAAL,CAAciC,OAAd,GAAwB,CAAzB,GAAgCH,WAAD,GAAgB,KAAK9B,QAAL,CAAciC,OAA9D,EAAwEC,OAAxE,CAAgF,CAAhF,CAAd;AACA,gBAAMC,QAAQ,CAAGJ,WAAD,GAAgB,KAAK/B,QAAL,CAAciC,OAA/B,GAA2C,KAAKjC,QAAL,CAAciC,OAAd,GAAwB,CAApE,EAAwEC,OAAxE,CAAgF,CAAhF,CAAd;AACA;AACA,gBAAME,QAAQC,KAAKC,KAAL,CAAW,KAAKZ,cAAL,CAAoBF,CAApB,IAAyBL,OAAKS,QAAM,CAApC,CAAX,EAAkD,EAAG,KAAKF,cAAL,CAAoBD,CAApB,IAAyBH,MAAIO,SAAO,CAApC,CAAH,CAAlD,KAAgG,MAAIQ,KAAKE,EAAzG,CAAd;AACA;AACA,mBAAO,EAACP,YAAD,EAAQG,YAAR,EAAe,eAAeL,cAAc,GAA5C,EAAiD,eAAeC,cAAc,GAA9E,EAAmFK,YAAnF,EAAP;AACH,SAdD;;AAgBA;;;AAGA,YAAM3C,mBAAmB,SAAnBA,gBAAmB,GAAW;AAChC,iBAAK+C,UAAL,GAAkBb,UAAUb,IAAV,CAAe,IAAf,CAAlB;;AAEA,gBAAI,KAAKb,KAAT,EAAgB;AACZ,qBAAKA,KAAL,GAAa,KAAb;AACAf,kBAAE,IAAF,EAAQsB,GAAR,CAAY,WAAZ,mBAAwC,KAAKR,QAAL,CAAcyC,WAAtD;;AAEA;AACA,oBAAI,KAAKzC,QAAL,CAAcG,KAAlB,EAAwB;AACpB,yBAAKQ,YAAL,CAAkBH,GAAlB,CAAsB,WAAtB;AACA,yBAAKG,YAAL,CAAkBH,GAAlB,CAAsB,SAAtB;AACH;;AAED;AACH,aAXD,MAWO;AACHtB,kBAAE,IAAF,EAAQsB,GAAR,CAAY,WAAZ,mBAAwC,KAAKR,QAAL,CAAcyC,WAAtD,qBAAgF,KAAKzC,QAAL,CAAc0C,IAAd,KAAuB,GAAvB,GAA6B,CAA7B,GAAiC,KAAKF,UAAL,CAAgBL,KAAjI,uBAAsJ,KAAKnC,QAAL,CAAc0C,IAAd,KAAuB,GAAvB,GAA6B,CAA7B,GAAiC,KAAKF,UAAL,CAAgBR,KAAvM,sBAA4N,KAAKhC,QAAL,CAAc2C,KAA1O,SAAmP,KAAK3C,QAAL,CAAc2C,KAAjQ,SAA0Q,KAAK3C,QAAL,CAAc2C,KAAxR;;AAEA;AACA,oBAAI,KAAK3C,QAAL,CAAcG,KAAlB,EAAwB;AACpB,yBAAKQ,YAAL,CAAkBH,GAAlB,CAAsB,WAAtB,cAA6C,KAAKgC,UAAL,CAAgBJ,KAA7D;AACA,yBAAKzB,YAAL,CAAkBH,GAAlB,CAAsB,SAAtB,OAAoC,KAAKgC,UAAL,CAAgBT,WAAhB,GAA8B,KAAK/B,QAAL,CAAc4C,QAA5C,GAAuD,GAA3F;AACH;AACJ;;AAED;AACA1D,cAAE,IAAF,EAAQ6B,OAAR,CAAgB,QAAhB,EAA0B,CAAC,KAAKyB,UAAN,CAA1B;;AAEA,iBAAKjD,OAAL,GAAe,KAAf;AACH,SA5BD;;AA8BA;;;AAGA,YAAMsD,eAAe,SAAfA,YAAe,GAAY;AAC7B,gBAAMC,iBAAiB,KAAK9C,QAAL,CAAc8C,cAArC;;AAEA;AACA,gBAAI,CAACA,cAAL;AACA;AACI5D,kBAAE,IAAF,EAAQ6D,MAAR,CAAe,0EAAf;;AAEJ;AACA,iBAAKC,mBAAL,GAA2B9D,EAAE,IAAF,EAAQ+D,IAAR,CAAa,gBAAb,CAA3B;AACA,iBAAKtC,YAAL,GAAoBzB,EAAE,IAAF,EAAQ+D,IAAR,CAAa,sBAAb,CAApB;;AAEA;AACA,gBAAIH,cAAJ,EAAoB;;AAEpB;AACA,gBAAMI,UAAU;AACZ,4BAAY,UADA;AAEZ,uBAAO,GAFK;AAGZ,wBAAQ,GAHI;AAIZ,yBAAS,MAJG;AAKZ,0BAAU;AALE,aAAhB;;AAQA;AACA,iBAAKF,mBAAL,CAAyBxC,GAAzB,CAA6B0C,OAA7B,EAAsC1C,GAAtC,CAA0C;AACtC,4BAAY;AAD0B,aAA1C;;AAIA;AACA,iBAAKG,YAAL,CAAkBH,GAAlB,CAAsB;AAClB,4BAAY,UADM;AAElB,uBAAO,KAFW;AAGlB,wBAAQ,KAHU;AAIlB,kCAAkB,MAJA;AAKlB,6GALkB;AAMlB,8BAAYtB,EAAE,IAAF,EAAQkC,UAAR,KAAqB,CANf;AAOlB,+BAAalC,EAAE,IAAF,EAAQkC,UAAR,KAAqB,CAPhB;AAQlB,6BAAa,sCARK;AASlB,oCAAoB,OATF;AAUlB,2BAAW;AAVO,aAAtB;AAaH,SA3CD;;AA6CA;;;AAGA,YAAMhB,kBAAkB,SAAlBA,eAAkB,GAAY;AAChC,iBAAKO,YAAL,CAAkBH,GAAlB,CAAsB;AAClB,8BAAYtB,EAAE,IAAF,EAAQkC,UAAR,KAAqB,CADf;AAElB,+BAAalC,EAAE,IAAF,EAAQkC,UAAR,KAAqB;AAFhB,aAAtB;AAIH,SALD;;AAOA;;;AAGAlC,UAAEC,EAAF,CAAKC,IAAL,CAAU+D,OAAV,GAAoB,YAAW;AAC3BjE,cAAE,IAAF,EAAQkE,IAAR,CAAa,YAAY;AACrBlE,kBAAE,IAAF,EAAQ+D,IAAR,CAAa,gBAAb,EAA+BI,MAA/B;AACAnE,kBAAE,IAAF,EAAQsB,GAAR,CAAY,EAAC,eAAe,EAAhB,EAAoB,aAAa,EAAjC,EAAZ;AACAtB,kBAAE,IAAF,EAAQoE,GAAR,CAAY,iCAAZ;AACH,aAJD;AAKH,SAND;;AAQApE,UAAEC,EAAF,CAAKC,IAAL,CAAUuC,SAAV,GAAsB,YAAW;AAC7B,gBAAM4B,UAAU,EAAhB;AACArE,cAAE,IAAF,EAAQkE,IAAR,CAAa,YAAY;AACrB,qBAAK1B,cAAL,GAAsBV,kBAAkBF,IAAlB,CAAuB,IAAvB,CAAtB;AACAyC,wBAAQC,IAAR,CAAa7B,UAAUb,IAAV,CAAe,IAAf,CAAb;AACH,aAHD;AAIA,mBAAOyC,OAAP;AACH,SAPD;;AASArE,UAAEC,EAAF,CAAKC,IAAL,CAAUa,KAAV,GAAkB,YAAW;AACzBf,cAAE,IAAF,EAAQkE,IAAR,CAAa,YAAY;AAAA;;AACrB,qBAAK1B,cAAL,GAAsBV,kBAAkBF,IAAlB,CAAuB,IAAvB,CAAtB;AACA,qBAAKd,QAAL,GAAgBd,EAAE,IAAF,EAAQuE,IAAR,CAAa,UAAb,CAAhB;AACAvD,2BAAWY,IAAX,CAAgB,IAAhB;AACAF,2BAAW,YAAM;AACb,2BAAKX,KAAL,GAAa,KAAb;AACH,iBAFD,EAEG,KAAKD,QAAL,CAAc0D,UAFjB;AAGH,aAPD;AAQH,SATD;;AAWA;;;AAGA,eAAO,KAAKN,IAAL,CAAU,YAAY;AAAA;;AAEzB;;;;;AAKA,iBAAKpD,QAAL,GAAgBd,EAAEyE,MAAF,CAAS;AACrB1B,yBAAS/C,EAAE,IAAF,EAAQ0E,EAAR,CAAW,iBAAX,IAAgC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,UAAb,CAAhC,GAA2D,EAD/C;AAErBhB,6BAAavD,EAAE,IAAF,EAAQ0E,EAAR,CAAW,yBAAX,IAAwC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,kBAAb,CAAxC,GAA2E,GAFnE;AAGrB/C,wBAAQxB,EAAE,IAAF,EAAQ0E,EAAR,CAAW,oBAAX,IAAmC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,aAAb,CAAnC,GAAiE,+BAHpD;AAIrBd,uBAAOzD,EAAE,IAAF,EAAQ0E,EAAR,CAAW,mBAAX,IAAkC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,YAAb,CAAlC,GAA+D,GAJjD;AAKrBhD,uBAAOvB,EAAE,IAAF,EAAQ0E,EAAR,CAAW,mBAAX,IAAkC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,YAAb,CAAlC,GAA+D,KALjD;AAMrBC,4BAAYxE,EAAE,IAAF,EAAQ0E,EAAR,CAAW,wBAAX,IAAuC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,iBAAb,CAAvC,GAAyE,IANhE;AAOrBf,sBAAMxD,EAAE,IAAF,EAAQ0E,EAAR,CAAW,kBAAX,IAAiC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,WAAb,CAAjC,GAA6D,IAP9C;AAQrBxD,uBAAOf,EAAE,IAAF,EAAQ0E,EAAR,CAAW,mBAAX,IAAkC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,YAAb,CAAlC,GAA+D,IARjD;AASrBtD,uBAAOjB,EAAE,IAAF,EAAQ0E,EAAR,CAAW,mBAAX,IAAkC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,YAAb,CAAlC,GAA+D,KATjD;AAUrBb,0BAAU1D,EAAE,IAAF,EAAQ0E,EAAR,CAAW,sBAAX,IAAqC1E,EAAE,IAAF,EAAQuE,IAAR,CAAa,eAAb,CAArC,GAAqE;AAV1D,aAAT,EAWbpE,OAXa,CAAhB;;AAcA,iBAAKwE,IAAL,GAAY,YAAM;AACd;AACA3E,0BAAQuE,IAAR,CAAa,UAAb,EAAyB,OAAKzD,QAA9B;;AAEA;AACA,oBAAG,OAAKA,QAAL,CAAcG,KAAjB,EAAwB0C,aAAa/B,IAAb;;AAExB;AACAnB,2BAAWmB,IAAX;AACH,aATD;;AAWA;AACA,iBAAK+C,IAAL;AAEH,SAnCM,CAAP;AAoCH,KAvQD;;AAyQA;;;AAGA3E,MAAE,aAAF,EAAiBE,IAAjB;;AAEA,WAAO,IAAP;AACH,CA1SA,CAAD","file":"tilt.jquery.js","sourcesContent":["(function (factory) {\r\n if (typeof define === 'function' && define.amd) {\r\n // AMD. Register as an anonymous module.\r\n define(['jquery'], factory);\r\n } else if (typeof module === 'object' && module.exports) {\r\n // Node/CommonJS\r\n module.exports = function( root, jQuery ) {\r\n if ( jQuery === undefined ) {\r\n // require('jQuery') returns a factory that requires window to\r\n // build a jQuery instance, we normalize how we use modules\r\n // that require this pattern but the window provided is a noop\r\n // if it's defined (how jquery works)\r\n if ( typeof window !== 'undefined' ) {\r\n jQuery = require('jquery');\r\n }\r\n else {\r\n jQuery = require('jquery')(root);\r\n }\r\n }\r\n factory(jQuery);\r\n return jQuery;\r\n };\r\n } else {\r\n // Browser globals\r\n factory(jQuery);\r\n }\r\n}(function ($) {\r\n $.fn.tilt = function (options) {\r\n\r\n /**\r\n * RequestAnimationFrame\r\n */\r\n const requestTick = function() {\r\n if (this.ticking) return;\r\n requestAnimationFrame(updateTransforms.bind(this));\r\n this.ticking = true;\r\n };\r\n\r\n /**\r\n * Bind mouse movement evens on instance\r\n */\r\n const bindEvents = function() {\r\n const _this = this;\r\n $(this).on('mousemove', mouseMove);\r\n $(this).on('mouseenter', mouseEnter);\r\n if (this.settings.reset) $(this).on('mouseleave', mouseLeave);\r\n if (this.settings.glare) $(window).on('resize', updateGlareSize.bind(_this));\r\n };\r\n\r\n /**\r\n * Set transition only on mouse leave and mouse enter so it doesn't influence mouse move transforms\r\n */\r\n const setTransition = function() {\r\n if (this.timeout !== undefined) clearTimeout(this.timeout);\r\n $(this).css({'transition': `${this.settings.speed}ms ${this.settings.easing}`});\r\n if(this.settings.glare) this.glareElement.css({'transition': `opacity ${this.settings.speed}ms ${this.settings.easing}`});\r\n this.timeout = setTimeout(() => {\r\n $(this).css({'transition': ''});\r\n if(this.settings.glare) this.glareElement.css({'transition': ''});\r\n }, this.settings.speed);\r\n };\r\n\r\n /**\r\n * When user mouse enters tilt element\r\n */\r\n const mouseEnter = function(event) {\r\n this.ticking = false;\r\n $(this).css({'will-change': 'transform'});\r\n setTransition.call(this);\r\n\r\n // Trigger change event\r\n $(this).trigger(\"tilt.mouseEnter\");\r\n };\r\n\r\n /**\r\n * Return the x,y position of the mouse on the tilt element\r\n * @returns {{x: *, y: *}}\r\n */\r\n const getMousePositions = function(event) {\r\n if (typeof(event) === \"undefined\") {\r\n event = {\r\n pageX: $(this).offset().left + $(this).outerWidth() / 2,\r\n pageY: $(this).offset().top + $(this).outerHeight() / 2\r\n };\r\n }\r\n return {x: event.pageX, y: event.pageY};\r\n };\r\n\r\n /**\r\n * When user mouse moves over the tilt element\r\n */\r\n const mouseMove = function(event) {\r\n this.mousePositions = getMousePositions(event);\r\n requestTick.call(this);\r\n };\r\n\r\n /**\r\n * When user mouse leaves tilt element\r\n */\r\n const mouseLeave = function() {\r\n setTransition.call(this);\r\n this.reset = true;\r\n requestTick.call(this);\r\n\r\n // Trigger change event\r\n $(this).trigger(\"tilt.mouseLeave\");\r\n };\r\n\r\n /**\r\n * Get tilt values\r\n *\r\n * @returns {{x: tilt value, y: tilt value}}\r\n */\r\n const getValues = function() {\r\n const width = $(this).outerWidth();\r\n const height = $(this).outerHeight();\r\n const left = $(this).offset().left;\r\n const top = $(this).offset().top;\r\n const percentageX = (this.mousePositions.x - left) / width;\r\n const percentageY = (this.mousePositions.y - top) / height;\r\n // x or y position inside instance / width of instance = percentage of position inside instance * the max tilt value\r\n const tiltX = ((this.settings.maxTilt / 2) - ((percentageX) * this.settings.maxTilt)).toFixed(2);\r\n const tiltY = (((percentageY) * this.settings.maxTilt) - (this.settings.maxTilt / 2)).toFixed(2);\r\n // angle\r\n const angle = Math.atan2(this.mousePositions.x - (left+width/2),- (this.mousePositions.y - (top+height/2)) )*(180/Math.PI);\r\n // Return x & y tilt values\r\n return {tiltX, tiltY, 'percentageX': percentageX * 100, 'percentageY': percentageY * 100, angle};\r\n };\r\n\r\n /**\r\n * Update tilt transforms on mousemove\r\n */\r\n const updateTransforms = function() {\r\n this.transforms = getValues.call(this);\r\n\r\n if (this.reset) {\r\n this.reset = false;\r\n $(this).css('transform', `perspective(${this.settings.perspective}px) rotateX(0deg) rotateY(0deg)`);\r\n\r\n // Rotate glare if enabled\r\n if (this.settings.glare){\r\n this.glareElement.css('transform', `rotate(180deg) translate(-50%, -50%)`);\r\n this.glareElement.css('opacity', `0`);\r\n }\r\n\r\n return;\r\n } else {\r\n $(this).css('transform', `perspective(${this.settings.perspective}px) rotateX(${this.settings.axis === 'x' ? 0 : this.transforms.tiltY}deg) rotateY(${this.settings.axis === 'y' ? 0 : this.transforms.tiltX}deg) scale3d(${this.settings.scale},${this.settings.scale},${this.settings.scale})`);\r\n\r\n // Rotate glare if enabled\r\n if (this.settings.glare){\r\n this.glareElement.css('transform', `rotate(${this.transforms.angle}deg) translate(-50%, -50%)`);\r\n this.glareElement.css('opacity', `${this.transforms.percentageY * this.settings.maxGlare / 100}`);\r\n }\r\n }\r\n\r\n // Trigger change event\r\n $(this).trigger(\"change\", [this.transforms]);\r\n\r\n this.ticking = false;\r\n };\r\n\r\n /**\r\n * Prepare elements\r\n */\r\n const prepareGlare = function () {\r\n const glarePrerender = this.settings.glarePrerender;\r\n\r\n // If option pre-render is enabled we assume all html/css is present for an optimal glare effect.\r\n if (!glarePrerender)\r\n // Create glare element\r\n $(this).append('');\r\n\r\n // Store glare selector if glare is enabled\r\n this.glareElementWrapper = $(this).find(\".js-tilt-glare\");\r\n this.glareElement = $(this).find(\".js-tilt-glare-inner\");\r\n\r\n // Remember? We assume all css is already set, so just return\r\n if (glarePrerender) return;\r\n\r\n // Abstracted re-usable glare styles\r\n const stretch = {\r\n 'position': 'absolute',\r\n 'top': '0',\r\n 'left': '0',\r\n 'width': '100%',\r\n 'height': '100%',\r\n };\r\n\r\n // Style glare wrapper\r\n this.glareElementWrapper.css(stretch).css({\r\n 'overflow': 'hidden',\r\n });\r\n\r\n // Style glare element\r\n this.glareElement.css({\r\n 'position': 'absolute',\r\n 'top': '50%',\r\n 'left': '50%',\r\n 'pointer-events': 'none',\r\n 'background-image': `linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)`,\r\n 'width': `${$(this).outerWidth()*2}`,\r\n 'height': `${$(this).outerWidth()*2}`,\r\n 'transform': 'rotate(180deg) translate(-50%, -50%)',\r\n 'transform-origin': '0% 0%',\r\n 'opacity': '0',\r\n });\r\n\r\n };\r\n\r\n /**\r\n * Update glare on resize\r\n */\r\n const updateGlareSize = function () {\r\n this.glareElement.css({\r\n 'width': `${$(this).outerWidth()*2}`,\r\n 'height': `${$(this).outerWidth()*2}`,\r\n });\r\n };\r\n\r\n /**\r\n * Public methods\r\n */\r\n $.fn.tilt.destroy = function() {\r\n $(this).each(function () {\r\n $(this).find('.js-tilt-glare').remove();\r\n $(this).css({'will-change': '', 'transform': ''});\r\n $(this).off('mousemove mouseenter mouseleave');\r\n });\r\n };\r\n\r\n $.fn.tilt.getValues = function() {\r\n const results = [];\r\n $(this).each(function () {\r\n this.mousePositions = getMousePositions.call(this);\r\n results.push(getValues.call(this));\r\n });\r\n return results;\r\n };\r\n\r\n $.fn.tilt.reset = function() {\r\n $(this).each(function () {\r\n this.mousePositions = getMousePositions.call(this);\r\n this.settings = $(this).data('settings');\r\n mouseLeave.call(this);\r\n setTimeout(() => {\r\n this.reset = false;\r\n }, this.settings.transition);\r\n });\r\n };\r\n\r\n /**\r\n * Loop every instance\r\n */\r\n return this.each(function () {\r\n\r\n /**\r\n * Default settings merged with user settings\r\n * Can be set trough data attributes or as parameter.\r\n * @type {*}\r\n */\r\n this.settings = $.extend({\r\n maxTilt: $(this).is('[data-tilt-max]') ? $(this).data('tilt-max') : 20,\r\n perspective: $(this).is('[data-tilt-perspective]') ? $(this).data('tilt-perspective') : 300,\r\n easing: $(this).is('[data-tilt-easing]') ? $(this).data('tilt-easing') : 'cubic-bezier(.03,.98,.52,.99)',\r\n scale: $(this).is('[data-tilt-scale]') ? $(this).data('tilt-scale') : '1',\r\n speed: $(this).is('[data-tilt-speed]') ? $(this).data('tilt-speed') : '400',\r\n transition: $(this).is('[data-tilt-transition]') ? $(this).data('tilt-transition') : true,\r\n axis: $(this).is('[data-tilt-axis]') ? $(this).data('tilt-axis') : null,\r\n reset: $(this).is('[data-tilt-reset]') ? $(this).data('tilt-reset') : true,\r\n glare: $(this).is('[data-tilt-glare]') ? $(this).data('tilt-glare') : false,\r\n maxGlare: $(this).is('[data-tilt-maxglare]') ? $(this).data('tilt-maxglare') : 1,\r\n }, options);\r\n\r\n\r\n this.init = () => {\r\n // Store settings\r\n $(this).data('settings', this.settings);\r\n\r\n // Prepare element\r\n if(this.settings.glare) prepareGlare.call(this);\r\n\r\n // Bind events\r\n bindEvents.call(this);\r\n };\r\n\r\n // Init\r\n this.init();\r\n\r\n });\r\n };\r\n\r\n /**\r\n * Auto load\r\n */\r\n $('[data-tilt]').tilt();\r\n\r\n return true;\r\n}));"]}
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.0.9"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
8 |
9 | accepts@1.1.4:
10 | version "1.1.4"
11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.1.4.tgz#d71c96f7d41d0feda2c38cd14e8a27c04158df4a"
12 | dependencies:
13 | mime-types "~2.0.4"
14 | negotiator "0.4.9"
15 |
16 | accepts@~1.3.3:
17 | version "1.3.3"
18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca"
19 | dependencies:
20 | mime-types "~2.1.11"
21 | negotiator "0.6.1"
22 |
23 | acorn@4.X:
24 | version "4.0.4"
25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
26 |
27 | after@0.8.1:
28 | version "0.8.1"
29 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.1.tgz#ab5d4fb883f596816d3515f8f791c0af486dd627"
30 |
31 | ajv@^4.9.1:
32 | version "4.11.8"
33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
34 | dependencies:
35 | co "^4.6.0"
36 | json-stable-stringify "^1.0.1"
37 |
38 | align-text@^0.1.1, align-text@^0.1.3:
39 | version "0.1.4"
40 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
41 | dependencies:
42 | kind-of "^3.0.2"
43 | longest "^1.0.1"
44 | repeat-string "^1.5.2"
45 |
46 | amdefine@>=0.0.4:
47 | version "1.0.1"
48 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
49 |
50 | ansi-regex@^2.0.0:
51 | version "2.0.0"
52 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
53 |
54 | ansi-styles@^2.2.1:
55 | version "2.2.1"
56 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
57 |
58 | anymatch@^1.3.0:
59 | version "1.3.0"
60 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
61 | dependencies:
62 | arrify "^1.0.0"
63 | micromatch "^2.1.5"
64 |
65 | aproba@^1.0.3:
66 | version "1.0.4"
67 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0"
68 |
69 | archy@^1.0.0:
70 | version "1.0.0"
71 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
72 |
73 | are-we-there-yet@~1.1.2:
74 | version "1.1.2"
75 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
76 | dependencies:
77 | delegates "^1.0.0"
78 | readable-stream "^2.0.0 || ^1.1.13"
79 |
80 | arr-diff@^2.0.0:
81 | version "2.0.0"
82 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
83 | dependencies:
84 | arr-flatten "^1.0.1"
85 |
86 | arr-flatten@^1.0.1:
87 | version "1.0.1"
88 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
89 |
90 | array-differ@^1.0.0:
91 | version "1.0.0"
92 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
93 |
94 | array-find-index@^1.0.1:
95 | version "1.0.2"
96 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
97 |
98 | array-index@^1.0.0:
99 | version "1.0.0"
100 | resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9"
101 | dependencies:
102 | debug "^2.2.0"
103 | es6-symbol "^3.0.2"
104 |
105 | array-uniq@^1.0.2:
106 | version "1.0.3"
107 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
108 |
109 | array-unique@^0.2.1:
110 | version "0.2.1"
111 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
112 |
113 | arraybuffer.slice@0.0.6:
114 | version "0.0.6"
115 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca"
116 |
117 | arrify@^1.0.0:
118 | version "1.0.1"
119 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
120 |
121 | asn1@0.1.11:
122 | version "0.1.11"
123 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7"
124 |
125 | asn1@~0.2.3:
126 | version "0.2.3"
127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
128 |
129 | assert-plus@^0.1.5:
130 | version "0.1.5"
131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160"
132 |
133 | assert-plus@^0.2.0:
134 | version "0.2.0"
135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
136 |
137 | assert-plus@^1.0.0:
138 | version "1.0.0"
139 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
140 |
141 | async-each-series@0.1.1:
142 | version "0.1.1"
143 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432"
144 |
145 | async-each@^1.0.0:
146 | version "1.0.1"
147 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
148 |
149 | async-foreach@^0.1.3:
150 | version "0.1.3"
151 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
152 |
153 | async@0.1.15:
154 | version "0.1.15"
155 | resolved "https://registry.yarnpkg.com/async/-/async-0.1.15.tgz#2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3"
156 |
157 | async@^2.0.1:
158 | version "2.1.2"
159 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.2.tgz#612a4ab45ef42a70cde806bad86ee6db047e8385"
160 | dependencies:
161 | lodash "^4.14.0"
162 |
163 | async@~0.2.6:
164 | version "0.2.10"
165 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
166 |
167 | asynckit@^0.4.0:
168 | version "0.4.0"
169 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
170 |
171 | atob@~1.1.0:
172 | version "1.1.3"
173 | resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773"
174 |
175 | autoprefixer@6.3.6:
176 | version "6.3.6"
177 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.3.6.tgz#de772e1fcda08dce0e992cecf79252d5f008e367"
178 | dependencies:
179 | browserslist "~1.3.1"
180 | caniuse-db "^1.0.30000444"
181 | normalize-range "^0.1.2"
182 | num2fraction "^1.2.2"
183 | postcss "^5.0.19"
184 | postcss-value-parser "^3.2.3"
185 |
186 | aws-sign2@~0.6.0:
187 | version "0.6.0"
188 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
189 |
190 | aws4@^1.2.1:
191 | version "1.5.0"
192 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
193 |
194 | babel-code-frame@^6.20.0:
195 | version "6.20.0"
196 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26"
197 | dependencies:
198 | chalk "^1.1.0"
199 | esutils "^2.0.2"
200 | js-tokens "^2.0.0"
201 |
202 | babel-core@^6.0.2, babel-core@^6.18.0:
203 | version "6.21.0"
204 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724"
205 | dependencies:
206 | babel-code-frame "^6.20.0"
207 | babel-generator "^6.21.0"
208 | babel-helpers "^6.16.0"
209 | babel-messages "^6.8.0"
210 | babel-register "^6.18.0"
211 | babel-runtime "^6.20.0"
212 | babel-template "^6.16.0"
213 | babel-traverse "^6.21.0"
214 | babel-types "^6.21.0"
215 | babylon "^6.11.0"
216 | convert-source-map "^1.1.0"
217 | debug "^2.1.1"
218 | json5 "^0.5.0"
219 | lodash "^4.2.0"
220 | minimatch "^3.0.2"
221 | path-is-absolute "^1.0.0"
222 | private "^0.1.6"
223 | slash "^1.0.0"
224 | source-map "^0.5.0"
225 |
226 | babel-generator@^6.21.0:
227 | version "6.21.0"
228 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494"
229 | dependencies:
230 | babel-messages "^6.8.0"
231 | babel-runtime "^6.20.0"
232 | babel-types "^6.21.0"
233 | detect-indent "^4.0.0"
234 | jsesc "^1.3.0"
235 | lodash "^4.2.0"
236 | source-map "^0.5.0"
237 |
238 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0:
239 | version "6.18.0"
240 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz#8ae814989f7a53682152e3401a04fabd0bb333a6"
241 | dependencies:
242 | babel-helper-explode-assignable-expression "^6.18.0"
243 | babel-runtime "^6.0.0"
244 | babel-types "^6.18.0"
245 |
246 | babel-helper-call-delegate@^6.18.0:
247 | version "6.18.0"
248 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd"
249 | dependencies:
250 | babel-helper-hoist-variables "^6.18.0"
251 | babel-runtime "^6.0.0"
252 | babel-traverse "^6.18.0"
253 | babel-types "^6.18.0"
254 |
255 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0:
256 | version "6.18.0"
257 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2"
258 | dependencies:
259 | babel-helper-function-name "^6.18.0"
260 | babel-runtime "^6.9.0"
261 | babel-types "^6.18.0"
262 | lodash "^4.2.0"
263 |
264 | babel-helper-explode-assignable-expression@^6.18.0:
265 | version "6.18.0"
266 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz#14b8e8c2d03ad735d4b20f1840b24cd1f65239fe"
267 | dependencies:
268 | babel-runtime "^6.0.0"
269 | babel-traverse "^6.18.0"
270 | babel-types "^6.18.0"
271 |
272 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0:
273 | version "6.18.0"
274 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6"
275 | dependencies:
276 | babel-helper-get-function-arity "^6.18.0"
277 | babel-runtime "^6.0.0"
278 | babel-template "^6.8.0"
279 | babel-traverse "^6.18.0"
280 | babel-types "^6.18.0"
281 |
282 | babel-helper-get-function-arity@^6.18.0:
283 | version "6.18.0"
284 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24"
285 | dependencies:
286 | babel-runtime "^6.0.0"
287 | babel-types "^6.18.0"
288 |
289 | babel-helper-hoist-variables@^6.18.0:
290 | version "6.18.0"
291 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a"
292 | dependencies:
293 | babel-runtime "^6.0.0"
294 | babel-types "^6.18.0"
295 |
296 | babel-helper-optimise-call-expression@^6.18.0:
297 | version "6.18.0"
298 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f"
299 | dependencies:
300 | babel-runtime "^6.0.0"
301 | babel-types "^6.18.0"
302 |
303 | babel-helper-regex@^6.8.0:
304 | version "6.18.0"
305 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6"
306 | dependencies:
307 | babel-runtime "^6.9.0"
308 | babel-types "^6.18.0"
309 | lodash "^4.2.0"
310 |
311 | babel-helper-remap-async-to-generator@^6.16.0:
312 | version "6.20.3"
313 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz#9dd3b396f13e35ef63e538098500adc24c63c4e7"
314 | dependencies:
315 | babel-helper-function-name "^6.18.0"
316 | babel-runtime "^6.20.0"
317 | babel-template "^6.16.0"
318 | babel-traverse "^6.20.0"
319 | babel-types "^6.20.0"
320 |
321 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0:
322 | version "6.18.0"
323 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e"
324 | dependencies:
325 | babel-helper-optimise-call-expression "^6.18.0"
326 | babel-messages "^6.8.0"
327 | babel-runtime "^6.0.0"
328 | babel-template "^6.16.0"
329 | babel-traverse "^6.18.0"
330 | babel-types "^6.18.0"
331 |
332 | babel-helpers@^6.16.0:
333 | version "6.16.0"
334 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3"
335 | dependencies:
336 | babel-runtime "^6.0.0"
337 | babel-template "^6.16.0"
338 |
339 | babel-messages@^6.8.0:
340 | version "6.8.0"
341 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
342 | dependencies:
343 | babel-runtime "^6.0.0"
344 |
345 | babel-plugin-check-es2015-constants@^6.3.13:
346 | version "6.8.0"
347 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7"
348 | dependencies:
349 | babel-runtime "^6.0.0"
350 |
351 | babel-plugin-syntax-async-functions@^6.8.0:
352 | version "6.13.0"
353 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
354 |
355 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
356 | version "6.13.0"
357 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
358 |
359 | babel-plugin-syntax-trailing-function-commas@^6.13.0:
360 | version "6.20.0"
361 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz#442835e19179f45b87e92d477d70b9f1f18b5c4f"
362 |
363 | babel-plugin-transform-async-to-generator@^6.8.0:
364 | version "6.16.0"
365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999"
366 | dependencies:
367 | babel-helper-remap-async-to-generator "^6.16.0"
368 | babel-plugin-syntax-async-functions "^6.8.0"
369 | babel-runtime "^6.0.0"
370 |
371 | babel-plugin-transform-es2015-arrow-functions@^6.3.13:
372 | version "6.8.0"
373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d"
374 | dependencies:
375 | babel-runtime "^6.0.0"
376 |
377 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13:
378 | version "6.8.0"
379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d"
380 | dependencies:
381 | babel-runtime "^6.0.0"
382 |
383 | babel-plugin-transform-es2015-block-scoping@^6.6.0:
384 | version "6.21.0"
385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz#e840687f922e70fb2c42bb13501838c174a115ed"
386 | dependencies:
387 | babel-runtime "^6.20.0"
388 | babel-template "^6.15.0"
389 | babel-traverse "^6.21.0"
390 | babel-types "^6.21.0"
391 | lodash "^4.2.0"
392 |
393 | babel-plugin-transform-es2015-classes@^6.6.0:
394 | version "6.18.0"
395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9"
396 | dependencies:
397 | babel-helper-define-map "^6.18.0"
398 | babel-helper-function-name "^6.18.0"
399 | babel-helper-optimise-call-expression "^6.18.0"
400 | babel-helper-replace-supers "^6.18.0"
401 | babel-messages "^6.8.0"
402 | babel-runtime "^6.9.0"
403 | babel-template "^6.14.0"
404 | babel-traverse "^6.18.0"
405 | babel-types "^6.18.0"
406 |
407 | babel-plugin-transform-es2015-computed-properties@^6.3.13:
408 | version "6.8.0"
409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870"
410 | dependencies:
411 | babel-helper-define-map "^6.8.0"
412 | babel-runtime "^6.0.0"
413 | babel-template "^6.8.0"
414 |
415 | babel-plugin-transform-es2015-destructuring@^6.6.0:
416 | version "6.19.0"
417 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533"
418 | dependencies:
419 | babel-runtime "^6.9.0"
420 |
421 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0:
422 | version "6.8.0"
423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d"
424 | dependencies:
425 | babel-runtime "^6.0.0"
426 | babel-types "^6.8.0"
427 |
428 | babel-plugin-transform-es2015-for-of@^6.6.0:
429 | version "6.18.0"
430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70"
431 | dependencies:
432 | babel-runtime "^6.0.0"
433 |
434 | babel-plugin-transform-es2015-function-name@^6.3.13:
435 | version "6.9.0"
436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719"
437 | dependencies:
438 | babel-helper-function-name "^6.8.0"
439 | babel-runtime "^6.9.0"
440 | babel-types "^6.9.0"
441 |
442 | babel-plugin-transform-es2015-literals@^6.3.13:
443 | version "6.8.0"
444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468"
445 | dependencies:
446 | babel-runtime "^6.0.0"
447 |
448 | babel-plugin-transform-es2015-modules-amd@^6.18.0, babel-plugin-transform-es2015-modules-amd@^6.8.0:
449 | version "6.18.0"
450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40"
451 | dependencies:
452 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
453 | babel-runtime "^6.0.0"
454 | babel-template "^6.8.0"
455 |
456 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0, babel-plugin-transform-es2015-modules-commonjs@^6.6.0:
457 | version "6.18.0"
458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc"
459 | dependencies:
460 | babel-plugin-transform-strict-mode "^6.18.0"
461 | babel-runtime "^6.0.0"
462 | babel-template "^6.16.0"
463 | babel-types "^6.18.0"
464 |
465 | babel-plugin-transform-es2015-modules-systemjs@^6.12.0:
466 | version "6.19.0"
467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6"
468 | dependencies:
469 | babel-helper-hoist-variables "^6.18.0"
470 | babel-runtime "^6.11.6"
471 | babel-template "^6.14.0"
472 |
473 | babel-plugin-transform-es2015-modules-umd@^6.12.0:
474 | version "6.18.0"
475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50"
476 | dependencies:
477 | babel-plugin-transform-es2015-modules-amd "^6.18.0"
478 | babel-runtime "^6.0.0"
479 | babel-template "^6.8.0"
480 |
481 | babel-plugin-transform-es2015-object-super@^6.3.13:
482 | version "6.8.0"
483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5"
484 | dependencies:
485 | babel-helper-replace-supers "^6.8.0"
486 | babel-runtime "^6.0.0"
487 |
488 | babel-plugin-transform-es2015-parameters@^6.6.0:
489 | version "6.21.0"
490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz#46a655e6864ef984091448cdf024d87b60b2a7d8"
491 | dependencies:
492 | babel-helper-call-delegate "^6.18.0"
493 | babel-helper-get-function-arity "^6.18.0"
494 | babel-runtime "^6.9.0"
495 | babel-template "^6.16.0"
496 | babel-traverse "^6.21.0"
497 | babel-types "^6.21.0"
498 |
499 | babel-plugin-transform-es2015-shorthand-properties@^6.3.13:
500 | version "6.18.0"
501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43"
502 | dependencies:
503 | babel-runtime "^6.0.0"
504 | babel-types "^6.18.0"
505 |
506 | babel-plugin-transform-es2015-spread@^6.3.13:
507 | version "6.8.0"
508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c"
509 | dependencies:
510 | babel-runtime "^6.0.0"
511 |
512 | babel-plugin-transform-es2015-sticky-regex@^6.3.13:
513 | version "6.8.0"
514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be"
515 | dependencies:
516 | babel-helper-regex "^6.8.0"
517 | babel-runtime "^6.0.0"
518 | babel-types "^6.8.0"
519 |
520 | babel-plugin-transform-es2015-template-literals@^6.6.0:
521 | version "6.8.0"
522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b"
523 | dependencies:
524 | babel-runtime "^6.0.0"
525 |
526 | babel-plugin-transform-es2015-typeof-symbol@^6.6.0:
527 | version "6.18.0"
528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798"
529 | dependencies:
530 | babel-runtime "^6.0.0"
531 |
532 | babel-plugin-transform-es2015-unicode-regex@^6.3.13:
533 | version "6.11.0"
534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c"
535 | dependencies:
536 | babel-helper-regex "^6.8.0"
537 | babel-runtime "^6.0.0"
538 | regexpu-core "^2.0.0"
539 |
540 | babel-plugin-transform-exponentiation-operator@^6.8.0:
541 | version "6.8.0"
542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4"
543 | dependencies:
544 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0"
545 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
546 | babel-runtime "^6.0.0"
547 |
548 | babel-plugin-transform-regenerator@^6.6.0:
549 | version "6.21.0"
550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.21.0.tgz#75d0c7e7f84f379358f508451c68a2c5fa5a9703"
551 | dependencies:
552 | regenerator-transform "0.9.8"
553 |
554 | babel-plugin-transform-strict-mode@^6.18.0:
555 | version "6.18.0"
556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d"
557 | dependencies:
558 | babel-runtime "^6.0.0"
559 | babel-types "^6.18.0"
560 |
561 | babel-preset-env@^1.1.8:
562 | version "1.1.8"
563 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.1.8.tgz#c46734c6233c3f87d177513773db3cf3c1758aaa"
564 | dependencies:
565 | babel-plugin-check-es2015-constants "^6.3.13"
566 | babel-plugin-syntax-trailing-function-commas "^6.13.0"
567 | babel-plugin-transform-async-to-generator "^6.8.0"
568 | babel-plugin-transform-es2015-arrow-functions "^6.3.13"
569 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13"
570 | babel-plugin-transform-es2015-block-scoping "^6.6.0"
571 | babel-plugin-transform-es2015-classes "^6.6.0"
572 | babel-plugin-transform-es2015-computed-properties "^6.3.13"
573 | babel-plugin-transform-es2015-destructuring "^6.6.0"
574 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0"
575 | babel-plugin-transform-es2015-for-of "^6.6.0"
576 | babel-plugin-transform-es2015-function-name "^6.3.13"
577 | babel-plugin-transform-es2015-literals "^6.3.13"
578 | babel-plugin-transform-es2015-modules-amd "^6.8.0"
579 | babel-plugin-transform-es2015-modules-commonjs "^6.6.0"
580 | babel-plugin-transform-es2015-modules-systemjs "^6.12.0"
581 | babel-plugin-transform-es2015-modules-umd "^6.12.0"
582 | babel-plugin-transform-es2015-object-super "^6.3.13"
583 | babel-plugin-transform-es2015-parameters "^6.6.0"
584 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13"
585 | babel-plugin-transform-es2015-spread "^6.3.13"
586 | babel-plugin-transform-es2015-sticky-regex "^6.3.13"
587 | babel-plugin-transform-es2015-template-literals "^6.6.0"
588 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0"
589 | babel-plugin-transform-es2015-unicode-regex "^6.3.13"
590 | babel-plugin-transform-exponentiation-operator "^6.8.0"
591 | babel-plugin-transform-regenerator "^6.6.0"
592 | browserslist "^1.4.0"
593 |
594 | babel-register@^6.18.0:
595 | version "6.18.0"
596 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68"
597 | dependencies:
598 | babel-core "^6.18.0"
599 | babel-runtime "^6.11.6"
600 | core-js "^2.4.0"
601 | home-or-tmp "^2.0.0"
602 | lodash "^4.2.0"
603 | mkdirp "^0.5.1"
604 | source-map-support "^0.4.2"
605 |
606 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.9.0:
607 | version "6.20.0"
608 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f"
609 | dependencies:
610 | core-js "^2.4.0"
611 | regenerator-runtime "^0.10.0"
612 |
613 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0:
614 | version "6.16.0"
615 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
616 | dependencies:
617 | babel-runtime "^6.9.0"
618 | babel-traverse "^6.16.0"
619 | babel-types "^6.16.0"
620 | babylon "^6.11.0"
621 | lodash "^4.2.0"
622 |
623 | babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.20.0, babel-traverse@^6.21.0:
624 | version "6.21.0"
625 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad"
626 | dependencies:
627 | babel-code-frame "^6.20.0"
628 | babel-messages "^6.8.0"
629 | babel-runtime "^6.20.0"
630 | babel-types "^6.21.0"
631 | babylon "^6.11.0"
632 | debug "^2.2.0"
633 | globals "^9.0.0"
634 | invariant "^2.2.0"
635 | lodash "^4.2.0"
636 |
637 | babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.20.0, babel-types@^6.21.0, babel-types@^6.8.0, babel-types@^6.9.0:
638 | version "6.21.0"
639 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2"
640 | dependencies:
641 | babel-runtime "^6.20.0"
642 | esutils "^2.0.2"
643 | lodash "^4.2.0"
644 | to-fast-properties "^1.0.1"
645 |
646 | babylon@^6.11.0:
647 | version "6.15.0"
648 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e"
649 |
650 | backo2@1.0.2:
651 | version "1.0.2"
652 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
653 |
654 | balanced-match@^0.4.1:
655 | version "0.4.2"
656 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
657 |
658 | base64-arraybuffer@0.1.2:
659 | version "0.1.2"
660 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz#474df4a9f2da24e05df3158c3b1db3c3cd46a154"
661 |
662 | base64id@0.1.0:
663 | version "0.1.0"
664 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f"
665 |
666 | batch@0.5.3:
667 | version "0.5.3"
668 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464"
669 |
670 | bcrypt-pbkdf@^1.0.0:
671 | version "1.0.0"
672 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
673 | dependencies:
674 | tweetnacl "^0.14.3"
675 |
676 | beeper@^1.0.0:
677 | version "1.1.0"
678 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.0.tgz#9ee6fc1ce7f54feaace7ce73588b056037866a2c"
679 |
680 | benchmark@1.0.0:
681 | version "1.0.0"
682 | resolved "https://registry.yarnpkg.com/benchmark/-/benchmark-1.0.0.tgz#2f1e2fa4c359f11122aa183082218e957e390c73"
683 |
684 | better-assert@~1.0.0:
685 | version "1.0.2"
686 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522"
687 | dependencies:
688 | callsite "1.0.0"
689 |
690 | binary-extensions@^1.0.0:
691 | version "1.7.0"
692 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d"
693 |
694 | bl@~1.0.0:
695 | version "1.0.3"
696 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.0.3.tgz#fc5421a28fd4226036c3b3891a66a25bc64d226e"
697 | dependencies:
698 | readable-stream "~2.0.5"
699 |
700 | bl@~1.1.2:
701 | version "1.1.2"
702 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398"
703 | dependencies:
704 | readable-stream "~2.0.5"
705 |
706 | blob@0.0.4:
707 | version "0.0.4"
708 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921"
709 |
710 | block-stream@*:
711 | version "0.0.9"
712 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
713 | dependencies:
714 | inherits "~2.0.0"
715 |
716 | boom@2.x.x:
717 | version "2.10.1"
718 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
719 | dependencies:
720 | hoek "2.x.x"
721 |
722 | brace-expansion@^1.0.0:
723 | version "1.1.6"
724 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
725 | dependencies:
726 | balanced-match "^0.4.1"
727 | concat-map "0.0.1"
728 |
729 | braces@^1.8.2:
730 | version "1.8.5"
731 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
732 | dependencies:
733 | expand-range "^1.8.1"
734 | preserve "^0.2.0"
735 | repeat-element "^1.1.2"
736 |
737 | browser-sync-client@^2.3.3:
738 | version "2.4.3"
739 | resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.4.3.tgz#e965033e0c83e5f06caacb516755b694836cea4f"
740 | dependencies:
741 | etag "^1.7.0"
742 | fresh "^0.3.0"
743 |
744 | browser-sync-ui@0.6.1:
745 | version "0.6.1"
746 | resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-0.6.1.tgz#d8b98ea3b755632287350a37ee2eaaacabea28d2"
747 | dependencies:
748 | async-each-series "0.1.1"
749 | connect-history-api-fallback "^1.1.0"
750 | immutable "^3.7.6"
751 | server-destroy "1.0.1"
752 | stream-throttle "^0.1.3"
753 | weinre "^2.0.0-pre-I0Z7U9OV"
754 |
755 | browser-sync@2.16.0:
756 | version "2.16.0"
757 | resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.16.0.tgz#973e129a5e02cbfdf4cb6bf8bf90b10d8abd34e5"
758 | dependencies:
759 | browser-sync-client "^2.3.3"
760 | browser-sync-ui "0.6.1"
761 | bs-recipes "1.2.3"
762 | chokidar "1.6.0"
763 | connect "3.4.1"
764 | dev-ip "^1.0.1"
765 | easy-extender "2.3.2"
766 | eazy-logger "3.0.2"
767 | emitter-steward "^1.0.0"
768 | fs-extra "0.30.0"
769 | http-proxy "1.14.0"
770 | immutable "3.8.1"
771 | localtunnel "1.8.1"
772 | micromatch "2.3.11"
773 | opn "4.0.2"
774 | portscanner "^1.0.0"
775 | qs "6.2.1"
776 | resp-modifier "6.0.2"
777 | rx "4.1.0"
778 | serve-index "1.8.0"
779 | serve-static "1.11.1"
780 | server-destroy "1.0.1"
781 | socket.io "1.4.8"
782 | ua-parser-js "0.7.10"
783 | yargs "5.0.0"
784 |
785 | browserslist@^1.4.0:
786 | version "1.5.2"
787 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.5.2.tgz#1c82fde0ee8693e6d15c49b7bff209dc06298c56"
788 | dependencies:
789 | caniuse-db "^1.0.30000604"
790 |
791 | browserslist@~1.3.1:
792 | version "1.3.6"
793 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.3.6.tgz#952ff48d56463d3b538f85ef2f8eaddfd284b133"
794 | dependencies:
795 | caniuse-db "^1.0.30000525"
796 |
797 | bs-recipes@1.2.3:
798 | version "1.2.3"
799 | resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.2.3.tgz#0e4d17bb1cff92ef6c36608b8487d9a07571ac54"
800 |
801 | buffer-shims@^1.0.0:
802 | version "1.0.0"
803 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
804 |
805 | builtin-modules@^1.0.0:
806 | version "1.1.1"
807 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
808 |
809 | callsite@1.0.0:
810 | version "1.0.0"
811 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
812 |
813 | camelcase-keys@^2.0.0:
814 | version "2.1.0"
815 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
816 | dependencies:
817 | camelcase "^2.0.0"
818 | map-obj "^1.0.0"
819 |
820 | camelcase@^1.0.2, camelcase@^1.2.1:
821 | version "1.2.1"
822 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
823 |
824 | camelcase@^2.0.0:
825 | version "2.1.1"
826 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
827 |
828 | camelcase@^3.0.0:
829 | version "3.0.0"
830 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
831 |
832 | caniuse-db@^1.0.30000444, caniuse-db@^1.0.30000525:
833 | version "1.0.30000563"
834 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000563.tgz#6958d81bc45e93310453dd70778e8169b7b55256"
835 |
836 | caniuse-db@^1.0.30000604:
837 | version "1.0.30000609"
838 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000609.tgz#8c141ef09e8c66b7cb6c2b288fa931cc331e38c6"
839 |
840 | caseless@~0.11.0:
841 | version "0.11.0"
842 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
843 |
844 | caseless@~0.12.0:
845 | version "0.12.0"
846 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
847 |
848 | center-align@^0.1.1:
849 | version "0.1.3"
850 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
851 | dependencies:
852 | align-text "^0.1.3"
853 | lazy-cache "^1.0.3"
854 |
855 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
856 | version "1.1.3"
857 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
858 | dependencies:
859 | ansi-styles "^2.2.1"
860 | escape-string-regexp "^1.0.2"
861 | has-ansi "^2.0.0"
862 | strip-ansi "^3.0.0"
863 | supports-color "^2.0.0"
864 |
865 | chokidar@1.6.0, chokidar@^1.0.3:
866 | version "1.6.0"
867 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.0.tgz#90c32ad4802901d7713de532dc284e96a63ad058"
868 | dependencies:
869 | anymatch "^1.3.0"
870 | async-each "^1.0.0"
871 | glob-parent "^2.0.0"
872 | inherits "^2.0.1"
873 | is-binary-path "^1.0.0"
874 | is-glob "^2.0.0"
875 | path-is-absolute "^1.0.0"
876 | readdirp "^2.0.0"
877 | optionalDependencies:
878 | fsevents "^1.0.0"
879 |
880 | cli@~1.0.0:
881 | version "1.0.0"
882 | resolved "https://registry.yarnpkg.com/cli/-/cli-1.0.0.tgz#ee07dfc1390e3f2e6a9957cf88e1d4bfa777719d"
883 | dependencies:
884 | exit "0.1.2"
885 | glob "^7.0.5"
886 |
887 | cliui@^2.1.0:
888 | version "2.1.0"
889 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
890 | dependencies:
891 | center-align "^0.1.1"
892 | right-align "^0.1.1"
893 | wordwrap "0.0.2"
894 |
895 | cliui@^3.0.3, cliui@^3.2.0:
896 | version "3.2.0"
897 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
898 | dependencies:
899 | string-width "^1.0.1"
900 | strip-ansi "^3.0.1"
901 | wrap-ansi "^2.0.0"
902 |
903 | clone-stats@^0.0.1:
904 | version "0.0.1"
905 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
906 |
907 | clone@^0.2.0:
908 | version "0.2.0"
909 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"
910 |
911 | clone@^1.0.0, clone@^1.0.2:
912 | version "1.0.2"
913 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
914 |
915 | co@^4.6.0:
916 | version "4.6.0"
917 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
918 |
919 | code-point-at@^1.0.0:
920 | version "1.0.1"
921 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.1.tgz#1104cd34f9b5b45d3eba88f1babc1924e1ce35fb"
922 | dependencies:
923 | number-is-nan "^1.0.0"
924 |
925 | combined-stream@^1.0.5, combined-stream@~1.0.5:
926 | version "1.0.5"
927 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
928 | dependencies:
929 | delayed-stream "~1.0.0"
930 |
931 | commander@^2.2.0, commander@^2.9.0:
932 | version "2.9.0"
933 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
934 | dependencies:
935 | graceful-readlink ">= 1.0.0"
936 |
937 | component-bind@1.0.0:
938 | version "1.0.0"
939 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
940 |
941 | component-emitter@1.1.2:
942 | version "1.1.2"
943 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3"
944 |
945 | component-emitter@1.2.0:
946 | version "1.2.0"
947 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.0.tgz#ccd113a86388d06482d03de3fc7df98526ba8efe"
948 |
949 | component-inherit@0.0.3:
950 | version "0.0.3"
951 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
952 |
953 | concat-map@0.0.1:
954 | version "0.0.1"
955 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
956 |
957 | concat-stream@1.5.0:
958 | version "1.5.0"
959 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611"
960 | dependencies:
961 | inherits "~2.0.1"
962 | readable-stream "~2.0.0"
963 | typedarray "~0.0.5"
964 |
965 | connect-history-api-fallback@^1.1.0:
966 | version "1.3.0"
967 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169"
968 |
969 | connect@1.x:
970 | version "1.9.2"
971 | resolved "https://registry.yarnpkg.com/connect/-/connect-1.9.2.tgz#42880a22e9438ae59a8add74e437f58ae8e52807"
972 | dependencies:
973 | formidable "1.0.x"
974 | mime ">= 0.0.1"
975 | qs ">= 0.4.0"
976 |
977 | connect@3.4.1:
978 | version "3.4.1"
979 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.4.1.tgz#a21361d3f4099ef761cda6dc4a973bb1ebb0a34d"
980 | dependencies:
981 | debug "~2.2.0"
982 | finalhandler "0.4.1"
983 | parseurl "~1.3.1"
984 | utils-merge "1.0.0"
985 |
986 | console-browserify@1.1.x:
987 | version "1.1.0"
988 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
989 | dependencies:
990 | date-now "^0.1.4"
991 |
992 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
993 | version "1.1.0"
994 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
995 |
996 | convert-source-map@1.X, convert-source-map@^1.1.0:
997 | version "1.3.0"
998 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67"
999 |
1000 | core-js@^2.4.0:
1001 | version "2.4.1"
1002 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1003 |
1004 | core-util-is@~1.0.0:
1005 | version "1.0.2"
1006 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1007 |
1008 | cross-spawn@^3.0.0:
1009 | version "3.0.1"
1010 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982"
1011 | dependencies:
1012 | lru-cache "^4.0.1"
1013 | which "^1.2.9"
1014 |
1015 | cryptiles@2.x.x:
1016 | version "2.0.5"
1017 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1018 | dependencies:
1019 | boom "2.x.x"
1020 |
1021 | css@2.X:
1022 | version "2.2.1"
1023 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc"
1024 | dependencies:
1025 | inherits "^2.0.1"
1026 | source-map "^0.1.38"
1027 | source-map-resolve "^0.3.0"
1028 | urix "^0.1.0"
1029 |
1030 | ctype@0.5.3:
1031 | version "0.5.3"
1032 | resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f"
1033 |
1034 | currently-unhandled@^0.4.1:
1035 | version "0.4.1"
1036 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1037 | dependencies:
1038 | array-find-index "^1.0.1"
1039 |
1040 | d@^0.1.1, d@~0.1.1:
1041 | version "0.1.1"
1042 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
1043 | dependencies:
1044 | es5-ext "~0.10.2"
1045 |
1046 | dashdash@^1.12.0:
1047 | version "1.14.0"
1048 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141"
1049 | dependencies:
1050 | assert-plus "^1.0.0"
1051 |
1052 | date-now@^0.1.4:
1053 | version "0.1.4"
1054 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1055 |
1056 | dateformat@^1.0.11:
1057 | version "1.0.12"
1058 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9"
1059 | dependencies:
1060 | get-stdin "^4.0.1"
1061 | meow "^3.3.0"
1062 |
1063 | debug-fabulous@0.0.X:
1064 | version "0.0.4"
1065 | resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.0.4.tgz#fa071c5d87484685424807421ca4b16b0b1a0763"
1066 | dependencies:
1067 | debug "2.X"
1068 | lazy-debug-legacy "0.0.X"
1069 | object-assign "4.1.0"
1070 |
1071 | debug@0.7.4:
1072 | version "0.7.4"
1073 | resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39"
1074 |
1075 | debug@2.2.0, debug@2.X, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0:
1076 | version "2.2.0"
1077 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1078 | dependencies:
1079 | ms "0.7.1"
1080 |
1081 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1082 | version "1.2.0"
1083 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1084 |
1085 | deep-extend@~0.4.0:
1086 | version "0.4.1"
1087 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
1088 |
1089 | defaults@^1.0.0:
1090 | version "1.0.3"
1091 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
1092 | dependencies:
1093 | clone "^1.0.2"
1094 |
1095 | delayed-stream@~1.0.0:
1096 | version "1.0.0"
1097 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1098 |
1099 | delegates@^1.0.0:
1100 | version "1.0.0"
1101 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1102 |
1103 | depd@~1.1.0:
1104 | version "1.1.0"
1105 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"
1106 |
1107 | deprecated@^0.0.1:
1108 | version "0.0.1"
1109 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19"
1110 |
1111 | destroy@~1.0.4:
1112 | version "1.0.4"
1113 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1114 |
1115 | detect-file@^0.1.0:
1116 | version "0.1.0"
1117 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63"
1118 | dependencies:
1119 | fs-exists-sync "^0.1.0"
1120 |
1121 | detect-indent@^4.0.0:
1122 | version "4.0.0"
1123 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1124 | dependencies:
1125 | repeating "^2.0.0"
1126 |
1127 | detect-newline@2.X:
1128 | version "2.1.0"
1129 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1130 |
1131 | dev-ip@^1.0.1:
1132 | version "1.0.1"
1133 | resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0"
1134 |
1135 | dom-serializer@0:
1136 | version "0.1.0"
1137 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
1138 | dependencies:
1139 | domelementtype "~1.1.1"
1140 | entities "~1.1.1"
1141 |
1142 | domelementtype@1:
1143 | version "1.3.0"
1144 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
1145 |
1146 | domelementtype@~1.1.1:
1147 | version "1.1.3"
1148 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
1149 |
1150 | domhandler@2.3:
1151 | version "2.3.0"
1152 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738"
1153 | dependencies:
1154 | domelementtype "1"
1155 |
1156 | domutils@1.5:
1157 | version "1.5.1"
1158 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
1159 | dependencies:
1160 | dom-serializer "0"
1161 | domelementtype "1"
1162 |
1163 | duplexer2@0.0.2:
1164 | version "0.0.2"
1165 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db"
1166 | dependencies:
1167 | readable-stream "~1.1.9"
1168 |
1169 | easy-extender@2.3.2:
1170 | version "2.3.2"
1171 | resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.2.tgz#3d3248febe2b159607316d8f9cf491c16648221d"
1172 | dependencies:
1173 | lodash "^3.10.1"
1174 |
1175 | eazy-logger@3.0.2:
1176 | version "3.0.2"
1177 | resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc"
1178 | dependencies:
1179 | tfunk "^3.0.1"
1180 |
1181 | ecc-jsbn@~0.1.1:
1182 | version "0.1.1"
1183 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1184 | dependencies:
1185 | jsbn "~0.1.0"
1186 |
1187 | ee-first@1.1.1:
1188 | version "1.1.1"
1189 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
1190 |
1191 | emitter-steward@^1.0.0:
1192 | version "1.0.0"
1193 | resolved "https://registry.yarnpkg.com/emitter-steward/-/emitter-steward-1.0.0.tgz#f3411ade9758a7565df848b2da0cbbd1b46cbd64"
1194 |
1195 | encodeurl@~1.0.1:
1196 | version "1.0.1"
1197 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
1198 |
1199 | end-of-stream@~0.1.5:
1200 | version "0.1.5"
1201 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf"
1202 | dependencies:
1203 | once "~1.3.0"
1204 |
1205 | engine.io-client@1.6.11:
1206 | version "1.6.11"
1207 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.6.11.tgz#7d250d8fa1c218119ecde51390458a57d5171376"
1208 | dependencies:
1209 | component-emitter "1.1.2"
1210 | component-inherit "0.0.3"
1211 | debug "2.2.0"
1212 | engine.io-parser "1.2.4"
1213 | has-cors "1.1.0"
1214 | indexof "0.0.1"
1215 | parsejson "0.0.1"
1216 | parseqs "0.0.2"
1217 | parseuri "0.0.4"
1218 | ws "1.0.1"
1219 | xmlhttprequest-ssl "1.5.1"
1220 | yeast "0.1.2"
1221 |
1222 | engine.io-parser@1.2.4:
1223 | version "1.2.4"
1224 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.2.4.tgz#e0897b0bf14e792d4cd2a5950553919c56948c42"
1225 | dependencies:
1226 | after "0.8.1"
1227 | arraybuffer.slice "0.0.6"
1228 | base64-arraybuffer "0.1.2"
1229 | blob "0.0.4"
1230 | has-binary "0.1.6"
1231 | utf8 "2.1.0"
1232 |
1233 | engine.io@1.6.11:
1234 | version "1.6.11"
1235 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.6.11.tgz#2533a97a65876c40ffcf95397b7ef9b495c423fe"
1236 | dependencies:
1237 | accepts "1.1.4"
1238 | base64id "0.1.0"
1239 | debug "2.2.0"
1240 | engine.io-parser "1.2.4"
1241 | ws "1.1.0"
1242 |
1243 | entities@1.0:
1244 | version "1.0.0"
1245 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26"
1246 |
1247 | entities@~1.1.1:
1248 | version "1.1.1"
1249 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1250 |
1251 | error-ex@^1.2.0:
1252 | version "1.3.0"
1253 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
1254 | dependencies:
1255 | is-arrayish "^0.2.1"
1256 |
1257 | es5-ext@^0.10.7, es5-ext@~0.10.11, es5-ext@~0.10.2:
1258 | version "0.10.12"
1259 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
1260 | dependencies:
1261 | es6-iterator "2"
1262 | es6-symbol "~3.1"
1263 |
1264 | es6-iterator@2:
1265 | version "2.0.0"
1266 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
1267 | dependencies:
1268 | d "^0.1.1"
1269 | es5-ext "^0.10.7"
1270 | es6-symbol "3"
1271 |
1272 | es6-promise@~4.0.3:
1273 | version "4.0.5"
1274 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42"
1275 |
1276 | es6-symbol@3, es6-symbol@^3.0.2, es6-symbol@~3.1:
1277 | version "3.1.0"
1278 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
1279 | dependencies:
1280 | d "~0.1.1"
1281 | es5-ext "~0.10.11"
1282 |
1283 | escape-html@~1.0.3:
1284 | version "1.0.3"
1285 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
1286 |
1287 | escape-string-regexp@^1.0.2:
1288 | version "1.0.5"
1289 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1290 |
1291 | esutils@^2.0.2:
1292 | version "2.0.2"
1293 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1294 |
1295 | etag@^1.7.0, etag@~1.7.0:
1296 | version "1.7.0"
1297 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8"
1298 |
1299 | eventemitter3@1.x.x:
1300 | version "1.2.0"
1301 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508"
1302 |
1303 | exit@0.1.2, exit@0.1.x:
1304 | version "0.1.2"
1305 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1306 |
1307 | expand-brackets@^0.1.4:
1308 | version "0.1.5"
1309 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1310 | dependencies:
1311 | is-posix-bracket "^0.1.0"
1312 |
1313 | expand-range@^1.8.1:
1314 | version "1.8.2"
1315 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1316 | dependencies:
1317 | fill-range "^2.1.0"
1318 |
1319 | expand-tilde@^1.2.1, expand-tilde@^1.2.2:
1320 | version "1.2.2"
1321 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
1322 | dependencies:
1323 | os-homedir "^1.0.1"
1324 |
1325 | express@2.5.x:
1326 | version "2.5.11"
1327 | resolved "https://registry.yarnpkg.com/express/-/express-2.5.11.tgz#4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0"
1328 | dependencies:
1329 | connect "1.x"
1330 | mime "1.2.4"
1331 | mkdirp "0.3.0"
1332 | qs "0.4.x"
1333 |
1334 | extend@^3.0.0, extend@~3.0.0:
1335 | version "3.0.0"
1336 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1337 |
1338 | extglob@^0.3.1:
1339 | version "0.3.2"
1340 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1341 | dependencies:
1342 | is-extglob "^1.0.0"
1343 |
1344 | extract-zip@~1.5.0:
1345 | version "1.5.0"
1346 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.5.0.tgz#92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"
1347 | dependencies:
1348 | concat-stream "1.5.0"
1349 | debug "0.7.4"
1350 | mkdirp "0.5.0"
1351 | yauzl "2.4.1"
1352 |
1353 | extsprintf@1.0.2:
1354 | version "1.0.2"
1355 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1356 |
1357 | fancy-log@^1.1.0:
1358 | version "1.2.0"
1359 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.2.0.tgz#d5a51b53e9ab22ca07d558f2b67ae55fdb5fcbd8"
1360 | dependencies:
1361 | chalk "^1.1.1"
1362 | time-stamp "^1.0.0"
1363 |
1364 | fd-slicer@~1.0.1:
1365 | version "1.0.1"
1366 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
1367 | dependencies:
1368 | pend "~1.2.0"
1369 |
1370 | filename-regex@^2.0.0:
1371 | version "2.0.0"
1372 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1373 |
1374 | fill-range@^2.1.0:
1375 | version "2.2.3"
1376 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1377 | dependencies:
1378 | is-number "^2.1.0"
1379 | isobject "^2.0.0"
1380 | randomatic "^1.1.3"
1381 | repeat-element "^1.1.2"
1382 | repeat-string "^1.5.2"
1383 |
1384 | finalhandler@0.4.1:
1385 | version "0.4.1"
1386 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.4.1.tgz#85a17c6c59a94717d262d61230d4b0ebe3d4a14d"
1387 | dependencies:
1388 | debug "~2.2.0"
1389 | escape-html "~1.0.3"
1390 | on-finished "~2.3.0"
1391 | unpipe "~1.0.0"
1392 |
1393 | find-index@^0.1.1:
1394 | version "0.1.1"
1395 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4"
1396 |
1397 | find-up@^1.0.0:
1398 | version "1.1.2"
1399 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1400 | dependencies:
1401 | path-exists "^2.0.0"
1402 | pinkie-promise "^2.0.0"
1403 |
1404 | findup-sync@^0.4.2:
1405 | version "0.4.3"
1406 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12"
1407 | dependencies:
1408 | detect-file "^0.1.0"
1409 | is-glob "^2.0.1"
1410 | micromatch "^2.3.7"
1411 | resolve-dir "^0.1.0"
1412 |
1413 | fined@^1.0.1:
1414 | version "1.0.2"
1415 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97"
1416 | dependencies:
1417 | expand-tilde "^1.2.1"
1418 | lodash.assignwith "^4.0.7"
1419 | lodash.isempty "^4.2.1"
1420 | lodash.isplainobject "^4.0.4"
1421 | lodash.isstring "^4.0.1"
1422 | lodash.pick "^4.2.1"
1423 | parse-filepath "^1.0.1"
1424 |
1425 | first-chunk-stream@^1.0.0:
1426 | version "1.0.0"
1427 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
1428 |
1429 | flagged-respawn@^0.3.2:
1430 | version "0.3.2"
1431 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5"
1432 |
1433 | for-in@^0.1.5:
1434 | version "0.1.6"
1435 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
1436 |
1437 | for-own@^0.1.3:
1438 | version "0.1.4"
1439 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
1440 | dependencies:
1441 | for-in "^0.1.5"
1442 |
1443 | forever-agent@~0.6.1:
1444 | version "0.6.1"
1445 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1446 |
1447 | form-data@~1.0.0-rc3, form-data@~1.0.0-rc4:
1448 | version "1.0.1"
1449 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c"
1450 | dependencies:
1451 | async "^2.0.1"
1452 | combined-stream "^1.0.5"
1453 | mime-types "^2.1.11"
1454 |
1455 | form-data@~2.1.1:
1456 | version "2.1.4"
1457 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1458 | dependencies:
1459 | asynckit "^0.4.0"
1460 | combined-stream "^1.0.5"
1461 | mime-types "^2.1.12"
1462 |
1463 | formidable@1.0.x:
1464 | version "1.0.17"
1465 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559"
1466 |
1467 | fresh@0.3.0, fresh@^0.3.0:
1468 | version "0.3.0"
1469 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f"
1470 |
1471 | fs-exists-sync@^0.1.0:
1472 | version "0.1.0"
1473 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
1474 |
1475 | fs-extra@0.30.0, fs-extra@~0.30.0:
1476 | version "0.30.0"
1477 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
1478 | dependencies:
1479 | graceful-fs "^4.1.2"
1480 | jsonfile "^2.1.0"
1481 | klaw "^1.0.0"
1482 | path-is-absolute "^1.0.0"
1483 | rimraf "^2.2.8"
1484 |
1485 | fs.realpath@^1.0.0:
1486 | version "1.0.0"
1487 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1488 |
1489 | fsevents@^1.0.0:
1490 | version "1.0.14"
1491 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.14.tgz#558e8cc38643d8ef40fe45158486d0d25758eee4"
1492 | dependencies:
1493 | nan "^2.3.0"
1494 | node-pre-gyp "^0.6.29"
1495 |
1496 | fstream-ignore@~1.0.5:
1497 | version "1.0.5"
1498 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1499 | dependencies:
1500 | fstream "^1.0.0"
1501 | inherits "2"
1502 | minimatch "^3.0.0"
1503 |
1504 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
1505 | version "1.0.10"
1506 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822"
1507 | dependencies:
1508 | graceful-fs "^4.1.2"
1509 | inherits "~2.0.0"
1510 | mkdirp ">=0.5 0"
1511 | rimraf "2"
1512 |
1513 | gauge@~2.6.0:
1514 | version "2.6.0"
1515 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46"
1516 | dependencies:
1517 | aproba "^1.0.3"
1518 | console-control-strings "^1.0.0"
1519 | has-color "^0.1.7"
1520 | has-unicode "^2.0.0"
1521 | object-assign "^4.1.0"
1522 | signal-exit "^3.0.0"
1523 | string-width "^1.0.1"
1524 | strip-ansi "^3.0.1"
1525 | wide-align "^1.1.0"
1526 |
1527 | gaze@^0.5.1:
1528 | version "0.5.2"
1529 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f"
1530 | dependencies:
1531 | globule "~0.1.0"
1532 |
1533 | gaze@^1.0.0:
1534 | version "1.1.2"
1535 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105"
1536 | dependencies:
1537 | globule "^1.0.0"
1538 |
1539 | generate-function@^2.0.0:
1540 | version "2.0.0"
1541 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1542 |
1543 | generate-object-property@^1.1.0:
1544 | version "1.2.0"
1545 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1546 | dependencies:
1547 | is-property "^1.0.0"
1548 |
1549 | get-caller-file@^1.0.1:
1550 | version "1.0.2"
1551 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1552 |
1553 | get-stdin@^4.0.1:
1554 | version "4.0.1"
1555 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1556 |
1557 | getpass@^0.1.1:
1558 | version "0.1.6"
1559 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1560 | dependencies:
1561 | assert-plus "^1.0.0"
1562 |
1563 | glob-base@^0.3.0:
1564 | version "0.3.0"
1565 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1566 | dependencies:
1567 | glob-parent "^2.0.0"
1568 | is-glob "^2.0.0"
1569 |
1570 | glob-parent@^2.0.0:
1571 | version "2.0.0"
1572 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1573 | dependencies:
1574 | is-glob "^2.0.0"
1575 |
1576 | glob-stream@^3.1.5:
1577 | version "3.1.18"
1578 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b"
1579 | dependencies:
1580 | glob "^4.3.1"
1581 | glob2base "^0.0.12"
1582 | minimatch "^2.0.1"
1583 | ordered-read-streams "^0.1.0"
1584 | through2 "^0.6.1"
1585 | unique-stream "^1.0.0"
1586 |
1587 | glob-watcher@^0.0.6:
1588 | version "0.0.6"
1589 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b"
1590 | dependencies:
1591 | gaze "^0.5.1"
1592 |
1593 | glob2base@0.0.12, glob2base@^0.0.12:
1594 | version "0.0.12"
1595 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56"
1596 | dependencies:
1597 | find-index "^0.1.1"
1598 |
1599 | glob@^4.3.1:
1600 | version "4.5.3"
1601 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f"
1602 | dependencies:
1603 | inflight "^1.0.4"
1604 | inherits "2"
1605 | minimatch "^2.0.1"
1606 | once "^1.3.0"
1607 |
1608 | glob@^5.0.13:
1609 | version "5.0.15"
1610 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
1611 | dependencies:
1612 | inflight "^1.0.4"
1613 | inherits "2"
1614 | minimatch "2 || 3"
1615 | once "^1.3.0"
1616 | path-is-absolute "^1.0.0"
1617 |
1618 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
1619 | version "7.1.1"
1620 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1621 | dependencies:
1622 | fs.realpath "^1.0.0"
1623 | inflight "^1.0.4"
1624 | inherits "2"
1625 | minimatch "^3.0.2"
1626 | once "^1.3.0"
1627 | path-is-absolute "^1.0.0"
1628 |
1629 | glob@~3.1.21:
1630 | version "3.1.21"
1631 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd"
1632 | dependencies:
1633 | graceful-fs "~1.2.0"
1634 | inherits "1"
1635 | minimatch "~0.2.11"
1636 |
1637 | glob@~7.0.3:
1638 | version "7.0.6"
1639 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
1640 | dependencies:
1641 | fs.realpath "^1.0.0"
1642 | inflight "^1.0.4"
1643 | inherits "2"
1644 | minimatch "^3.0.2"
1645 | once "^1.3.0"
1646 | path-is-absolute "^1.0.0"
1647 |
1648 | global-modules@^0.2.3:
1649 | version "0.2.3"
1650 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"
1651 | dependencies:
1652 | global-prefix "^0.1.4"
1653 | is-windows "^0.2.0"
1654 |
1655 | global-prefix@^0.1.4:
1656 | version "0.1.4"
1657 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.4.tgz#05158db1cde2dd491b455e290eb3ab8bfc45c6e1"
1658 | dependencies:
1659 | ini "^1.3.4"
1660 | is-windows "^0.2.0"
1661 | osenv "^0.1.3"
1662 | which "^1.2.10"
1663 |
1664 | globals@^9.0.0:
1665 | version "9.14.0"
1666 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
1667 |
1668 | globule@^1.0.0:
1669 | version "1.0.0"
1670 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.0.0.tgz#f22aebaacce02be492453e979c3ae9b6983f1c6c"
1671 | dependencies:
1672 | glob "~7.0.3"
1673 | lodash "~4.9.0"
1674 | minimatch "~3.0.0"
1675 |
1676 | globule@~0.1.0:
1677 | version "0.1.0"
1678 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5"
1679 | dependencies:
1680 | glob "~3.1.21"
1681 | lodash "~1.0.1"
1682 | minimatch "~0.2.11"
1683 |
1684 | glogg@^1.0.0:
1685 | version "1.0.0"
1686 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5"
1687 | dependencies:
1688 | sparkles "^1.0.0"
1689 |
1690 | graceful-fs@4.X, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
1691 | version "4.1.9"
1692 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.9.tgz#baacba37d19d11f9d146d3578bc99958c3787e29"
1693 |
1694 | graceful-fs@^3.0.0:
1695 | version "3.0.11"
1696 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818"
1697 | dependencies:
1698 | natives "^1.1.0"
1699 |
1700 | graceful-fs@~1.2.0:
1701 | version "1.2.3"
1702 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364"
1703 |
1704 | "graceful-readlink@>= 1.0.0":
1705 | version "1.0.1"
1706 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1707 |
1708 | gulp-babel@^6.1.2:
1709 | version "6.1.2"
1710 | resolved "https://registry.yarnpkg.com/gulp-babel/-/gulp-babel-6.1.2.tgz#7c0176e4ba3f244c60588a0c4b320a45d1adefce"
1711 | dependencies:
1712 | babel-core "^6.0.2"
1713 | gulp-util "^3.0.0"
1714 | object-assign "^4.0.1"
1715 | replace-ext "0.0.1"
1716 | through2 "^2.0.0"
1717 | vinyl-sourcemaps-apply "^0.2.0"
1718 |
1719 | gulp-plumber@1.1.0:
1720 | version "1.1.0"
1721 | resolved "https://registry.yarnpkg.com/gulp-plumber/-/gulp-plumber-1.1.0.tgz#f12176c2d0422f60306c242fff6a01a394faba09"
1722 | dependencies:
1723 | gulp-util "^3"
1724 | through2 "^2"
1725 |
1726 | gulp-postcss@6.1.1:
1727 | version "6.1.1"
1728 | resolved "https://registry.yarnpkg.com/gulp-postcss/-/gulp-postcss-6.1.1.tgz#874d44e9ff6cadddd57ce3c955202e572d269015"
1729 | dependencies:
1730 | gulp-util "^3.0.7"
1731 | postcss "^5.0.14"
1732 | vinyl-sourcemaps-apply "^0.2.0"
1733 |
1734 | gulp-rename@^1.2.2:
1735 | version "1.2.2"
1736 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817"
1737 |
1738 | gulp-sass@^3.1.0:
1739 | version "3.1.0"
1740 | resolved "https://registry.yarnpkg.com/gulp-sass/-/gulp-sass-3.1.0.tgz#53dc4b68a1f5ddfe4424ab4c247655269a8b74b7"
1741 | dependencies:
1742 | gulp-util "^3.0"
1743 | lodash.clonedeep "^4.3.2"
1744 | node-sass "^4.2.0"
1745 | through2 "^2.0.0"
1746 | vinyl-sourcemaps-apply "^0.2.0"
1747 |
1748 | gulp-sourcemaps@^2.4.0:
1749 | version "2.4.0"
1750 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.4.0.tgz#9ce8fcf9ab29769819dff04ca781976072838979"
1751 | dependencies:
1752 | acorn "4.X"
1753 | convert-source-map "1.X"
1754 | css "2.X"
1755 | debug-fabulous "0.0.X"
1756 | detect-newline "2.X"
1757 | graceful-fs "4.X"
1758 | source-map "0.X"
1759 | strip-bom "3.X"
1760 | through2 "2.X"
1761 | vinyl "1.X"
1762 |
1763 | gulp-uglify@^2.0.1:
1764 | version "2.0.1"
1765 | resolved "https://registry.yarnpkg.com/gulp-uglify/-/gulp-uglify-2.0.1.tgz#e8cfb831014fc9ff2e055e33785861830d499365"
1766 | dependencies:
1767 | gulplog "^1.0.0"
1768 | has-gulplog "^0.1.0"
1769 | lodash "^4.13.1"
1770 | make-error-cause "^1.1.1"
1771 | through2 "^2.0.0"
1772 | uglify-js "2.7.5"
1773 | uglify-save-license "^0.4.1"
1774 | vinyl-sourcemaps-apply "^0.2.0"
1775 |
1776 | gulp-util@^3, gulp-util@^3.0, gulp-util@^3.0.0, gulp-util@^3.0.6, gulp-util@^3.0.7:
1777 | version "3.0.7"
1778 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.7.tgz#78925c4b8f8b49005ac01a011c557e6218941cbb"
1779 | dependencies:
1780 | array-differ "^1.0.0"
1781 | array-uniq "^1.0.2"
1782 | beeper "^1.0.0"
1783 | chalk "^1.0.0"
1784 | dateformat "^1.0.11"
1785 | fancy-log "^1.1.0"
1786 | gulplog "^1.0.0"
1787 | has-gulplog "^0.1.0"
1788 | lodash._reescape "^3.0.0"
1789 | lodash._reevaluate "^3.0.0"
1790 | lodash._reinterpolate "^3.0.0"
1791 | lodash.template "^3.0.0"
1792 | minimist "^1.1.0"
1793 | multipipe "^0.1.2"
1794 | object-assign "^3.0.0"
1795 | replace-ext "0.0.1"
1796 | through2 "^2.0.0"
1797 | vinyl "^0.5.0"
1798 |
1799 | gulp-watch@4.3.6:
1800 | version "4.3.6"
1801 | resolved "https://registry.yarnpkg.com/gulp-watch/-/gulp-watch-4.3.6.tgz#9990f27815ec5885271771324b7d29accec7134a"
1802 | dependencies:
1803 | anymatch "^1.3.0"
1804 | chokidar "^1.0.3"
1805 | glob "^5.0.13"
1806 | glob2base "0.0.12"
1807 | gulp-util "^3.0.6"
1808 | path-is-absolute "^1.0.0"
1809 | readable-stream "^2.0.1"
1810 | vinyl "^0.5.0"
1811 | vinyl-file "^1.2.1"
1812 |
1813 | gulp@3.9.1:
1814 | version "3.9.1"
1815 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4"
1816 | dependencies:
1817 | archy "^1.0.0"
1818 | chalk "^1.0.0"
1819 | deprecated "^0.0.1"
1820 | gulp-util "^3.0.0"
1821 | interpret "^1.0.0"
1822 | liftoff "^2.1.0"
1823 | minimist "^1.1.0"
1824 | orchestrator "^0.3.0"
1825 | pretty-hrtime "^1.0.0"
1826 | semver "^4.1.0"
1827 | tildify "^1.0.0"
1828 | v8flags "^2.0.2"
1829 | vinyl-fs "^0.3.0"
1830 |
1831 | gulplog@^1.0.0:
1832 | version "1.0.0"
1833 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5"
1834 | dependencies:
1835 | glogg "^1.0.0"
1836 |
1837 | har-schema@^1.0.5:
1838 | version "1.0.5"
1839 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1840 |
1841 | har-validator@~2.0.2, har-validator@~2.0.6:
1842 | version "2.0.6"
1843 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
1844 | dependencies:
1845 | chalk "^1.1.1"
1846 | commander "^2.9.0"
1847 | is-my-json-valid "^2.12.4"
1848 | pinkie-promise "^2.0.0"
1849 |
1850 | har-validator@~4.2.1:
1851 | version "4.2.1"
1852 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1853 | dependencies:
1854 | ajv "^4.9.1"
1855 | har-schema "^1.0.5"
1856 |
1857 | has-ansi@^2.0.0:
1858 | version "2.0.0"
1859 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1860 | dependencies:
1861 | ansi-regex "^2.0.0"
1862 |
1863 | has-binary@0.1.6:
1864 | version "0.1.6"
1865 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.6.tgz#25326f39cfa4f616ad8787894e3af2cfbc7b6e10"
1866 | dependencies:
1867 | isarray "0.0.1"
1868 |
1869 | has-binary@0.1.7:
1870 | version "0.1.7"
1871 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c"
1872 | dependencies:
1873 | isarray "0.0.1"
1874 |
1875 | has-color@^0.1.7:
1876 | version "0.1.7"
1877 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
1878 |
1879 | has-cors@1.1.0:
1880 | version "1.1.0"
1881 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
1882 |
1883 | has-flag@^1.0.0:
1884 | version "1.0.0"
1885 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1886 |
1887 | has-gulplog@^0.1.0:
1888 | version "0.1.0"
1889 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce"
1890 | dependencies:
1891 | sparkles "^1.0.0"
1892 |
1893 | has-unicode@^2.0.0:
1894 | version "2.0.1"
1895 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1896 |
1897 | hasha@~2.2.0:
1898 | version "2.2.0"
1899 | resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1"
1900 | dependencies:
1901 | is-stream "^1.0.1"
1902 | pinkie-promise "^2.0.0"
1903 |
1904 | hawk@~3.1.0, hawk@~3.1.3:
1905 | version "3.1.3"
1906 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1907 | dependencies:
1908 | boom "2.x.x"
1909 | cryptiles "2.x.x"
1910 | hoek "2.x.x"
1911 | sntp "1.x.x"
1912 |
1913 | hoek@2.x.x:
1914 | version "2.16.3"
1915 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1916 |
1917 | home-or-tmp@^2.0.0:
1918 | version "2.0.0"
1919 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1920 | dependencies:
1921 | os-homedir "^1.0.0"
1922 | os-tmpdir "^1.0.1"
1923 |
1924 | hosted-git-info@^2.1.4:
1925 | version "2.1.5"
1926 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b"
1927 |
1928 | htmlparser2@3.8.x:
1929 | version "3.8.3"
1930 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068"
1931 | dependencies:
1932 | domelementtype "1"
1933 | domhandler "2.3"
1934 | domutils "1.5"
1935 | entities "1.0"
1936 | readable-stream "1.1"
1937 |
1938 | http-errors@~1.5.0:
1939 | version "1.5.0"
1940 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.0.tgz#b1cb3d8260fd8e2386cad3189045943372d48211"
1941 | dependencies:
1942 | inherits "2.0.1"
1943 | setprototypeof "1.0.1"
1944 | statuses ">= 1.3.0 < 2"
1945 |
1946 | http-proxy@1.14.0:
1947 | version "1.14.0"
1948 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.14.0.tgz#be32ab34dd5229e87840f4c27cb335ee195b2a83"
1949 | dependencies:
1950 | eventemitter3 "1.x.x"
1951 | requires-port "1.x.x"
1952 |
1953 | http-signature@~0.11.0:
1954 | version "0.11.0"
1955 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.11.0.tgz#1796cf67a001ad5cd6849dca0991485f09089fe6"
1956 | dependencies:
1957 | asn1 "0.1.11"
1958 | assert-plus "^0.1.5"
1959 | ctype "0.5.3"
1960 |
1961 | http-signature@~1.1.0:
1962 | version "1.1.1"
1963 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1964 | dependencies:
1965 | assert-plus "^0.2.0"
1966 | jsprim "^1.2.2"
1967 | sshpk "^1.7.0"
1968 |
1969 | immutable@3.8.1, immutable@^3.7.6:
1970 | version "3.8.1"
1971 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2"
1972 |
1973 | in-publish@^2.0.0:
1974 | version "2.0.0"
1975 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51"
1976 |
1977 | indent-string@^2.1.0:
1978 | version "2.1.0"
1979 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1980 | dependencies:
1981 | repeating "^2.0.0"
1982 |
1983 | indexof@0.0.1:
1984 | version "0.0.1"
1985 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1986 |
1987 | inflight@^1.0.4:
1988 | version "1.0.6"
1989 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1990 | dependencies:
1991 | once "^1.3.0"
1992 | wrappy "1"
1993 |
1994 | inherits@1:
1995 | version "1.0.2"
1996 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"
1997 |
1998 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1:
1999 | version "2.0.3"
2000 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2001 |
2002 | inherits@2.0.1:
2003 | version "2.0.1"
2004 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
2005 |
2006 | ini@^1.3.4, ini@~1.3.0:
2007 | version "1.3.4"
2008 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
2009 |
2010 | interpret@^1.0.0:
2011 | version "1.0.1"
2012 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
2013 |
2014 | invariant@^2.2.0:
2015 | version "2.2.2"
2016 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
2017 | dependencies:
2018 | loose-envify "^1.0.0"
2019 |
2020 | invert-kv@^1.0.0:
2021 | version "1.0.0"
2022 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2023 |
2024 | is-absolute@^0.2.3:
2025 | version "0.2.6"
2026 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb"
2027 | dependencies:
2028 | is-relative "^0.2.1"
2029 | is-windows "^0.2.0"
2030 |
2031 | is-arrayish@^0.2.1:
2032 | version "0.2.1"
2033 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2034 |
2035 | is-binary-path@^1.0.0:
2036 | version "1.0.1"
2037 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2038 | dependencies:
2039 | binary-extensions "^1.0.0"
2040 |
2041 | is-buffer@^1.0.2:
2042 | version "1.1.4"
2043 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
2044 |
2045 | is-builtin-module@^1.0.0:
2046 | version "1.0.0"
2047 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2048 | dependencies:
2049 | builtin-modules "^1.0.0"
2050 |
2051 | is-dotfile@^1.0.0:
2052 | version "1.0.2"
2053 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
2054 |
2055 | is-equal-shallow@^0.1.3:
2056 | version "0.1.3"
2057 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2058 | dependencies:
2059 | is-primitive "^2.0.0"
2060 |
2061 | is-extendable@^0.1.1:
2062 | version "0.1.1"
2063 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2064 |
2065 | is-extglob@^1.0.0:
2066 | version "1.0.0"
2067 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2068 |
2069 | is-finite@^1.0.0:
2070 | version "1.0.2"
2071 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2072 | dependencies:
2073 | number-is-nan "^1.0.0"
2074 |
2075 | is-fullwidth-code-point@^1.0.0:
2076 | version "1.0.0"
2077 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2078 | dependencies:
2079 | number-is-nan "^1.0.0"
2080 |
2081 | is-glob@^2.0.0, is-glob@^2.0.1:
2082 | version "2.0.1"
2083 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2084 | dependencies:
2085 | is-extglob "^1.0.0"
2086 |
2087 | is-my-json-valid@^2.12.4:
2088 | version "2.15.0"
2089 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
2090 | dependencies:
2091 | generate-function "^2.0.0"
2092 | generate-object-property "^1.1.0"
2093 | jsonpointer "^4.0.0"
2094 | xtend "^4.0.0"
2095 |
2096 | is-number@^2.0.2, is-number@^2.1.0:
2097 | version "2.1.0"
2098 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2099 | dependencies:
2100 | kind-of "^3.0.2"
2101 |
2102 | is-posix-bracket@^0.1.0:
2103 | version "0.1.1"
2104 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2105 |
2106 | is-primitive@^2.0.0:
2107 | version "2.0.0"
2108 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2109 |
2110 | is-property@^1.0.0:
2111 | version "1.0.2"
2112 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
2113 |
2114 | is-relative@^0.2.1:
2115 | version "0.2.1"
2116 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5"
2117 | dependencies:
2118 | is-unc-path "^0.1.1"
2119 |
2120 | is-stream@^1.0.1:
2121 | version "1.1.0"
2122 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2123 |
2124 | is-typedarray@~1.0.0:
2125 | version "1.0.0"
2126 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2127 |
2128 | is-unc-path@^0.1.1:
2129 | version "0.1.1"
2130 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.1.tgz#ab2533d77ad733561124c3dc0f5cd8b90054c86b"
2131 | dependencies:
2132 | unc-path-regex "^0.1.0"
2133 |
2134 | is-utf8@^0.2.0:
2135 | version "0.2.1"
2136 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2137 |
2138 | is-windows@^0.2.0:
2139 | version "0.2.0"
2140 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c"
2141 |
2142 | isarray@0.0.1:
2143 | version "0.0.1"
2144 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
2145 |
2146 | isarray@1.0.0, isarray@~1.0.0:
2147 | version "1.0.0"
2148 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2149 |
2150 | isexe@^1.1.1:
2151 | version "1.1.2"
2152 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0"
2153 |
2154 | isobject@^2.0.0:
2155 | version "2.1.0"
2156 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2157 | dependencies:
2158 | isarray "1.0.0"
2159 |
2160 | isstream@~0.1.2:
2161 | version "0.1.2"
2162 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2163 |
2164 | jodid25519@^1.0.0:
2165 | version "1.0.2"
2166 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2167 | dependencies:
2168 | jsbn "~0.1.0"
2169 |
2170 | jquery:
2171 | version "3.1.1"
2172 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.1.1.tgz#347c1c21c7e004115e0a4da32cece041fad3c8a3"
2173 |
2174 | js-base64@^2.1.9:
2175 | version "2.1.9"
2176 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce"
2177 |
2178 | js-tokens@^2.0.0:
2179 | version "2.0.0"
2180 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
2181 |
2182 | jsbn@~0.1.0:
2183 | version "0.1.0"
2184 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
2185 |
2186 | jsesc@^1.3.0:
2187 | version "1.3.0"
2188 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2189 |
2190 | jsesc@~0.5.0:
2191 | version "0.5.0"
2192 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2193 |
2194 | jshint@^2.9.3:
2195 | version "2.9.4"
2196 | resolved "https://registry.yarnpkg.com/jshint/-/jshint-2.9.4.tgz#5e3ba97848d5290273db514aee47fe24cf592934"
2197 | dependencies:
2198 | cli "~1.0.0"
2199 | console-browserify "1.1.x"
2200 | exit "0.1.x"
2201 | htmlparser2 "3.8.x"
2202 | lodash "3.7.x"
2203 | minimatch "~3.0.2"
2204 | shelljs "0.3.x"
2205 | strip-json-comments "1.0.x"
2206 |
2207 | json-schema@0.2.3:
2208 | version "0.2.3"
2209 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2210 |
2211 | json-stable-stringify@^1.0.1:
2212 | version "1.0.1"
2213 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2214 | dependencies:
2215 | jsonify "~0.0.0"
2216 |
2217 | json-stringify-safe@~5.0.1:
2218 | version "5.0.1"
2219 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2220 |
2221 | json3@3.2.6:
2222 | version "3.2.6"
2223 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.2.6.tgz#f6efc93c06a04de9aec53053df2559bb19e2038b"
2224 |
2225 | json3@3.3.2:
2226 | version "3.3.2"
2227 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
2228 |
2229 | json5@^0.5.0:
2230 | version "0.5.1"
2231 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2232 |
2233 | jsonfile@^2.1.0:
2234 | version "2.4.0"
2235 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
2236 | optionalDependencies:
2237 | graceful-fs "^4.1.6"
2238 |
2239 | jsonify@~0.0.0:
2240 | version "0.0.0"
2241 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2242 |
2243 | jsonpointer@^4.0.0:
2244 | version "4.0.0"
2245 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
2246 |
2247 | jsprim@^1.2.2:
2248 | version "1.3.1"
2249 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
2250 | dependencies:
2251 | extsprintf "1.0.2"
2252 | json-schema "0.2.3"
2253 | verror "1.3.6"
2254 |
2255 | kew@~0.7.0:
2256 | version "0.7.0"
2257 | resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b"
2258 |
2259 | kind-of@^3.0.2:
2260 | version "3.0.4"
2261 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74"
2262 | dependencies:
2263 | is-buffer "^1.0.2"
2264 |
2265 | klaw@^1.0.0:
2266 | version "1.3.0"
2267 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.0.tgz#8857bfbc1d824badf13d3d0241d8bbe46fb12f73"
2268 |
2269 | lazy-cache@^1.0.3:
2270 | version "1.0.4"
2271 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2272 |
2273 | lazy-debug-legacy@0.0.X:
2274 | version "0.0.1"
2275 | resolved "https://registry.yarnpkg.com/lazy-debug-legacy/-/lazy-debug-legacy-0.0.1.tgz#537716c0776e4cf79e3ed1b621f7658c2911b1b1"
2276 |
2277 | lcid@^1.0.0:
2278 | version "1.0.0"
2279 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2280 | dependencies:
2281 | invert-kv "^1.0.0"
2282 |
2283 | liftoff@^2.1.0:
2284 | version "2.3.0"
2285 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385"
2286 | dependencies:
2287 | extend "^3.0.0"
2288 | findup-sync "^0.4.2"
2289 | fined "^1.0.1"
2290 | flagged-respawn "^0.3.2"
2291 | lodash.isplainobject "^4.0.4"
2292 | lodash.isstring "^4.0.1"
2293 | lodash.mapvalues "^4.4.0"
2294 | rechoir "^0.6.2"
2295 | resolve "^1.1.7"
2296 |
2297 | limiter@^1.0.5:
2298 | version "1.1.0"
2299 | resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.0.tgz#6e2bd12ca3fcdaa11f224e2e53c896df3f08d913"
2300 |
2301 | load-json-file@^1.0.0:
2302 | version "1.1.0"
2303 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2304 | dependencies:
2305 | graceful-fs "^4.1.2"
2306 | parse-json "^2.2.0"
2307 | pify "^2.0.0"
2308 | pinkie-promise "^2.0.0"
2309 | strip-bom "^2.0.0"
2310 |
2311 | localtunnel@1.8.1:
2312 | version "1.8.1"
2313 | resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.8.1.tgz#d51b2bb7a7066afb05b57fc9db844015098f2e17"
2314 | dependencies:
2315 | debug "2.2.0"
2316 | openurl "1.1.0"
2317 | request "2.65.0"
2318 | yargs "3.29.0"
2319 |
2320 | lodash._basecopy@^3.0.0:
2321 | version "3.0.1"
2322 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
2323 |
2324 | lodash._basetostring@^3.0.0:
2325 | version "3.0.1"
2326 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5"
2327 |
2328 | lodash._basevalues@^3.0.0:
2329 | version "3.0.0"
2330 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7"
2331 |
2332 | lodash._getnative@^3.0.0:
2333 | version "3.9.1"
2334 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
2335 |
2336 | lodash._isiterateecall@^3.0.0:
2337 | version "3.0.9"
2338 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
2339 |
2340 | lodash._reescape@^3.0.0:
2341 | version "3.0.0"
2342 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"
2343 |
2344 | lodash._reevaluate@^3.0.0:
2345 | version "3.0.0"
2346 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed"
2347 |
2348 | lodash._reinterpolate@^3.0.0:
2349 | version "3.0.0"
2350 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
2351 |
2352 | lodash._root@^3.0.0:
2353 | version "3.0.1"
2354 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
2355 |
2356 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.1.0, lodash.assign@^4.2.0:
2357 | version "4.2.0"
2358 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
2359 |
2360 | lodash.assignwith@^4.0.7:
2361 | version "4.2.0"
2362 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb"
2363 |
2364 | lodash.clonedeep@^4.3.2:
2365 | version "4.5.0"
2366 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
2367 |
2368 | lodash.escape@^3.0.0:
2369 | version "3.2.0"
2370 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698"
2371 | dependencies:
2372 | lodash._root "^3.0.0"
2373 |
2374 | lodash.isarguments@^3.0.0:
2375 | version "3.1.0"
2376 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
2377 |
2378 | lodash.isarray@^3.0.0:
2379 | version "3.0.4"
2380 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
2381 |
2382 | lodash.isempty@^4.2.1:
2383 | version "4.4.0"
2384 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"
2385 |
2386 | lodash.isplainobject@^4.0.4:
2387 | version "4.0.6"
2388 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
2389 |
2390 | lodash.isstring@^4.0.1:
2391 | version "4.0.1"
2392 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
2393 |
2394 | lodash.keys@^3.0.0:
2395 | version "3.1.2"
2396 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
2397 | dependencies:
2398 | lodash._getnative "^3.0.0"
2399 | lodash.isarguments "^3.0.0"
2400 | lodash.isarray "^3.0.0"
2401 |
2402 | lodash.mapvalues@^4.4.0:
2403 | version "4.6.0"
2404 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c"
2405 |
2406 | lodash.mergewith@^4.6.0:
2407 | version "4.6.0"
2408 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55"
2409 |
2410 | lodash.pick@^4.2.1:
2411 | version "4.4.0"
2412 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
2413 |
2414 | lodash.restparam@^3.0.0:
2415 | version "3.6.1"
2416 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
2417 |
2418 | lodash.template@^3.0.0:
2419 | version "3.6.2"
2420 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f"
2421 | dependencies:
2422 | lodash._basecopy "^3.0.0"
2423 | lodash._basetostring "^3.0.0"
2424 | lodash._basevalues "^3.0.0"
2425 | lodash._isiterateecall "^3.0.0"
2426 | lodash._reinterpolate "^3.0.0"
2427 | lodash.escape "^3.0.0"
2428 | lodash.keys "^3.0.0"
2429 | lodash.restparam "^3.0.0"
2430 | lodash.templatesettings "^3.0.0"
2431 |
2432 | lodash.templatesettings@^3.0.0:
2433 | version "3.1.1"
2434 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5"
2435 | dependencies:
2436 | lodash._reinterpolate "^3.0.0"
2437 | lodash.escape "^3.0.0"
2438 |
2439 | lodash@3.7.x:
2440 | version "3.7.0"
2441 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.7.0.tgz#3678bd8ab995057c07ade836ed2ef087da811d45"
2442 |
2443 | lodash@^3.10.1:
2444 | version "3.10.1"
2445 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
2446 |
2447 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.2.0:
2448 | version "4.16.4"
2449 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127"
2450 |
2451 | lodash@~1.0.1:
2452 | version "1.0.2"
2453 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551"
2454 |
2455 | lodash@~4.9.0:
2456 | version "4.9.0"
2457 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.9.0.tgz#4c20d742f03ce85dc700e0dd7ab9bcab85e6fc14"
2458 |
2459 | log-symbols@^1.0.2:
2460 | version "1.0.2"
2461 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
2462 | dependencies:
2463 | chalk "^1.0.0"
2464 |
2465 | longest@^1.0.1:
2466 | version "1.0.1"
2467 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2468 |
2469 | loose-envify@^1.0.0:
2470 | version "1.3.0"
2471 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
2472 | dependencies:
2473 | js-tokens "^2.0.0"
2474 |
2475 | loud-rejection@^1.0.0:
2476 | version "1.6.0"
2477 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2478 | dependencies:
2479 | currently-unhandled "^0.4.1"
2480 | signal-exit "^3.0.0"
2481 |
2482 | lru-cache@2:
2483 | version "2.7.3"
2484 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952"
2485 |
2486 | lru-cache@^4.0.1:
2487 | version "4.0.1"
2488 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be"
2489 | dependencies:
2490 | pseudomap "^1.0.1"
2491 | yallist "^2.0.0"
2492 |
2493 | make-error-cause@^1.1.1:
2494 | version "1.2.2"
2495 | resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.2.2.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d"
2496 | dependencies:
2497 | make-error "^1.2.0"
2498 |
2499 | make-error@^1.2.0:
2500 | version "1.2.1"
2501 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.2.1.tgz#9a6dfb4844423b9f145806728d05c6e935670e75"
2502 |
2503 | map-cache@^0.2.0:
2504 | version "0.2.2"
2505 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2506 |
2507 | map-obj@^1.0.0, map-obj@^1.0.1:
2508 | version "1.0.1"
2509 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2510 |
2511 | meow@^3.3.0, meow@^3.7.0:
2512 | version "3.7.0"
2513 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2514 | dependencies:
2515 | camelcase-keys "^2.0.0"
2516 | decamelize "^1.1.2"
2517 | loud-rejection "^1.0.0"
2518 | map-obj "^1.0.1"
2519 | minimist "^1.1.3"
2520 | normalize-package-data "^2.3.4"
2521 | object-assign "^4.0.1"
2522 | read-pkg-up "^1.0.1"
2523 | redent "^1.0.0"
2524 | trim-newlines "^1.0.0"
2525 |
2526 | micromatch@2.3.11, micromatch@^2.1.5, micromatch@^2.3.7:
2527 | version "2.3.11"
2528 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2529 | dependencies:
2530 | arr-diff "^2.0.0"
2531 | array-unique "^0.2.1"
2532 | braces "^1.8.2"
2533 | expand-brackets "^0.1.4"
2534 | extglob "^0.3.1"
2535 | filename-regex "^2.0.0"
2536 | is-extglob "^1.0.0"
2537 | is-glob "^2.0.1"
2538 | kind-of "^3.0.2"
2539 | normalize-path "^2.0.1"
2540 | object.omit "^2.0.0"
2541 | parse-glob "^3.0.4"
2542 | regex-cache "^0.4.2"
2543 |
2544 | mime-db@~1.12.0:
2545 | version "1.12.0"
2546 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.12.0.tgz#3d0c63180f458eb10d325aaa37d7c58ae312e9d7"
2547 |
2548 | mime-db@~1.24.0:
2549 | version "1.24.0"
2550 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c"
2551 |
2552 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7:
2553 | version "2.1.12"
2554 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729"
2555 | dependencies:
2556 | mime-db "~1.24.0"
2557 |
2558 | mime-types@~2.0.4:
2559 | version "2.0.14"
2560 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.0.14.tgz#310e159db23e077f8bb22b748dabfa4957140aa6"
2561 | dependencies:
2562 | mime-db "~1.12.0"
2563 |
2564 | mime@1.2.4:
2565 | version "1.2.4"
2566 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.4.tgz#11b5fdaf29c2509255176b80ad520294f5de92b7"
2567 |
2568 | mime@1.3.4, "mime@>= 0.0.1":
2569 | version "1.3.4"
2570 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
2571 |
2572 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.0, minimatch@~3.0.2:
2573 | version "3.0.3"
2574 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
2575 | dependencies:
2576 | brace-expansion "^1.0.0"
2577 |
2578 | minimatch@^2.0.1:
2579 | version "2.0.10"
2580 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"
2581 | dependencies:
2582 | brace-expansion "^1.0.0"
2583 |
2584 | minimatch@~0.2.11:
2585 | version "0.2.14"
2586 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a"
2587 | dependencies:
2588 | lru-cache "2"
2589 | sigmund "~1.0.0"
2590 |
2591 | minimist@0.0.8:
2592 | version "0.0.8"
2593 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2594 |
2595 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0:
2596 | version "1.2.0"
2597 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2598 |
2599 | mkdirp@0.3.0:
2600 | version "0.3.0"
2601 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e"
2602 |
2603 | mkdirp@0.5.0:
2604 | version "0.5.0"
2605 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12"
2606 | dependencies:
2607 | minimist "0.0.8"
2608 |
2609 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
2610 | version "0.5.1"
2611 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2612 | dependencies:
2613 | minimist "0.0.8"
2614 |
2615 | ms@0.7.1:
2616 | version "0.7.1"
2617 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2618 |
2619 | multipipe@^0.1.2:
2620 | version "0.1.2"
2621 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"
2622 | dependencies:
2623 | duplexer2 "0.0.2"
2624 |
2625 | nan@^2.3.0, nan@^2.3.2:
2626 | version "2.4.0"
2627 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232"
2628 |
2629 | natives@^1.1.0:
2630 | version "1.1.0"
2631 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31"
2632 |
2633 | negotiator@0.4.9:
2634 | version "0.4.9"
2635 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.4.9.tgz#92e46b6db53c7e421ed64a2bc94f08be7630df3f"
2636 |
2637 | negotiator@0.6.1:
2638 | version "0.6.1"
2639 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2640 |
2641 | node-gyp@^3.3.1:
2642 | version "3.4.0"
2643 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36"
2644 | dependencies:
2645 | fstream "^1.0.0"
2646 | glob "^7.0.3"
2647 | graceful-fs "^4.1.2"
2648 | minimatch "^3.0.2"
2649 | mkdirp "^0.5.0"
2650 | nopt "2 || 3"
2651 | npmlog "0 || 1 || 2 || 3"
2652 | osenv "0"
2653 | path-array "^1.0.0"
2654 | request "2"
2655 | rimraf "2"
2656 | semver "2.x || 3.x || 4 || 5"
2657 | tar "^2.0.0"
2658 | which "1"
2659 |
2660 | node-pre-gyp@^0.6.29:
2661 | version "0.6.30"
2662 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.30.tgz#64d3073a6f573003717ccfe30c89023297babba1"
2663 | dependencies:
2664 | mkdirp "~0.5.0"
2665 | nopt "~3.0.1"
2666 | npmlog "4.x"
2667 | rc "~1.1.0"
2668 | request "2.x"
2669 | rimraf "~2.5.0"
2670 | semver "~5.3.0"
2671 | tar "~2.2.0"
2672 | tar-pack "~3.1.0"
2673 |
2674 | node-qunit-phantomjs:
2675 | version "1.4.0"
2676 | resolved "https://registry.yarnpkg.com/node-qunit-phantomjs/-/node-qunit-phantomjs-1.4.0.tgz#f0c880a7c6144e7292aff67a280314124cbd4531"
2677 | dependencies:
2678 | chalk "^1.1.0"
2679 | minimist "^1.2.0"
2680 | phantomjs-prebuilt "^2.1.3"
2681 | qunit-phantomjs-runner "^2.2.0"
2682 |
2683 | node-sass@^4.2.0:
2684 | version "4.5.2"
2685 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.2.tgz#4012fa2bd129b1d6365117e88d9da0500d99da64"
2686 | dependencies:
2687 | async-foreach "^0.1.3"
2688 | chalk "^1.1.1"
2689 | cross-spawn "^3.0.0"
2690 | gaze "^1.0.0"
2691 | get-stdin "^4.0.1"
2692 | glob "^7.0.3"
2693 | in-publish "^2.0.0"
2694 | lodash.assign "^4.2.0"
2695 | lodash.clonedeep "^4.3.2"
2696 | lodash.mergewith "^4.6.0"
2697 | meow "^3.7.0"
2698 | mkdirp "^0.5.1"
2699 | nan "^2.3.2"
2700 | node-gyp "^3.3.1"
2701 | npmlog "^4.0.0"
2702 | request "^2.79.0"
2703 | sass-graph "^2.1.1"
2704 | stdout-stream "^1.4.0"
2705 |
2706 | node-uuid@~1.4.3, node-uuid@~1.4.7:
2707 | version "1.4.7"
2708 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"
2709 |
2710 | "nopt@2 || 3", nopt@3.0.x, nopt@~3.0.1:
2711 | version "3.0.6"
2712 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2713 | dependencies:
2714 | abbrev "1"
2715 |
2716 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2717 | version "2.3.5"
2718 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
2719 | dependencies:
2720 | hosted-git-info "^2.1.4"
2721 | is-builtin-module "^1.0.0"
2722 | semver "2 || 3 || 4 || 5"
2723 | validate-npm-package-license "^3.0.1"
2724 |
2725 | normalize-path@^2.0.1:
2726 | version "2.0.1"
2727 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
2728 |
2729 | normalize-range@^0.1.2:
2730 | version "0.1.2"
2731 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2732 |
2733 | "npmlog@0 || 1 || 2 || 3":
2734 | version "3.1.2"
2735 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873"
2736 | dependencies:
2737 | are-we-there-yet "~1.1.2"
2738 | console-control-strings "~1.1.0"
2739 | gauge "~2.6.0"
2740 | set-blocking "~2.0.0"
2741 |
2742 | npmlog@4.x, npmlog@^4.0.0:
2743 | version "4.0.0"
2744 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f"
2745 | dependencies:
2746 | are-we-there-yet "~1.1.2"
2747 | console-control-strings "~1.1.0"
2748 | gauge "~2.6.0"
2749 | set-blocking "~2.0.0"
2750 |
2751 | num2fraction@^1.2.2:
2752 | version "1.2.2"
2753 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2754 |
2755 | number-is-nan@^1.0.0:
2756 | version "1.0.1"
2757 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2758 |
2759 | oauth-sign@~0.8.0, oauth-sign@~0.8.1:
2760 | version "0.8.2"
2761 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2762 |
2763 | object-assign@4.1.0, object-assign@^4.0.1, object-assign@^4.1.0:
2764 | version "4.1.0"
2765 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
2766 |
2767 | object-assign@^3.0.0:
2768 | version "3.0.0"
2769 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2"
2770 |
2771 | object-component@0.0.3:
2772 | version "0.0.3"
2773 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291"
2774 |
2775 | object-path@^0.9.0:
2776 | version "0.9.2"
2777 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5"
2778 |
2779 | object.omit@^2.0.0:
2780 | version "2.0.0"
2781 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.0.tgz#868597333d54e60662940bb458605dd6ae12fe94"
2782 | dependencies:
2783 | for-own "^0.1.3"
2784 | is-extendable "^0.1.1"
2785 |
2786 | on-finished@~2.3.0:
2787 | version "2.3.0"
2788 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2789 | dependencies:
2790 | ee-first "1.1.1"
2791 |
2792 | once@^1.3.0:
2793 | version "1.4.0"
2794 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2795 | dependencies:
2796 | wrappy "1"
2797 |
2798 | once@~1.3.0, once@~1.3.3:
2799 | version "1.3.3"
2800 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
2801 | dependencies:
2802 | wrappy "1"
2803 |
2804 | openurl@1.1.0:
2805 | version "1.1.0"
2806 | resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.0.tgz#e2f2189d999c04823201f083f0f1a7cd8903187a"
2807 |
2808 | opn@4.0.2:
2809 | version "4.0.2"
2810 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95"
2811 | dependencies:
2812 | object-assign "^4.0.1"
2813 | pinkie-promise "^2.0.0"
2814 |
2815 | options@>=0.0.5:
2816 | version "0.0.6"
2817 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
2818 |
2819 | orchestrator@^0.3.0:
2820 | version "0.3.7"
2821 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.7.tgz#c45064e22c5a2a7b99734f409a95ffedc7d3c3df"
2822 | dependencies:
2823 | end-of-stream "~0.1.5"
2824 | sequencify "~0.0.7"
2825 | stream-consume "~0.1.0"
2826 |
2827 | ordered-read-streams@^0.1.0:
2828 | version "0.1.0"
2829 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126"
2830 |
2831 | os-homedir@^1.0.0, os-homedir@^1.0.1:
2832 | version "1.0.2"
2833 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2834 |
2835 | os-locale@^1.4.0:
2836 | version "1.4.0"
2837 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2838 | dependencies:
2839 | lcid "^1.0.0"
2840 |
2841 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
2842 | version "1.0.2"
2843 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2844 |
2845 | osenv@0, osenv@^0.1.3:
2846 | version "0.1.3"
2847 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217"
2848 | dependencies:
2849 | os-homedir "^1.0.0"
2850 | os-tmpdir "^1.0.0"
2851 |
2852 | parse-filepath@^1.0.1:
2853 | version "1.0.1"
2854 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73"
2855 | dependencies:
2856 | is-absolute "^0.2.3"
2857 | map-cache "^0.2.0"
2858 | path-root "^0.1.1"
2859 |
2860 | parse-glob@^3.0.4:
2861 | version "3.0.4"
2862 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2863 | dependencies:
2864 | glob-base "^0.3.0"
2865 | is-dotfile "^1.0.0"
2866 | is-extglob "^1.0.0"
2867 | is-glob "^2.0.0"
2868 |
2869 | parse-json@^2.2.0:
2870 | version "2.2.0"
2871 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2872 | dependencies:
2873 | error-ex "^1.2.0"
2874 |
2875 | parsejson@0.0.1:
2876 | version "0.0.1"
2877 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.1.tgz#9b10c6c0d825ab589e685153826de0a3ba278bcc"
2878 | dependencies:
2879 | better-assert "~1.0.0"
2880 |
2881 | parseqs@0.0.2:
2882 | version "0.0.2"
2883 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.2.tgz#9dfe70b2cddac388bde4f35b1f240fa58adbe6c7"
2884 | dependencies:
2885 | better-assert "~1.0.0"
2886 |
2887 | parseuri@0.0.4:
2888 | version "0.0.4"
2889 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.4.tgz#806582a39887e1ea18dd5e2fe0e01902268e9350"
2890 | dependencies:
2891 | better-assert "~1.0.0"
2892 |
2893 | parseurl@~1.3.1:
2894 | version "1.3.1"
2895 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56"
2896 |
2897 | path-array@^1.0.0:
2898 | version "1.0.1"
2899 | resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271"
2900 | dependencies:
2901 | array-index "^1.0.0"
2902 |
2903 | path-exists@^2.0.0:
2904 | version "2.1.0"
2905 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2906 | dependencies:
2907 | pinkie-promise "^2.0.0"
2908 |
2909 | path-is-absolute@^1.0.0:
2910 | version "1.0.1"
2911 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2912 |
2913 | path-root-regex@^0.1.0:
2914 | version "0.1.2"
2915 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
2916 |
2917 | path-root@^0.1.1:
2918 | version "0.1.1"
2919 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
2920 | dependencies:
2921 | path-root-regex "^0.1.0"
2922 |
2923 | path-type@^1.0.0:
2924 | version "1.1.0"
2925 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2926 | dependencies:
2927 | graceful-fs "^4.1.2"
2928 | pify "^2.0.0"
2929 | pinkie-promise "^2.0.0"
2930 |
2931 | pend@~1.2.0:
2932 | version "1.2.0"
2933 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
2934 |
2935 | performance-now@^0.2.0:
2936 | version "0.2.0"
2937 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2938 |
2939 | phantomjs-prebuilt@^2.1.3:
2940 | version "2.1.13"
2941 | resolved "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.13.tgz#66556ad9e965d893ca5a7dc9e763df7e8697f76d"
2942 | dependencies:
2943 | es6-promise "~4.0.3"
2944 | extract-zip "~1.5.0"
2945 | fs-extra "~0.30.0"
2946 | hasha "~2.2.0"
2947 | kew "~0.7.0"
2948 | progress "~1.1.8"
2949 | request "~2.74.0"
2950 | request-progress "~2.0.1"
2951 | which "~1.2.10"
2952 |
2953 | pify@^2.0.0:
2954 | version "2.3.0"
2955 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2956 |
2957 | pinkie-promise@^2.0.0:
2958 | version "2.0.1"
2959 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2960 | dependencies:
2961 | pinkie "^2.0.0"
2962 |
2963 | pinkie@^2.0.0:
2964 | version "2.0.4"
2965 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2966 |
2967 | portscanner@^1.0.0:
2968 | version "1.0.0"
2969 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-1.0.0.tgz#3b5cfe393828b5160abc600e6270ebc2f1590558"
2970 | dependencies:
2971 | async "0.1.15"
2972 |
2973 | postcss-reporter@1.3.3:
2974 | version "1.3.3"
2975 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-1.3.3.tgz#776b9c3783f4dc0ea066e4303e9220ffbcc82bbe"
2976 | dependencies:
2977 | chalk "^1.0.0"
2978 | lodash "^4.1.0"
2979 | log-symbols "^1.0.2"
2980 | postcss "^5.0.0"
2981 |
2982 | postcss-scss@0.1.8:
2983 | version "0.1.8"
2984 | resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.1.8.tgz#50ca13a3cfab7aa7b6a1b55e7ec137c3f4514db3"
2985 | dependencies:
2986 | postcss "^5.0.21"
2987 |
2988 | postcss-value-parser@^3.2.3:
2989 | version "3.3.0"
2990 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
2991 |
2992 | postcss@^5.0.0, postcss@^5.0.14, postcss@^5.0.19, postcss@^5.0.21:
2993 | version "5.2.5"
2994 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.5.tgz#ec428c27dffc7fac65961340a9b022fa4af5f056"
2995 | dependencies:
2996 | chalk "^1.1.3"
2997 | js-base64 "^2.1.9"
2998 | source-map "^0.5.6"
2999 | supports-color "^3.1.2"
3000 |
3001 | preserve@^0.2.0:
3002 | version "0.2.0"
3003 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3004 |
3005 | pretty-hrtime@^1.0.0:
3006 | version "1.0.2"
3007 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.2.tgz#70ca96f4d0628a443b918758f79416a9a7bc9fa8"
3008 |
3009 | private@^0.1.6:
3010 | version "0.1.6"
3011 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
3012 |
3013 | process-nextick-args@~1.0.6:
3014 | version "1.0.7"
3015 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
3016 |
3017 | progress@~1.1.8:
3018 | version "1.1.8"
3019 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
3020 |
3021 | pseudomap@^1.0.1:
3022 | version "1.0.2"
3023 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3024 |
3025 | qs@0.4.x:
3026 | version "0.4.2"
3027 | resolved "https://registry.yarnpkg.com/qs/-/qs-0.4.2.tgz#3cac4c861e371a8c9c4770ac23cda8de639b8e5f"
3028 |
3029 | qs@6.2.1, "qs@>= 0.4.0", qs@~6.2.0:
3030 | version "6.2.1"
3031 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625"
3032 |
3033 | qs@~5.2.0:
3034 | version "5.2.1"
3035 | resolved "https://registry.yarnpkg.com/qs/-/qs-5.2.1.tgz#801fee030e0b9450d6385adc48a4cc55b44aedfc"
3036 |
3037 | qs@~6.4.0:
3038 | version "6.4.0"
3039 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
3040 |
3041 | qunit-phantomjs-runner@^2.2.0:
3042 | version "2.2.0"
3043 | resolved "https://registry.yarnpkg.com/qunit-phantomjs-runner/-/qunit-phantomjs-runner-2.2.0.tgz#557a0f55d7d83c315312d1b7048ed972ffea4549"
3044 |
3045 | qunitjs:
3046 | version "2.0.1"
3047 | resolved "https://registry.yarnpkg.com/qunitjs/-/qunitjs-2.0.1.tgz#2110056518f6e4bcaf0794a55ce87729f43ab353"
3048 |
3049 | randomatic@^1.1.3:
3050 | version "1.1.5"
3051 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b"
3052 | dependencies:
3053 | is-number "^2.0.2"
3054 | kind-of "^3.0.2"
3055 |
3056 | range-parser@~1.2.0:
3057 | version "1.2.0"
3058 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
3059 |
3060 | rc@~1.1.0:
3061 | version "1.1.6"
3062 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
3063 | dependencies:
3064 | deep-extend "~0.4.0"
3065 | ini "~1.3.0"
3066 | minimist "^1.2.0"
3067 | strip-json-comments "~1.0.4"
3068 |
3069 | read-pkg-up@^1.0.1:
3070 | version "1.0.1"
3071 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3072 | dependencies:
3073 | find-up "^1.0.0"
3074 | read-pkg "^1.0.0"
3075 |
3076 | read-pkg@^1.0.0:
3077 | version "1.1.0"
3078 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3079 | dependencies:
3080 | load-json-file "^1.0.0"
3081 | normalize-package-data "^2.3.2"
3082 | path-type "^1.0.0"
3083 |
3084 | readable-stream@1.1, readable-stream@~1.1.9:
3085 | version "1.1.13"
3086 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e"
3087 | dependencies:
3088 | core-util-is "~1.0.0"
3089 | inherits "~2.0.1"
3090 | isarray "0.0.1"
3091 | string_decoder "~0.10.x"
3092 |
3093 | "readable-stream@>=1.0.33-1 <1.1.0-0":
3094 | version "1.0.34"
3095 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
3096 | dependencies:
3097 | core-util-is "~1.0.0"
3098 | inherits "~2.0.1"
3099 | isarray "0.0.1"
3100 | string_decoder "~0.10.x"
3101 |
3102 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@~2.1.4:
3103 | version "2.1.5"
3104 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
3105 | dependencies:
3106 | buffer-shims "^1.0.0"
3107 | core-util-is "~1.0.0"
3108 | inherits "~2.0.1"
3109 | isarray "~1.0.0"
3110 | process-nextick-args "~1.0.6"
3111 | string_decoder "~0.10.x"
3112 | util-deprecate "~1.0.1"
3113 |
3114 | readable-stream@~2.0.0, readable-stream@~2.0.5:
3115 | version "2.0.6"
3116 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
3117 | dependencies:
3118 | core-util-is "~1.0.0"
3119 | inherits "~2.0.1"
3120 | isarray "~1.0.0"
3121 | process-nextick-args "~1.0.6"
3122 | string_decoder "~0.10.x"
3123 | util-deprecate "~1.0.1"
3124 |
3125 | readdirp@^2.0.0:
3126 | version "2.1.0"
3127 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3128 | dependencies:
3129 | graceful-fs "^4.1.2"
3130 | minimatch "^3.0.2"
3131 | readable-stream "^2.0.2"
3132 | set-immediate-shim "^1.0.1"
3133 |
3134 | rechoir@^0.6.2:
3135 | version "0.6.2"
3136 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
3137 | dependencies:
3138 | resolve "^1.1.6"
3139 |
3140 | redent@^1.0.0:
3141 | version "1.0.0"
3142 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
3143 | dependencies:
3144 | indent-string "^2.1.0"
3145 | strip-indent "^1.0.1"
3146 |
3147 | regenerate@^1.2.1:
3148 | version "1.3.2"
3149 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3150 |
3151 | regenerator-runtime@^0.10.0:
3152 | version "0.10.1"
3153 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
3154 |
3155 | regenerator-transform@0.9.8:
3156 | version "0.9.8"
3157 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
3158 | dependencies:
3159 | babel-runtime "^6.18.0"
3160 | babel-types "^6.19.0"
3161 | private "^0.1.6"
3162 |
3163 | regex-cache@^0.4.2:
3164 | version "0.4.3"
3165 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3166 | dependencies:
3167 | is-equal-shallow "^0.1.3"
3168 | is-primitive "^2.0.0"
3169 |
3170 | regexpu-core@^2.0.0:
3171 | version "2.0.0"
3172 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3173 | dependencies:
3174 | regenerate "^1.2.1"
3175 | regjsgen "^0.2.0"
3176 | regjsparser "^0.1.4"
3177 |
3178 | regjsgen@^0.2.0:
3179 | version "0.2.0"
3180 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3181 |
3182 | regjsparser@^0.1.4:
3183 | version "0.1.5"
3184 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3185 | dependencies:
3186 | jsesc "~0.5.0"
3187 |
3188 | repeat-element@^1.1.2:
3189 | version "1.1.2"
3190 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3191 |
3192 | repeat-string@^1.5.2:
3193 | version "1.5.4"
3194 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.5.4.tgz#64ec0c91e0f4b475f90d5b643651e3e6e5b6c2d5"
3195 |
3196 | repeating@^2.0.0:
3197 | version "2.0.1"
3198 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3199 | dependencies:
3200 | is-finite "^1.0.0"
3201 |
3202 | replace-ext@0.0.1:
3203 | version "0.0.1"
3204 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
3205 |
3206 | request-progress@~2.0.1:
3207 | version "2.0.1"
3208 | resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08"
3209 | dependencies:
3210 | throttleit "^1.0.0"
3211 |
3212 | request@2, request@2.x, request@~2.74.0:
3213 | version "2.74.0"
3214 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab"
3215 | dependencies:
3216 | aws-sign2 "~0.6.0"
3217 | aws4 "^1.2.1"
3218 | bl "~1.1.2"
3219 | caseless "~0.11.0"
3220 | combined-stream "~1.0.5"
3221 | extend "~3.0.0"
3222 | forever-agent "~0.6.1"
3223 | form-data "~1.0.0-rc4"
3224 | har-validator "~2.0.6"
3225 | hawk "~3.1.3"
3226 | http-signature "~1.1.0"
3227 | is-typedarray "~1.0.0"
3228 | isstream "~0.1.2"
3229 | json-stringify-safe "~5.0.1"
3230 | mime-types "~2.1.7"
3231 | node-uuid "~1.4.7"
3232 | oauth-sign "~0.8.1"
3233 | qs "~6.2.0"
3234 | stringstream "~0.0.4"
3235 | tough-cookie "~2.3.0"
3236 | tunnel-agent "~0.4.1"
3237 |
3238 | request@2.65.0:
3239 | version "2.65.0"
3240 | resolved "https://registry.yarnpkg.com/request/-/request-2.65.0.tgz#cc1a3bc72b96254734fc34296da322f9486ddeba"
3241 | dependencies:
3242 | aws-sign2 "~0.6.0"
3243 | bl "~1.0.0"
3244 | caseless "~0.11.0"
3245 | combined-stream "~1.0.5"
3246 | extend "~3.0.0"
3247 | forever-agent "~0.6.1"
3248 | form-data "~1.0.0-rc3"
3249 | har-validator "~2.0.2"
3250 | hawk "~3.1.0"
3251 | http-signature "~0.11.0"
3252 | isstream "~0.1.2"
3253 | json-stringify-safe "~5.0.1"
3254 | mime-types "~2.1.7"
3255 | node-uuid "~1.4.3"
3256 | oauth-sign "~0.8.0"
3257 | qs "~5.2.0"
3258 | stringstream "~0.0.4"
3259 | tough-cookie "~2.2.0"
3260 | tunnel-agent "~0.4.1"
3261 |
3262 | request@^2.79.0:
3263 | version "2.81.0"
3264 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3265 | dependencies:
3266 | aws-sign2 "~0.6.0"
3267 | aws4 "^1.2.1"
3268 | caseless "~0.12.0"
3269 | combined-stream "~1.0.5"
3270 | extend "~3.0.0"
3271 | forever-agent "~0.6.1"
3272 | form-data "~2.1.1"
3273 | har-validator "~4.2.1"
3274 | hawk "~3.1.3"
3275 | http-signature "~1.1.0"
3276 | is-typedarray "~1.0.0"
3277 | isstream "~0.1.2"
3278 | json-stringify-safe "~5.0.1"
3279 | mime-types "~2.1.7"
3280 | oauth-sign "~0.8.1"
3281 | performance-now "^0.2.0"
3282 | qs "~6.4.0"
3283 | safe-buffer "^5.0.1"
3284 | stringstream "~0.0.4"
3285 | tough-cookie "~2.3.0"
3286 | tunnel-agent "^0.6.0"
3287 | uuid "^3.0.0"
3288 |
3289 | require-dir@0.3.0:
3290 | version "0.3.0"
3291 | resolved "https://registry.yarnpkg.com/require-dir/-/require-dir-0.3.0.tgz#89f074a85638b07c20a4fb94c93b5db635a64781"
3292 |
3293 | require-directory@^2.1.1:
3294 | version "2.1.1"
3295 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3296 |
3297 | require-main-filename@^1.0.1:
3298 | version "1.0.1"
3299 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3300 |
3301 | requires-port@1.x.x:
3302 | version "1.0.0"
3303 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
3304 |
3305 | resolve-dir@^0.1.0:
3306 | version "0.1.1"
3307 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e"
3308 | dependencies:
3309 | expand-tilde "^1.2.2"
3310 | global-modules "^0.2.3"
3311 |
3312 | resolve-url@~0.2.1:
3313 | version "0.2.1"
3314 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3315 |
3316 | resolve@^1.1.6, resolve@^1.1.7:
3317 | version "1.1.7"
3318 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
3319 |
3320 | resp-modifier@6.0.2:
3321 | version "6.0.2"
3322 | resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f"
3323 | dependencies:
3324 | debug "^2.2.0"
3325 | minimatch "^3.0.2"
3326 |
3327 | right-align@^0.1.1:
3328 | version "0.1.3"
3329 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3330 | dependencies:
3331 | align-text "^0.1.1"
3332 |
3333 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.0, rimraf@~2.5.1:
3334 | version "2.5.4"
3335 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
3336 | dependencies:
3337 | glob "^7.0.5"
3338 |
3339 | rx@4.1.0:
3340 | version "4.1.0"
3341 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
3342 |
3343 | safe-buffer@^5.0.1:
3344 | version "5.0.1"
3345 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
3346 |
3347 | sass-graph@^2.1.1:
3348 | version "2.1.2"
3349 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b"
3350 | dependencies:
3351 | glob "^7.0.0"
3352 | lodash "^4.0.0"
3353 | yargs "^4.7.1"
3354 |
3355 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@~5.3.0:
3356 | version "5.3.0"
3357 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
3358 |
3359 | semver@^4.1.0:
3360 | version "4.3.6"
3361 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
3362 |
3363 | send@0.14.1:
3364 | version "0.14.1"
3365 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a"
3366 | dependencies:
3367 | debug "~2.2.0"
3368 | depd "~1.1.0"
3369 | destroy "~1.0.4"
3370 | encodeurl "~1.0.1"
3371 | escape-html "~1.0.3"
3372 | etag "~1.7.0"
3373 | fresh "0.3.0"
3374 | http-errors "~1.5.0"
3375 | mime "1.3.4"
3376 | ms "0.7.1"
3377 | on-finished "~2.3.0"
3378 | range-parser "~1.2.0"
3379 | statuses "~1.3.0"
3380 |
3381 | sequencify@~0.0.7:
3382 | version "0.0.7"
3383 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c"
3384 |
3385 | serve-index@1.8.0:
3386 | version "1.8.0"
3387 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b"
3388 | dependencies:
3389 | accepts "~1.3.3"
3390 | batch "0.5.3"
3391 | debug "~2.2.0"
3392 | escape-html "~1.0.3"
3393 | http-errors "~1.5.0"
3394 | mime-types "~2.1.11"
3395 | parseurl "~1.3.1"
3396 |
3397 | serve-static@1.11.1:
3398 | version "1.11.1"
3399 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805"
3400 | dependencies:
3401 | encodeurl "~1.0.1"
3402 | escape-html "~1.0.3"
3403 | parseurl "~1.3.1"
3404 | send "0.14.1"
3405 |
3406 | server-destroy@1.0.1:
3407 | version "1.0.1"
3408 | resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"
3409 |
3410 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3411 | version "2.0.0"
3412 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3413 |
3414 | set-immediate-shim@^1.0.1:
3415 | version "1.0.1"
3416 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3417 |
3418 | setprototypeof@1.0.1:
3419 | version "1.0.1"
3420 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.1.tgz#52009b27888c4dc48f591949c0a8275834c1ca7e"
3421 |
3422 | shelljs@0.3.x:
3423 | version "0.3.0"
3424 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1"
3425 |
3426 | sigmund@~1.0.0:
3427 | version "1.0.1"
3428 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
3429 |
3430 | signal-exit@^3.0.0:
3431 | version "3.0.1"
3432 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81"
3433 |
3434 | slash@^1.0.0:
3435 | version "1.0.0"
3436 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3437 |
3438 | sntp@1.x.x:
3439 | version "1.0.9"
3440 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3441 | dependencies:
3442 | hoek "2.x.x"
3443 |
3444 | socket.io-adapter@0.4.0:
3445 | version "0.4.0"
3446 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.4.0.tgz#fb9f82ab1aa65290bf72c3657955b930a991a24f"
3447 | dependencies:
3448 | debug "2.2.0"
3449 | socket.io-parser "2.2.2"
3450 |
3451 | socket.io-client@1.4.8:
3452 | version "1.4.8"
3453 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.4.8.tgz#481b241e73df140ea1a4fb03486a85ad097f5558"
3454 | dependencies:
3455 | backo2 "1.0.2"
3456 | component-bind "1.0.0"
3457 | component-emitter "1.2.0"
3458 | debug "2.2.0"
3459 | engine.io-client "1.6.11"
3460 | has-binary "0.1.7"
3461 | indexof "0.0.1"
3462 | object-component "0.0.3"
3463 | parseuri "0.0.4"
3464 | socket.io-parser "2.2.6"
3465 | to-array "0.1.4"
3466 |
3467 | socket.io-parser@2.2.2:
3468 | version "2.2.2"
3469 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.2.2.tgz#3d7af6b64497e956b7d9fe775f999716027f9417"
3470 | dependencies:
3471 | benchmark "1.0.0"
3472 | component-emitter "1.1.2"
3473 | debug "0.7.4"
3474 | isarray "0.0.1"
3475 | json3 "3.2.6"
3476 |
3477 | socket.io-parser@2.2.6:
3478 | version "2.2.6"
3479 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.2.6.tgz#38dfd61df50dcf8ab1d9e2091322bf902ba28b99"
3480 | dependencies:
3481 | benchmark "1.0.0"
3482 | component-emitter "1.1.2"
3483 | debug "2.2.0"
3484 | isarray "0.0.1"
3485 | json3 "3.3.2"
3486 |
3487 | socket.io@1.4.8:
3488 | version "1.4.8"
3489 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.4.8.tgz#e576f330cd0bed64e55b3fd26df991141884867b"
3490 | dependencies:
3491 | debug "2.2.0"
3492 | engine.io "1.6.11"
3493 | has-binary "0.1.7"
3494 | socket.io-adapter "0.4.0"
3495 | socket.io-client "1.4.8"
3496 | socket.io-parser "2.2.6"
3497 |
3498 | source-map-resolve@^0.3.0:
3499 | version "0.3.1"
3500 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761"
3501 | dependencies:
3502 | atob "~1.1.0"
3503 | resolve-url "~0.2.1"
3504 | source-map-url "~0.3.0"
3505 | urix "~0.1.0"
3506 |
3507 | source-map-support@^0.4.2:
3508 | version "0.4.8"
3509 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.8.tgz#4871918d8a3af07289182e974e32844327b2e98b"
3510 | dependencies:
3511 | source-map "^0.5.3"
3512 |
3513 | source-map-url@~0.3.0:
3514 | version "0.3.0"
3515 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"
3516 |
3517 | source-map@0.X, source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
3518 | version "0.5.6"
3519 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3520 |
3521 | source-map@^0.1.38:
3522 | version "0.1.43"
3523 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
3524 | dependencies:
3525 | amdefine ">=0.0.4"
3526 |
3527 | sparkles@^1.0.0:
3528 | version "1.0.0"
3529 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3"
3530 |
3531 | spdx-correct@~1.0.0:
3532 | version "1.0.2"
3533 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3534 | dependencies:
3535 | spdx-license-ids "^1.0.2"
3536 |
3537 | spdx-expression-parse@~1.0.0:
3538 | version "1.0.4"
3539 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3540 |
3541 | spdx-license-ids@^1.0.2:
3542 | version "1.2.2"
3543 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3544 |
3545 | sshpk@^1.7.0:
3546 | version "1.10.1"
3547 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
3548 | dependencies:
3549 | asn1 "~0.2.3"
3550 | assert-plus "^1.0.0"
3551 | dashdash "^1.12.0"
3552 | getpass "^0.1.1"
3553 | optionalDependencies:
3554 | bcrypt-pbkdf "^1.0.0"
3555 | ecc-jsbn "~0.1.1"
3556 | jodid25519 "^1.0.0"
3557 | jsbn "~0.1.0"
3558 | tweetnacl "~0.14.0"
3559 |
3560 | "statuses@>= 1.3.0 < 2", statuses@~1.3.0:
3561 | version "1.3.0"
3562 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.0.tgz#8e55758cb20e7682c1f4fce8dcab30bf01d1e07a"
3563 |
3564 | stdout-stream@^1.4.0:
3565 | version "1.4.0"
3566 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b"
3567 | dependencies:
3568 | readable-stream "^2.0.1"
3569 |
3570 | stream-consume@~0.1.0:
3571 | version "0.1.0"
3572 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f"
3573 |
3574 | stream-throttle@^0.1.3:
3575 | version "0.1.3"
3576 | resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3"
3577 | dependencies:
3578 | commander "^2.2.0"
3579 | limiter "^1.0.5"
3580 |
3581 | string-width@^1.0.1, string-width@^1.0.2:
3582 | version "1.0.2"
3583 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3584 | dependencies:
3585 | code-point-at "^1.0.0"
3586 | is-fullwidth-code-point "^1.0.0"
3587 | strip-ansi "^3.0.0"
3588 |
3589 | string_decoder@~0.10.x:
3590 | version "0.10.31"
3591 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3592 |
3593 | stringstream@~0.0.4:
3594 | version "0.0.5"
3595 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3596 |
3597 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3598 | version "3.0.1"
3599 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3600 | dependencies:
3601 | ansi-regex "^2.0.0"
3602 |
3603 | strip-bom-stream@^1.0.0:
3604 | version "1.0.0"
3605 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee"
3606 | dependencies:
3607 | first-chunk-stream "^1.0.0"
3608 | strip-bom "^2.0.0"
3609 |
3610 | strip-bom@3.X:
3611 | version "3.0.0"
3612 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3613 |
3614 | strip-bom@^1.0.0:
3615 | version "1.0.0"
3616 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794"
3617 | dependencies:
3618 | first-chunk-stream "^1.0.0"
3619 | is-utf8 "^0.2.0"
3620 |
3621 | strip-bom@^2.0.0:
3622 | version "2.0.0"
3623 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3624 | dependencies:
3625 | is-utf8 "^0.2.0"
3626 |
3627 | strip-indent@^1.0.1:
3628 | version "1.0.1"
3629 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3630 | dependencies:
3631 | get-stdin "^4.0.1"
3632 |
3633 | strip-json-comments@1.0.x, strip-json-comments@~1.0.4:
3634 | version "1.0.4"
3635 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
3636 |
3637 | supports-color@^2.0.0:
3638 | version "2.0.0"
3639 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3640 |
3641 | supports-color@^3.1.2:
3642 | version "3.1.2"
3643 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
3644 | dependencies:
3645 | has-flag "^1.0.0"
3646 |
3647 | tar-pack@~3.1.0:
3648 | version "3.1.4"
3649 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.1.4.tgz#bc8cf9a22f5832739f12f3910dac1eb97b49708c"
3650 | dependencies:
3651 | debug "~2.2.0"
3652 | fstream "~1.0.10"
3653 | fstream-ignore "~1.0.5"
3654 | once "~1.3.3"
3655 | readable-stream "~2.1.4"
3656 | rimraf "~2.5.1"
3657 | tar "~2.2.1"
3658 | uid-number "~0.0.6"
3659 |
3660 | tar@^2.0.0, tar@~2.2.0, tar@~2.2.1:
3661 | version "2.2.1"
3662 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3663 | dependencies:
3664 | block-stream "*"
3665 | fstream "^1.0.2"
3666 | inherits "2"
3667 |
3668 | tfunk@^3.0.1:
3669 | version "3.0.2"
3670 | resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.0.2.tgz#327ebc6176af2680c6cd0d6d22297c79d7f96efd"
3671 | dependencies:
3672 | chalk "^1.1.1"
3673 | object-path "^0.9.0"
3674 |
3675 | throttleit@^1.0.0:
3676 | version "1.0.0"
3677 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c"
3678 |
3679 | through2@2.X, through2@^2, through2@^2.0.0:
3680 | version "2.0.1"
3681 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9"
3682 | dependencies:
3683 | readable-stream "~2.0.0"
3684 | xtend "~4.0.0"
3685 |
3686 | through2@^0.6.1:
3687 | version "0.6.5"
3688 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48"
3689 | dependencies:
3690 | readable-stream ">=1.0.33-1 <1.1.0-0"
3691 | xtend ">=4.0.0 <4.1.0-0"
3692 |
3693 | tildify@^1.0.0:
3694 | version "1.2.0"
3695 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a"
3696 | dependencies:
3697 | os-homedir "^1.0.0"
3698 |
3699 | time-stamp@^1.0.0:
3700 | version "1.0.1"
3701 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151"
3702 |
3703 | to-array@0.1.4:
3704 | version "0.1.4"
3705 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"
3706 |
3707 | to-fast-properties@^1.0.1:
3708 | version "1.0.2"
3709 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
3710 |
3711 | tough-cookie@~2.2.0:
3712 | version "2.2.2"
3713 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.2.2.tgz#c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"
3714 |
3715 | tough-cookie@~2.3.0:
3716 | version "2.3.1"
3717 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.1.tgz#99c77dfbb7d804249e8a299d4cb0fd81fef083fd"
3718 |
3719 | trim-newlines@^1.0.0:
3720 | version "1.0.0"
3721 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3722 |
3723 | tunnel-agent@^0.6.0:
3724 | version "0.6.0"
3725 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3726 | dependencies:
3727 | safe-buffer "^5.0.1"
3728 |
3729 | tunnel-agent@~0.4.1:
3730 | version "0.4.3"
3731 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
3732 |
3733 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3734 | version "0.14.3"
3735 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d"
3736 |
3737 | typedarray@~0.0.5:
3738 | version "0.0.6"
3739 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3740 |
3741 | ua-parser-js@0.7.10:
3742 | version "0.7.10"
3743 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.10.tgz#917559ddcce07cbc09ece7d80495e4c268f4ef9f"
3744 |
3745 | uglify-js@2.7.5:
3746 | version "2.7.5"
3747 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8"
3748 | dependencies:
3749 | async "~0.2.6"
3750 | source-map "~0.5.1"
3751 | uglify-to-browserify "~1.0.0"
3752 | yargs "~3.10.0"
3753 |
3754 | uglify-save-license@^0.4.1:
3755 | version "0.4.1"
3756 | resolved "https://registry.yarnpkg.com/uglify-save-license/-/uglify-save-license-0.4.1.tgz#95726c17cc6fd171c3617e3bf4d8d82aa8c4cce1"
3757 |
3758 | uglify-to-browserify@~1.0.0:
3759 | version "1.0.2"
3760 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3761 |
3762 | uid-number@~0.0.6:
3763 | version "0.0.6"
3764 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3765 |
3766 | ultron@1.0.x:
3767 | version "1.0.2"
3768 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
3769 |
3770 | unc-path-regex@^0.1.0:
3771 | version "0.1.2"
3772 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
3773 |
3774 | underscore@1.7.x:
3775 | version "1.7.0"
3776 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209"
3777 |
3778 | unique-stream@^1.0.0:
3779 | version "1.0.0"
3780 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b"
3781 |
3782 | unpipe@~1.0.0:
3783 | version "1.0.0"
3784 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3785 |
3786 | urix@^0.1.0, urix@~0.1.0:
3787 | version "0.1.0"
3788 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3789 |
3790 | user-home@^1.1.1:
3791 | version "1.1.1"
3792 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
3793 |
3794 | utf8@2.1.0:
3795 | version "2.1.0"
3796 | resolved "https://registry.yarnpkg.com/utf8/-/utf8-2.1.0.tgz#0cfec5c8052d44a23e3aaa908104e8075f95dfd5"
3797 |
3798 | util-deprecate@~1.0.1:
3799 | version "1.0.2"
3800 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3801 |
3802 | utils-merge@1.0.0:
3803 | version "1.0.0"
3804 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8"
3805 |
3806 | uuid@^3.0.0:
3807 | version "3.0.1"
3808 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
3809 |
3810 | v8flags@^2.0.2:
3811 | version "2.0.11"
3812 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881"
3813 | dependencies:
3814 | user-home "^1.1.1"
3815 |
3816 | validate-npm-package-license@^3.0.1:
3817 | version "3.0.1"
3818 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3819 | dependencies:
3820 | spdx-correct "~1.0.0"
3821 | spdx-expression-parse "~1.0.0"
3822 |
3823 | verror@1.3.6:
3824 | version "1.3.6"
3825 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3826 | dependencies:
3827 | extsprintf "1.0.2"
3828 |
3829 | vinyl-file@^1.2.1:
3830 | version "1.3.0"
3831 | resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-1.3.0.tgz#aa05634d3a867ba91447bedbb34afcb26f44f6e7"
3832 | dependencies:
3833 | graceful-fs "^4.1.2"
3834 | strip-bom "^2.0.0"
3835 | strip-bom-stream "^1.0.0"
3836 | vinyl "^1.1.0"
3837 |
3838 | vinyl-fs@^0.3.0:
3839 | version "0.3.14"
3840 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"
3841 | dependencies:
3842 | defaults "^1.0.0"
3843 | glob-stream "^3.1.5"
3844 | glob-watcher "^0.0.6"
3845 | graceful-fs "^3.0.0"
3846 | mkdirp "^0.5.0"
3847 | strip-bom "^1.0.0"
3848 | through2 "^0.6.1"
3849 | vinyl "^0.4.0"
3850 |
3851 | vinyl-sourcemaps-apply@^0.2.0:
3852 | version "0.2.1"
3853 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705"
3854 | dependencies:
3855 | source-map "^0.5.1"
3856 |
3857 | vinyl@1.X, vinyl@^1.1.0:
3858 | version "1.2.0"
3859 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
3860 | dependencies:
3861 | clone "^1.0.0"
3862 | clone-stats "^0.0.1"
3863 | replace-ext "0.0.1"
3864 |
3865 | vinyl@^0.4.0:
3866 | version "0.4.6"
3867 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847"
3868 | dependencies:
3869 | clone "^0.2.0"
3870 | clone-stats "^0.0.1"
3871 |
3872 | vinyl@^0.5.0:
3873 | version "0.5.3"
3874 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde"
3875 | dependencies:
3876 | clone "^1.0.0"
3877 | clone-stats "^0.0.1"
3878 | replace-ext "0.0.1"
3879 |
3880 | weinre@^2.0.0-pre-I0Z7U9OV:
3881 | version "2.0.0-pre-I0Z7U9OV"
3882 | resolved "https://registry.yarnpkg.com/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz#fef8aa223921f7b40bbbbd4c3ed4302f6fd0a813"
3883 | dependencies:
3884 | express "2.5.x"
3885 | nopt "3.0.x"
3886 | underscore "1.7.x"
3887 |
3888 | which-module@^1.0.0:
3889 | version "1.0.0"
3890 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3891 |
3892 | which@1, which@^1.2.10, which@^1.2.9, which@~1.2.10:
3893 | version "1.2.11"
3894 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b"
3895 | dependencies:
3896 | isexe "^1.1.1"
3897 |
3898 | wide-align@^1.1.0:
3899 | version "1.1.0"
3900 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
3901 | dependencies:
3902 | string-width "^1.0.1"
3903 |
3904 | window-size@0.1.0:
3905 | version "0.1.0"
3906 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3907 |
3908 | window-size@^0.1.2:
3909 | version "0.1.4"
3910 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"
3911 |
3912 | window-size@^0.2.0:
3913 | version "0.2.0"
3914 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075"
3915 |
3916 | wordwrap@0.0.2:
3917 | version "0.0.2"
3918 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3919 |
3920 | wrap-ansi@^2.0.0:
3921 | version "2.0.0"
3922 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f"
3923 | dependencies:
3924 | string-width "^1.0.1"
3925 |
3926 | wrappy@1:
3927 | version "1.0.2"
3928 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3929 |
3930 | ws@1.0.1:
3931 | version "1.0.1"
3932 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.0.1.tgz#7d0b2a2e58cddd819039c29c9de65045e1b310e9"
3933 | dependencies:
3934 | options ">=0.0.5"
3935 | ultron "1.0.x"
3936 |
3937 | ws@1.1.0:
3938 | version "1.1.0"
3939 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.0.tgz#c1d6fd1515d3ceff1f0ae2759bf5fd77030aad1d"
3940 | dependencies:
3941 | options ">=0.0.5"
3942 | ultron "1.0.x"
3943 |
3944 | xmlhttprequest-ssl@1.5.1:
3945 | version "1.5.1"
3946 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.1.tgz#3b7741fea4a86675976e908d296d4445961faa67"
3947 |
3948 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0:
3949 | version "4.0.1"
3950 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3951 |
3952 | y18n@^3.2.0, y18n@^3.2.1:
3953 | version "3.2.1"
3954 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3955 |
3956 | yallist@^2.0.0:
3957 | version "2.0.0"
3958 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4"
3959 |
3960 | yargs-parser@^2.4.1:
3961 | version "2.4.1"
3962 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4"
3963 | dependencies:
3964 | camelcase "^3.0.0"
3965 | lodash.assign "^4.0.6"
3966 |
3967 | yargs-parser@^3.2.0:
3968 | version "3.2.0"
3969 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-3.2.0.tgz#5081355d19d9d0c8c5d81ada908cb4e6d186664f"
3970 | dependencies:
3971 | camelcase "^3.0.0"
3972 | lodash.assign "^4.1.0"
3973 |
3974 | yargs@3.29.0:
3975 | version "3.29.0"
3976 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.29.0.tgz#1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c"
3977 | dependencies:
3978 | camelcase "^1.2.1"
3979 | cliui "^3.0.3"
3980 | decamelize "^1.0.0"
3981 | os-locale "^1.4.0"
3982 | window-size "^0.1.2"
3983 | y18n "^3.2.0"
3984 |
3985 | yargs@5.0.0:
3986 | version "5.0.0"
3987 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-5.0.0.tgz#3355144977d05757dbb86d6e38ec056123b3a66e"
3988 | dependencies:
3989 | cliui "^3.2.0"
3990 | decamelize "^1.1.1"
3991 | get-caller-file "^1.0.1"
3992 | lodash.assign "^4.2.0"
3993 | os-locale "^1.4.0"
3994 | read-pkg-up "^1.0.1"
3995 | require-directory "^2.1.1"
3996 | require-main-filename "^1.0.1"
3997 | set-blocking "^2.0.0"
3998 | string-width "^1.0.2"
3999 | which-module "^1.0.0"
4000 | window-size "^0.2.0"
4001 | y18n "^3.2.1"
4002 | yargs-parser "^3.2.0"
4003 |
4004 | yargs@^4.7.1:
4005 | version "4.8.1"
4006 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0"
4007 | dependencies:
4008 | cliui "^3.2.0"
4009 | decamelize "^1.1.1"
4010 | get-caller-file "^1.0.1"
4011 | lodash.assign "^4.0.3"
4012 | os-locale "^1.4.0"
4013 | read-pkg-up "^1.0.1"
4014 | require-directory "^2.1.1"
4015 | require-main-filename "^1.0.1"
4016 | set-blocking "^2.0.0"
4017 | string-width "^1.0.1"
4018 | which-module "^1.0.0"
4019 | window-size "^0.2.0"
4020 | y18n "^3.2.1"
4021 | yargs-parser "^2.4.1"
4022 |
4023 | yargs@~3.10.0:
4024 | version "3.10.0"
4025 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
4026 | dependencies:
4027 | camelcase "^1.0.2"
4028 | cliui "^2.1.0"
4029 | decamelize "^1.0.0"
4030 | window-size "0.1.0"
4031 |
4032 | yauzl@2.4.1:
4033 | version "2.4.1"
4034 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
4035 | dependencies:
4036 | fd-slicer "~1.0.1"
4037 |
4038 | yeast@0.1.2:
4039 | version "0.1.2"
4040 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
4041 |
--------------------------------------------------------------------------------