├── .gitignore
├── webpack.config.js
├── package.json
├── index.html
├── src
└── index.js
├── README.md
├── README_RU.md
├── dist
├── v-media-query.min.js
├── v-media-query.js.map
└── v-media-query.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
3 | \.idea/misc\.xml
4 |
5 | \.idea/modules\.xml
6 |
7 | \.idea/v-media-query\.iml
8 |
9 | \.idea/vcs\.xml
10 |
11 | \.idea/workspace\.xml
12 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | var webpack = require('webpack');
2 |
3 | module.exports = {
4 | entry: "./src/index.js",
5 | output: {
6 | path: "./dist",
7 | publicPath: "/dist/",
8 | filename: "v-media-query.js",
9 | library: ["vMediaQuery"],
10 | libraryTarget: "umd"
11 | },
12 | module: {
13 | loaders: [
14 | {
15 | test: /\.js$/,
16 | loader: "babel",
17 | query: {
18 | presets: ['es2015'],
19 | },
20 | exclude: /node_modules/
21 | }
22 | ]
23 | },
24 | }
25 |
26 | if (process.env.NODE_ENV === 'production') {
27 | module.exports.output.filename = "v-media-query.min.js",
28 | module.exports.plugins = [
29 | new webpack.DefinePlugin({
30 | 'process.env': {
31 | NODE_ENV: '"production"'
32 | }
33 | }),
34 | new webpack.optimize.UglifyJsPlugin({
35 | sourceMap: false,
36 | compress: {
37 | warnings: false
38 | }
39 | }),
40 | ];
41 | } else {
42 | module.exports.devtool = '#source-map'
43 | }
44 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "v-media-query",
3 | "version": "1.0.4",
4 | "description": "media query methods for vuejs",
5 | "main": "./dist/v-media-query.min.js",
6 | "scripts": {
7 | "build": "webpack --config webpack.config.js",
8 | "build_min": "NODE_ENV=production webpack --config webpack.config.js",
9 | "server": "webpack-dev-server --hot --inline --port=3737"
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/AStaroverov/v-media-query.git"
14 | },
15 | "keywords": [
16 | "vuejs",
17 | "vue",
18 | "vue-component",
19 | "component"
20 | ],
21 | "author": "AStaroverov",
22 | "license": "MIT",
23 | "bugs": {
24 | "url": "https://github.com/AStaroverov/v-media-query/issues"
25 | },
26 | "homepage": "https://github.com/AStaroverov/v-media-query#readme",
27 | "devDependencies": {
28 | "babel-core": "^6.5.2",
29 | "babel-loader": "^6.2.3",
30 | "babel-preset-es2015": "^6.5.0",
31 | "webpack-dev-server": "1",
32 | "webpack": "^1.12.14"
33 | },
34 | "dependencies": {
35 | "lodash.throttle": "^4.1.1"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Vue media query directive
6 |
7 |
8 |
9 |
10 | notHD
11 | expr
12 | between
13 | beyond
14 | above
15 | below
16 |
17 |
18 |
19 |
20 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import throttle from 'lodash.throttle'
2 |
3 | // lazy methods
4 | let extend
5 | let defineReactive
6 |
7 | const mapVmIdToVm = new Map();
8 |
9 | const _nameSpace = {
10 | methods: '$mq',
11 | variables: '$mv'
12 | }
13 | const _methods = {expr, below, above, beyond, between}
14 | const _mqData = {
15 | created() {
16 | const root = this.$parent
17 |
18 | if (root) {
19 | defineReactive(this[_nameSpace.methods], 'resize', root[_nameSpace.methods].resize)
20 | } else {
21 | mapVmIdToVm.set(this._uid, this)
22 | defineReactive(this[_nameSpace.methods], 'resize', 1)
23 | }
24 | },
25 | beforeDestroy() {
26 | mapVmIdToVm.delete(this._uid)
27 | }
28 | }
29 |
30 | export default {
31 | methods: _methods,
32 | install(Vue, {
33 | methods = {},
34 | variables = {},
35 | nameSpace = {},
36 | } = {}) {
37 | lazyInitMethods(Vue)
38 | extend(_nameSpace, nameSpace)
39 |
40 | Vue.mixin(_mqData)
41 | Vue.prototype[_nameSpace.methods] = extend(extend({}, _methods), methods)
42 | Vue.prototype[_nameSpace.variables] = variables
43 |
44 | initResize()
45 | }
46 | }
47 |
48 | function lazyInitMethods(Vue) {
49 | extend = Vue.util.extend
50 | defineReactive = Vue.util.defineReactive
51 | }
52 |
53 | function initResize() {
54 | let throttleResize = throttle(() => {
55 | mapVmIdToVm.forEach((vm) => ++vm[_nameSpace.methods].resize)
56 | } , 150)
57 |
58 | window.addEventListener('resize', throttleResize)
59 | }
60 |
61 | function getArgs(args) {
62 | return args.length > 0 ? args.reverse() : args
63 | }
64 |
65 | function prepare(val) {
66 | return ('' + parseInt(val)).length === ('' + val).length
67 | ? `${val}px`
68 | : val
69 | }
70 |
71 | function expr(expressionString) {
72 | return matchMedia(expressionString).matches
73 | }
74 |
75 | function below(...args) {
76 | const [value, measurement = 'width'] = getArgs(args)
77 | return matchMedia(`(max-${measurement}: ${prepare(value)})`).matches
78 | }
79 |
80 | function above(...args) {
81 | const [value, measurement = 'width'] = getArgs(args)
82 | return matchMedia(`(min-${measurement}: ${prepare(value)})`).matches
83 | }
84 |
85 | function between(...args) {
86 | const [value, measurement = 'width'] = getArgs(args)
87 | const [minVal, maxVal] = value
88 |
89 | return matchMedia(`
90 | (min-${measurement}: ${prepare(minVal)}) and
91 | (max-${measurement}: ${prepare(maxVal)})
92 | `).matches
93 | }
94 |
95 | function beyond(...args) {
96 | const [value, measurement = 'width'] = getArgs(args)
97 | const [minVal, maxVal] = value
98 |
99 | return matchMedia(`
100 | (min-${measurement}: ${prepare(maxVal)}),
101 | (max-${measurement}: ${prepare(minVal)})
102 | `).matches
103 | }
104 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # vue media query methods ([ru](https://github.com/AStaroverov/v-media-query/blob/master/README_RU.md))
2 | Plugin adds methods for work with media query in vue
3 |
4 | ## General example:
5 | ```javascript
6 | import vMediaQuery from 'v-media-query'
7 |
8 | Vue.use(vMediaQuery.default)
9 | ```
10 |
11 | ```html
12 |
13 | ```
14 | v-if gets ``true`` for screen with ``width > 600px`` and updates after resizing
15 |
16 | ```javascript
17 | new Vue({
18 | created() {
19 | if (this.$mq.above(600)) {
20 | console.log('screen > 600px')
21 | }
22 | }
23 | })
24 |
25 | new Vue({
26 | watch: {
27 | '$mq.resize': 'screenResize'
28 | },
29 | methods: {
30 | screenResize() {
31 | if (this.$mq.above(600)) {
32 | console.log('screen > 600px')
33 | }
34 | }
35 | }
36 | })
37 |
38 | new Vue({
39 | computed: {
40 | screenMore600() {
41 | return this.$mq.resize && this.$mq.above(600)
42 | }
43 | }
44 | })
45 | ```
46 | and [here](http://rawcdn.githack.com/AStaroverov/v-media-query/f35354a69a6e9dc05a1dd37237c597505b790f32/index.html)
47 |
48 | ## Defaults methods
49 | All methods are allowed in ``$mq`` (mq = media query)
50 |
51 | ``$mq.resize``
52 | * variable is trigger that update methods
53 |
54 | ---
55 |
56 | ``$mq.above(measurement, value)``
57 | ``$mq.below(measurement, value)``
58 | ``$mq.between(measurement, [valMin, valMax])``
59 | ``$mq.beyond(measurement, [valMin, valMAx])``
60 |
61 | * ``measurement``
62 | * Can take values: ``'width'``, ``'height'``
63 | * Default value = ``'width'``
64 | example: ``$mq.above(600) == $mq.above('width', 600)``
65 | * ``value, valMin, valMax``
66 | * Can take type ``Number`` and ``String``
67 | * All values type of ``Number`` will be rewrited to ``Number + 'px'``
68 | example: ``$mq.above(600) == $mq.above('600px')``
69 |
70 | ---
71 |
72 | ``$mq.expr(expression)``
73 | * expression - any valid css media query
74 | example: $mq.expr('screen and (max-device-width: 300px)')
75 |
76 | ## Custom methods
77 | Your can add custom methods to default methods
78 |
79 | ### Example
80 | ```javascript
81 | Vue.use(vMediaQuery.default, {
82 | methods: {
83 | onlyForRetina() {
84 | return matchMedia('(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)').matches
85 | }
86 | fackAbove(...args) {
87 | return vMediaQuery.methods.above(...args)
88 | },
89 | }
90 | })
91 | ```
92 | ```html
93 |
94 |
95 | ```
96 |
97 | ## Variables
98 | The plugin allows you to add custom variables in the vue
99 | All variables are available in the ``$mv`` (mv = media variables)
100 |
101 | ### Example
102 | ```javascript
103 | Vue.use(vMediaQuery.default, {
104 | variables: {
105 | hd: 1920,
106 | sm: '1240px'
107 | }
108 | })
109 | ```
110 | ```html
111 |
112 | ```
113 |
114 | ## Names $mq and $mv
115 | If u don't like names ``$mq`` and ``$mv`` u can change them
116 |
117 | ### Example
118 | ```javascript
119 | Vue.use(vMediaQuery.default, {
120 | nameSpace: {
121 | methods: $$myMethods, // default $mq
122 | variables: __myVariables, // default $mv
123 | },
124 | variables: {
125 | hd: 1920,
126 | }
127 | })
128 | ```
129 | ```html
130 |
131 | ```
132 |
--------------------------------------------------------------------------------
/README_RU.md:
--------------------------------------------------------------------------------
1 | # vue media query methods
2 | Плагин добавляет во vue методы для работы с media query
3 |
4 | ## Вводный пример:
5 | ```javascript
6 | import vMediaQuery from 'v-media-query'
7 |
8 | Vue.use(vMediaQuery.default)
9 | ```
10 |
11 | ```html
12 |
13 | ```
14 | v-if получает результат true для окна с ``width > 600px`` и обновляется при изменении его размеров.
15 |
16 | ```javascript
17 | new Vue({
18 | created() {
19 | if (this.$mq.above(600)) {
20 | console.log('screen > 600px')
21 | }
22 | }
23 | })
24 |
25 | new Vue({
26 | watch: {
27 | '$mq.resize': 'screenResize'
28 | },
29 | methods: {
30 | screenResize() {
31 | if (this.$mq.above(600)) {
32 | console.log('screen > 600px')
33 | }
34 | }
35 | }
36 | })
37 |
38 | new Vue({
39 | computed: {
40 | screenMore600() {
41 | return this.$mq.resize && this.$mq.above(600)
42 | }
43 | }
44 | })
45 | ```
46 | and [here](https://github.com/AStaroverov/v-media-query/blob/master/index.html)
47 |
48 |
49 | ## Стандартные методы
50 | Все методы доступны в объекте ``$mq`` (media query)
51 |
52 | ``$mq.resize``
53 | * переменная является триггером для пересчета media выражения
54 |
55 | ---
56 |
57 | ``$mq.above(measurement, value)``
58 | ``$mq.below(measurement, value)``
59 | ``$mq.between(measurement, [valMin, valMax])``
60 | ``$mq.beyond(measurement, [valMin, valMAx])``
61 |
62 | * ``measurement``
63 | * Может принимать зачения: ``'width'``, ``'height'``
64 | * Стандартное значение = ``'width'``
65 | example: ``$mq.above(600) == $mq.above('width', 600)``
66 | * ``value, valMin, valMax``
67 | * Может принимать значения типа ``Number`` и ``String``
68 | * Все значения типа ``Number`` будут переведены в ``Number + 'px'``
69 | example: ``$mq.above(600) == $mq.above('600px')``
70 |
71 | ---
72 |
73 | ``$mq.expr(expression)``
74 | * expression - любое валидное css media выражение
75 | example: $mq.expr('screen and (max-device-width: 300px)')
76 |
77 | ## Свои методы
78 | К стандартным методам можно добавить свои
79 |
80 | ### Пример
81 | ```javascript
82 | Vue.use(vMediaQuery.default, {
83 | methods: {
84 | onlyForRetina() {
85 | return matchMedia('(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)').matches
86 | }
87 | fackAbove(...args) {
88 | return vMediaQuery.methods.above(...args)
89 | },
90 | }
91 | })
92 | ```
93 | ```html
94 |
95 |
96 | ```
97 |
98 | ## Переменные
99 | Плагин позволяет добавить во vue переменные.
100 | Все переменные доступны в объекте ``$mv`` (media variables)
101 |
102 | ### Пример
103 | ```javascript
104 | Vue.use(vMediaQuery.default, {
105 | variables: {
106 | hd: 1920,
107 | sm: '1240px'
108 | }
109 | })
110 | ```
111 | ```html
112 |
113 | ```
114 |
115 | ## Наименования $mq и $mv
116 | Если вам по каким-то причинам не нравятся обозначения ``$mq``, ``$mv``, вы можете задать их самостоятельно
117 |
(Исполльзуйте в начале имени $ || $$ || _ || __ так вы сможете избежать неожиданных конфликтов)
118 |
119 | ### Пример
120 | ```javascript
121 | Vue.use(vvMediaQuery.default, {
122 | nameSpace: {
123 | methods: $$myMethods, // default $mq
124 | variables: __myVariables, // default $mv
125 | },
126 | variables: {
127 | hd: 1920,
128 | }
129 | })
130 | ```
131 | ```html
132 |
133 | ```
134 |
--------------------------------------------------------------------------------
/dist/v-media-query.min.js:
--------------------------------------------------------------------------------
1 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.vMediaQuery=e():t.vMediaQuery=e()}(this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return t[r].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var n={};return e.m=t,e.c=n,e.p="/dist/",e(0)}([function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t){p=t.util.extend,y=t.util.defineReactive}function o(){var t=(0,m.default)(function(){b.forEach(function(t){return++t[x.methods].resize})},150);window.addEventListener("resize",t)}function a(t){return t.length>0?t.reverse():t}function u(t){return(""+parseInt(t)).length===(""+t).length?t+"px":t}function f(t){return matchMedia(t).matches}function c(){for(var t=arguments.length,e=Array(t),n=0;n1&&void 0!==arguments[1]?arguments[1]:{},n=e.methods,r=void 0===n?{}:n,a=e.variables,u=void 0===a?{}:a,f=e.nameSpace,c=void 0===f?{}:f;i(t),p(x,c),t.mixin(w),t.prototype[x.methods]=p(p({},g),r),t.prototype[x.variables]=u,o()}}},function(t,e){(function(e){function n(t,e,n){function r(e){var n=m,r=p;return m=p=void 0,O=e,b=t.apply(r,n)}function o(t){return O=t,x=setTimeout(d,e),T?r(t):b}function a(t){var n=t-g,r=t-O,i=e-n;return $?j(i,y-r):i}function c(t){var n=t-g,r=t-O;return void 0===g||n>=e||n<0||$&&r>=y}function d(){var t=M();return c(t)?s(t):void(x=setTimeout(d,a(t)))}function s(t){return x=void 0,A&&m?r(t):(m=p=void 0,b)}function l(){void 0!==x&&clearTimeout(x),O=0,m=g=p=x=void 0}function v(){return void 0===x?b:s(M())}function h(){var t=M(),n=c(t);if(m=arguments,p=this,g=t,n){if(void 0===x)return o(g);if($)return x=setTimeout(d,e),r(g)}return void 0===x&&(x=setTimeout(d,e)),b}var m,p,y,b,x,g,O=0,T=!1,$=!1,A=!0;if("function"!=typeof t)throw new TypeError(f);return e=u(e)||0,i(n)&&(T=!!n.leading,$="maxWait"in n,y=$?w(u(n.maxWait)||0,e):y,A="trailing"in n?!!n.trailing:A),h.cancel=l,h.flush=v,h}function r(t,e,r){var o=!0,a=!0;if("function"!=typeof t)throw new TypeError(f);return i(r)&&(o="leading"in r?!!r.leading:o,a="trailing"in r?!!r.trailing:a),n(t,e,{leading:o,maxWait:e,trailing:a})}function i(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function o(t){return!!t&&"object"==typeof t}function a(t){return"symbol"==typeof t||o(t)&&g.call(t)==d}function u(t){if("number"==typeof t)return t;if(a(t))return c;if(i(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=i(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(s,"");var n=v.test(t);return n||h.test(t)?m(t.slice(2),n?2:8):l.test(t)?c:+t}var f="Expected a function",c=NaN,d="[object Symbol]",s=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,v=/^0b[01]+$/i,h=/^0o[0-7]+$/i,m=parseInt,p="object"==typeof e&&e&&e.Object===Object&&e,y="object"==typeof self&&self&&self.Object===Object&&self,b=p||y||Function("return this")(),x=Object.prototype,g=x.toString,w=Math.max,j=Math.min,M=function(){return b.Date.now()};t.exports=r}).call(e,function(){return this}())}])});
--------------------------------------------------------------------------------
/dist/v-media-query.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///webpack/bootstrap 69548f6b4965ffa15d88","webpack:///./src/index.js","webpack:///./~/lodash.throttle/index.js"],"names":["extend","defineReactive","mapVmIdToVm","Map","_nameSpace","methods","variables","_methods","expr","below","above","beyond","between","_mqData","created","root","$parent","resize","set","_uid","beforeDestroy","delete","install","Vue","nameSpace","lazyInitMethods","mixin","prototype","initResize","util","throttleResize","forEach","vm","window","addEventListener","getArgs","args","length","reverse","prepare","val","parseInt","expressionString","matchMedia","matches","value","measurement","minVal","maxVal"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;ACVA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,uBAAe;AACf;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;;;;;;;;;;;;;;ACtCA;;;;;;AAEA;AACA,KAAIA,eAAJ;AACA,KAAIC,uBAAJ;;AAEA,KAAMC,cAAc,IAAIC,GAAJ,EAApB;;AAEA,KAAMC,aAAa;AACjBC,YAAS,KADQ;AAEjBC,cAAW;AAFM,EAAnB;AAIA,KAAMC,WAAW,EAACC,UAAD,EAAOC,YAAP,EAAcC,YAAd,EAAqBC,cAArB,EAA6BC,gBAA7B,EAAjB;AACA,KAAMC,UAAU;AACdC,UADc,qBACJ;AACR,SAAMC,OAAO,KAAKC,OAAlB;;AAEA,SAAID,IAAJ,EAAU;AACRd,sBAAe,KAAKG,WAAWC,OAAhB,CAAf,EAAyC,QAAzC,EAAmDU,KAAKX,WAAWC,OAAhB,EAAyBY,MAA5E;AACD,MAFD,MAEO;AACLf,mBAAYgB,GAAZ,CAAgB,KAAKC,IAArB,EAA2B,IAA3B;AACAlB,sBAAe,KAAKG,WAAWC,OAAhB,CAAf,EAAyC,QAAzC,EAAmD,CAAnD;AACD;AACF,IAVa;AAWde,gBAXc,2BAWE;AACdlB,iBAAYmB,MAAZ,CAAmB,KAAKF,IAAxB;AACD;AAba,EAAhB;;mBAgBe;AACbd,YAASE,QADI;AAEbe,UAFa,mBAELC,GAFK,EAML;AAAA,oFAAJ,EAAI;AAAA,6BAHNlB,OAGM;AAAA,SAHNA,OAGM,gCAHI,EAGJ;AAAA,+BAFNC,SAEM;AAAA,SAFNA,SAEM,kCAFM,EAEN;AAAA,+BADNkB,SACM;AAAA,SADNA,SACM,kCADM,EACN;;AACNC,qBAAgBF,GAAhB;AACAvB,YAAOI,UAAP,EAAmBoB,SAAnB;;AAEAD,SAAIG,KAAJ,CAAUb,OAAV;AACAU,SAAII,SAAJ,CAAcvB,WAAWC,OAAzB,IAAoCL,OAAOA,OAAO,EAAP,EAAWO,QAAX,CAAP,EAA6BF,OAA7B,CAApC;AACAkB,SAAII,SAAJ,CAAcvB,WAAWE,SAAzB,IAAsCA,SAAtC;;AAEAsB;AACD;AAfY,E;;;AAkBf,UAASH,eAAT,CAAyBF,GAAzB,EAA8B;AAC5BvB,YAASuB,IAAIM,IAAJ,CAAS7B,MAAlB;AACAC,oBAAiBsB,IAAIM,IAAJ,CAAS5B,cAA1B;AACD;;AAED,UAAS2B,UAAT,GAAsB;AACpB,OAAIE,iBAAiB,sBAAS,YAAM;AAClC5B,iBAAY6B,OAAZ,CAAoB,UAACC,EAAD;AAAA,cAAQ,EAAEA,GAAG5B,WAAWC,OAAd,EAAuBY,MAAjC;AAAA,MAApB;AACD,IAFoB,EAEjB,GAFiB,CAArB;;AAIAgB,UAAOC,gBAAP,CAAwB,QAAxB,EAAkCJ,cAAlC;AACD;;AAED,UAASK,OAAT,CAAiBC,IAAjB,EAAuB;AACrB,UAAOA,KAAKC,MAAL,GAAc,CAAd,GAAkBD,KAAKE,OAAL,EAAlB,GAAmCF,IAA1C;AACD;;AAED,UAASG,OAAT,CAAiBC,GAAjB,EAAsB;AACpB,UAAO,CAAC,KAAKC,SAASD,GAAT,CAAN,EAAqBH,MAArB,KAAgC,CAAC,KAAKG,GAAN,EAAWH,MAA3C,GACAG,GADA,UAEHA,GAFJ;AAGD;;AAED,UAAShC,IAAT,CAAckC,gBAAd,EAAgC;AAC9B,UAAOC,WAAWD,gBAAX,EAA6BE,OAApC;AACD;;AAED,UAASnC,KAAT,GAAwB;AAAA,qCAAN2B,IAAM;AAANA,SAAM;AAAA;;AAAA,kBACiBD,QAAQC,IAAR,CADjB;AAAA;AAAA,OACfS,KADe;AAAA;AAAA,OACRC,WADQ,8BACM,OADN;;AAEtB,UAAOH,qBAAmBG,WAAnB,UAAmCP,QAAQM,KAAR,CAAnC,QAAsDD,OAA7D;AACD;;AAED,UAASlC,KAAT,GAAwB;AAAA,sCAAN0B,IAAM;AAANA,SAAM;AAAA;;AAAA,mBACiBD,QAAQC,IAAR,CADjB;AAAA;AAAA,OACfS,KADe;AAAA;AAAA,OACRC,WADQ,8BACM,OADN;;AAEtB,UAAOH,qBAAmBG,WAAnB,UAAmCP,QAAQM,KAAR,CAAnC,QAAsDD,OAA7D;AACD;;AAED,UAAShC,OAAT,GAA0B;AAAA,sCAANwB,IAAM;AAANA,SAAM;AAAA;;AAAA,mBACeD,QAAQC,IAAR,CADf;AAAA;AAAA,OACjBS,KADiB;AAAA;AAAA,OACVC,WADU,8BACI,OADJ;;AAAA,+BAECD,KAFD;AAAA,OAEjBE,MAFiB;AAAA,OAETC,MAFS;;AAIxB,UAAOL,2BACEG,WADF,UACkBP,QAAQQ,MAAR,CADlB,wBAEED,WAFF,UAEkBP,QAAQS,MAAR,CAFlB,YAGJJ,OAHH;AAID;;AAED,UAASjC,MAAT,GAAyB;AAAA,sCAANyB,IAAM;AAANA,SAAM;AAAA;;AAAA,mBACgBD,QAAQC,IAAR,CADhB;AAAA;AAAA,OAChBS,KADgB;AAAA;AAAA,OACTC,WADS,8BACK,OADL;;AAAA,gCAEED,KAFF;AAAA,OAEhBE,MAFgB;AAAA,OAERC,MAFQ;;AAIvB,UAAOL,2BACEG,WADF,UACkBP,QAAQS,MAAR,CADlB,qBAEEF,WAFF,UAEkBP,QAAQQ,MAAR,CAFlB,YAGJH,OAHH;AAID,E;;;;;;ACtGD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAa,OAAO;AACpB;AACA;AACA;AACA;AACA,KAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB,YAAW,OAAO,YAAY;AAC9B,YAAW,QAAQ;AACnB;AACA,YAAW,OAAO;AAClB;AACA,YAAW,QAAQ;AACnB;AACA,cAAa,SAAS;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAI;AACJ;AACA;AACA,+CAA8C,kBAAkB;AAChE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB,YAAW,OAAO,YAAY;AAC9B,YAAW,QAAQ;AACnB;AACA,YAAW,QAAQ;AACnB;AACA,cAAa,SAAS;AACtB;AACA;AACA;AACA;AACA;AACA;AACA,oDAAmD,oBAAoB;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,EAAE;AACb,cAAa,QAAQ;AACrB;AACA;AACA,iBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,EAAE;AACb,cAAa,QAAQ;AACrB;AACA;AACA,qBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,EAAE;AACb,cAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,EAAE;AACb,cAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA","file":"v-media-query.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"vMediaQuery\"] = factory();\n\telse\n\t\troot[\"vMediaQuery\"] = factory();\n})(this, function() {\nreturn \n\n\n// WEBPACK FOOTER //\n// webpack/universalModuleDefinition"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/dist/\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 69548f6b4965ffa15d88","import throttle from 'lodash.throttle'\n\n// lazy methods\nlet extend\nlet defineReactive\n\nconst mapVmIdToVm = new Map();\n\nconst _nameSpace = {\n methods: '$mq',\n variables: '$mv'\n}\nconst _methods = {expr, below, above, beyond, between}\nconst _mqData = {\n created() {\n const root = this.$parent\n\n if (root) {\n defineReactive(this[_nameSpace.methods], 'resize', root[_nameSpace.methods].resize)\n } else {\n mapVmIdToVm.set(this._uid, this)\n defineReactive(this[_nameSpace.methods], 'resize', 1)\n }\n },\n beforeDestroy() {\n mapVmIdToVm.delete(this._uid)\n }\n}\n\nexport default {\n methods: _methods,\n install(Vue, {\n methods = {},\n variables = {},\n nameSpace = {},\n } = {}) {\n lazyInitMethods(Vue)\n extend(_nameSpace, nameSpace)\n\n Vue.mixin(_mqData)\n Vue.prototype[_nameSpace.methods] = extend(extend({}, _methods), methods)\n Vue.prototype[_nameSpace.variables] = variables\n\n initResize()\n }\n}\n\nfunction lazyInitMethods(Vue) {\n extend = Vue.util.extend\n defineReactive = Vue.util.defineReactive\n}\n\nfunction initResize() {\n let throttleResize = throttle(() => {\n mapVmIdToVm.forEach((vm) => ++vm[_nameSpace.methods].resize)\n } , 150)\n\n window.addEventListener('resize', throttleResize)\n}\n\nfunction getArgs(args) {\n return args.length > 0 ? args.reverse() : args\n}\n\nfunction prepare(val) {\n return ('' + parseInt(val)).length === ('' + val).length\n ? `${val}px`\n : val\n}\n\nfunction expr(expressionString) {\n return matchMedia(expressionString).matches\n}\n\nfunction below(...args) {\n const [value, measurement = 'width'] = getArgs(args)\n return matchMedia(`(max-${measurement}: ${prepare(value)})`).matches\n}\n\nfunction above(...args) {\n const [value, measurement = 'width'] = getArgs(args)\n return matchMedia(`(min-${measurement}: ${prepare(value)})`).matches\n}\n\nfunction between(...args) {\n const [value, measurement = 'width'] = getArgs(args)\n const [minVal, maxVal] = value\n\n return matchMedia(`\n (min-${measurement}: ${prepare(minVal)}) and\n (max-${measurement}: ${prepare(maxVal)})\n `).matches\n}\n\nfunction beyond(...args) {\n const [value, measurement = 'width'] = getArgs(args)\n const [minVal, maxVal] = value\n\n return matchMedia(`\n (min-${measurement}: ${prepare(maxVal)}),\n (max-${measurement}: ${prepare(minVal)})\n `).matches\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/index.js","/**\n * lodash (Custom Build) \n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright jQuery Foundation and other contributors \n * Released under MIT license \n * Based on Underscore.js 1.8.3 \n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as the `TypeError` message for \"Functions\" methods. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/** Used as references for various `Number` constants. */\nvar NAN = 0 / 0;\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/** Used to match leading and trailing whitespace. */\nvar reTrim = /^\\s+|\\s+$/g;\n\n/** Used to detect bad signed hexadecimal string values. */\nvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n/** Used to detect binary string values. */\nvar reIsBinary = /^0b[01]+$/i;\n\n/** Used to detect octal string values. */\nvar reIsOctal = /^0o[0-7]+$/i;\n\n/** Built-in method references without a dependency on `root`. */\nvar freeParseInt = parseInt;\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar objectToString = objectProto.toString;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeMax = Math.max,\n nativeMin = Math.min;\n\n/**\n * Gets the timestamp of the number of milliseconds that have elapsed since\n * the Unix epoch (1 January 1970 00:00:00 UTC).\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Date\n * @returns {number} Returns the timestamp.\n * @example\n *\n * _.defer(function(stamp) {\n * console.log(_.now() - stamp);\n * }, _.now());\n * // => Logs the number of milliseconds it took for the deferred invocation.\n */\nvar now = function() {\n return root.Date.now();\n};\n\n/**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked. The debounced function comes with a `cancel` method to cancel\n * delayed `func` invocations and a `flush` method to immediately invoke them.\n * Provide `options` to indicate whether `func` should be invoked on the\n * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\n * with the last arguments provided to the debounced function. Subsequent\n * calls to the debounced function return the result of the last `func`\n * invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the debounced function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.debounce` and `_.throttle`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to debounce.\n * @param {number} [wait=0] The number of milliseconds to delay.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=false]\n * Specify invoking on the leading edge of the timeout.\n * @param {number} [options.maxWait]\n * The maximum time `func` is allowed to be delayed before it's invoked.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new debounced function.\n * @example\n *\n * // Avoid costly calculations while the window size is in flux.\n * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n *\n * // Invoke `sendMail` when clicked, debouncing subsequent calls.\n * jQuery(element).on('click', _.debounce(sendMail, 300, {\n * 'leading': true,\n * 'trailing': false\n * }));\n *\n * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\n * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\n * var source = new EventSource('/stream');\n * jQuery(source).on('message', debounced);\n *\n * // Cancel the trailing debounced invocation.\n * jQuery(window).on('popstate', debounced.cancel);\n */\nfunction debounce(func, wait, options) {\n var lastArgs,\n lastThis,\n maxWait,\n result,\n timerId,\n lastCallTime,\n lastInvokeTime = 0,\n leading = false,\n maxing = false,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n wait = toNumber(wait) || 0;\n if (isObject(options)) {\n leading = !!options.leading;\n maxing = 'maxWait' in options;\n maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n\n function invokeFunc(time) {\n var args = lastArgs,\n thisArg = lastThis;\n\n lastArgs = lastThis = undefined;\n lastInvokeTime = time;\n result = func.apply(thisArg, args);\n return result;\n }\n\n function leadingEdge(time) {\n // Reset any `maxWait` timer.\n lastInvokeTime = time;\n // Start the timer for the trailing edge.\n timerId = setTimeout(timerExpired, wait);\n // Invoke the leading edge.\n return leading ? invokeFunc(time) : result;\n }\n\n function remainingWait(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime,\n result = wait - timeSinceLastCall;\n\n return maxing ? nativeMin(result, maxWait - timeSinceLastInvoke) : result;\n }\n\n function shouldInvoke(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime;\n\n // Either this is the first call, activity has stopped and we're at the\n // trailing edge, the system time has gone backwards and we're treating\n // it as the trailing edge, or we've hit the `maxWait` limit.\n return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\n (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\n }\n\n function timerExpired() {\n var time = now();\n if (shouldInvoke(time)) {\n return trailingEdge(time);\n }\n // Restart the timer.\n timerId = setTimeout(timerExpired, remainingWait(time));\n }\n\n function trailingEdge(time) {\n timerId = undefined;\n\n // Only invoke if we have `lastArgs` which means `func` has been\n // debounced at least once.\n if (trailing && lastArgs) {\n return invokeFunc(time);\n }\n lastArgs = lastThis = undefined;\n return result;\n }\n\n function cancel() {\n if (timerId !== undefined) {\n clearTimeout(timerId);\n }\n lastInvokeTime = 0;\n lastArgs = lastCallTime = lastThis = timerId = undefined;\n }\n\n function flush() {\n return timerId === undefined ? result : trailingEdge(now());\n }\n\n function debounced() {\n var time = now(),\n isInvoking = shouldInvoke(time);\n\n lastArgs = arguments;\n lastThis = this;\n lastCallTime = time;\n\n if (isInvoking) {\n if (timerId === undefined) {\n return leadingEdge(lastCallTime);\n }\n if (maxing) {\n // Handle invocations in a tight loop.\n timerId = setTimeout(timerExpired, wait);\n return invokeFunc(lastCallTime);\n }\n }\n if (timerId === undefined) {\n timerId = setTimeout(timerExpired, wait);\n }\n return result;\n }\n debounced.cancel = cancel;\n debounced.flush = flush;\n return debounced;\n}\n\n/**\n * Creates a throttled function that only invokes `func` at most once per\n * every `wait` milliseconds. The throttled function comes with a `cancel`\n * method to cancel delayed `func` invocations and a `flush` method to\n * immediately invoke them. Provide `options` to indicate whether `func`\n * should be invoked on the leading and/or trailing edge of the `wait`\n * timeout. The `func` is invoked with the last arguments provided to the\n * throttled function. Subsequent calls to the throttled function return the\n * result of the last `func` invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the throttled function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.throttle` and `_.debounce`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to throttle.\n * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=true]\n * Specify invoking on the leading edge of the timeout.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new throttled function.\n * @example\n *\n * // Avoid excessively updating the position while scrolling.\n * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\n *\n * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\n * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\n * jQuery(element).on('click', throttled);\n *\n * // Cancel the trailing throttled invocation.\n * jQuery(window).on('popstate', throttled.cancel);\n */\nfunction throttle(func, wait, options) {\n var leading = true,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (isObject(options)) {\n leading = 'leading' in options ? !!options.leading : leading;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n return debounce(func, wait, {\n 'leading': leading,\n 'maxWait': wait,\n 'trailing': trailing\n });\n}\n\n/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return !!value && (type == 'object' || type == 'function');\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return !!value && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && objectToString.call(value) == symbolTag);\n}\n\n/**\n * Converts `value` to a number.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n * @example\n *\n * _.toNumber(3.2);\n * // => 3.2\n *\n * _.toNumber(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toNumber(Infinity);\n * // => Infinity\n *\n * _.toNumber('3.2');\n * // => 3.2\n */\nfunction toNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n if (isObject(value)) {\n var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n value = isObject(other) ? (other + '') : other;\n }\n if (typeof value != 'string') {\n return value === 0 ? value : +value;\n }\n value = value.replace(reTrim, '');\n var isBinary = reIsBinary.test(value);\n return (isBinary || reIsOctal.test(value))\n ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n : (reIsBadHex.test(value) ? NAN : +value);\n}\n\nmodule.exports = throttle;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/lodash.throttle/index.js\n// module id = 1\n// module chunks = 0"],"sourceRoot":""}
--------------------------------------------------------------------------------
/dist/v-media-query.js:
--------------------------------------------------------------------------------
1 | (function webpackUniversalModuleDefinition(root, factory) {
2 | if(typeof exports === 'object' && typeof module === 'object')
3 | module.exports = factory();
4 | else if(typeof define === 'function' && define.amd)
5 | define([], factory);
6 | else if(typeof exports === 'object')
7 | exports["vMediaQuery"] = factory();
8 | else
9 | root["vMediaQuery"] = factory();
10 | })(this, function() {
11 | return /******/ (function(modules) { // webpackBootstrap
12 | /******/ // The module cache
13 | /******/ var installedModules = {};
14 | /******/
15 | /******/ // The require function
16 | /******/ function __webpack_require__(moduleId) {
17 | /******/
18 | /******/ // Check if module is in cache
19 | /******/ if(installedModules[moduleId])
20 | /******/ return installedModules[moduleId].exports;
21 | /******/
22 | /******/ // Create a new module (and put it into the cache)
23 | /******/ var module = installedModules[moduleId] = {
24 | /******/ exports: {},
25 | /******/ id: moduleId,
26 | /******/ loaded: false
27 | /******/ };
28 | /******/
29 | /******/ // Execute the module function
30 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31 | /******/
32 | /******/ // Flag the module as loaded
33 | /******/ module.loaded = true;
34 | /******/
35 | /******/ // Return the exports of the module
36 | /******/ return module.exports;
37 | /******/ }
38 | /******/
39 | /******/
40 | /******/ // expose the modules object (__webpack_modules__)
41 | /******/ __webpack_require__.m = modules;
42 | /******/
43 | /******/ // expose the module cache
44 | /******/ __webpack_require__.c = installedModules;
45 | /******/
46 | /******/ // __webpack_public_path__
47 | /******/ __webpack_require__.p = "/dist/";
48 | /******/
49 | /******/ // Load entry module and return exports
50 | /******/ return __webpack_require__(0);
51 | /******/ })
52 | /************************************************************************/
53 | /******/ ([
54 | /* 0 */
55 | /***/ (function(module, exports, __webpack_require__) {
56 |
57 | 'use strict';
58 |
59 | Object.defineProperty(exports, "__esModule", {
60 | value: true
61 | });
62 |
63 | var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
64 |
65 | var _lodash = __webpack_require__(1);
66 |
67 | var _lodash2 = _interopRequireDefault(_lodash);
68 |
69 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
70 |
71 | // lazy methods
72 | var extend = void 0;
73 | var defineReactive = void 0;
74 |
75 | var mapVmIdToVm = new Map();
76 |
77 | var _nameSpace = {
78 | methods: '$mq',
79 | variables: '$mv'
80 | };
81 | var _methods = { expr: expr, below: below, above: above, beyond: beyond, between: between };
82 | var _mqData = {
83 | created: function created() {
84 | var root = this.$parent;
85 |
86 | if (root) {
87 | defineReactive(this[_nameSpace.methods], 'resize', root[_nameSpace.methods].resize);
88 | } else {
89 | mapVmIdToVm.set(this._uid, this);
90 | defineReactive(this[_nameSpace.methods], 'resize', 1);
91 | }
92 | },
93 | beforeDestroy: function beforeDestroy() {
94 | mapVmIdToVm.delete(this._uid);
95 | }
96 | };
97 |
98 | exports.default = {
99 | methods: _methods,
100 | install: function install(Vue) {
101 | var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
102 | _ref$methods = _ref.methods,
103 | methods = _ref$methods === undefined ? {} : _ref$methods,
104 | _ref$variables = _ref.variables,
105 | variables = _ref$variables === undefined ? {} : _ref$variables,
106 | _ref$nameSpace = _ref.nameSpace,
107 | nameSpace = _ref$nameSpace === undefined ? {} : _ref$nameSpace;
108 |
109 | lazyInitMethods(Vue);
110 | extend(_nameSpace, nameSpace);
111 |
112 | Vue.mixin(_mqData);
113 | Vue.prototype[_nameSpace.methods] = extend(extend({}, _methods), methods);
114 | Vue.prototype[_nameSpace.variables] = variables;
115 |
116 | initResize();
117 | }
118 | };
119 |
120 |
121 | function lazyInitMethods(Vue) {
122 | extend = Vue.util.extend;
123 | defineReactive = Vue.util.defineReactive;
124 | }
125 |
126 | function initResize() {
127 | var throttleResize = (0, _lodash2.default)(function () {
128 | mapVmIdToVm.forEach(function (vm) {
129 | return ++vm[_nameSpace.methods].resize;
130 | });
131 | }, 150);
132 |
133 | window.addEventListener('resize', throttleResize);
134 | }
135 |
136 | function getArgs(args) {
137 | return args.length > 0 ? args.reverse() : args;
138 | }
139 |
140 | function prepare(val) {
141 | return ('' + parseInt(val)).length === ('' + val).length ? val + 'px' : val;
142 | }
143 |
144 | function expr(expressionString) {
145 | return matchMedia(expressionString).matches;
146 | }
147 |
148 | function below() {
149 | for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
150 | args[_key] = arguments[_key];
151 | }
152 |
153 | var _getArgs = getArgs(args),
154 | _getArgs2 = _slicedToArray(_getArgs, 2),
155 | value = _getArgs2[0],
156 | _getArgs2$ = _getArgs2[1],
157 | measurement = _getArgs2$ === undefined ? 'width' : _getArgs2$;
158 |
159 | return matchMedia('(max-' + measurement + ': ' + prepare(value) + ')').matches;
160 | }
161 |
162 | function above() {
163 | for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
164 | args[_key2] = arguments[_key2];
165 | }
166 |
167 | var _getArgs3 = getArgs(args),
168 | _getArgs4 = _slicedToArray(_getArgs3, 2),
169 | value = _getArgs4[0],
170 | _getArgs4$ = _getArgs4[1],
171 | measurement = _getArgs4$ === undefined ? 'width' : _getArgs4$;
172 |
173 | return matchMedia('(min-' + measurement + ': ' + prepare(value) + ')').matches;
174 | }
175 |
176 | function between() {
177 | for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
178 | args[_key3] = arguments[_key3];
179 | }
180 |
181 | var _getArgs5 = getArgs(args),
182 | _getArgs6 = _slicedToArray(_getArgs5, 2),
183 | value = _getArgs6[0],
184 | _getArgs6$ = _getArgs6[1],
185 | measurement = _getArgs6$ === undefined ? 'width' : _getArgs6$;
186 |
187 | var _value = _slicedToArray(value, 2),
188 | minVal = _value[0],
189 | maxVal = _value[1];
190 |
191 | return matchMedia('\n (min-' + measurement + ': ' + prepare(minVal) + ') and\n (max-' + measurement + ': ' + prepare(maxVal) + ')\n ').matches;
192 | }
193 |
194 | function beyond() {
195 | for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
196 | args[_key4] = arguments[_key4];
197 | }
198 |
199 | var _getArgs7 = getArgs(args),
200 | _getArgs8 = _slicedToArray(_getArgs7, 2),
201 | value = _getArgs8[0],
202 | _getArgs8$ = _getArgs8[1],
203 | measurement = _getArgs8$ === undefined ? 'width' : _getArgs8$;
204 |
205 | var _value2 = _slicedToArray(value, 2),
206 | minVal = _value2[0],
207 | maxVal = _value2[1];
208 |
209 | return matchMedia('\n (min-' + measurement + ': ' + prepare(maxVal) + '),\n (max-' + measurement + ': ' + prepare(minVal) + ')\n ').matches;
210 | }
211 |
212 | /***/ }),
213 | /* 1 */
214 | /***/ (function(module, exports) {
215 |
216 | /* WEBPACK VAR INJECTION */(function(global) {/**
217 | * lodash (Custom Build)
218 | * Build: `lodash modularize exports="npm" -o ./`
219 | * Copyright jQuery Foundation and other contributors
220 | * Released under MIT license
221 | * Based on Underscore.js 1.8.3
222 | * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
223 | */
224 |
225 | /** Used as the `TypeError` message for "Functions" methods. */
226 | var FUNC_ERROR_TEXT = 'Expected a function';
227 |
228 | /** Used as references for various `Number` constants. */
229 | var NAN = 0 / 0;
230 |
231 | /** `Object#toString` result references. */
232 | var symbolTag = '[object Symbol]';
233 |
234 | /** Used to match leading and trailing whitespace. */
235 | var reTrim = /^\s+|\s+$/g;
236 |
237 | /** Used to detect bad signed hexadecimal string values. */
238 | var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
239 |
240 | /** Used to detect binary string values. */
241 | var reIsBinary = /^0b[01]+$/i;
242 |
243 | /** Used to detect octal string values. */
244 | var reIsOctal = /^0o[0-7]+$/i;
245 |
246 | /** Built-in method references without a dependency on `root`. */
247 | var freeParseInt = parseInt;
248 |
249 | /** Detect free variable `global` from Node.js. */
250 | var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
251 |
252 | /** Detect free variable `self`. */
253 | var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
254 |
255 | /** Used as a reference to the global object. */
256 | var root = freeGlobal || freeSelf || Function('return this')();
257 |
258 | /** Used for built-in method references. */
259 | var objectProto = Object.prototype;
260 |
261 | /**
262 | * Used to resolve the
263 | * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
264 | * of values.
265 | */
266 | var objectToString = objectProto.toString;
267 |
268 | /* Built-in method references for those with the same name as other `lodash` methods. */
269 | var nativeMax = Math.max,
270 | nativeMin = Math.min;
271 |
272 | /**
273 | * Gets the timestamp of the number of milliseconds that have elapsed since
274 | * the Unix epoch (1 January 1970 00:00:00 UTC).
275 | *
276 | * @static
277 | * @memberOf _
278 | * @since 2.4.0
279 | * @category Date
280 | * @returns {number} Returns the timestamp.
281 | * @example
282 | *
283 | * _.defer(function(stamp) {
284 | * console.log(_.now() - stamp);
285 | * }, _.now());
286 | * // => Logs the number of milliseconds it took for the deferred invocation.
287 | */
288 | var now = function() {
289 | return root.Date.now();
290 | };
291 |
292 | /**
293 | * Creates a debounced function that delays invoking `func` until after `wait`
294 | * milliseconds have elapsed since the last time the debounced function was
295 | * invoked. The debounced function comes with a `cancel` method to cancel
296 | * delayed `func` invocations and a `flush` method to immediately invoke them.
297 | * Provide `options` to indicate whether `func` should be invoked on the
298 | * leading and/or trailing edge of the `wait` timeout. The `func` is invoked
299 | * with the last arguments provided to the debounced function. Subsequent
300 | * calls to the debounced function return the result of the last `func`
301 | * invocation.
302 | *
303 | * **Note:** If `leading` and `trailing` options are `true`, `func` is
304 | * invoked on the trailing edge of the timeout only if the debounced function
305 | * is invoked more than once during the `wait` timeout.
306 | *
307 | * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred
308 | * until to the next tick, similar to `setTimeout` with a timeout of `0`.
309 | *
310 | * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)
311 | * for details over the differences between `_.debounce` and `_.throttle`.
312 | *
313 | * @static
314 | * @memberOf _
315 | * @since 0.1.0
316 | * @category Function
317 | * @param {Function} func The function to debounce.
318 | * @param {number} [wait=0] The number of milliseconds to delay.
319 | * @param {Object} [options={}] The options object.
320 | * @param {boolean} [options.leading=false]
321 | * Specify invoking on the leading edge of the timeout.
322 | * @param {number} [options.maxWait]
323 | * The maximum time `func` is allowed to be delayed before it's invoked.
324 | * @param {boolean} [options.trailing=true]
325 | * Specify invoking on the trailing edge of the timeout.
326 | * @returns {Function} Returns the new debounced function.
327 | * @example
328 | *
329 | * // Avoid costly calculations while the window size is in flux.
330 | * jQuery(window).on('resize', _.debounce(calculateLayout, 150));
331 | *
332 | * // Invoke `sendMail` when clicked, debouncing subsequent calls.
333 | * jQuery(element).on('click', _.debounce(sendMail, 300, {
334 | * 'leading': true,
335 | * 'trailing': false
336 | * }));
337 | *
338 | * // Ensure `batchLog` is invoked once after 1 second of debounced calls.
339 | * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });
340 | * var source = new EventSource('/stream');
341 | * jQuery(source).on('message', debounced);
342 | *
343 | * // Cancel the trailing debounced invocation.
344 | * jQuery(window).on('popstate', debounced.cancel);
345 | */
346 | function debounce(func, wait, options) {
347 | var lastArgs,
348 | lastThis,
349 | maxWait,
350 | result,
351 | timerId,
352 | lastCallTime,
353 | lastInvokeTime = 0,
354 | leading = false,
355 | maxing = false,
356 | trailing = true;
357 |
358 | if (typeof func != 'function') {
359 | throw new TypeError(FUNC_ERROR_TEXT);
360 | }
361 | wait = toNumber(wait) || 0;
362 | if (isObject(options)) {
363 | leading = !!options.leading;
364 | maxing = 'maxWait' in options;
365 | maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
366 | trailing = 'trailing' in options ? !!options.trailing : trailing;
367 | }
368 |
369 | function invokeFunc(time) {
370 | var args = lastArgs,
371 | thisArg = lastThis;
372 |
373 | lastArgs = lastThis = undefined;
374 | lastInvokeTime = time;
375 | result = func.apply(thisArg, args);
376 | return result;
377 | }
378 |
379 | function leadingEdge(time) {
380 | // Reset any `maxWait` timer.
381 | lastInvokeTime = time;
382 | // Start the timer for the trailing edge.
383 | timerId = setTimeout(timerExpired, wait);
384 | // Invoke the leading edge.
385 | return leading ? invokeFunc(time) : result;
386 | }
387 |
388 | function remainingWait(time) {
389 | var timeSinceLastCall = time - lastCallTime,
390 | timeSinceLastInvoke = time - lastInvokeTime,
391 | result = wait - timeSinceLastCall;
392 |
393 | return maxing ? nativeMin(result, maxWait - timeSinceLastInvoke) : result;
394 | }
395 |
396 | function shouldInvoke(time) {
397 | var timeSinceLastCall = time - lastCallTime,
398 | timeSinceLastInvoke = time - lastInvokeTime;
399 |
400 | // Either this is the first call, activity has stopped and we're at the
401 | // trailing edge, the system time has gone backwards and we're treating
402 | // it as the trailing edge, or we've hit the `maxWait` limit.
403 | return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||
404 | (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));
405 | }
406 |
407 | function timerExpired() {
408 | var time = now();
409 | if (shouldInvoke(time)) {
410 | return trailingEdge(time);
411 | }
412 | // Restart the timer.
413 | timerId = setTimeout(timerExpired, remainingWait(time));
414 | }
415 |
416 | function trailingEdge(time) {
417 | timerId = undefined;
418 |
419 | // Only invoke if we have `lastArgs` which means `func` has been
420 | // debounced at least once.
421 | if (trailing && lastArgs) {
422 | return invokeFunc(time);
423 | }
424 | lastArgs = lastThis = undefined;
425 | return result;
426 | }
427 |
428 | function cancel() {
429 | if (timerId !== undefined) {
430 | clearTimeout(timerId);
431 | }
432 | lastInvokeTime = 0;
433 | lastArgs = lastCallTime = lastThis = timerId = undefined;
434 | }
435 |
436 | function flush() {
437 | return timerId === undefined ? result : trailingEdge(now());
438 | }
439 |
440 | function debounced() {
441 | var time = now(),
442 | isInvoking = shouldInvoke(time);
443 |
444 | lastArgs = arguments;
445 | lastThis = this;
446 | lastCallTime = time;
447 |
448 | if (isInvoking) {
449 | if (timerId === undefined) {
450 | return leadingEdge(lastCallTime);
451 | }
452 | if (maxing) {
453 | // Handle invocations in a tight loop.
454 | timerId = setTimeout(timerExpired, wait);
455 | return invokeFunc(lastCallTime);
456 | }
457 | }
458 | if (timerId === undefined) {
459 | timerId = setTimeout(timerExpired, wait);
460 | }
461 | return result;
462 | }
463 | debounced.cancel = cancel;
464 | debounced.flush = flush;
465 | return debounced;
466 | }
467 |
468 | /**
469 | * Creates a throttled function that only invokes `func` at most once per
470 | * every `wait` milliseconds. The throttled function comes with a `cancel`
471 | * method to cancel delayed `func` invocations and a `flush` method to
472 | * immediately invoke them. Provide `options` to indicate whether `func`
473 | * should be invoked on the leading and/or trailing edge of the `wait`
474 | * timeout. The `func` is invoked with the last arguments provided to the
475 | * throttled function. Subsequent calls to the throttled function return the
476 | * result of the last `func` invocation.
477 | *
478 | * **Note:** If `leading` and `trailing` options are `true`, `func` is
479 | * invoked on the trailing edge of the timeout only if the throttled function
480 | * is invoked more than once during the `wait` timeout.
481 | *
482 | * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred
483 | * until to the next tick, similar to `setTimeout` with a timeout of `0`.
484 | *
485 | * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)
486 | * for details over the differences between `_.throttle` and `_.debounce`.
487 | *
488 | * @static
489 | * @memberOf _
490 | * @since 0.1.0
491 | * @category Function
492 | * @param {Function} func The function to throttle.
493 | * @param {number} [wait=0] The number of milliseconds to throttle invocations to.
494 | * @param {Object} [options={}] The options object.
495 | * @param {boolean} [options.leading=true]
496 | * Specify invoking on the leading edge of the timeout.
497 | * @param {boolean} [options.trailing=true]
498 | * Specify invoking on the trailing edge of the timeout.
499 | * @returns {Function} Returns the new throttled function.
500 | * @example
501 | *
502 | * // Avoid excessively updating the position while scrolling.
503 | * jQuery(window).on('scroll', _.throttle(updatePosition, 100));
504 | *
505 | * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.
506 | * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });
507 | * jQuery(element).on('click', throttled);
508 | *
509 | * // Cancel the trailing throttled invocation.
510 | * jQuery(window).on('popstate', throttled.cancel);
511 | */
512 | function throttle(func, wait, options) {
513 | var leading = true,
514 | trailing = true;
515 |
516 | if (typeof func != 'function') {
517 | throw new TypeError(FUNC_ERROR_TEXT);
518 | }
519 | if (isObject(options)) {
520 | leading = 'leading' in options ? !!options.leading : leading;
521 | trailing = 'trailing' in options ? !!options.trailing : trailing;
522 | }
523 | return debounce(func, wait, {
524 | 'leading': leading,
525 | 'maxWait': wait,
526 | 'trailing': trailing
527 | });
528 | }
529 |
530 | /**
531 | * Checks if `value` is the
532 | * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
533 | * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
534 | *
535 | * @static
536 | * @memberOf _
537 | * @since 0.1.0
538 | * @category Lang
539 | * @param {*} value The value to check.
540 | * @returns {boolean} Returns `true` if `value` is an object, else `false`.
541 | * @example
542 | *
543 | * _.isObject({});
544 | * // => true
545 | *
546 | * _.isObject([1, 2, 3]);
547 | * // => true
548 | *
549 | * _.isObject(_.noop);
550 | * // => true
551 | *
552 | * _.isObject(null);
553 | * // => false
554 | */
555 | function isObject(value) {
556 | var type = typeof value;
557 | return !!value && (type == 'object' || type == 'function');
558 | }
559 |
560 | /**
561 | * Checks if `value` is object-like. A value is object-like if it's not `null`
562 | * and has a `typeof` result of "object".
563 | *
564 | * @static
565 | * @memberOf _
566 | * @since 4.0.0
567 | * @category Lang
568 | * @param {*} value The value to check.
569 | * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
570 | * @example
571 | *
572 | * _.isObjectLike({});
573 | * // => true
574 | *
575 | * _.isObjectLike([1, 2, 3]);
576 | * // => true
577 | *
578 | * _.isObjectLike(_.noop);
579 | * // => false
580 | *
581 | * _.isObjectLike(null);
582 | * // => false
583 | */
584 | function isObjectLike(value) {
585 | return !!value && typeof value == 'object';
586 | }
587 |
588 | /**
589 | * Checks if `value` is classified as a `Symbol` primitive or object.
590 | *
591 | * @static
592 | * @memberOf _
593 | * @since 4.0.0
594 | * @category Lang
595 | * @param {*} value The value to check.
596 | * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
597 | * @example
598 | *
599 | * _.isSymbol(Symbol.iterator);
600 | * // => true
601 | *
602 | * _.isSymbol('abc');
603 | * // => false
604 | */
605 | function isSymbol(value) {
606 | return typeof value == 'symbol' ||
607 | (isObjectLike(value) && objectToString.call(value) == symbolTag);
608 | }
609 |
610 | /**
611 | * Converts `value` to a number.
612 | *
613 | * @static
614 | * @memberOf _
615 | * @since 4.0.0
616 | * @category Lang
617 | * @param {*} value The value to process.
618 | * @returns {number} Returns the number.
619 | * @example
620 | *
621 | * _.toNumber(3.2);
622 | * // => 3.2
623 | *
624 | * _.toNumber(Number.MIN_VALUE);
625 | * // => 5e-324
626 | *
627 | * _.toNumber(Infinity);
628 | * // => Infinity
629 | *
630 | * _.toNumber('3.2');
631 | * // => 3.2
632 | */
633 | function toNumber(value) {
634 | if (typeof value == 'number') {
635 | return value;
636 | }
637 | if (isSymbol(value)) {
638 | return NAN;
639 | }
640 | if (isObject(value)) {
641 | var other = typeof value.valueOf == 'function' ? value.valueOf() : value;
642 | value = isObject(other) ? (other + '') : other;
643 | }
644 | if (typeof value != 'string') {
645 | return value === 0 ? value : +value;
646 | }
647 | value = value.replace(reTrim, '');
648 | var isBinary = reIsBinary.test(value);
649 | return (isBinary || reIsOctal.test(value))
650 | ? freeParseInt(value.slice(2), isBinary ? 2 : 8)
651 | : (reIsBadHex.test(value) ? NAN : +value);
652 | }
653 |
654 | module.exports = throttle;
655 |
656 | /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
657 |
658 | /***/ })
659 | /******/ ])
660 | });
661 | ;
662 | //# sourceMappingURL=v-media-query.js.map
--------------------------------------------------------------------------------
/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.1.1"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
8 |
9 | accepts@~1.3.4, accepts@~1.3.5:
10 | version "1.3.5"
11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
12 | dependencies:
13 | mime-types "~2.1.18"
14 | negotiator "0.6.1"
15 |
16 | acorn@^3.0.0:
17 | version "3.3.0"
18 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
19 |
20 | align-text@^0.1.1, align-text@^0.1.3:
21 | version "0.1.4"
22 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
23 | dependencies:
24 | kind-of "^3.0.2"
25 | longest "^1.0.1"
26 | repeat-string "^1.5.2"
27 |
28 | amdefine@>=0.0.4:
29 | version "1.0.1"
30 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
31 |
32 | ansi-regex@^2.0.0:
33 | version "2.1.1"
34 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
35 |
36 | ansi-regex@^3.0.0:
37 | version "3.0.0"
38 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
39 |
40 | ansi-styles@^2.2.1:
41 | version "2.2.1"
42 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
43 |
44 | anymatch@^1.3.0:
45 | version "1.3.2"
46 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
47 | dependencies:
48 | micromatch "^2.1.5"
49 | normalize-path "^2.0.0"
50 |
51 | aproba@^1.0.3:
52 | version "1.2.0"
53 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
54 |
55 | are-we-there-yet@~1.1.2:
56 | version "1.1.5"
57 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
58 | dependencies:
59 | delegates "^1.0.0"
60 | readable-stream "^2.0.6"
61 |
62 | arr-diff@^2.0.0:
63 | version "2.0.0"
64 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
65 | dependencies:
66 | arr-flatten "^1.0.1"
67 |
68 | arr-diff@^4.0.0:
69 | version "4.0.0"
70 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
71 |
72 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
73 | version "1.1.0"
74 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
75 |
76 | arr-union@^3.1.0:
77 | version "3.1.0"
78 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
79 |
80 | array-flatten@1.1.1:
81 | version "1.1.1"
82 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
83 |
84 | array-unique@^0.2.1:
85 | version "0.2.1"
86 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
87 |
88 | array-unique@^0.3.2:
89 | version "0.3.2"
90 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
91 |
92 | assert@^1.1.1:
93 | version "1.4.1"
94 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
95 | dependencies:
96 | util "0.10.3"
97 |
98 | assign-symbols@^1.0.0:
99 | version "1.0.0"
100 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
101 |
102 | async-each@^1.0.0:
103 | version "1.0.1"
104 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
105 |
106 | async@^0.9.0:
107 | version "0.9.2"
108 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d"
109 |
110 | async@^1.3.0:
111 | version "1.5.2"
112 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
113 |
114 | async@~0.2.6:
115 | version "0.2.10"
116 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
117 |
118 | atob@^2.1.1:
119 | version "2.1.2"
120 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
121 |
122 | babel-code-frame@^6.26.0:
123 | version "6.26.0"
124 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
125 | dependencies:
126 | chalk "^1.1.3"
127 | esutils "^2.0.2"
128 | js-tokens "^3.0.2"
129 |
130 | babel-core@^6.26.0, babel-core@^6.5.2:
131 | version "6.26.3"
132 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
133 | dependencies:
134 | babel-code-frame "^6.26.0"
135 | babel-generator "^6.26.0"
136 | babel-helpers "^6.24.1"
137 | babel-messages "^6.23.0"
138 | babel-register "^6.26.0"
139 | babel-runtime "^6.26.0"
140 | babel-template "^6.26.0"
141 | babel-traverse "^6.26.0"
142 | babel-types "^6.26.0"
143 | babylon "^6.18.0"
144 | convert-source-map "^1.5.1"
145 | debug "^2.6.9"
146 | json5 "^0.5.1"
147 | lodash "^4.17.4"
148 | minimatch "^3.0.4"
149 | path-is-absolute "^1.0.1"
150 | private "^0.1.8"
151 | slash "^1.0.0"
152 | source-map "^0.5.7"
153 |
154 | babel-generator@^6.26.0:
155 | version "6.26.1"
156 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
157 | dependencies:
158 | babel-messages "^6.23.0"
159 | babel-runtime "^6.26.0"
160 | babel-types "^6.26.0"
161 | detect-indent "^4.0.0"
162 | jsesc "^1.3.0"
163 | lodash "^4.17.4"
164 | source-map "^0.5.7"
165 | trim-right "^1.0.1"
166 |
167 | babel-helper-call-delegate@^6.24.1:
168 | version "6.24.1"
169 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
170 | dependencies:
171 | babel-helper-hoist-variables "^6.24.1"
172 | babel-runtime "^6.22.0"
173 | babel-traverse "^6.24.1"
174 | babel-types "^6.24.1"
175 |
176 | babel-helper-define-map@^6.24.1:
177 | version "6.26.0"
178 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
179 | dependencies:
180 | babel-helper-function-name "^6.24.1"
181 | babel-runtime "^6.26.0"
182 | babel-types "^6.26.0"
183 | lodash "^4.17.4"
184 |
185 | babel-helper-function-name@^6.24.1:
186 | version "6.24.1"
187 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
188 | dependencies:
189 | babel-helper-get-function-arity "^6.24.1"
190 | babel-runtime "^6.22.0"
191 | babel-template "^6.24.1"
192 | babel-traverse "^6.24.1"
193 | babel-types "^6.24.1"
194 |
195 | babel-helper-get-function-arity@^6.24.1:
196 | version "6.24.1"
197 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
198 | dependencies:
199 | babel-runtime "^6.22.0"
200 | babel-types "^6.24.1"
201 |
202 | babel-helper-hoist-variables@^6.24.1:
203 | version "6.24.1"
204 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
205 | dependencies:
206 | babel-runtime "^6.22.0"
207 | babel-types "^6.24.1"
208 |
209 | babel-helper-optimise-call-expression@^6.24.1:
210 | version "6.24.1"
211 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
212 | dependencies:
213 | babel-runtime "^6.22.0"
214 | babel-types "^6.24.1"
215 |
216 | babel-helper-regex@^6.24.1:
217 | version "6.26.0"
218 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
219 | dependencies:
220 | babel-runtime "^6.26.0"
221 | babel-types "^6.26.0"
222 | lodash "^4.17.4"
223 |
224 | babel-helper-replace-supers@^6.24.1:
225 | version "6.24.1"
226 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
227 | dependencies:
228 | babel-helper-optimise-call-expression "^6.24.1"
229 | babel-messages "^6.23.0"
230 | babel-runtime "^6.22.0"
231 | babel-template "^6.24.1"
232 | babel-traverse "^6.24.1"
233 | babel-types "^6.24.1"
234 |
235 | babel-helpers@^6.24.1:
236 | version "6.24.1"
237 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
238 | dependencies:
239 | babel-runtime "^6.22.0"
240 | babel-template "^6.24.1"
241 |
242 | babel-loader@^6.2.3:
243 | version "6.4.1"
244 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca"
245 | dependencies:
246 | find-cache-dir "^0.1.1"
247 | loader-utils "^0.2.16"
248 | mkdirp "^0.5.1"
249 | object-assign "^4.0.1"
250 |
251 | babel-messages@^6.23.0:
252 | version "6.23.0"
253 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
254 | dependencies:
255 | babel-runtime "^6.22.0"
256 |
257 | babel-plugin-check-es2015-constants@^6.22.0:
258 | version "6.22.0"
259 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
260 | dependencies:
261 | babel-runtime "^6.22.0"
262 |
263 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
264 | version "6.22.0"
265 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
266 | dependencies:
267 | babel-runtime "^6.22.0"
268 |
269 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
270 | version "6.22.0"
271 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
272 | dependencies:
273 | babel-runtime "^6.22.0"
274 |
275 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
276 | version "6.26.0"
277 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
278 | dependencies:
279 | babel-runtime "^6.26.0"
280 | babel-template "^6.26.0"
281 | babel-traverse "^6.26.0"
282 | babel-types "^6.26.0"
283 | lodash "^4.17.4"
284 |
285 | babel-plugin-transform-es2015-classes@^6.24.1:
286 | version "6.24.1"
287 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
288 | dependencies:
289 | babel-helper-define-map "^6.24.1"
290 | babel-helper-function-name "^6.24.1"
291 | babel-helper-optimise-call-expression "^6.24.1"
292 | babel-helper-replace-supers "^6.24.1"
293 | babel-messages "^6.23.0"
294 | babel-runtime "^6.22.0"
295 | babel-template "^6.24.1"
296 | babel-traverse "^6.24.1"
297 | babel-types "^6.24.1"
298 |
299 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
300 | version "6.24.1"
301 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
302 | dependencies:
303 | babel-runtime "^6.22.0"
304 | babel-template "^6.24.1"
305 |
306 | babel-plugin-transform-es2015-destructuring@^6.22.0:
307 | version "6.23.0"
308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
309 | dependencies:
310 | babel-runtime "^6.22.0"
311 |
312 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
313 | version "6.24.1"
314 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
315 | dependencies:
316 | babel-runtime "^6.22.0"
317 | babel-types "^6.24.1"
318 |
319 | babel-plugin-transform-es2015-for-of@^6.22.0:
320 | version "6.23.0"
321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
322 | dependencies:
323 | babel-runtime "^6.22.0"
324 |
325 | babel-plugin-transform-es2015-function-name@^6.24.1:
326 | version "6.24.1"
327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
328 | dependencies:
329 | babel-helper-function-name "^6.24.1"
330 | babel-runtime "^6.22.0"
331 | babel-types "^6.24.1"
332 |
333 | babel-plugin-transform-es2015-literals@^6.22.0:
334 | version "6.22.0"
335 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
336 | dependencies:
337 | babel-runtime "^6.22.0"
338 |
339 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
340 | version "6.24.1"
341 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
342 | dependencies:
343 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
344 | babel-runtime "^6.22.0"
345 | babel-template "^6.24.1"
346 |
347 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
348 | version "6.26.2"
349 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
350 | dependencies:
351 | babel-plugin-transform-strict-mode "^6.24.1"
352 | babel-runtime "^6.26.0"
353 | babel-template "^6.26.0"
354 | babel-types "^6.26.0"
355 |
356 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
357 | version "6.24.1"
358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
359 | dependencies:
360 | babel-helper-hoist-variables "^6.24.1"
361 | babel-runtime "^6.22.0"
362 | babel-template "^6.24.1"
363 |
364 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
365 | version "6.24.1"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
367 | dependencies:
368 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
369 | babel-runtime "^6.22.0"
370 | babel-template "^6.24.1"
371 |
372 | babel-plugin-transform-es2015-object-super@^6.24.1:
373 | version "6.24.1"
374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
375 | dependencies:
376 | babel-helper-replace-supers "^6.24.1"
377 | babel-runtime "^6.22.0"
378 |
379 | babel-plugin-transform-es2015-parameters@^6.24.1:
380 | version "6.24.1"
381 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
382 | dependencies:
383 | babel-helper-call-delegate "^6.24.1"
384 | babel-helper-get-function-arity "^6.24.1"
385 | babel-runtime "^6.22.0"
386 | babel-template "^6.24.1"
387 | babel-traverse "^6.24.1"
388 | babel-types "^6.24.1"
389 |
390 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
391 | version "6.24.1"
392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
393 | dependencies:
394 | babel-runtime "^6.22.0"
395 | babel-types "^6.24.1"
396 |
397 | babel-plugin-transform-es2015-spread@^6.22.0:
398 | version "6.22.0"
399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
400 | dependencies:
401 | babel-runtime "^6.22.0"
402 |
403 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
404 | version "6.24.1"
405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
406 | dependencies:
407 | babel-helper-regex "^6.24.1"
408 | babel-runtime "^6.22.0"
409 | babel-types "^6.24.1"
410 |
411 | babel-plugin-transform-es2015-template-literals@^6.22.0:
412 | version "6.22.0"
413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
414 | dependencies:
415 | babel-runtime "^6.22.0"
416 |
417 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
418 | version "6.23.0"
419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
420 | dependencies:
421 | babel-runtime "^6.22.0"
422 |
423 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
424 | version "6.24.1"
425 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
426 | dependencies:
427 | babel-helper-regex "^6.24.1"
428 | babel-runtime "^6.22.0"
429 | regexpu-core "^2.0.0"
430 |
431 | babel-plugin-transform-regenerator@^6.24.1:
432 | version "6.26.0"
433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
434 | dependencies:
435 | regenerator-transform "^0.10.0"
436 |
437 | babel-plugin-transform-strict-mode@^6.24.1:
438 | version "6.24.1"
439 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
440 | dependencies:
441 | babel-runtime "^6.22.0"
442 | babel-types "^6.24.1"
443 |
444 | babel-preset-es2015@^6.5.0:
445 | version "6.24.1"
446 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
447 | dependencies:
448 | babel-plugin-check-es2015-constants "^6.22.0"
449 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
450 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
451 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
452 | babel-plugin-transform-es2015-classes "^6.24.1"
453 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
454 | babel-plugin-transform-es2015-destructuring "^6.22.0"
455 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
456 | babel-plugin-transform-es2015-for-of "^6.22.0"
457 | babel-plugin-transform-es2015-function-name "^6.24.1"
458 | babel-plugin-transform-es2015-literals "^6.22.0"
459 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
460 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
461 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
462 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
463 | babel-plugin-transform-es2015-object-super "^6.24.1"
464 | babel-plugin-transform-es2015-parameters "^6.24.1"
465 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
466 | babel-plugin-transform-es2015-spread "^6.22.0"
467 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
468 | babel-plugin-transform-es2015-template-literals "^6.22.0"
469 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
470 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
471 | babel-plugin-transform-regenerator "^6.24.1"
472 |
473 | babel-register@^6.26.0:
474 | version "6.26.0"
475 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
476 | dependencies:
477 | babel-core "^6.26.0"
478 | babel-runtime "^6.26.0"
479 | core-js "^2.5.0"
480 | home-or-tmp "^2.0.0"
481 | lodash "^4.17.4"
482 | mkdirp "^0.5.1"
483 | source-map-support "^0.4.15"
484 |
485 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
486 | version "6.26.0"
487 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
488 | dependencies:
489 | core-js "^2.4.0"
490 | regenerator-runtime "^0.11.0"
491 |
492 | babel-template@^6.24.1, babel-template@^6.26.0:
493 | version "6.26.0"
494 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
495 | dependencies:
496 | babel-runtime "^6.26.0"
497 | babel-traverse "^6.26.0"
498 | babel-types "^6.26.0"
499 | babylon "^6.18.0"
500 | lodash "^4.17.4"
501 |
502 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
503 | version "6.26.0"
504 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
505 | dependencies:
506 | babel-code-frame "^6.26.0"
507 | babel-messages "^6.23.0"
508 | babel-runtime "^6.26.0"
509 | babel-types "^6.26.0"
510 | babylon "^6.18.0"
511 | debug "^2.6.8"
512 | globals "^9.18.0"
513 | invariant "^2.2.2"
514 | lodash "^4.17.4"
515 |
516 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
517 | version "6.26.0"
518 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
519 | dependencies:
520 | babel-runtime "^6.26.0"
521 | esutils "^2.0.2"
522 | lodash "^4.17.4"
523 | to-fast-properties "^1.0.3"
524 |
525 | babylon@^6.18.0:
526 | version "6.18.0"
527 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
528 |
529 | balanced-match@^1.0.0:
530 | version "1.0.0"
531 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
532 |
533 | base64-js@^1.0.2:
534 | version "1.3.0"
535 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3"
536 |
537 | base@^0.11.1:
538 | version "0.11.2"
539 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
540 | dependencies:
541 | cache-base "^1.0.1"
542 | class-utils "^0.3.5"
543 | component-emitter "^1.2.1"
544 | define-property "^1.0.0"
545 | isobject "^3.0.1"
546 | mixin-deep "^1.2.0"
547 | pascalcase "^0.1.1"
548 |
549 | batch@0.6.1:
550 | version "0.6.1"
551 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
552 |
553 | big.js@^3.1.3:
554 | version "3.2.0"
555 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
556 |
557 | binary-extensions@^1.0.0:
558 | version "1.12.0"
559 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14"
560 |
561 | body-parser@1.18.3:
562 | version "1.18.3"
563 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4"
564 | dependencies:
565 | bytes "3.0.0"
566 | content-type "~1.0.4"
567 | debug "2.6.9"
568 | depd "~1.1.2"
569 | http-errors "~1.6.3"
570 | iconv-lite "0.4.23"
571 | on-finished "~2.3.0"
572 | qs "6.5.2"
573 | raw-body "2.3.3"
574 | type-is "~1.6.16"
575 |
576 | brace-expansion@^1.1.7:
577 | version "1.1.11"
578 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
579 | dependencies:
580 | balanced-match "^1.0.0"
581 | concat-map "0.0.1"
582 |
583 | braces@^1.8.2:
584 | version "1.8.5"
585 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
586 | dependencies:
587 | expand-range "^1.8.1"
588 | preserve "^0.2.0"
589 | repeat-element "^1.1.2"
590 |
591 | braces@^2.3.1:
592 | version "2.3.2"
593 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
594 | dependencies:
595 | arr-flatten "^1.1.0"
596 | array-unique "^0.3.2"
597 | extend-shallow "^2.0.1"
598 | fill-range "^4.0.0"
599 | isobject "^3.0.1"
600 | repeat-element "^1.1.2"
601 | snapdragon "^0.8.1"
602 | snapdragon-node "^2.0.1"
603 | split-string "^3.0.2"
604 | to-regex "^3.0.1"
605 |
606 | browserify-aes@0.4.0:
607 | version "0.4.0"
608 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c"
609 | dependencies:
610 | inherits "^2.0.1"
611 |
612 | browserify-zlib@^0.1.4:
613 | version "0.1.4"
614 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
615 | dependencies:
616 | pako "~0.2.0"
617 |
618 | buffer@^4.9.0:
619 | version "4.9.1"
620 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
621 | dependencies:
622 | base64-js "^1.0.2"
623 | ieee754 "^1.1.4"
624 | isarray "^1.0.0"
625 |
626 | builtin-status-codes@^3.0.0:
627 | version "3.0.0"
628 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
629 |
630 | bytes@3.0.0:
631 | version "3.0.0"
632 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
633 |
634 | cache-base@^1.0.1:
635 | version "1.0.1"
636 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
637 | dependencies:
638 | collection-visit "^1.0.0"
639 | component-emitter "^1.2.1"
640 | get-value "^2.0.6"
641 | has-value "^1.0.0"
642 | isobject "^3.0.1"
643 | set-value "^2.0.0"
644 | to-object-path "^0.3.0"
645 | union-value "^1.0.0"
646 | unset-value "^1.0.0"
647 |
648 | camelcase@^1.0.2:
649 | version "1.2.1"
650 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
651 |
652 | center-align@^0.1.1:
653 | version "0.1.3"
654 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
655 | dependencies:
656 | align-text "^0.1.3"
657 | lazy-cache "^1.0.3"
658 |
659 | chalk@^1.1.3:
660 | version "1.1.3"
661 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
662 | dependencies:
663 | ansi-styles "^2.2.1"
664 | escape-string-regexp "^1.0.2"
665 | has-ansi "^2.0.0"
666 | strip-ansi "^3.0.0"
667 | supports-color "^2.0.0"
668 |
669 | chokidar@^1.0.0:
670 | version "1.7.0"
671 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
672 | dependencies:
673 | anymatch "^1.3.0"
674 | async-each "^1.0.0"
675 | glob-parent "^2.0.0"
676 | inherits "^2.0.1"
677 | is-binary-path "^1.0.0"
678 | is-glob "^2.0.0"
679 | path-is-absolute "^1.0.0"
680 | readdirp "^2.0.0"
681 | optionalDependencies:
682 | fsevents "^1.0.0"
683 |
684 | chownr@^1.1.1:
685 | version "1.1.1"
686 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
687 |
688 | class-utils@^0.3.5:
689 | version "0.3.6"
690 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
691 | dependencies:
692 | arr-union "^3.1.0"
693 | define-property "^0.2.5"
694 | isobject "^3.0.0"
695 | static-extend "^0.1.1"
696 |
697 | cliui@^2.1.0:
698 | version "2.1.0"
699 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
700 | dependencies:
701 | center-align "^0.1.1"
702 | right-align "^0.1.1"
703 | wordwrap "0.0.2"
704 |
705 | clone@^1.0.2:
706 | version "1.0.4"
707 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
708 |
709 | code-point-at@^1.0.0:
710 | version "1.1.0"
711 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
712 |
713 | collection-visit@^1.0.0:
714 | version "1.0.0"
715 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
716 | dependencies:
717 | map-visit "^1.0.0"
718 | object-visit "^1.0.0"
719 |
720 | commondir@^1.0.1:
721 | version "1.0.1"
722 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
723 |
724 | component-emitter@^1.2.1:
725 | version "1.2.1"
726 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
727 |
728 | compressible@~2.0.14:
729 | version "2.0.15"
730 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.15.tgz#857a9ab0a7e5a07d8d837ed43fe2defff64fe212"
731 | dependencies:
732 | mime-db ">= 1.36.0 < 2"
733 |
734 | compression@^1.5.2:
735 | version "1.7.3"
736 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db"
737 | dependencies:
738 | accepts "~1.3.5"
739 | bytes "3.0.0"
740 | compressible "~2.0.14"
741 | debug "2.6.9"
742 | on-headers "~1.0.1"
743 | safe-buffer "5.1.2"
744 | vary "~1.1.2"
745 |
746 | concat-map@0.0.1:
747 | version "0.0.1"
748 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
749 |
750 | connect-history-api-fallback@^1.3.0:
751 | version "1.6.0"
752 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
753 |
754 | console-browserify@^1.1.0:
755 | version "1.1.0"
756 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
757 | dependencies:
758 | date-now "^0.1.4"
759 |
760 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
761 | version "1.1.0"
762 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
763 |
764 | constants-browserify@^1.0.0:
765 | version "1.0.0"
766 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
767 |
768 | content-disposition@0.5.2:
769 | version "0.5.2"
770 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
771 |
772 | content-type@~1.0.4:
773 | version "1.0.4"
774 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
775 |
776 | convert-source-map@^1.5.1:
777 | version "1.6.0"
778 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
779 | dependencies:
780 | safe-buffer "~5.1.1"
781 |
782 | cookie-signature@1.0.6:
783 | version "1.0.6"
784 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
785 |
786 | cookie@0.3.1:
787 | version "0.3.1"
788 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
789 |
790 | copy-descriptor@^0.1.0:
791 | version "0.1.1"
792 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
793 |
794 | core-js@^2.4.0, core-js@^2.5.0:
795 | version "2.6.2"
796 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.2.tgz#267988d7268323b349e20b4588211655f0e83944"
797 |
798 | core-util-is@~1.0.0:
799 | version "1.0.2"
800 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
801 |
802 | crypto-browserify@3.3.0:
803 | version "3.3.0"
804 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c"
805 | dependencies:
806 | browserify-aes "0.4.0"
807 | pbkdf2-compat "2.0.1"
808 | ripemd160 "0.2.0"
809 | sha.js "2.2.6"
810 |
811 | date-now@^0.1.4:
812 | version "0.1.4"
813 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
814 |
815 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
816 | version "2.6.9"
817 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
818 | dependencies:
819 | ms "2.0.0"
820 |
821 | debug@=3.1.0:
822 | version "3.1.0"
823 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
824 | dependencies:
825 | ms "2.0.0"
826 |
827 | debug@^3.2.5:
828 | version "3.2.6"
829 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
830 | dependencies:
831 | ms "^2.1.1"
832 |
833 | decamelize@^1.0.0:
834 | version "1.2.0"
835 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
836 |
837 | decode-uri-component@^0.2.0:
838 | version "0.2.0"
839 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
840 |
841 | deep-extend@^0.6.0:
842 | version "0.6.0"
843 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
844 |
845 | define-property@^0.2.5:
846 | version "0.2.5"
847 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
848 | dependencies:
849 | is-descriptor "^0.1.0"
850 |
851 | define-property@^1.0.0:
852 | version "1.0.0"
853 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
854 | dependencies:
855 | is-descriptor "^1.0.0"
856 |
857 | define-property@^2.0.2:
858 | version "2.0.2"
859 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
860 | dependencies:
861 | is-descriptor "^1.0.2"
862 | isobject "^3.0.1"
863 |
864 | delegates@^1.0.0:
865 | version "1.0.0"
866 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
867 |
868 | depd@~1.1.2:
869 | version "1.1.2"
870 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
871 |
872 | destroy@~1.0.4:
873 | version "1.0.4"
874 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
875 |
876 | detect-indent@^4.0.0:
877 | version "4.0.0"
878 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
879 | dependencies:
880 | repeating "^2.0.0"
881 |
882 | detect-libc@^1.0.2:
883 | version "1.0.3"
884 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
885 |
886 | domain-browser@^1.1.1:
887 | version "1.2.0"
888 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
889 |
890 | ee-first@1.1.1:
891 | version "1.1.1"
892 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
893 |
894 | emojis-list@^2.0.0:
895 | version "2.1.0"
896 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
897 |
898 | encodeurl@~1.0.2:
899 | version "1.0.2"
900 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
901 |
902 | enhanced-resolve@~0.9.0:
903 | version "0.9.1"
904 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e"
905 | dependencies:
906 | graceful-fs "^4.1.2"
907 | memory-fs "^0.2.0"
908 | tapable "^0.1.8"
909 |
910 | errno@^0.1.3:
911 | version "0.1.7"
912 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
913 | dependencies:
914 | prr "~1.0.1"
915 |
916 | escape-html@~1.0.3:
917 | version "1.0.3"
918 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
919 |
920 | escape-string-regexp@^1.0.2:
921 | version "1.0.5"
922 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
923 |
924 | esutils@^2.0.2:
925 | version "2.0.2"
926 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
927 |
928 | etag@~1.8.1:
929 | version "1.8.1"
930 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
931 |
932 | eventemitter3@^3.0.0:
933 | version "3.1.0"
934 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163"
935 |
936 | events@^1.0.0:
937 | version "1.1.1"
938 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
939 |
940 | eventsource@^1.0.7:
941 | version "1.0.7"
942 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0"
943 | dependencies:
944 | original "^1.0.0"
945 |
946 | expand-brackets@^0.1.4:
947 | version "0.1.5"
948 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
949 | dependencies:
950 | is-posix-bracket "^0.1.0"
951 |
952 | expand-brackets@^2.1.4:
953 | version "2.1.4"
954 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
955 | dependencies:
956 | debug "^2.3.3"
957 | define-property "^0.2.5"
958 | extend-shallow "^2.0.1"
959 | posix-character-classes "^0.1.0"
960 | regex-not "^1.0.0"
961 | snapdragon "^0.8.1"
962 | to-regex "^3.0.1"
963 |
964 | expand-range@^1.8.1:
965 | version "1.8.2"
966 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
967 | dependencies:
968 | fill-range "^2.1.0"
969 |
970 | express@^4.13.3:
971 | version "4.16.4"
972 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e"
973 | dependencies:
974 | accepts "~1.3.5"
975 | array-flatten "1.1.1"
976 | body-parser "1.18.3"
977 | content-disposition "0.5.2"
978 | content-type "~1.0.4"
979 | cookie "0.3.1"
980 | cookie-signature "1.0.6"
981 | debug "2.6.9"
982 | depd "~1.1.2"
983 | encodeurl "~1.0.2"
984 | escape-html "~1.0.3"
985 | etag "~1.8.1"
986 | finalhandler "1.1.1"
987 | fresh "0.5.2"
988 | merge-descriptors "1.0.1"
989 | methods "~1.1.2"
990 | on-finished "~2.3.0"
991 | parseurl "~1.3.2"
992 | path-to-regexp "0.1.7"
993 | proxy-addr "~2.0.4"
994 | qs "6.5.2"
995 | range-parser "~1.2.0"
996 | safe-buffer "5.1.2"
997 | send "0.16.2"
998 | serve-static "1.13.2"
999 | setprototypeof "1.1.0"
1000 | statuses "~1.4.0"
1001 | type-is "~1.6.16"
1002 | utils-merge "1.0.1"
1003 | vary "~1.1.2"
1004 |
1005 | extend-shallow@^2.0.1:
1006 | version "2.0.1"
1007 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1008 | dependencies:
1009 | is-extendable "^0.1.0"
1010 |
1011 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1012 | version "3.0.2"
1013 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1014 | dependencies:
1015 | assign-symbols "^1.0.0"
1016 | is-extendable "^1.0.1"
1017 |
1018 | extglob@^0.3.1:
1019 | version "0.3.2"
1020 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1021 | dependencies:
1022 | is-extglob "^1.0.0"
1023 |
1024 | extglob@^2.0.4:
1025 | version "2.0.4"
1026 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1027 | dependencies:
1028 | array-unique "^0.3.2"
1029 | define-property "^1.0.0"
1030 | expand-brackets "^2.1.4"
1031 | extend-shallow "^2.0.1"
1032 | fragment-cache "^0.2.1"
1033 | regex-not "^1.0.0"
1034 | snapdragon "^0.8.1"
1035 | to-regex "^3.0.1"
1036 |
1037 | faye-websocket@^0.10.0:
1038 | version "0.10.0"
1039 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
1040 | dependencies:
1041 | websocket-driver ">=0.5.1"
1042 |
1043 | faye-websocket@~0.11.1:
1044 | version "0.11.1"
1045 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"
1046 | dependencies:
1047 | websocket-driver ">=0.5.1"
1048 |
1049 | filename-regex@^2.0.0:
1050 | version "2.0.1"
1051 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1052 |
1053 | fill-range@^2.1.0:
1054 | version "2.2.4"
1055 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1056 | dependencies:
1057 | is-number "^2.1.0"
1058 | isobject "^2.0.0"
1059 | randomatic "^3.0.0"
1060 | repeat-element "^1.1.2"
1061 | repeat-string "^1.5.2"
1062 |
1063 | fill-range@^4.0.0:
1064 | version "4.0.0"
1065 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1066 | dependencies:
1067 | extend-shallow "^2.0.1"
1068 | is-number "^3.0.0"
1069 | repeat-string "^1.6.1"
1070 | to-regex-range "^2.1.0"
1071 |
1072 | finalhandler@1.1.1:
1073 | version "1.1.1"
1074 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
1075 | dependencies:
1076 | debug "2.6.9"
1077 | encodeurl "~1.0.2"
1078 | escape-html "~1.0.3"
1079 | on-finished "~2.3.0"
1080 | parseurl "~1.3.2"
1081 | statuses "~1.4.0"
1082 | unpipe "~1.0.0"
1083 |
1084 | find-cache-dir@^0.1.1:
1085 | version "0.1.1"
1086 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1087 | dependencies:
1088 | commondir "^1.0.1"
1089 | mkdirp "^0.5.1"
1090 | pkg-dir "^1.0.0"
1091 |
1092 | find-up@^1.0.0:
1093 | version "1.1.2"
1094 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1095 | dependencies:
1096 | path-exists "^2.0.0"
1097 | pinkie-promise "^2.0.0"
1098 |
1099 | follow-redirects@^1.0.0:
1100 | version "1.6.1"
1101 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.6.1.tgz#514973c44b5757368bad8bddfe52f81f015c94cb"
1102 | dependencies:
1103 | debug "=3.1.0"
1104 |
1105 | for-in@^1.0.1, for-in@^1.0.2:
1106 | version "1.0.2"
1107 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1108 |
1109 | for-own@^0.1.4:
1110 | version "0.1.5"
1111 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1112 | dependencies:
1113 | for-in "^1.0.1"
1114 |
1115 | forwarded@~0.1.2:
1116 | version "0.1.2"
1117 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1118 |
1119 | fragment-cache@^0.2.1:
1120 | version "0.2.1"
1121 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1122 | dependencies:
1123 | map-cache "^0.2.2"
1124 |
1125 | fresh@0.5.2:
1126 | version "0.5.2"
1127 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1128 |
1129 | fs-minipass@^1.2.5:
1130 | version "1.2.5"
1131 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1132 | dependencies:
1133 | minipass "^2.2.1"
1134 |
1135 | fs.realpath@^1.0.0:
1136 | version "1.0.0"
1137 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1138 |
1139 | fsevents@^1.0.0:
1140 | version "1.2.6"
1141 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.6.tgz#d3a1864a71876a2eb9b244e3bd8f606eb09568c0"
1142 | dependencies:
1143 | nan "^2.9.2"
1144 | node-pre-gyp "^0.10.0"
1145 |
1146 | gauge@~2.7.3:
1147 | version "2.7.4"
1148 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1149 | dependencies:
1150 | aproba "^1.0.3"
1151 | console-control-strings "^1.0.0"
1152 | has-unicode "^2.0.0"
1153 | object-assign "^4.1.0"
1154 | signal-exit "^3.0.0"
1155 | string-width "^1.0.1"
1156 | strip-ansi "^3.0.1"
1157 | wide-align "^1.1.0"
1158 |
1159 | get-value@^2.0.3, get-value@^2.0.6:
1160 | version "2.0.6"
1161 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1162 |
1163 | glob-base@^0.3.0:
1164 | version "0.3.0"
1165 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1166 | dependencies:
1167 | glob-parent "^2.0.0"
1168 | is-glob "^2.0.0"
1169 |
1170 | glob-parent@^2.0.0:
1171 | version "2.0.0"
1172 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1173 | dependencies:
1174 | is-glob "^2.0.0"
1175 |
1176 | glob@^7.1.3:
1177 | version "7.1.3"
1178 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
1179 | dependencies:
1180 | fs.realpath "^1.0.0"
1181 | inflight "^1.0.4"
1182 | inherits "2"
1183 | minimatch "^3.0.4"
1184 | once "^1.3.0"
1185 | path-is-absolute "^1.0.0"
1186 |
1187 | globals@^9.18.0:
1188 | version "9.18.0"
1189 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1190 |
1191 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1192 | version "4.1.15"
1193 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
1194 |
1195 | has-ansi@^2.0.0:
1196 | version "2.0.0"
1197 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1198 | dependencies:
1199 | ansi-regex "^2.0.0"
1200 |
1201 | has-flag@^1.0.0:
1202 | version "1.0.0"
1203 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1204 |
1205 | has-unicode@^2.0.0:
1206 | version "2.0.1"
1207 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1208 |
1209 | has-value@^0.3.1:
1210 | version "0.3.1"
1211 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1212 | dependencies:
1213 | get-value "^2.0.3"
1214 | has-values "^0.1.4"
1215 | isobject "^2.0.0"
1216 |
1217 | has-value@^1.0.0:
1218 | version "1.0.0"
1219 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1220 | dependencies:
1221 | get-value "^2.0.6"
1222 | has-values "^1.0.0"
1223 | isobject "^3.0.0"
1224 |
1225 | has-values@^0.1.4:
1226 | version "0.1.4"
1227 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1228 |
1229 | has-values@^1.0.0:
1230 | version "1.0.0"
1231 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1232 | dependencies:
1233 | is-number "^3.0.0"
1234 | kind-of "^4.0.0"
1235 |
1236 | home-or-tmp@^2.0.0:
1237 | version "2.0.0"
1238 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1239 | dependencies:
1240 | os-homedir "^1.0.0"
1241 | os-tmpdir "^1.0.1"
1242 |
1243 | http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3:
1244 | version "1.6.3"
1245 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
1246 | dependencies:
1247 | depd "~1.1.2"
1248 | inherits "2.0.3"
1249 | setprototypeof "1.1.0"
1250 | statuses ">= 1.4.0 < 2"
1251 |
1252 | http-parser-js@>=0.4.0:
1253 | version "0.5.0"
1254 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.0.tgz#d65edbede84349d0dc30320815a15d39cc3cbbd8"
1255 |
1256 | http-proxy-middleware@~0.17.1:
1257 | version "0.17.4"
1258 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833"
1259 | dependencies:
1260 | http-proxy "^1.16.2"
1261 | is-glob "^3.1.0"
1262 | lodash "^4.17.2"
1263 | micromatch "^2.3.11"
1264 |
1265 | http-proxy@^1.16.2:
1266 | version "1.17.0"
1267 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a"
1268 | dependencies:
1269 | eventemitter3 "^3.0.0"
1270 | follow-redirects "^1.0.0"
1271 | requires-port "^1.0.0"
1272 |
1273 | https-browserify@0.0.1:
1274 | version "0.0.1"
1275 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1276 |
1277 | iconv-lite@0.4.23:
1278 | version "0.4.23"
1279 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
1280 | dependencies:
1281 | safer-buffer ">= 2.1.2 < 3"
1282 |
1283 | iconv-lite@^0.4.4:
1284 | version "0.4.24"
1285 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1286 | dependencies:
1287 | safer-buffer ">= 2.1.2 < 3"
1288 |
1289 | ieee754@^1.1.4:
1290 | version "1.1.12"
1291 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b"
1292 |
1293 | ignore-walk@^3.0.1:
1294 | version "3.0.1"
1295 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1296 | dependencies:
1297 | minimatch "^3.0.4"
1298 |
1299 | indexof@0.0.1:
1300 | version "0.0.1"
1301 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1302 |
1303 | inflight@^1.0.4:
1304 | version "1.0.6"
1305 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1306 | dependencies:
1307 | once "^1.3.0"
1308 | wrappy "1"
1309 |
1310 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
1311 | version "2.0.3"
1312 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1313 |
1314 | inherits@2.0.1:
1315 | version "2.0.1"
1316 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1317 |
1318 | ini@~1.3.0:
1319 | version "1.3.5"
1320 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1321 |
1322 | interpret@^0.6.4:
1323 | version "0.6.6"
1324 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"
1325 |
1326 | invariant@^2.2.2:
1327 | version "2.2.4"
1328 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1329 | dependencies:
1330 | loose-envify "^1.0.0"
1331 |
1332 | ipaddr.js@1.8.0:
1333 | version "1.8.0"
1334 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"
1335 |
1336 | is-accessor-descriptor@^0.1.6:
1337 | version "0.1.6"
1338 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1339 | dependencies:
1340 | kind-of "^3.0.2"
1341 |
1342 | is-accessor-descriptor@^1.0.0:
1343 | version "1.0.0"
1344 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1345 | dependencies:
1346 | kind-of "^6.0.0"
1347 |
1348 | is-binary-path@^1.0.0:
1349 | version "1.0.1"
1350 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1351 | dependencies:
1352 | binary-extensions "^1.0.0"
1353 |
1354 | is-buffer@^1.1.5:
1355 | version "1.1.6"
1356 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1357 |
1358 | is-data-descriptor@^0.1.4:
1359 | version "0.1.4"
1360 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1361 | dependencies:
1362 | kind-of "^3.0.2"
1363 |
1364 | is-data-descriptor@^1.0.0:
1365 | version "1.0.0"
1366 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1367 | dependencies:
1368 | kind-of "^6.0.0"
1369 |
1370 | is-descriptor@^0.1.0:
1371 | version "0.1.6"
1372 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1373 | dependencies:
1374 | is-accessor-descriptor "^0.1.6"
1375 | is-data-descriptor "^0.1.4"
1376 | kind-of "^5.0.0"
1377 |
1378 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1379 | version "1.0.2"
1380 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1381 | dependencies:
1382 | is-accessor-descriptor "^1.0.0"
1383 | is-data-descriptor "^1.0.0"
1384 | kind-of "^6.0.2"
1385 |
1386 | is-dotfile@^1.0.0:
1387 | version "1.0.3"
1388 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1389 |
1390 | is-equal-shallow@^0.1.3:
1391 | version "0.1.3"
1392 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1393 | dependencies:
1394 | is-primitive "^2.0.0"
1395 |
1396 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1397 | version "0.1.1"
1398 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1399 |
1400 | is-extendable@^1.0.1:
1401 | version "1.0.1"
1402 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1403 | dependencies:
1404 | is-plain-object "^2.0.4"
1405 |
1406 | is-extglob@^1.0.0:
1407 | version "1.0.0"
1408 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1409 |
1410 | is-extglob@^2.1.0:
1411 | version "2.1.1"
1412 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1413 |
1414 | is-finite@^1.0.0:
1415 | version "1.0.2"
1416 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1417 | dependencies:
1418 | number-is-nan "^1.0.0"
1419 |
1420 | is-fullwidth-code-point@^1.0.0:
1421 | version "1.0.0"
1422 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1423 | dependencies:
1424 | number-is-nan "^1.0.0"
1425 |
1426 | is-fullwidth-code-point@^2.0.0:
1427 | version "2.0.0"
1428 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1429 |
1430 | is-glob@^2.0.0, is-glob@^2.0.1:
1431 | version "2.0.1"
1432 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1433 | dependencies:
1434 | is-extglob "^1.0.0"
1435 |
1436 | is-glob@^3.1.0:
1437 | version "3.1.0"
1438 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1439 | dependencies:
1440 | is-extglob "^2.1.0"
1441 |
1442 | is-number@^2.1.0:
1443 | version "2.1.0"
1444 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1445 | dependencies:
1446 | kind-of "^3.0.2"
1447 |
1448 | is-number@^3.0.0:
1449 | version "3.0.0"
1450 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1451 | dependencies:
1452 | kind-of "^3.0.2"
1453 |
1454 | is-number@^4.0.0:
1455 | version "4.0.0"
1456 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
1457 |
1458 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1459 | version "2.0.4"
1460 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1461 | dependencies:
1462 | isobject "^3.0.1"
1463 |
1464 | is-posix-bracket@^0.1.0:
1465 | version "0.1.1"
1466 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1467 |
1468 | is-primitive@^2.0.0:
1469 | version "2.0.0"
1470 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1471 |
1472 | is-windows@^1.0.2:
1473 | version "1.0.2"
1474 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1475 |
1476 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1477 | version "1.0.0"
1478 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1479 |
1480 | isobject@^2.0.0:
1481 | version "2.1.0"
1482 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1483 | dependencies:
1484 | isarray "1.0.0"
1485 |
1486 | isobject@^3.0.0, isobject@^3.0.1:
1487 | version "3.0.1"
1488 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1489 |
1490 | "js-tokens@^3.0.0 || ^4.0.0":
1491 | version "4.0.0"
1492 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1493 |
1494 | js-tokens@^3.0.2:
1495 | version "3.0.2"
1496 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1497 |
1498 | jsesc@^1.3.0:
1499 | version "1.3.0"
1500 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1501 |
1502 | jsesc@~0.5.0:
1503 | version "0.5.0"
1504 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1505 |
1506 | json3@^3.3.2:
1507 | version "3.3.2"
1508 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1509 |
1510 | json5@^0.5.0, json5@^0.5.1:
1511 | version "0.5.1"
1512 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1513 |
1514 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1515 | version "3.2.2"
1516 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1517 | dependencies:
1518 | is-buffer "^1.1.5"
1519 |
1520 | kind-of@^4.0.0:
1521 | version "4.0.0"
1522 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1523 | dependencies:
1524 | is-buffer "^1.1.5"
1525 |
1526 | kind-of@^5.0.0:
1527 | version "5.1.0"
1528 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1529 |
1530 | kind-of@^6.0.0, kind-of@^6.0.2:
1531 | version "6.0.2"
1532 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1533 |
1534 | lazy-cache@^1.0.3:
1535 | version "1.0.4"
1536 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1537 |
1538 | loader-utils@^0.2.11, loader-utils@^0.2.16:
1539 | version "0.2.17"
1540 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
1541 | dependencies:
1542 | big.js "^3.1.3"
1543 | emojis-list "^2.0.0"
1544 | json5 "^0.5.0"
1545 | object-assign "^4.0.1"
1546 |
1547 | lodash.throttle@^4.1.1:
1548 | version "4.1.1"
1549 | resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
1550 |
1551 | lodash@^4.17.2, lodash@^4.17.4:
1552 | version "4.17.11"
1553 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
1554 |
1555 | longest@^1.0.1:
1556 | version "1.0.1"
1557 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1558 |
1559 | loose-envify@^1.0.0:
1560 | version "1.4.0"
1561 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1562 | dependencies:
1563 | js-tokens "^3.0.0 || ^4.0.0"
1564 |
1565 | map-cache@^0.2.2:
1566 | version "0.2.2"
1567 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1568 |
1569 | map-visit@^1.0.0:
1570 | version "1.0.0"
1571 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1572 | dependencies:
1573 | object-visit "^1.0.0"
1574 |
1575 | math-random@^1.0.1:
1576 | version "1.0.4"
1577 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c"
1578 |
1579 | media-typer@0.3.0:
1580 | version "0.3.0"
1581 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
1582 |
1583 | memory-fs@^0.2.0:
1584 | version "0.2.0"
1585 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290"
1586 |
1587 | memory-fs@~0.3.0:
1588 | version "0.3.0"
1589 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20"
1590 | dependencies:
1591 | errno "^0.1.3"
1592 | readable-stream "^2.0.1"
1593 |
1594 | memory-fs@~0.4.1:
1595 | version "0.4.1"
1596 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1597 | dependencies:
1598 | errno "^0.1.3"
1599 | readable-stream "^2.0.1"
1600 |
1601 | merge-descriptors@1.0.1:
1602 | version "1.0.1"
1603 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
1604 |
1605 | methods@~1.1.2:
1606 | version "1.1.2"
1607 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
1608 |
1609 | micromatch@^2.1.5, micromatch@^2.3.11:
1610 | version "2.3.11"
1611 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1612 | dependencies:
1613 | arr-diff "^2.0.0"
1614 | array-unique "^0.2.1"
1615 | braces "^1.8.2"
1616 | expand-brackets "^0.1.4"
1617 | extglob "^0.3.1"
1618 | filename-regex "^2.0.0"
1619 | is-extglob "^1.0.0"
1620 | is-glob "^2.0.1"
1621 | kind-of "^3.0.2"
1622 | normalize-path "^2.0.1"
1623 | object.omit "^2.0.0"
1624 | parse-glob "^3.0.4"
1625 | regex-cache "^0.4.2"
1626 |
1627 | micromatch@^3.1.10:
1628 | version "3.1.10"
1629 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
1630 | dependencies:
1631 | arr-diff "^4.0.0"
1632 | array-unique "^0.3.2"
1633 | braces "^2.3.1"
1634 | define-property "^2.0.2"
1635 | extend-shallow "^3.0.2"
1636 | extglob "^2.0.4"
1637 | fragment-cache "^0.2.1"
1638 | kind-of "^6.0.2"
1639 | nanomatch "^1.2.9"
1640 | object.pick "^1.3.0"
1641 | regex-not "^1.0.0"
1642 | snapdragon "^0.8.1"
1643 | to-regex "^3.0.2"
1644 |
1645 | "mime-db@>= 1.36.0 < 2", mime-db@~1.37.0:
1646 | version "1.37.0"
1647 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8"
1648 |
1649 | mime-types@~2.1.17, mime-types@~2.1.18:
1650 | version "2.1.21"
1651 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96"
1652 | dependencies:
1653 | mime-db "~1.37.0"
1654 |
1655 | mime@1.4.1:
1656 | version "1.4.1"
1657 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
1658 |
1659 | mime@^1.5.0:
1660 | version "1.6.0"
1661 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
1662 |
1663 | minimatch@^3.0.4:
1664 | version "3.0.4"
1665 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1666 | dependencies:
1667 | brace-expansion "^1.1.7"
1668 |
1669 | minimist@0.0.8:
1670 | version "0.0.8"
1671 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1672 |
1673 | minimist@^1.2.0:
1674 | version "1.2.0"
1675 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1676 |
1677 | minimist@~0.0.1:
1678 | version "0.0.10"
1679 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
1680 |
1681 | minipass@^2.2.1, minipass@^2.3.4:
1682 | version "2.3.5"
1683 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
1684 | dependencies:
1685 | safe-buffer "^5.1.2"
1686 | yallist "^3.0.0"
1687 |
1688 | minizlib@^1.1.1:
1689 | version "1.2.1"
1690 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614"
1691 | dependencies:
1692 | minipass "^2.2.1"
1693 |
1694 | mixin-deep@^1.2.0:
1695 | version "1.3.1"
1696 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
1697 | dependencies:
1698 | for-in "^1.0.2"
1699 | is-extendable "^1.0.1"
1700 |
1701 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
1702 | version "0.5.1"
1703 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1704 | dependencies:
1705 | minimist "0.0.8"
1706 |
1707 | ms@2.0.0:
1708 | version "2.0.0"
1709 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1710 |
1711 | ms@^2.1.1:
1712 | version "2.1.1"
1713 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
1714 |
1715 | nan@^2.9.2:
1716 | version "2.12.1"
1717 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552"
1718 |
1719 | nanomatch@^1.2.9:
1720 | version "1.2.13"
1721 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
1722 | dependencies:
1723 | arr-diff "^4.0.0"
1724 | array-unique "^0.3.2"
1725 | define-property "^2.0.2"
1726 | extend-shallow "^3.0.2"
1727 | fragment-cache "^0.2.1"
1728 | is-windows "^1.0.2"
1729 | kind-of "^6.0.2"
1730 | object.pick "^1.3.0"
1731 | regex-not "^1.0.0"
1732 | snapdragon "^0.8.1"
1733 | to-regex "^3.0.1"
1734 |
1735 | needle@^2.2.1:
1736 | version "2.2.4"
1737 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e"
1738 | dependencies:
1739 | debug "^2.1.2"
1740 | iconv-lite "^0.4.4"
1741 | sax "^1.2.4"
1742 |
1743 | negotiator@0.6.1:
1744 | version "0.6.1"
1745 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
1746 |
1747 | node-libs-browser@^0.7.0:
1748 | version "0.7.0"
1749 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b"
1750 | dependencies:
1751 | assert "^1.1.1"
1752 | browserify-zlib "^0.1.4"
1753 | buffer "^4.9.0"
1754 | console-browserify "^1.1.0"
1755 | constants-browserify "^1.0.0"
1756 | crypto-browserify "3.3.0"
1757 | domain-browser "^1.1.1"
1758 | events "^1.0.0"
1759 | https-browserify "0.0.1"
1760 | os-browserify "^0.2.0"
1761 | path-browserify "0.0.0"
1762 | process "^0.11.0"
1763 | punycode "^1.2.4"
1764 | querystring-es3 "^0.2.0"
1765 | readable-stream "^2.0.5"
1766 | stream-browserify "^2.0.1"
1767 | stream-http "^2.3.1"
1768 | string_decoder "^0.10.25"
1769 | timers-browserify "^2.0.2"
1770 | tty-browserify "0.0.0"
1771 | url "^0.11.0"
1772 | util "^0.10.3"
1773 | vm-browserify "0.0.4"
1774 |
1775 | node-pre-gyp@^0.10.0:
1776 | version "0.10.3"
1777 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
1778 | dependencies:
1779 | detect-libc "^1.0.2"
1780 | mkdirp "^0.5.1"
1781 | needle "^2.2.1"
1782 | nopt "^4.0.1"
1783 | npm-packlist "^1.1.6"
1784 | npmlog "^4.0.2"
1785 | rc "^1.2.7"
1786 | rimraf "^2.6.1"
1787 | semver "^5.3.0"
1788 | tar "^4"
1789 |
1790 | nopt@^4.0.1:
1791 | version "4.0.1"
1792 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1793 | dependencies:
1794 | abbrev "1"
1795 | osenv "^0.1.4"
1796 |
1797 | normalize-path@^2.0.0, normalize-path@^2.0.1:
1798 | version "2.1.1"
1799 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1800 | dependencies:
1801 | remove-trailing-separator "^1.0.1"
1802 |
1803 | npm-bundled@^1.0.1:
1804 | version "1.0.5"
1805 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979"
1806 |
1807 | npm-packlist@^1.1.6:
1808 | version "1.2.0"
1809 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f"
1810 | dependencies:
1811 | ignore-walk "^3.0.1"
1812 | npm-bundled "^1.0.1"
1813 |
1814 | npmlog@^4.0.2:
1815 | version "4.1.2"
1816 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1817 | dependencies:
1818 | are-we-there-yet "~1.1.2"
1819 | console-control-strings "~1.1.0"
1820 | gauge "~2.7.3"
1821 | set-blocking "~2.0.0"
1822 |
1823 | number-is-nan@^1.0.0:
1824 | version "1.0.1"
1825 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1826 |
1827 | object-assign@^4.0.1, object-assign@^4.1.0:
1828 | version "4.1.1"
1829 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1830 |
1831 | object-copy@^0.1.0:
1832 | version "0.1.0"
1833 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
1834 | dependencies:
1835 | copy-descriptor "^0.1.0"
1836 | define-property "^0.2.5"
1837 | kind-of "^3.0.3"
1838 |
1839 | object-visit@^1.0.0:
1840 | version "1.0.1"
1841 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
1842 | dependencies:
1843 | isobject "^3.0.0"
1844 |
1845 | object.omit@^2.0.0:
1846 | version "2.0.1"
1847 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1848 | dependencies:
1849 | for-own "^0.1.4"
1850 | is-extendable "^0.1.1"
1851 |
1852 | object.pick@^1.3.0:
1853 | version "1.3.0"
1854 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
1855 | dependencies:
1856 | isobject "^3.0.1"
1857 |
1858 | on-finished@~2.3.0:
1859 | version "2.3.0"
1860 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
1861 | dependencies:
1862 | ee-first "1.1.1"
1863 |
1864 | on-headers@~1.0.1:
1865 | version "1.0.1"
1866 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
1867 |
1868 | once@^1.3.0:
1869 | version "1.4.0"
1870 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1871 | dependencies:
1872 | wrappy "1"
1873 |
1874 | open@0.0.5:
1875 | version "0.0.5"
1876 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc"
1877 |
1878 | optimist@~0.6.0, optimist@~0.6.1:
1879 | version "0.6.1"
1880 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
1881 | dependencies:
1882 | minimist "~0.0.1"
1883 | wordwrap "~0.0.2"
1884 |
1885 | original@^1.0.0:
1886 | version "1.0.2"
1887 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
1888 | dependencies:
1889 | url-parse "^1.4.3"
1890 |
1891 | os-browserify@^0.2.0:
1892 | version "0.2.1"
1893 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
1894 |
1895 | os-homedir@^1.0.0:
1896 | version "1.0.2"
1897 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1898 |
1899 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
1900 | version "1.0.2"
1901 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1902 |
1903 | osenv@^0.1.4:
1904 | version "0.1.5"
1905 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
1906 | dependencies:
1907 | os-homedir "^1.0.0"
1908 | os-tmpdir "^1.0.0"
1909 |
1910 | pako@~0.2.0:
1911 | version "0.2.9"
1912 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
1913 |
1914 | parse-glob@^3.0.4:
1915 | version "3.0.4"
1916 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1917 | dependencies:
1918 | glob-base "^0.3.0"
1919 | is-dotfile "^1.0.0"
1920 | is-extglob "^1.0.0"
1921 | is-glob "^2.0.0"
1922 |
1923 | parseurl@~1.3.2:
1924 | version "1.3.2"
1925 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
1926 |
1927 | pascalcase@^0.1.1:
1928 | version "0.1.1"
1929 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
1930 |
1931 | path-browserify@0.0.0:
1932 | version "0.0.0"
1933 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
1934 |
1935 | path-exists@^2.0.0:
1936 | version "2.1.0"
1937 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1938 | dependencies:
1939 | pinkie-promise "^2.0.0"
1940 |
1941 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
1942 | version "1.0.1"
1943 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1944 |
1945 | path-to-regexp@0.1.7:
1946 | version "0.1.7"
1947 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
1948 |
1949 | pbkdf2-compat@2.0.1:
1950 | version "2.0.1"
1951 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288"
1952 |
1953 | pinkie-promise@^2.0.0:
1954 | version "2.0.1"
1955 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1956 | dependencies:
1957 | pinkie "^2.0.0"
1958 |
1959 | pinkie@^2.0.0:
1960 | version "2.0.4"
1961 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1962 |
1963 | pkg-dir@^1.0.0:
1964 | version "1.0.0"
1965 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1966 | dependencies:
1967 | find-up "^1.0.0"
1968 |
1969 | posix-character-classes@^0.1.0:
1970 | version "0.1.1"
1971 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
1972 |
1973 | preserve@^0.2.0:
1974 | version "0.2.0"
1975 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1976 |
1977 | private@^0.1.6, private@^0.1.8:
1978 | version "0.1.8"
1979 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
1980 |
1981 | process-nextick-args@~2.0.0:
1982 | version "2.0.0"
1983 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
1984 |
1985 | process@^0.11.0:
1986 | version "0.11.10"
1987 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
1988 |
1989 | proxy-addr@~2.0.4:
1990 | version "2.0.4"
1991 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93"
1992 | dependencies:
1993 | forwarded "~0.1.2"
1994 | ipaddr.js "1.8.0"
1995 |
1996 | prr@~1.0.1:
1997 | version "1.0.1"
1998 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
1999 |
2000 | punycode@1.3.2:
2001 | version "1.3.2"
2002 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2003 |
2004 | punycode@^1.2.4:
2005 | version "1.4.1"
2006 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2007 |
2008 | qs@6.5.2:
2009 | version "6.5.2"
2010 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
2011 |
2012 | querystring-es3@^0.2.0:
2013 | version "0.2.1"
2014 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2015 |
2016 | querystring@0.2.0:
2017 | version "0.2.0"
2018 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2019 |
2020 | querystringify@^2.0.0:
2021 | version "2.1.0"
2022 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef"
2023 |
2024 | randomatic@^3.0.0:
2025 | version "3.1.1"
2026 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
2027 | dependencies:
2028 | is-number "^4.0.0"
2029 | kind-of "^6.0.0"
2030 | math-random "^1.0.1"
2031 |
2032 | range-parser@^1.0.3, range-parser@~1.2.0:
2033 | version "1.2.0"
2034 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2035 |
2036 | raw-body@2.3.3:
2037 | version "2.3.3"
2038 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3"
2039 | dependencies:
2040 | bytes "3.0.0"
2041 | http-errors "1.6.3"
2042 | iconv-lite "0.4.23"
2043 | unpipe "1.0.0"
2044 |
2045 | rc@^1.2.7:
2046 | version "1.2.8"
2047 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
2048 | dependencies:
2049 | deep-extend "^0.6.0"
2050 | ini "~1.3.0"
2051 | minimist "^1.2.0"
2052 | strip-json-comments "~2.0.1"
2053 |
2054 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.3.6:
2055 | version "2.3.6"
2056 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
2057 | dependencies:
2058 | core-util-is "~1.0.0"
2059 | inherits "~2.0.3"
2060 | isarray "~1.0.0"
2061 | process-nextick-args "~2.0.0"
2062 | safe-buffer "~5.1.1"
2063 | string_decoder "~1.1.1"
2064 | util-deprecate "~1.0.1"
2065 |
2066 | readdirp@^2.0.0:
2067 | version "2.2.1"
2068 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
2069 | dependencies:
2070 | graceful-fs "^4.1.11"
2071 | micromatch "^3.1.10"
2072 | readable-stream "^2.0.2"
2073 |
2074 | regenerate@^1.2.1:
2075 | version "1.4.0"
2076 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
2077 |
2078 | regenerator-runtime@^0.11.0:
2079 | version "0.11.1"
2080 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
2081 |
2082 | regenerator-transform@^0.10.0:
2083 | version "0.10.1"
2084 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2085 | dependencies:
2086 | babel-runtime "^6.18.0"
2087 | babel-types "^6.19.0"
2088 | private "^0.1.6"
2089 |
2090 | regex-cache@^0.4.2:
2091 | version "0.4.4"
2092 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2093 | dependencies:
2094 | is-equal-shallow "^0.1.3"
2095 |
2096 | regex-not@^1.0.0, regex-not@^1.0.2:
2097 | version "1.0.2"
2098 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2099 | dependencies:
2100 | extend-shallow "^3.0.2"
2101 | safe-regex "^1.1.0"
2102 |
2103 | regexpu-core@^2.0.0:
2104 | version "2.0.0"
2105 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2106 | dependencies:
2107 | regenerate "^1.2.1"
2108 | regjsgen "^0.2.0"
2109 | regjsparser "^0.1.4"
2110 |
2111 | regjsgen@^0.2.0:
2112 | version "0.2.0"
2113 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2114 |
2115 | regjsparser@^0.1.4:
2116 | version "0.1.5"
2117 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2118 | dependencies:
2119 | jsesc "~0.5.0"
2120 |
2121 | remove-trailing-separator@^1.0.1:
2122 | version "1.1.0"
2123 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2124 |
2125 | repeat-element@^1.1.2:
2126 | version "1.1.3"
2127 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
2128 |
2129 | repeat-string@^1.5.2, repeat-string@^1.6.1:
2130 | version "1.6.1"
2131 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2132 |
2133 | repeating@^2.0.0:
2134 | version "2.0.1"
2135 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2136 | dependencies:
2137 | is-finite "^1.0.0"
2138 |
2139 | requires-port@^1.0.0:
2140 | version "1.0.0"
2141 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
2142 |
2143 | resolve-url@^0.2.1:
2144 | version "0.2.1"
2145 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2146 |
2147 | ret@~0.1.10:
2148 | version "0.1.15"
2149 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
2150 |
2151 | right-align@^0.1.1:
2152 | version "0.1.3"
2153 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2154 | dependencies:
2155 | align-text "^0.1.1"
2156 |
2157 | rimraf@^2.6.1:
2158 | version "2.6.3"
2159 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
2160 | dependencies:
2161 | glob "^7.1.3"
2162 |
2163 | ripemd160@0.2.0:
2164 | version "0.2.0"
2165 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce"
2166 |
2167 | safe-buffer@5.1.2, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2168 | version "5.1.2"
2169 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2170 |
2171 | safe-regex@^1.1.0:
2172 | version "1.1.0"
2173 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
2174 | dependencies:
2175 | ret "~0.1.10"
2176 |
2177 | "safer-buffer@>= 2.1.2 < 3":
2178 | version "2.1.2"
2179 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2180 |
2181 | sax@^1.2.4:
2182 | version "1.2.4"
2183 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2184 |
2185 | semver@^5.3.0:
2186 | version "5.6.0"
2187 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
2188 |
2189 | send@0.16.2:
2190 | version "0.16.2"
2191 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
2192 | dependencies:
2193 | debug "2.6.9"
2194 | depd "~1.1.2"
2195 | destroy "~1.0.4"
2196 | encodeurl "~1.0.2"
2197 | escape-html "~1.0.3"
2198 | etag "~1.8.1"
2199 | fresh "0.5.2"
2200 | http-errors "~1.6.2"
2201 | mime "1.4.1"
2202 | ms "2.0.0"
2203 | on-finished "~2.3.0"
2204 | range-parser "~1.2.0"
2205 | statuses "~1.4.0"
2206 |
2207 | serve-index@^1.7.2:
2208 | version "1.9.1"
2209 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
2210 | dependencies:
2211 | accepts "~1.3.4"
2212 | batch "0.6.1"
2213 | debug "2.6.9"
2214 | escape-html "~1.0.3"
2215 | http-errors "~1.6.2"
2216 | mime-types "~2.1.17"
2217 | parseurl "~1.3.2"
2218 |
2219 | serve-static@1.13.2:
2220 | version "1.13.2"
2221 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
2222 | dependencies:
2223 | encodeurl "~1.0.2"
2224 | escape-html "~1.0.3"
2225 | parseurl "~1.3.2"
2226 | send "0.16.2"
2227 |
2228 | set-blocking@~2.0.0:
2229 | version "2.0.0"
2230 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2231 |
2232 | set-value@^0.4.3:
2233 | version "0.4.3"
2234 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
2235 | dependencies:
2236 | extend-shallow "^2.0.1"
2237 | is-extendable "^0.1.1"
2238 | is-plain-object "^2.0.1"
2239 | to-object-path "^0.3.0"
2240 |
2241 | set-value@^2.0.0:
2242 | version "2.0.0"
2243 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
2244 | dependencies:
2245 | extend-shallow "^2.0.1"
2246 | is-extendable "^0.1.1"
2247 | is-plain-object "^2.0.3"
2248 | split-string "^3.0.1"
2249 |
2250 | setimmediate@^1.0.4:
2251 | version "1.0.5"
2252 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2253 |
2254 | setprototypeof@1.1.0:
2255 | version "1.1.0"
2256 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2257 |
2258 | sha.js@2.2.6:
2259 | version "2.2.6"
2260 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba"
2261 |
2262 | signal-exit@^3.0.0:
2263 | version "3.0.2"
2264 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2265 |
2266 | slash@^1.0.0:
2267 | version "1.0.0"
2268 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2269 |
2270 | snapdragon-node@^2.0.1:
2271 | version "2.1.1"
2272 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
2273 | dependencies:
2274 | define-property "^1.0.0"
2275 | isobject "^3.0.0"
2276 | snapdragon-util "^3.0.1"
2277 |
2278 | snapdragon-util@^3.0.1:
2279 | version "3.0.1"
2280 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
2281 | dependencies:
2282 | kind-of "^3.2.0"
2283 |
2284 | snapdragon@^0.8.1:
2285 | version "0.8.2"
2286 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
2287 | dependencies:
2288 | base "^0.11.1"
2289 | debug "^2.2.0"
2290 | define-property "^0.2.5"
2291 | extend-shallow "^2.0.1"
2292 | map-cache "^0.2.2"
2293 | source-map "^0.5.6"
2294 | source-map-resolve "^0.5.0"
2295 | use "^3.1.0"
2296 |
2297 | sockjs-client@^1.0.3:
2298 | version "1.3.0"
2299 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz#12fc9d6cb663da5739d3dc5fb6e8687da95cb177"
2300 | dependencies:
2301 | debug "^3.2.5"
2302 | eventsource "^1.0.7"
2303 | faye-websocket "~0.11.1"
2304 | inherits "^2.0.3"
2305 | json3 "^3.3.2"
2306 | url-parse "^1.4.3"
2307 |
2308 | sockjs@^0.3.15:
2309 | version "0.3.19"
2310 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d"
2311 | dependencies:
2312 | faye-websocket "^0.10.0"
2313 | uuid "^3.0.1"
2314 |
2315 | source-list-map@~0.1.7:
2316 | version "0.1.8"
2317 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
2318 |
2319 | source-map-resolve@^0.5.0:
2320 | version "0.5.2"
2321 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
2322 | dependencies:
2323 | atob "^2.1.1"
2324 | decode-uri-component "^0.2.0"
2325 | resolve-url "^0.2.1"
2326 | source-map-url "^0.4.0"
2327 | urix "^0.1.0"
2328 |
2329 | source-map-support@^0.4.15:
2330 | version "0.4.18"
2331 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
2332 | dependencies:
2333 | source-map "^0.5.6"
2334 |
2335 | source-map-url@^0.4.0:
2336 | version "0.4.0"
2337 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
2338 |
2339 | source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
2340 | version "0.5.7"
2341 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2342 |
2343 | source-map@~0.4.1:
2344 | version "0.4.4"
2345 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2346 | dependencies:
2347 | amdefine ">=0.0.4"
2348 |
2349 | split-string@^3.0.1, split-string@^3.0.2:
2350 | version "3.1.0"
2351 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
2352 | dependencies:
2353 | extend-shallow "^3.0.0"
2354 |
2355 | static-extend@^0.1.1:
2356 | version "0.1.2"
2357 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
2358 | dependencies:
2359 | define-property "^0.2.5"
2360 | object-copy "^0.1.0"
2361 |
2362 | "statuses@>= 1.4.0 < 2":
2363 | version "1.5.0"
2364 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
2365 |
2366 | statuses@~1.4.0:
2367 | version "1.4.0"
2368 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
2369 |
2370 | stream-browserify@^2.0.1:
2371 | version "2.0.1"
2372 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2373 | dependencies:
2374 | inherits "~2.0.1"
2375 | readable-stream "^2.0.2"
2376 |
2377 | stream-cache@~0.0.1:
2378 | version "0.0.2"
2379 | resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f"
2380 |
2381 | stream-http@^2.3.1:
2382 | version "2.8.3"
2383 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
2384 | dependencies:
2385 | builtin-status-codes "^3.0.0"
2386 | inherits "^2.0.1"
2387 | readable-stream "^2.3.6"
2388 | to-arraybuffer "^1.0.0"
2389 | xtend "^4.0.0"
2390 |
2391 | string-width@^1.0.1:
2392 | version "1.0.2"
2393 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2394 | dependencies:
2395 | code-point-at "^1.0.0"
2396 | is-fullwidth-code-point "^1.0.0"
2397 | strip-ansi "^3.0.0"
2398 |
2399 | "string-width@^1.0.2 || 2":
2400 | version "2.1.1"
2401 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2402 | dependencies:
2403 | is-fullwidth-code-point "^2.0.0"
2404 | strip-ansi "^4.0.0"
2405 |
2406 | string_decoder@^0.10.25:
2407 | version "0.10.31"
2408 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2409 |
2410 | string_decoder@~1.1.1:
2411 | version "1.1.1"
2412 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
2413 | dependencies:
2414 | safe-buffer "~5.1.0"
2415 |
2416 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2417 | version "3.0.1"
2418 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2419 | dependencies:
2420 | ansi-regex "^2.0.0"
2421 |
2422 | strip-ansi@^4.0.0:
2423 | version "4.0.0"
2424 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2425 | dependencies:
2426 | ansi-regex "^3.0.0"
2427 |
2428 | strip-json-comments@~2.0.1:
2429 | version "2.0.1"
2430 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2431 |
2432 | supports-color@^2.0.0:
2433 | version "2.0.0"
2434 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2435 |
2436 | supports-color@^3.1.0, supports-color@^3.1.1:
2437 | version "3.2.3"
2438 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
2439 | dependencies:
2440 | has-flag "^1.0.0"
2441 |
2442 | tapable@^0.1.8, tapable@~0.1.8:
2443 | version "0.1.10"
2444 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4"
2445 |
2446 | tar@^4:
2447 | version "4.4.8"
2448 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"
2449 | dependencies:
2450 | chownr "^1.1.1"
2451 | fs-minipass "^1.2.5"
2452 | minipass "^2.3.4"
2453 | minizlib "^1.1.1"
2454 | mkdirp "^0.5.0"
2455 | safe-buffer "^5.1.2"
2456 | yallist "^3.0.2"
2457 |
2458 | time-stamp@^2.0.0:
2459 | version "2.2.0"
2460 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.2.0.tgz#917e0a66905688790ec7bbbde04046259af83f57"
2461 |
2462 | timers-browserify@^2.0.2:
2463 | version "2.0.10"
2464 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"
2465 | dependencies:
2466 | setimmediate "^1.0.4"
2467 |
2468 | to-arraybuffer@^1.0.0:
2469 | version "1.0.1"
2470 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2471 |
2472 | to-fast-properties@^1.0.3:
2473 | version "1.0.3"
2474 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
2475 |
2476 | to-object-path@^0.3.0:
2477 | version "0.3.0"
2478 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
2479 | dependencies:
2480 | kind-of "^3.0.2"
2481 |
2482 | to-regex-range@^2.1.0:
2483 | version "2.1.1"
2484 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
2485 | dependencies:
2486 | is-number "^3.0.0"
2487 | repeat-string "^1.6.1"
2488 |
2489 | to-regex@^3.0.1, to-regex@^3.0.2:
2490 | version "3.0.2"
2491 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
2492 | dependencies:
2493 | define-property "^2.0.2"
2494 | extend-shallow "^3.0.2"
2495 | regex-not "^1.0.2"
2496 | safe-regex "^1.1.0"
2497 |
2498 | trim-right@^1.0.1:
2499 | version "1.0.1"
2500 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2501 |
2502 | tty-browserify@0.0.0:
2503 | version "0.0.0"
2504 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2505 |
2506 | type-is@~1.6.16:
2507 | version "1.6.16"
2508 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
2509 | dependencies:
2510 | media-typer "0.3.0"
2511 | mime-types "~2.1.18"
2512 |
2513 | uglify-js@~2.7.3:
2514 | version "2.7.5"
2515 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8"
2516 | dependencies:
2517 | async "~0.2.6"
2518 | source-map "~0.5.1"
2519 | uglify-to-browserify "~1.0.0"
2520 | yargs "~3.10.0"
2521 |
2522 | uglify-to-browserify@~1.0.0:
2523 | version "1.0.2"
2524 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
2525 |
2526 | union-value@^1.0.0:
2527 | version "1.0.0"
2528 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
2529 | dependencies:
2530 | arr-union "^3.1.0"
2531 | get-value "^2.0.6"
2532 | is-extendable "^0.1.1"
2533 | set-value "^0.4.3"
2534 |
2535 | unpipe@1.0.0, unpipe@~1.0.0:
2536 | version "1.0.0"
2537 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
2538 |
2539 | unset-value@^1.0.0:
2540 | version "1.0.0"
2541 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
2542 | dependencies:
2543 | has-value "^0.3.1"
2544 | isobject "^3.0.0"
2545 |
2546 | urix@^0.1.0:
2547 | version "0.1.0"
2548 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
2549 |
2550 | url-parse@^1.4.3:
2551 | version "1.4.4"
2552 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8"
2553 | dependencies:
2554 | querystringify "^2.0.0"
2555 | requires-port "^1.0.0"
2556 |
2557 | url@^0.11.0:
2558 | version "0.11.0"
2559 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
2560 | dependencies:
2561 | punycode "1.3.2"
2562 | querystring "0.2.0"
2563 |
2564 | use@^3.1.0:
2565 | version "3.1.1"
2566 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
2567 |
2568 | util-deprecate@~1.0.1:
2569 | version "1.0.2"
2570 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2571 |
2572 | util@0.10.3:
2573 | version "0.10.3"
2574 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
2575 | dependencies:
2576 | inherits "2.0.1"
2577 |
2578 | util@^0.10.3:
2579 | version "0.10.4"
2580 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
2581 | dependencies:
2582 | inherits "2.0.3"
2583 |
2584 | utils-merge@1.0.1:
2585 | version "1.0.1"
2586 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
2587 |
2588 | uuid@^3.0.1:
2589 | version "3.3.2"
2590 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
2591 |
2592 | vary@~1.1.2:
2593 | version "1.1.2"
2594 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
2595 |
2596 | vm-browserify@0.0.4:
2597 | version "0.0.4"
2598 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
2599 | dependencies:
2600 | indexof "0.0.1"
2601 |
2602 | watchpack@^0.2.1:
2603 | version "0.2.9"
2604 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b"
2605 | dependencies:
2606 | async "^0.9.0"
2607 | chokidar "^1.0.0"
2608 | graceful-fs "^4.1.2"
2609 |
2610 | webpack-core@~0.6.9:
2611 | version "0.6.9"
2612 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2"
2613 | dependencies:
2614 | source-list-map "~0.1.7"
2615 | source-map "~0.4.1"
2616 |
2617 | webpack-dev-middleware@^1.10.2:
2618 | version "1.12.2"
2619 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e"
2620 | dependencies:
2621 | memory-fs "~0.4.1"
2622 | mime "^1.5.0"
2623 | path-is-absolute "^1.0.0"
2624 | range-parser "^1.0.3"
2625 | time-stamp "^2.0.0"
2626 |
2627 | webpack-dev-server@1:
2628 | version "1.16.5"
2629 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.5.tgz#0cbd5f2d2ac8d4e593aacd5c9702e7bbd5e59892"
2630 | dependencies:
2631 | compression "^1.5.2"
2632 | connect-history-api-fallback "^1.3.0"
2633 | express "^4.13.3"
2634 | http-proxy-middleware "~0.17.1"
2635 | open "0.0.5"
2636 | optimist "~0.6.1"
2637 | serve-index "^1.7.2"
2638 | sockjs "^0.3.15"
2639 | sockjs-client "^1.0.3"
2640 | stream-cache "~0.0.1"
2641 | strip-ansi "^3.0.0"
2642 | supports-color "^3.1.1"
2643 | webpack-dev-middleware "^1.10.2"
2644 |
2645 | webpack@^1.12.14:
2646 | version "1.15.0"
2647 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.15.0.tgz#4ff31f53db03339e55164a9d468ee0324968fe98"
2648 | dependencies:
2649 | acorn "^3.0.0"
2650 | async "^1.3.0"
2651 | clone "^1.0.2"
2652 | enhanced-resolve "~0.9.0"
2653 | interpret "^0.6.4"
2654 | loader-utils "^0.2.11"
2655 | memory-fs "~0.3.0"
2656 | mkdirp "~0.5.0"
2657 | node-libs-browser "^0.7.0"
2658 | optimist "~0.6.0"
2659 | supports-color "^3.1.0"
2660 | tapable "~0.1.8"
2661 | uglify-js "~2.7.3"
2662 | watchpack "^0.2.1"
2663 | webpack-core "~0.6.9"
2664 |
2665 | websocket-driver@>=0.5.1:
2666 | version "0.7.0"
2667 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"
2668 | dependencies:
2669 | http-parser-js ">=0.4.0"
2670 | websocket-extensions ">=0.1.1"
2671 |
2672 | websocket-extensions@>=0.1.1:
2673 | version "0.1.3"
2674 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
2675 |
2676 | wide-align@^1.1.0:
2677 | version "1.1.3"
2678 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
2679 | dependencies:
2680 | string-width "^1.0.2 || 2"
2681 |
2682 | window-size@0.1.0:
2683 | version "0.1.0"
2684 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
2685 |
2686 | wordwrap@0.0.2:
2687 | version "0.0.2"
2688 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
2689 |
2690 | wordwrap@~0.0.2:
2691 | version "0.0.3"
2692 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
2693 |
2694 | wrappy@1:
2695 | version "1.0.2"
2696 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2697 |
2698 | xtend@^4.0.0:
2699 | version "4.0.1"
2700 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2701 |
2702 | yallist@^3.0.0, yallist@^3.0.2:
2703 | version "3.0.3"
2704 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
2705 |
2706 | yargs@~3.10.0:
2707 | version "3.10.0"
2708 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
2709 | dependencies:
2710 | camelcase "^1.0.2"
2711 | cliui "^2.1.0"
2712 | decamelize "^1.0.0"
2713 | window-size "0.1.0"
2714 |
--------------------------------------------------------------------------------