├── .gitignore
├── .travis.yml
├── README.md
├── example
├── example.html
├── interval-example.html
└── timeout-example.html
├── lib
├── dont-go.js
├── dont-go.js.map
├── dont-go.m.js
├── dont-go.m.js.map
├── dont-go.umd.js
└── dont-go.umd.js.map
├── media
├── banner.png
├── example.png
├── favicon.ico
├── faviconAlt.ico
└── leo.gif
├── package.json
├── public
├── dont-go.js
├── favicon.png
├── faviconAlt.png
└── index.html
├── renovate.json
├── src
└── index.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 |
6 | # Runtime data
7 | pids
8 | *.pid
9 | *.seed
10 |
11 | # Directory for instrumented libs generated by jscoverage/JSCover
12 | lib-cov
13 |
14 | # Coverage directory used by tools like istanbul
15 | coverage
16 |
17 | # nyc test coverage
18 | .nyc_output
19 |
20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21 | .grunt
22 |
23 | # node-waf configuration
24 | .lock-wscript
25 |
26 | # Compiled binary addons (http://nodejs.org/api/addons.html)
27 | build/Release
28 |
29 | # Dependency directories
30 | node_modules
31 | jspm_packages
32 |
33 | # Optional npm cache directory
34 | .npm
35 |
36 | # Optional REPL history
37 | .node_repl_history
38 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - stable
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Do the old favicon switcheroo in under 500 bytes
7 |
8 |
9 |
29 |
30 | ## Table of Contents
31 |
32 | - [About](#about)
33 | - [As Seen In](#as-seen-in)
34 | - [Install](#install)
35 | - [Usage](#usage)
36 | - [Demo](#demo)
37 | - [Examples](#examples)
38 | - [Contributing](#contributing)
39 | - [license](#license)
40 |
41 | ## About
42 |
43 |
44 |
45 |
46 |
47 | Dont-go is a small client-side library with zero dependencies to change the title and/or favicon of the page when it is inactive. Minified version weighs in at a [whopping](http://www.dictionary.com/browse/whopping) **476 Bytes** when minified. Note that **You must include a default favicon in your webpage**.
48 |
49 | ## As Seen In
50 |
51 | - [This Clever Trick Brings Visitors Back When They Tab Away](https://www.hongkiat.com/blog/dont-go-favicon-title/)
52 |
53 | ## Install
54 |
55 | **Install with cdn**
56 |
57 | ```html
58 |
59 | ```
60 |
61 | **Install with npm**
62 |
63 | ```sh
64 | $ npm install dont-go
65 | ```
66 |
67 | **Install with yarn**
68 |
69 | ```sh
70 | $ yarn add dont-go
71 | ```
72 |
73 | ## Usage
74 |
75 |
76 |
77 |
78 |
79 | To use, simply call the function with options.
80 | ```js
81 |
82 | dontGo({
83 | title: 'Alternative title text right here!',
84 | faviconSrc: 'path/to/Alternative/favicon.ico',
85 | timeout: 5000 //5 seconds
86 | });
87 |
88 | ```
89 |
90 | The `faviconSrc` property is optional and will keep the same icon if not set.
91 |
92 | The `timeout` property is optional, it takes an interval in milliseconds to before title & favicon change.
93 |
94 | It is also possible to set the title property to an array of values and set an interval to switch between them as seen in the example below;
95 | ```js
96 |
97 | dontGo({
98 | title: ['Alternative title text', 'Another alternative title'],
99 | faviconSrc: 'path/to/Alternative/favicon.ico',
100 | interval: 1000 //1 second
101 | });
102 |
103 | ```
104 |
105 | ## Demo
106 |
107 | Check out [the demo](https://tiaanduplessis.github.io/dont-go/) here.
108 |
109 | ## Examples
110 |
111 | Please see the example directory for more usage examples.
112 |
113 | ## Contributing
114 |
115 | All Contributions are welcome! Please open up an issue if you would like to help out. :smile:
116 |
117 | ## License
118 |
119 | Licensed under the [MIT License](https://tiaan.mit-license.org/).
120 |
121 | Icons made by Madebyoliver from www.flaticon.com is licensed by CC 3.0 BY .
122 |
--------------------------------------------------------------------------------
/example/example.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Original Title
6 |
7 |
8 |
32 |
33 | Switch tabs and check out the new favicon & title
34 |
35 |
36 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/example/interval-example.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Original Title
7 |
8 |
9 |
33 |
34 |
35 | Switch tabs and check out the new favicon & title
36 |
37 |
38 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/example/timeout-example.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Original Title
6 |
7 |
8 |
32 |
33 | Switch tabs, wait five seconds, and check out the new favicon & title
34 |
35 |
36 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/lib/dont-go.js:
--------------------------------------------------------------------------------
1 | module.exports=function(t){void 0===t&&(t={});var e,i,n,o,c=Object.assign({title:"Don't go!",faviconSrc:"",timeout:0,interval:1e3},t),l=document.title,r=0;document.querySelectorAll('link[rel$="icon"]').length&&(e=document.querySelector('link[rel$="icon"]'),i=e.getAttribute("href")),c.faviconSrc.length&&((new Image).src=c.faviconSrc);var u=function(){"string"==typeof c.title?document.title=c.title:(document.title=c.title[0],o=setInterval(a,c.interval)),c.faviconSrc.length&&e.setAttribute("href",c.faviconSrc)},a=function(){++r>=c.title.length&&(r=0),document.title=c.title[r]};document.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState?c.timeout>0?n=setTimeout(u,c.timeout):u():(document.title=l,e.setAttribute("href",i),clearTimeout(n),clearInterval(o))})};
2 | //# sourceMappingURL=dont-go.js.map
3 |
--------------------------------------------------------------------------------
/lib/dont-go.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"dont-go.js","sources":["../src/index.js"],"sourcesContent":["function dontGo (options = {}) {\n const defaults = {\n title: \"Don't go!\",\n faviconSrc: '',\n timeout: 0,\n interval: 1000\n }\n\n const opts = Object.assign(defaults, options)\n const originalTitle = document.title\n\n let favicon\n let originalFavicon\n let img\n let timeout\n let interval\n let counter = 0\n\n // Store the original favicon if it exists\n if (document.querySelectorAll('link[rel$=\"icon\"]').length) {\n favicon = document.querySelector('link[rel$=\"icon\"]')\n originalFavicon = favicon.getAttribute('href')\n }\n\n // Preload the alternative favicon\n if (opts.faviconSrc.length) {\n img = new Image() // eslint-disable-line\n img.src = opts.faviconSrc\n }\n\n const setHidden = () => {\n // if title is string just switch the title\n if (typeof opts.title === 'string') {\n document.title = opts.title\n } else {\n document.title = opts.title[0]\n interval = setInterval(nextTitle, opts.interval)\n }\n\n if (opts.faviconSrc.length) {\n favicon.setAttribute('href', opts.faviconSrc)\n }\n }\n\n const nextTitle = () => {\n counter++\n if (counter >= opts.title.length) {\n counter = 0\n }\n document.title = opts.title[counter]\n }\n\n document.addEventListener('visibilitychange', () => {\n if (document.visibilityState === 'hidden') {\n if (opts.timeout > 0) {\n timeout = setTimeout(setHidden, opts.timeout)\n } else {\n setHidden()\n }\n } else {\n document.title = originalTitle\n favicon.setAttribute('href', originalFavicon)\n clearTimeout(timeout)\n clearInterval(interval)\n }\n })\n}\n\nexport default dontGo\n"],"names":["options","const","favicon","originalFavicon","timeout","interval","opts","Object","assign","title","faviconSrc","originalTitle","document","counter","querySelectorAll","length","querySelector","getAttribute","Image","src","setHidden","setInterval","nextTitle","setAttribute","addEventListener","visibilityState","setTimeout","clearTimeout","clearInterval"],"mappings":"eAAA,SAAiBA,kBAAU,IACzBC,IAUIC,EACAC,EAEAC,EACAC,EAPEC,EAAOC,OAAOC,OAPH,CACfC,MAAO,YACPC,WAAY,GACZN,QAAS,EACTC,SAAU,KAGyBL,GAC/BW,EAAgBC,SAASH,MAO3BI,EAAU,EAGVD,SAASE,iBAAiB,qBAAqBC,SACjDb,EAAUU,SAASI,cAAc,qBACjCb,EAAkBD,EAAQe,aAAa,SAIrCX,EAAKI,WAAWK,UACZ,IAAIG,OACNC,IAAMb,EAAKI,YAGjBT,IAAMmB,aAEsB,iBAAfd,EAAKG,MACdG,SAASH,MAAQH,EAAKG,OAEtBG,SAASH,MAAQH,EAAKG,MAAM,GAC5BJ,EAAWgB,YAAYC,EAAWhB,EAAKD,WAGrCC,EAAKI,WAAWK,QAClBb,EAAQqB,aAAa,OAAQjB,EAAKI,aAIhCY,eACJT,GACeP,EAAKG,MAAMM,SACxBF,EAAU,GAEZD,SAASH,MAAQH,EAAKG,MAAMI,IAG9BD,SAASY,iBAAiB,8BACS,WAA7BZ,SAASa,gBACPnB,EAAKF,QAAU,EACjBA,EAAUsB,WAAWN,EAAWd,EAAKF,SAErCgB,KAGFR,SAASH,MAAQE,EACjBT,EAAQqB,aAAa,OAAQpB,GAC7BwB,aAAavB,GACbwB,cAAcvB"}
--------------------------------------------------------------------------------
/lib/dont-go.m.js:
--------------------------------------------------------------------------------
1 | export default function(t){void 0===t&&(t={});var e,i,n,c,l=Object.assign({title:"Don't go!",faviconSrc:"",timeout:0,interval:1e3},t),o=document.title,r=0;document.querySelectorAll('link[rel$="icon"]').length&&(e=document.querySelector('link[rel$="icon"]'),i=e.getAttribute("href")),l.faviconSrc.length&&((new Image).src=l.faviconSrc);var u=function(){"string"==typeof l.title?document.title=l.title:(document.title=l.title[0],c=setInterval(a,l.interval)),l.faviconSrc.length&&e.setAttribute("href",l.faviconSrc)},a=function(){++r>=l.title.length&&(r=0),document.title=l.title[r]};document.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState?l.timeout>0?n=setTimeout(u,l.timeout):u():(document.title=o,e.setAttribute("href",i),clearTimeout(n),clearInterval(c))})}
2 | //# sourceMappingURL=dont-go.m.js.map
3 |
--------------------------------------------------------------------------------
/lib/dont-go.m.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"dont-go.m.js","sources":["../src/index.js"],"sourcesContent":["function dontGo (options = {}) {\n const defaults = {\n title: \"Don't go!\",\n faviconSrc: '',\n timeout: 0,\n interval: 1000\n }\n\n const opts = Object.assign(defaults, options)\n const originalTitle = document.title\n\n let favicon\n let originalFavicon\n let img\n let timeout\n let interval\n let counter = 0\n\n // Store the original favicon if it exists\n if (document.querySelectorAll('link[rel$=\"icon\"]').length) {\n favicon = document.querySelector('link[rel$=\"icon\"]')\n originalFavicon = favicon.getAttribute('href')\n }\n\n // Preload the alternative favicon\n if (opts.faviconSrc.length) {\n img = new Image() // eslint-disable-line\n img.src = opts.faviconSrc\n }\n\n const setHidden = () => {\n // if title is string just switch the title\n if (typeof opts.title === 'string') {\n document.title = opts.title\n } else {\n document.title = opts.title[0]\n interval = setInterval(nextTitle, opts.interval)\n }\n\n if (opts.faviconSrc.length) {\n favicon.setAttribute('href', opts.faviconSrc)\n }\n }\n\n const nextTitle = () => {\n counter++\n if (counter >= opts.title.length) {\n counter = 0\n }\n document.title = opts.title[counter]\n }\n\n document.addEventListener('visibilitychange', () => {\n if (document.visibilityState === 'hidden') {\n if (opts.timeout > 0) {\n timeout = setTimeout(setHidden, opts.timeout)\n } else {\n setHidden()\n }\n } else {\n document.title = originalTitle\n favicon.setAttribute('href', originalFavicon)\n clearTimeout(timeout)\n clearInterval(interval)\n }\n })\n}\n\nexport default dontGo\n"],"names":["options","const","favicon","originalFavicon","timeout","interval","opts","Object","assign","title","faviconSrc","originalTitle","document","counter","querySelectorAll","length","querySelector","getAttribute","Image","src","setHidden","setInterval","nextTitle","setAttribute","addEventListener","visibilityState","setTimeout","clearTimeout","clearInterval"],"mappings":"eAAA,SAAiBA,kBAAU,IACzBC,IAUIC,EACAC,EAEAC,EACAC,EAPEC,EAAOC,OAAOC,OAPH,CACfC,MAAO,YACPC,WAAY,GACZN,QAAS,EACTC,SAAU,KAGyBL,GAC/BW,EAAgBC,SAASH,MAO3BI,EAAU,EAGVD,SAASE,iBAAiB,qBAAqBC,SACjDb,EAAUU,SAASI,cAAc,qBACjCb,EAAkBD,EAAQe,aAAa,SAIrCX,EAAKI,WAAWK,UACZ,IAAIG,OACNC,IAAMb,EAAKI,YAGjBT,IAAMmB,aAEsB,iBAAfd,EAAKG,MACdG,SAASH,MAAQH,EAAKG,OAEtBG,SAASH,MAAQH,EAAKG,MAAM,GAC5BJ,EAAWgB,YAAYC,EAAWhB,EAAKD,WAGrCC,EAAKI,WAAWK,QAClBb,EAAQqB,aAAa,OAAQjB,EAAKI,aAIhCY,eACJT,GACeP,EAAKG,MAAMM,SACxBF,EAAU,GAEZD,SAASH,MAAQH,EAAKG,MAAMI,IAG9BD,SAASY,iBAAiB,8BACS,WAA7BZ,SAASa,gBACPnB,EAAKF,QAAU,EACjBA,EAAUsB,WAAWN,EAAWd,EAAKF,SAErCgB,KAGFR,SAASH,MAAQE,EACjBT,EAAQqB,aAAa,OAAQpB,GAC7BwB,aAAavB,GACbwB,cAAcvB"}
--------------------------------------------------------------------------------
/lib/dont-go.umd.js:
--------------------------------------------------------------------------------
1 | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.dontGo=e()}(this,function(){return function(t){void 0===t&&(t={});var e,i,n,o,c=Object.assign({title:"Don't go!",faviconSrc:"",timeout:0,interval:1e3},t),l=document.title,r=0;document.querySelectorAll('link[rel$="icon"]').length&&(e=document.querySelector('link[rel$="icon"]'),i=e.getAttribute("href")),c.faviconSrc.length&&((new Image).src=c.faviconSrc);var u=function(){"string"==typeof c.title?document.title=c.title:(document.title=c.title[0],o=setInterval(d,c.interval)),c.faviconSrc.length&&e.setAttribute("href",c.faviconSrc)},d=function(){++r>=c.title.length&&(r=0),document.title=c.title[r]};document.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState?c.timeout>0?n=setTimeout(u,c.timeout):u():(document.title=l,e.setAttribute("href",i),clearTimeout(n),clearInterval(o))})}});
2 | //# sourceMappingURL=dont-go.umd.js.map
3 |
--------------------------------------------------------------------------------
/lib/dont-go.umd.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"dont-go.umd.js","sources":["../src/index.js"],"sourcesContent":["function dontGo (options = {}) {\n const defaults = {\n title: \"Don't go!\",\n faviconSrc: '',\n timeout: 0,\n interval: 1000\n }\n\n const opts = Object.assign(defaults, options)\n const originalTitle = document.title\n\n let favicon\n let originalFavicon\n let img\n let timeout\n let interval\n let counter = 0\n\n // Store the original favicon if it exists\n if (document.querySelectorAll('link[rel$=\"icon\"]').length) {\n favicon = document.querySelector('link[rel$=\"icon\"]')\n originalFavicon = favicon.getAttribute('href')\n }\n\n // Preload the alternative favicon\n if (opts.faviconSrc.length) {\n img = new Image() // eslint-disable-line\n img.src = opts.faviconSrc\n }\n\n const setHidden = () => {\n // if title is string just switch the title\n if (typeof opts.title === 'string') {\n document.title = opts.title\n } else {\n document.title = opts.title[0]\n interval = setInterval(nextTitle, opts.interval)\n }\n\n if (opts.faviconSrc.length) {\n favicon.setAttribute('href', opts.faviconSrc)\n }\n }\n\n const nextTitle = () => {\n counter++\n if (counter >= opts.title.length) {\n counter = 0\n }\n document.title = opts.title[counter]\n }\n\n document.addEventListener('visibilitychange', () => {\n if (document.visibilityState === 'hidden') {\n if (opts.timeout > 0) {\n timeout = setTimeout(setHidden, opts.timeout)\n } else {\n setHidden()\n }\n } else {\n document.title = originalTitle\n favicon.setAttribute('href', originalFavicon)\n clearTimeout(timeout)\n clearInterval(interval)\n }\n })\n}\n\nexport default dontGo\n"],"names":["options","const","favicon","originalFavicon","timeout","interval","opts","Object","assign","title","faviconSrc","originalTitle","document","counter","querySelectorAll","length","querySelector","getAttribute","Image","src","setHidden","setInterval","nextTitle","setAttribute","addEventListener","visibilityState","setTimeout","clearTimeout","clearInterval"],"mappings":"4KAAA,SAAiBA,kBAAU,IACzBC,IAUIC,EACAC,EAEAC,EACAC,EAPEC,EAAOC,OAAOC,OAPH,CACfC,MAAO,YACPC,WAAY,GACZN,QAAS,EACTC,SAAU,KAGyBL,GAC/BW,EAAgBC,SAASH,MAO3BI,EAAU,EAGVD,SAASE,iBAAiB,qBAAqBC,SACjDb,EAAUU,SAASI,cAAc,qBACjCb,EAAkBD,EAAQe,aAAa,SAIrCX,EAAKI,WAAWK,UACZ,IAAIG,OACNC,IAAMb,EAAKI,YAGjBT,IAAMmB,aAEsB,iBAAfd,EAAKG,MACdG,SAASH,MAAQH,EAAKG,OAEtBG,SAASH,MAAQH,EAAKG,MAAM,GAC5BJ,EAAWgB,YAAYC,EAAWhB,EAAKD,WAGrCC,EAAKI,WAAWK,QAClBb,EAAQqB,aAAa,OAAQjB,EAAKI,aAIhCY,eACJT,GACeP,EAAKG,MAAMM,SACxBF,EAAU,GAEZD,SAASH,MAAQH,EAAKG,MAAMI,IAG9BD,SAASY,iBAAiB,8BACS,WAA7BZ,SAASa,gBACPnB,EAAKF,QAAU,EACjBA,EAAUsB,WAAWN,EAAWd,EAAKF,SAErCgB,KAGFR,SAASH,MAAQE,EACjBT,EAAQqB,aAAa,OAAQpB,GAC7BwB,aAAavB,GACbwB,cAAcvB"}
--------------------------------------------------------------------------------
/media/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/media/banner.png
--------------------------------------------------------------------------------
/media/example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/media/example.png
--------------------------------------------------------------------------------
/media/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/media/favicon.ico
--------------------------------------------------------------------------------
/media/faviconAlt.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/media/faviconAlt.ico
--------------------------------------------------------------------------------
/media/leo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/media/leo.gif
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dont-go",
3 | "version": "1.1.1",
4 | "description": "Client-side library to change the title and/or favicon of the page when it is inactive",
5 | "author": "Tiaan du Plessis @tiaanduplessis",
6 | "license": "MIT",
7 | "source": "src/index.js",
8 | "main": "lib/dont-go.js",
9 | "module": "lib/dont-go.m.js",
10 | "browser": "lib/dont-go.umd.js",
11 | "keywords": [
12 | "title",
13 | "favicon",
14 | "dont-go"
15 | ],
16 | "scripts": {
17 | "start": "npm run build",
18 | "build": "microbundle --name dontGo",
19 | "dev": "microbundle watch --name dontGo",
20 | "deploy": "npm run build;cp -f lib/dont-go.umd.js public/; gh-pages -d public",
21 | "format": "prettier-standard src/index.js",
22 | "lint": "standard --fix src/*.js",
23 | "test": "npm run lint && npm run format"
24 | },
25 | "repository": {
26 | "type": "git",
27 | "url": "https://github.com/tiaanduplessis/dont-go.git"
28 | },
29 | "bugs": {
30 | "url": "https://github.com/tiaanduplessis/dont-go/issues"
31 | },
32 | "files": [
33 | "lib"
34 | ],
35 | "homepage": "https://github.com/tiaanduplessis/dont-go",
36 | "devDependencies": {
37 | "gh-pages": "2.1.1",
38 | "microbundle": "0.11.0",
39 | "prettier-standard": "8.0.1",
40 | "standard": "14.3.1"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/public/dont-go.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("dontGo", [], factory);
6 | else if(typeof exports === 'object')
7 | exports["dontGo"] = factory();
8 | else
9 | root["dontGo"] = 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 | /******/ i: moduleId,
25 | /******/ l: false,
26 | /******/ exports: {}
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.l = 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 | /******/ // identity function for calling harmony imports with the correct context
47 | /******/ __webpack_require__.i = function(value) { return value; };
48 | /******/
49 | /******/ // define getter function for harmony exports
50 | /******/ __webpack_require__.d = function(exports, name, getter) {
51 | /******/ if(!__webpack_require__.o(exports, name)) {
52 | /******/ Object.defineProperty(exports, name, {
53 | /******/ configurable: false,
54 | /******/ enumerable: true,
55 | /******/ get: getter
56 | /******/ });
57 | /******/ }
58 | /******/ };
59 | /******/
60 | /******/ // getDefaultExport function for compatibility with non-harmony modules
61 | /******/ __webpack_require__.n = function(module) {
62 | /******/ var getter = module && module.__esModule ?
63 | /******/ function getDefault() { return module['default']; } :
64 | /******/ function getModuleExports() { return module; };
65 | /******/ __webpack_require__.d(getter, 'a', getter);
66 | /******/ return getter;
67 | /******/ };
68 | /******/
69 | /******/ // Object.prototype.hasOwnProperty.call
70 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
71 | /******/
72 | /******/ // __webpack_public_path__
73 | /******/ __webpack_require__.p = "";
74 | /******/
75 | /******/ // Load entry module and return exports
76 | /******/ return __webpack_require__(__webpack_require__.s = 0);
77 | /******/ })
78 | /************************************************************************/
79 | /******/ ([
80 | /* 0 */
81 | /***/ (function(module, exports, __webpack_require__) {
82 |
83 | "use strict";
84 |
85 |
86 | module.exports = function dontGo() {
87 | var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
88 |
89 | var defaults = {
90 | title: 'Don\'t go!',
91 | faviconSrc: '',
92 | timeout: 0,
93 | interval: 1000
94 | };
95 |
96 | var opts = Object.assign(defaults, options);
97 | var originalTitle = document.title;
98 | var favicon = void 0;
99 | var originalFavicon = void 0;
100 | var img = void 0;
101 | var timeout = void 0;
102 | var interval = void 0;
103 | var counter = 0;
104 |
105 | // Store the original favicon if it exists
106 | if (document.querySelectorAll('link[rel$="icon"]').length) {
107 | favicon = document.querySelector('link[rel$="icon"]');
108 | originalFavicon = favicon.getAttribute('href');
109 | }
110 |
111 | // Preload the alternative favicon
112 | if (opts.faviconSrc.length) {
113 | img = new Image(); // eslint-disable-line
114 | img.src = opts.faviconSrc;
115 | }
116 |
117 | var setHidden = function setHidden() {
118 | // if title is string just switch the title
119 | if (typeof opts.title === 'string') {
120 | document.title = opts.title;
121 | } else {
122 | document.title = opts.title[0];
123 | interval = setInterval(nextTitle, opts.interval);
124 | }
125 |
126 | if (opts.faviconSrc.length) {
127 | favicon.setAttribute('href', opts.faviconSrc);
128 | }
129 | };
130 |
131 | var nextTitle = function nextTitle() {
132 | counter++;
133 | if (counter >= opts.title.length) {
134 | counter = 0;
135 | }
136 | document.title = opts.title[counter];
137 | };
138 |
139 | document.addEventListener('visibilitychange', function () {
140 | if (document.visibilityState === 'hidden') {
141 | if (opts.timeout > 0) {
142 | timeout = setTimeout(setHidden, opts.timeout);
143 | } else {
144 | setHidden();
145 | }
146 | } else {
147 | document.title = originalTitle;
148 | favicon.setAttribute('href', originalFavicon);
149 | clearTimeout(timeout);
150 | clearInterval(interval);
151 | }
152 | });
153 | };
154 |
155 | /***/ })
156 | /******/ ]);
157 | });
158 | //# sourceMappingURL=dont-go.js.map
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/public/favicon.png
--------------------------------------------------------------------------------
/public/faviconAlt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tiaanduplessis/dont-go/e30903f5fa1eba885a85353855753fe73cb35914/public/faviconAlt.png
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Do the old favicon switcheroo
7 |
8 |
9 |
30 |
31 |
32 |
33 |
34 |
Go away! 🖕
35 |
36 |
37 |
38 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "config:base"
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | function dontGo (options = {}) {
2 | const defaults = {
3 | title: "Don't go!",
4 | faviconSrc: '',
5 | timeout: 0,
6 | interval: 1000
7 | }
8 |
9 | const opts = Object.assign(defaults, options)
10 | const originalTitle = document.title
11 |
12 | let favicon
13 | let originalFavicon
14 | let img
15 | let timeout
16 | let interval
17 | let counter = 0
18 |
19 | // Store the original favicon if it exists
20 | if (document.querySelectorAll('link[rel$="icon"]').length) {
21 | favicon = document.querySelector('link[rel$="icon"]')
22 | originalFavicon = favicon.getAttribute('href')
23 | }
24 |
25 | // Preload the alternative favicon
26 | if (opts.faviconSrc.length) {
27 | img = new Image() // eslint-disable-line
28 | img.src = opts.faviconSrc
29 | }
30 |
31 | const setHidden = () => {
32 | // if title is string just switch the title
33 | if (typeof opts.title === 'string') {
34 | document.title = opts.title
35 | } else {
36 | document.title = opts.title[0]
37 | interval = setInterval(nextTitle, opts.interval)
38 | }
39 |
40 | if (opts.faviconSrc.length) {
41 | favicon.setAttribute('href', opts.faviconSrc)
42 | }
43 | }
44 |
45 | const nextTitle = () => {
46 | counter++
47 | if (counter >= opts.title.length) {
48 | counter = 0
49 | }
50 | document.title = opts.title[counter]
51 | }
52 |
53 | document.addEventListener('visibilitychange', () => {
54 | if (document.visibilityState === 'hidden') {
55 | if (opts.timeout > 0) {
56 | timeout = setTimeout(setHidden, opts.timeout)
57 | } else {
58 | setHidden()
59 | }
60 | } else {
61 | document.title = originalTitle
62 | favicon.setAttribute('href', originalFavicon)
63 | clearTimeout(timeout)
64 | clearInterval(interval)
65 | }
66 | })
67 | }
68 |
69 | export default dontGo
70 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.0.0"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
8 | dependencies:
9 | "@babel/highlight" "^7.0.0"
10 |
11 | "@babel/core@^7.2.2":
12 | version "7.3.4"
13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
14 | integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
15 | dependencies:
16 | "@babel/code-frame" "^7.0.0"
17 | "@babel/generator" "^7.3.4"
18 | "@babel/helpers" "^7.2.0"
19 | "@babel/parser" "^7.3.4"
20 | "@babel/template" "^7.2.2"
21 | "@babel/traverse" "^7.3.4"
22 | "@babel/types" "^7.3.4"
23 | convert-source-map "^1.1.0"
24 | debug "^4.1.0"
25 | json5 "^2.1.0"
26 | lodash "^4.17.11"
27 | resolve "^1.3.2"
28 | semver "^5.4.1"
29 | source-map "^0.5.0"
30 |
31 | "@babel/generator@^7.1.5":
32 | version "7.1.5"
33 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.1.5.tgz#615f064d13d95f8f9157c7261f68eddf32ec15b3"
34 | dependencies:
35 | "@babel/types" "^7.1.5"
36 | jsesc "^2.5.1"
37 | lodash "^4.17.10"
38 | source-map "^0.5.0"
39 | trim-right "^1.0.1"
40 |
41 | "@babel/generator@^7.2.2":
42 | version "7.2.2"
43 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.2.tgz#18c816c70962640eab42fe8cae5f3947a5c65ccc"
44 | integrity sha512-I4o675J/iS8k+P38dvJ3IBGqObLXyQLTxtrR4u9cSUJOURvafeEWb/pFMOTwtNrmq73mJzyF6ueTbO1BtN0Zeg==
45 | dependencies:
46 | "@babel/types" "^7.2.2"
47 | jsesc "^2.5.1"
48 | lodash "^4.17.10"
49 | source-map "^0.5.0"
50 | trim-right "^1.0.1"
51 |
52 | "@babel/generator@^7.3.4":
53 | version "7.3.4"
54 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e"
55 | integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==
56 | dependencies:
57 | "@babel/types" "^7.3.4"
58 | jsesc "^2.5.1"
59 | lodash "^4.17.11"
60 | source-map "^0.5.0"
61 | trim-right "^1.0.1"
62 |
63 | "@babel/helper-create-class-features-plugin@^7.2.1":
64 | version "7.3.4"
65 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.4.tgz#092711a7a3ad8ea34de3e541644c2ce6af1f6f0c"
66 | integrity sha512-uFpzw6L2omjibjxa8VGZsJUPL5wJH0zzGKpoz0ccBkzIa6C8kWNUbiBmQ0rgOKWlHJ6qzmfa6lTiGchiV8SC+g==
67 | dependencies:
68 | "@babel/helper-function-name" "^7.1.0"
69 | "@babel/helper-member-expression-to-functions" "^7.0.0"
70 | "@babel/helper-optimise-call-expression" "^7.0.0"
71 | "@babel/helper-plugin-utils" "^7.0.0"
72 | "@babel/helper-replace-supers" "^7.3.4"
73 | "@babel/helper-split-export-declaration" "^7.0.0"
74 |
75 | "@babel/helper-function-name@^7.1.0":
76 | version "7.1.0"
77 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
78 | dependencies:
79 | "@babel/helper-get-function-arity" "^7.0.0"
80 | "@babel/template" "^7.1.0"
81 | "@babel/types" "^7.0.0"
82 |
83 | "@babel/helper-get-function-arity@^7.0.0":
84 | version "7.0.0"
85 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
86 | dependencies:
87 | "@babel/types" "^7.0.0"
88 |
89 | "@babel/helper-member-expression-to-functions@^7.0.0":
90 | version "7.0.0"
91 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"
92 | integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==
93 | dependencies:
94 | "@babel/types" "^7.0.0"
95 |
96 | "@babel/helper-module-imports@^7.0.0":
97 | version "7.0.0"
98 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
99 | integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==
100 | dependencies:
101 | "@babel/types" "^7.0.0"
102 |
103 | "@babel/helper-optimise-call-expression@^7.0.0":
104 | version "7.0.0"
105 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
106 | integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==
107 | dependencies:
108 | "@babel/types" "^7.0.0"
109 |
110 | "@babel/helper-plugin-utils@^7.0.0":
111 | version "7.0.0"
112 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
113 | integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
114 |
115 | "@babel/helper-replace-supers@^7.3.4":
116 | version "7.3.4"
117 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.3.4.tgz#a795208e9b911a6eeb08e5891faacf06e7013e13"
118 | integrity sha512-pvObL9WVf2ADs+ePg0jrqlhHoxRXlOa+SHRHzAXIz2xkYuOHfGl+fKxPMaS4Fq+uje8JQPobnertBBvyrWnQ1A==
119 | dependencies:
120 | "@babel/helper-member-expression-to-functions" "^7.0.0"
121 | "@babel/helper-optimise-call-expression" "^7.0.0"
122 | "@babel/traverse" "^7.3.4"
123 | "@babel/types" "^7.3.4"
124 |
125 | "@babel/helper-split-export-declaration@^7.0.0":
126 | version "7.0.0"
127 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813"
128 | dependencies:
129 | "@babel/types" "^7.0.0"
130 |
131 | "@babel/helpers@^7.2.0":
132 | version "7.2.0"
133 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.2.0.tgz#8335f3140f3144270dc63c4732a4f8b0a50b7a21"
134 | integrity sha512-Fr07N+ea0dMcMN8nFpuK6dUIT7/ivt9yKQdEEnjVS83tG2pHwPi03gYmk/tyuwONnZ+sY+GFFPlWGgCtW1hF9A==
135 | dependencies:
136 | "@babel/template" "^7.1.2"
137 | "@babel/traverse" "^7.1.5"
138 | "@babel/types" "^7.2.0"
139 |
140 | "@babel/highlight@^7.0.0":
141 | version "7.0.0"
142 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
143 | dependencies:
144 | chalk "^2.0.0"
145 | esutils "^2.0.2"
146 | js-tokens "^4.0.0"
147 |
148 | "@babel/parser@^7.0.0", "@babel/parser@^7.1.2", "@babel/parser@^7.1.5":
149 | version "7.1.5"
150 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.1.5.tgz#20b7d5e7e1811ba996f8a868962ea7dd2bfcd2fc"
151 |
152 | "@babel/parser@^7.2.2":
153 | version "7.2.2"
154 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.2.tgz#37ebdbc88a2e1ebc6c8dd3d35ea9436e3e39e477"
155 | integrity sha512-UNTmQ5cSLDeBGBl+s7JeowkqIHgmFAGBnLDdIzFmUNSuS5JF0XBcN59jsh/vJO/YjfsBqMxhMjoFGmNExmf0FA==
156 |
157 | "@babel/parser@^7.3.4":
158 | version "7.3.4"
159 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
160 | integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
161 |
162 | "@babel/plugin-proposal-class-properties@7.2.1":
163 | version "7.2.1"
164 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.1.tgz#c734a53e0a1ec40fe5c22ee5069d26da3b187d05"
165 | integrity sha512-/4FKFChkQ2Jgb8lBDsvFX496YTi7UWTetVgS8oJUpX1e/DlaoeEK57At27ug8Hu2zI2g8bzkJ+8k9qrHZRPGPA==
166 | dependencies:
167 | "@babel/helper-create-class-features-plugin" "^7.2.1"
168 | "@babel/helper-plugin-utils" "^7.0.0"
169 |
170 | "@babel/plugin-syntax-jsx@^7.2.0":
171 | version "7.2.0"
172 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7"
173 | integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==
174 | dependencies:
175 | "@babel/helper-plugin-utils" "^7.0.0"
176 |
177 | "@babel/polyfill@^7.0.0":
178 | version "7.0.0"
179 | resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.0.0.tgz#c8ff65c9ec3be6a1ba10113ebd40e8750fb90bff"
180 | integrity sha512-dnrMRkyyr74CRelJwvgnnSUDh2ge2NCTyHVwpOdvRMHtJUyxLtMAfhBN3s64pY41zdw0kgiLPh6S20eb1NcX6Q==
181 | dependencies:
182 | core-js "^2.5.7"
183 | regenerator-runtime "^0.11.1"
184 |
185 | "@babel/template@^7.1.0":
186 | version "7.1.2"
187 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.2.tgz#090484a574fef5a2d2d7726a674eceda5c5b5644"
188 | dependencies:
189 | "@babel/code-frame" "^7.0.0"
190 | "@babel/parser" "^7.1.2"
191 | "@babel/types" "^7.1.2"
192 |
193 | "@babel/template@^7.1.2", "@babel/template@^7.2.2":
194 | version "7.2.2"
195 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
196 | integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
197 | dependencies:
198 | "@babel/code-frame" "^7.0.0"
199 | "@babel/parser" "^7.2.2"
200 | "@babel/types" "^7.2.2"
201 |
202 | "@babel/traverse@^7.0.0":
203 | version "7.1.5"
204 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.5.tgz#5aafca2039aa058c104cf2bfeb9fc4a857ccbca9"
205 | dependencies:
206 | "@babel/code-frame" "^7.0.0"
207 | "@babel/generator" "^7.1.5"
208 | "@babel/helper-function-name" "^7.1.0"
209 | "@babel/helper-split-export-declaration" "^7.0.0"
210 | "@babel/parser" "^7.1.5"
211 | "@babel/types" "^7.1.5"
212 | debug "^3.1.0"
213 | globals "^11.1.0"
214 | lodash "^4.17.10"
215 |
216 | "@babel/traverse@^7.1.5":
217 | version "7.2.2"
218 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.2.tgz#961039de1f9bcb946d807efe2dba9c92e859d188"
219 | integrity sha512-E5Bn9FSwHpSkUhthw/XEuvFZxIgrqb9M8cX8j5EUQtrUG5DQUy6bFyl7G7iQ1D1Czudor+xkmp81JbLVVM0Sjg==
220 | dependencies:
221 | "@babel/code-frame" "^7.0.0"
222 | "@babel/generator" "^7.2.2"
223 | "@babel/helper-function-name" "^7.1.0"
224 | "@babel/helper-split-export-declaration" "^7.0.0"
225 | "@babel/parser" "^7.2.2"
226 | "@babel/types" "^7.2.2"
227 | debug "^4.1.0"
228 | globals "^11.1.0"
229 | lodash "^4.17.10"
230 |
231 | "@babel/traverse@^7.3.4":
232 | version "7.3.4"
233 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06"
234 | integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==
235 | dependencies:
236 | "@babel/code-frame" "^7.0.0"
237 | "@babel/generator" "^7.3.4"
238 | "@babel/helper-function-name" "^7.1.0"
239 | "@babel/helper-split-export-declaration" "^7.0.0"
240 | "@babel/parser" "^7.3.4"
241 | "@babel/types" "^7.3.4"
242 | debug "^4.1.0"
243 | globals "^11.1.0"
244 | lodash "^4.17.11"
245 |
246 | "@babel/types@^7.0.0", "@babel/types@^7.1.2", "@babel/types@^7.1.5":
247 | version "7.1.5"
248 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.1.5.tgz#12fe64e91a431234b7017b4227a78cc0eec4e081"
249 | dependencies:
250 | esutils "^2.0.2"
251 | lodash "^4.17.10"
252 | to-fast-properties "^2.0.0"
253 |
254 | "@babel/types@^7.2.0", "@babel/types@^7.2.2":
255 | version "7.2.2"
256 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz#44e10fc24e33af524488b716cdaee5360ea8ed1e"
257 | integrity sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg==
258 | dependencies:
259 | esutils "^2.0.2"
260 | lodash "^4.17.10"
261 | to-fast-properties "^2.0.0"
262 |
263 | "@babel/types@^7.3.4":
264 | version "7.3.4"
265 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz#bf482eaeaffb367a28abbf9357a94963235d90ed"
266 | integrity sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ==
267 | dependencies:
268 | esutils "^2.0.2"
269 | lodash "^4.17.11"
270 | to-fast-properties "^2.0.0"
271 |
272 | "@sheerun/eslint-config-standard@^10.2.1":
273 | version "10.2.1"
274 | resolved "https://registry.yarnpkg.com/@sheerun/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#7d73397369c396b3625cab6ec313f6d4208300ef"
275 |
276 | "@types/estree@0.0.39":
277 | version "0.0.39"
278 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
279 |
280 | "@types/node@*":
281 | version "10.12.3"
282 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.3.tgz#3918b73ceed484e58367be5acb79d1775239e393"
283 |
284 | "@vue/component-compiler-utils@^1.0.0":
285 | version "1.3.1"
286 | resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-1.3.1.tgz#686f0b913d59590ae327b2a1cb4b6d9b931bbe0e"
287 | dependencies:
288 | consolidate "^0.15.1"
289 | hash-sum "^1.0.2"
290 | lru-cache "^4.1.2"
291 | merge-source-map "^1.1.0"
292 | postcss "^6.0.20"
293 | postcss-selector-parser "^3.1.1"
294 | prettier "^1.13.0"
295 | source-map "^0.5.6"
296 | vue-template-es2015-compiler "^1.6.0"
297 |
298 | abbrev@1:
299 | version "1.1.1"
300 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
301 |
302 | acorn-jsx@^3.0.0:
303 | version "3.0.1"
304 | resolved "http://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
305 | dependencies:
306 | acorn "^3.0.4"
307 |
308 | acorn-jsx@^5.0.2:
309 | version "5.0.2"
310 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f"
311 | integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==
312 |
313 | acorn@^3.0.4:
314 | version "3.3.0"
315 | resolved "http://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
316 |
317 | acorn@^5.5.0:
318 | version "5.7.3"
319 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
320 |
321 | acorn@^7.0.0:
322 | version "7.1.0"
323 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
324 | integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
325 |
326 | ajv-keywords@^2.1.0:
327 | version "2.1.1"
328 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
329 |
330 | ajv@^5.2.3, ajv@^5.3.0:
331 | version "5.5.2"
332 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
333 | dependencies:
334 | co "^4.6.0"
335 | fast-deep-equal "^1.0.0"
336 | fast-json-stable-stringify "^2.0.0"
337 | json-schema-traverse "^0.3.0"
338 |
339 | ajv@^6.10.0, ajv@^6.10.2:
340 | version "6.10.2"
341 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
342 | integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
343 | dependencies:
344 | fast-deep-equal "^2.0.1"
345 | fast-json-stable-stringify "^2.0.0"
346 | json-schema-traverse "^0.4.1"
347 | uri-js "^4.2.2"
348 |
349 | alphanum-sort@^1.0.0, alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
350 | version "1.0.2"
351 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
352 |
353 | ansi-escapes@^3.0.0:
354 | version "3.1.0"
355 | resolved "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
356 |
357 | ansi-escapes@^3.2.0:
358 | version "3.2.0"
359 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
360 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
361 |
362 | ansi-regex@^2.0.0:
363 | version "2.1.1"
364 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
365 |
366 | ansi-regex@^3.0.0:
367 | version "3.0.0"
368 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
369 |
370 | ansi-regex@^4.1.0:
371 | version "4.1.0"
372 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
373 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
374 |
375 | ansi-styles@^2.2.1:
376 | version "2.2.1"
377 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
378 |
379 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
380 | version "3.2.1"
381 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
382 | dependencies:
383 | color-convert "^1.9.0"
384 |
385 | aproba@^1.0.3:
386 | version "1.2.0"
387 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
388 |
389 | are-we-there-yet@~1.1.2:
390 | version "1.1.5"
391 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
392 | dependencies:
393 | delegates "^1.0.0"
394 | readable-stream "^2.0.6"
395 |
396 | argparse@^1.0.7:
397 | version "1.0.10"
398 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
399 | dependencies:
400 | sprintf-js "~1.0.2"
401 |
402 | arr-diff@^2.0.0:
403 | version "2.0.0"
404 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
405 | dependencies:
406 | arr-flatten "^1.0.1"
407 |
408 | arr-flatten@^1.0.1:
409 | version "1.1.0"
410 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
411 |
412 | array-includes@^3.0.3:
413 | version "3.0.3"
414 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
415 | dependencies:
416 | define-properties "^1.1.2"
417 | es-abstract "^1.7.0"
418 |
419 | array-union@^1.0.1:
420 | version "1.0.2"
421 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
422 | dependencies:
423 | array-uniq "^1.0.1"
424 |
425 | array-uniq@^1.0.1:
426 | version "1.0.3"
427 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
428 |
429 | array-unique@^0.2.1:
430 | version "0.2.1"
431 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
432 |
433 | astral-regex@^1.0.0:
434 | version "1.0.0"
435 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
436 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
437 |
438 | async@^2.6.1:
439 | version "2.6.1"
440 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610"
441 | dependencies:
442 | lodash "^4.17.10"
443 |
444 | asyncro@^3.0.0:
445 | version "3.0.0"
446 | resolved "https://registry.yarnpkg.com/asyncro/-/asyncro-3.0.0.tgz#3c7a732e263bc4a42499042f48d7d858e9c0134e"
447 |
448 | autoprefixer@^6.3.1:
449 | version "6.7.7"
450 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
451 | dependencies:
452 | browserslist "^1.7.6"
453 | caniuse-db "^1.0.30000634"
454 | normalize-range "^0.1.2"
455 | num2fraction "^1.2.2"
456 | postcss "^5.2.16"
457 | postcss-value-parser "^3.2.3"
458 |
459 | autoprefixer@^9.0.0:
460 | version "9.3.1"
461 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.3.1.tgz#71b622174de2b783d5fd99f9ad617b7a3c78443e"
462 | dependencies:
463 | browserslist "^4.3.3"
464 | caniuse-lite "^1.0.30000898"
465 | normalize-range "^0.1.2"
466 | num2fraction "^1.2.2"
467 | postcss "^7.0.5"
468 | postcss-value-parser "^3.3.1"
469 |
470 | babel-code-frame@^6.22.0:
471 | version "6.26.0"
472 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
473 | dependencies:
474 | chalk "^1.1.3"
475 | esutils "^2.0.2"
476 | js-tokens "^3.0.2"
477 |
478 | babel-eslint@>=7.2.3:
479 | version "10.0.1"
480 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed"
481 | dependencies:
482 | "@babel/code-frame" "^7.0.0"
483 | "@babel/parser" "^7.0.0"
484 | "@babel/traverse" "^7.0.0"
485 | "@babel/types" "^7.0.0"
486 | eslint-scope "3.7.1"
487 | eslint-visitor-keys "^1.0.0"
488 |
489 | babel-plugin-transform-async-to-promises@^0.8.3:
490 | version "0.8.4"
491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-promises/-/babel-plugin-transform-async-to-promises-0.8.4.tgz#f0ffd0db2b1fa1bee1b723fe651dc412d75aabb7"
492 | integrity sha512-2lS63lG9z0pMpnd6D+dOctOgZ0QQlYZrPSMzx9IeJpSZo3MuFD09LfG12PRSIkJr7v2UkcnYKfBJRx39X4Di4w==
493 |
494 | babel-runtime@^6.23.0, babel-runtime@^6.26.0:
495 | version "6.26.0"
496 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
497 | dependencies:
498 | core-js "^2.4.0"
499 | regenerator-runtime "^0.11.0"
500 |
501 | babylon@^6.15.0:
502 | version "6.18.0"
503 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
504 |
505 | balanced-match@^0.4.2:
506 | version "0.4.2"
507 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
508 |
509 | balanced-match@^1.0.0:
510 | version "1.0.0"
511 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
512 |
513 | big.js@^3.1.3:
514 | version "3.2.0"
515 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
516 |
517 | bl@^1.0.0:
518 | version "1.2.2"
519 | resolved "http://registry.npmjs.org/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c"
520 | dependencies:
521 | readable-stream "^2.3.5"
522 | safe-buffer "^5.1.1"
523 |
524 | bluebird@^3.1.1:
525 | version "3.5.3"
526 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
527 |
528 | boolbase@^1.0.0, boolbase@~1.0.0:
529 | version "1.0.0"
530 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
531 |
532 | brace-expansion@^1.1.7:
533 | version "1.1.11"
534 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
535 | dependencies:
536 | balanced-match "^1.0.0"
537 | concat-map "0.0.1"
538 |
539 | braces@^1.8.2:
540 | version "1.8.5"
541 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
542 | dependencies:
543 | expand-range "^1.8.1"
544 | preserve "^0.2.0"
545 | repeat-element "^1.1.2"
546 |
547 | brotli-size@^0.0.3:
548 | version "0.0.3"
549 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-0.0.3.tgz#1d3855b38f182591a6f69da1516131676e5f62f2"
550 | dependencies:
551 | duplexer "^0.1.1"
552 | iltorb "^2.0.5"
553 |
554 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
555 | version "1.7.7"
556 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
557 | dependencies:
558 | caniuse-db "^1.0.30000639"
559 | electron-to-chromium "^1.2.7"
560 |
561 | browserslist@^4.0.0, browserslist@^4.3.3:
562 | version "4.3.4"
563 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.4.tgz#4477b737db6a1b07077275b24791e680d4300425"
564 | dependencies:
565 | caniuse-lite "^1.0.30000899"
566 | electron-to-chromium "^1.3.82"
567 | node-releases "^1.0.1"
568 |
569 | buble@^0.19.6:
570 | version "0.19.6"
571 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.19.6.tgz#915909b6bd5b11ee03b1c885ec914a8b974d34d3"
572 | integrity sha512-9kViM6nJA1Q548Jrd06x0geh+BG2ru2+RMDkIHHgJY/8AcyCs34lTHwra9BX7YdPrZXd5aarkpr/SY8bmPgPdg==
573 | dependencies:
574 | chalk "^2.4.1"
575 | magic-string "^0.25.1"
576 | minimist "^1.2.0"
577 | os-homedir "^1.0.1"
578 | regexpu-core "^4.2.0"
579 | vlq "^1.0.0"
580 |
581 | buffer-alloc-unsafe@^1.1.0:
582 | version "1.1.0"
583 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0"
584 |
585 | buffer-alloc@^1.2.0:
586 | version "1.2.0"
587 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec"
588 | dependencies:
589 | buffer-alloc-unsafe "^1.1.0"
590 | buffer-fill "^1.0.0"
591 |
592 | buffer-fill@^1.0.0:
593 | version "1.0.0"
594 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c"
595 |
596 | buffer-from@^1.0.0:
597 | version "1.1.1"
598 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
599 |
600 | builtin-modules@^1.0.0:
601 | version "1.1.1"
602 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
603 |
604 | builtin-modules@^3.0.0:
605 | version "3.0.0"
606 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.0.0.tgz#1e587d44b006620d90286cc7a9238bbc6129cab1"
607 | integrity sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg==
608 |
609 | caller-callsite@^2.0.0:
610 | version "2.0.0"
611 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
612 | dependencies:
613 | callsites "^2.0.0"
614 |
615 | caller-path@^0.1.0:
616 | version "0.1.0"
617 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
618 | dependencies:
619 | callsites "^0.2.0"
620 |
621 | caller-path@^2.0.0:
622 | version "2.0.0"
623 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
624 | dependencies:
625 | caller-callsite "^2.0.0"
626 |
627 | callsites@^0.2.0:
628 | version "0.2.0"
629 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
630 |
631 | callsites@^2.0.0:
632 | version "2.0.0"
633 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
634 |
635 | callsites@^3.0.0:
636 | version "3.1.0"
637 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
638 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
639 |
640 | camelcase@^5.0.0:
641 | version "5.0.0"
642 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
643 |
644 | caniuse-api@^1.5.2:
645 | version "1.6.1"
646 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
647 | dependencies:
648 | browserslist "^1.3.6"
649 | caniuse-db "^1.0.30000529"
650 | lodash.memoize "^4.1.2"
651 | lodash.uniq "^4.5.0"
652 |
653 | caniuse-api@^3.0.0:
654 | version "3.0.0"
655 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
656 | dependencies:
657 | browserslist "^4.0.0"
658 | caniuse-lite "^1.0.0"
659 | lodash.memoize "^4.1.2"
660 | lodash.uniq "^4.5.0"
661 |
662 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
663 | version "1.0.30000906"
664 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000906.tgz#9a9e43b8690f9a0937c9fdf5e4699eee8516b982"
665 |
666 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000898, caniuse-lite@^1.0.30000899:
667 | version "1.0.30000906"
668 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000906.tgz#7c44e498a2504f7a5db3b4f91285bbc821157a77"
669 |
670 | chalk@^1.0.0, chalk@^1.1.3:
671 | version "1.1.3"
672 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
673 | dependencies:
674 | ansi-styles "^2.2.1"
675 | escape-string-regexp "^1.0.2"
676 | has-ansi "^2.0.0"
677 | strip-ansi "^3.0.0"
678 | supports-color "^2.0.0"
679 |
680 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.0, chalk@^2.4.1:
681 | version "2.4.1"
682 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
683 | dependencies:
684 | ansi-styles "^3.2.1"
685 | escape-string-regexp "^1.0.5"
686 | supports-color "^5.3.0"
687 |
688 | chalk@^2.4.2:
689 | version "2.4.2"
690 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
691 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
692 | dependencies:
693 | ansi-styles "^3.2.1"
694 | escape-string-regexp "^1.0.5"
695 | supports-color "^5.3.0"
696 |
697 | chardet@^0.4.0:
698 | version "0.4.2"
699 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
700 |
701 | chardet@^0.7.0:
702 | version "0.7.0"
703 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
704 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
705 |
706 | chownr@^1.0.1:
707 | version "1.1.1"
708 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
709 |
710 | circular-json@^0.3.1:
711 | version "0.3.3"
712 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
713 |
714 | clap@^1.0.9:
715 | version "1.2.3"
716 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
717 | dependencies:
718 | chalk "^1.1.3"
719 |
720 | cli-cursor@^2.1.0:
721 | version "2.1.0"
722 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
723 | dependencies:
724 | restore-cursor "^2.0.0"
725 |
726 | cli-width@^2.0.0:
727 | version "2.2.0"
728 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
729 |
730 | clone@^1.0.2:
731 | version "1.0.4"
732 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
733 |
734 | co@^4.6.0:
735 | version "4.6.0"
736 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
737 |
738 | coa@~1.0.1:
739 | version "1.0.4"
740 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
741 | dependencies:
742 | q "^1.1.2"
743 |
744 | coa@~2.0.1:
745 | version "2.0.1"
746 | resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.1.tgz#f3f8b0b15073e35d70263fb1042cb2c023db38af"
747 | dependencies:
748 | q "^1.1.2"
749 |
750 | code-point-at@^1.0.0:
751 | version "1.1.0"
752 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
753 |
754 | color-convert@^1.3.0, color-convert@^1.9.0, color-convert@^1.9.1:
755 | version "1.9.3"
756 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
757 | dependencies:
758 | color-name "1.1.3"
759 |
760 | color-name@1.1.3:
761 | version "1.1.3"
762 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
763 |
764 | color-name@^1.0.0:
765 | version "1.1.4"
766 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
767 |
768 | color-string@^0.3.0:
769 | version "0.3.0"
770 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
771 | dependencies:
772 | color-name "^1.0.0"
773 |
774 | color-string@^1.5.2:
775 | version "1.5.3"
776 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc"
777 | dependencies:
778 | color-name "^1.0.0"
779 | simple-swizzle "^0.2.2"
780 |
781 | color@^0.11.0:
782 | version "0.11.4"
783 | resolved "http://registry.npmjs.org/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
784 | dependencies:
785 | clone "^1.0.2"
786 | color-convert "^1.3.0"
787 | color-string "^0.3.0"
788 |
789 | color@^3.0.0:
790 | version "3.1.0"
791 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.0.tgz#d8e9fb096732875774c84bf922815df0308d0ffc"
792 | dependencies:
793 | color-convert "^1.9.1"
794 | color-string "^1.5.2"
795 |
796 | colormin@^1.0.5:
797 | version "1.1.2"
798 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
799 | dependencies:
800 | color "^0.11.0"
801 | css-color-names "0.0.4"
802 | has "^1.0.1"
803 |
804 | colors@~1.1.2:
805 | version "1.1.2"
806 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
807 |
808 | commander@^2.18.0:
809 | version "2.19.0"
810 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
811 |
812 | commander@~2.17.1:
813 | version "2.17.1"
814 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
815 |
816 | common-tags@^1.4.0:
817 | version "1.8.0"
818 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
819 |
820 | concat-map@0.0.1:
821 | version "0.0.1"
822 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
823 |
824 | concat-stream@^1.6.0:
825 | version "1.6.2"
826 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
827 | dependencies:
828 | buffer-from "^1.0.0"
829 | inherits "^2.0.3"
830 | readable-stream "^2.2.2"
831 | typedarray "^0.0.6"
832 |
833 | concat-with-sourcemaps@^1.0.5:
834 | version "1.1.0"
835 | resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e"
836 | dependencies:
837 | source-map "^0.6.1"
838 |
839 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
840 | version "1.1.0"
841 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
842 |
843 | consolidate@^0.15.1:
844 | version "0.15.1"
845 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.15.1.tgz#21ab043235c71a07d45d9aad98593b0dba56bab7"
846 | dependencies:
847 | bluebird "^3.1.1"
848 |
849 | contains-path@^0.1.0:
850 | version "0.1.0"
851 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
852 |
853 | convert-source-map@^1.1.0:
854 | version "1.6.0"
855 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
856 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
857 | dependencies:
858 | safe-buffer "~5.1.1"
859 |
860 | core-js@^2.4.0, core-js@^2.5.3:
861 | version "2.5.7"
862 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
863 |
864 | core-js@^2.5.7:
865 | version "2.6.1"
866 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.1.tgz#87416ae817de957a3f249b3b5ca475d4aaed6042"
867 | integrity sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg==
868 |
869 | core-util-is@~1.0.0:
870 | version "1.0.2"
871 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
872 |
873 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
874 | version "2.2.2"
875 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
876 | dependencies:
877 | is-directory "^0.3.1"
878 | js-yaml "^3.4.3"
879 | minimist "^1.2.0"
880 | object-assign "^4.1.0"
881 | os-homedir "^1.0.1"
882 | parse-json "^2.2.0"
883 | require-from-string "^1.1.0"
884 |
885 | cosmiconfig@^5.0.0:
886 | version "5.0.7"
887 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04"
888 | dependencies:
889 | import-fresh "^2.0.0"
890 | is-directory "^0.3.1"
891 | js-yaml "^3.9.0"
892 | parse-json "^4.0.0"
893 |
894 | cross-spawn@^5.1.0:
895 | version "5.1.0"
896 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
897 | dependencies:
898 | lru-cache "^4.0.1"
899 | shebang-command "^1.2.0"
900 | which "^1.2.9"
901 |
902 | cross-spawn@^6.0.5:
903 | version "6.0.5"
904 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
905 | dependencies:
906 | nice-try "^1.0.4"
907 | path-key "^2.0.1"
908 | semver "^5.5.0"
909 | shebang-command "^1.2.0"
910 | which "^1.2.9"
911 |
912 | css-color-names@0.0.4, css-color-names@^0.0.4:
913 | version "0.0.4"
914 | resolved "http://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
915 |
916 | css-declaration-sorter@^4.0.1:
917 | version "4.0.1"
918 | resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
919 | dependencies:
920 | postcss "^7.0.1"
921 | timsort "^0.3.0"
922 |
923 | css-modules-loader-core@^1.1.0:
924 | version "1.1.0"
925 | resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16"
926 | dependencies:
927 | icss-replace-symbols "1.1.0"
928 | postcss "6.0.1"
929 | postcss-modules-extract-imports "1.1.0"
930 | postcss-modules-local-by-default "1.2.0"
931 | postcss-modules-scope "1.1.0"
932 | postcss-modules-values "1.3.0"
933 |
934 | css-select-base-adapter@~0.1.0:
935 | version "0.1.1"
936 | resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
937 |
938 | css-select@^2.0.0:
939 | version "2.0.2"
940 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede"
941 | dependencies:
942 | boolbase "^1.0.0"
943 | css-what "^2.1.2"
944 | domutils "^1.7.0"
945 | nth-check "^1.0.2"
946 |
947 | css-selector-tokenizer@^0.7.0:
948 | version "0.7.1"
949 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d"
950 | dependencies:
951 | cssesc "^0.1.0"
952 | fastparse "^1.1.1"
953 | regexpu-core "^1.0.0"
954 |
955 | css-tree@1.0.0-alpha.28:
956 | version "1.0.0-alpha.28"
957 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
958 | dependencies:
959 | mdn-data "~1.1.0"
960 | source-map "^0.5.3"
961 |
962 | css-tree@1.0.0-alpha.29:
963 | version "1.0.0-alpha.29"
964 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
965 | dependencies:
966 | mdn-data "~1.1.0"
967 | source-map "^0.5.3"
968 |
969 | css-unit-converter@^1.1.1:
970 | version "1.1.1"
971 | resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996"
972 |
973 | css-url-regex@^1.1.0:
974 | version "1.1.0"
975 | resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec"
976 |
977 | css-what@^2.1.2:
978 | version "2.1.2"
979 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.2.tgz#c0876d9d0480927d7d4920dcd72af3595649554d"
980 |
981 | cssesc@^0.1.0:
982 | version "0.1.0"
983 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
984 |
985 | cssesc@^2.0.0:
986 | version "2.0.0"
987 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
988 |
989 | cssnano-preset-default@^4.0.5:
990 | version "4.0.5"
991 | resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.5.tgz#d1756c0259d98ad311e601ba76e95c60f6771ac1"
992 | dependencies:
993 | css-declaration-sorter "^4.0.1"
994 | cssnano-util-raw-cache "^4.0.1"
995 | postcss "^7.0.0"
996 | postcss-calc "^7.0.0"
997 | postcss-colormin "^4.0.2"
998 | postcss-convert-values "^4.0.1"
999 | postcss-discard-comments "^4.0.1"
1000 | postcss-discard-duplicates "^4.0.2"
1001 | postcss-discard-empty "^4.0.1"
1002 | postcss-discard-overridden "^4.0.1"
1003 | postcss-merge-longhand "^4.0.9"
1004 | postcss-merge-rules "^4.0.2"
1005 | postcss-minify-font-values "^4.0.2"
1006 | postcss-minify-gradients "^4.0.1"
1007 | postcss-minify-params "^4.0.1"
1008 | postcss-minify-selectors "^4.0.1"
1009 | postcss-normalize-charset "^4.0.1"
1010 | postcss-normalize-display-values "^4.0.1"
1011 | postcss-normalize-positions "^4.0.1"
1012 | postcss-normalize-repeat-style "^4.0.1"
1013 | postcss-normalize-string "^4.0.1"
1014 | postcss-normalize-timing-functions "^4.0.1"
1015 | postcss-normalize-unicode "^4.0.1"
1016 | postcss-normalize-url "^4.0.1"
1017 | postcss-normalize-whitespace "^4.0.1"
1018 | postcss-ordered-values "^4.1.1"
1019 | postcss-reduce-initial "^4.0.2"
1020 | postcss-reduce-transforms "^4.0.1"
1021 | postcss-svgo "^4.0.1"
1022 | postcss-unique-selectors "^4.0.1"
1023 |
1024 | cssnano-util-get-arguments@^4.0.0:
1025 | version "4.0.0"
1026 | resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
1027 |
1028 | cssnano-util-get-match@^4.0.0:
1029 | version "4.0.0"
1030 | resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
1031 |
1032 | cssnano-util-raw-cache@^4.0.1:
1033 | version "4.0.1"
1034 | resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
1035 | dependencies:
1036 | postcss "^7.0.0"
1037 |
1038 | cssnano-util-same-parent@^4.0.0:
1039 | version "4.0.1"
1040 | resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
1041 |
1042 | cssnano@^3.10.0:
1043 | version "3.10.0"
1044 | resolved "http://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
1045 | dependencies:
1046 | autoprefixer "^6.3.1"
1047 | decamelize "^1.1.2"
1048 | defined "^1.0.0"
1049 | has "^1.0.1"
1050 | object-assign "^4.0.1"
1051 | postcss "^5.0.14"
1052 | postcss-calc "^5.2.0"
1053 | postcss-colormin "^2.1.8"
1054 | postcss-convert-values "^2.3.4"
1055 | postcss-discard-comments "^2.0.4"
1056 | postcss-discard-duplicates "^2.0.1"
1057 | postcss-discard-empty "^2.0.1"
1058 | postcss-discard-overridden "^0.1.1"
1059 | postcss-discard-unused "^2.2.1"
1060 | postcss-filter-plugins "^2.0.0"
1061 | postcss-merge-idents "^2.1.5"
1062 | postcss-merge-longhand "^2.0.1"
1063 | postcss-merge-rules "^2.0.3"
1064 | postcss-minify-font-values "^1.0.2"
1065 | postcss-minify-gradients "^1.0.1"
1066 | postcss-minify-params "^1.0.4"
1067 | postcss-minify-selectors "^2.0.4"
1068 | postcss-normalize-charset "^1.1.0"
1069 | postcss-normalize-url "^3.0.7"
1070 | postcss-ordered-values "^2.1.0"
1071 | postcss-reduce-idents "^2.2.2"
1072 | postcss-reduce-initial "^1.0.0"
1073 | postcss-reduce-transforms "^1.0.3"
1074 | postcss-svgo "^2.1.1"
1075 | postcss-unique-selectors "^2.0.2"
1076 | postcss-value-parser "^3.2.3"
1077 | postcss-zindex "^2.0.1"
1078 |
1079 | cssnano@^4.1.7:
1080 | version "4.1.7"
1081 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.7.tgz#0bf112294bec103ab5f68d3f805732c8325a0b1b"
1082 | dependencies:
1083 | cosmiconfig "^5.0.0"
1084 | cssnano-preset-default "^4.0.5"
1085 | is-resolvable "^1.0.0"
1086 | postcss "^7.0.0"
1087 |
1088 | csso@^3.5.0:
1089 | version "3.5.1"
1090 | resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b"
1091 | dependencies:
1092 | css-tree "1.0.0-alpha.29"
1093 |
1094 | csso@~2.3.1:
1095 | version "2.3.2"
1096 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
1097 | dependencies:
1098 | clap "^1.0.9"
1099 | source-map "^0.5.3"
1100 |
1101 | debug-log@^1.0.0:
1102 | version "1.0.1"
1103 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
1104 |
1105 | debug@^2.6.8, debug@^2.6.9:
1106 | version "2.6.9"
1107 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1108 | dependencies:
1109 | ms "2.0.0"
1110 |
1111 | debug@^3.1.0:
1112 | version "3.2.6"
1113 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
1114 | dependencies:
1115 | ms "^2.1.1"
1116 |
1117 | debug@^4.0.1:
1118 | version "4.1.1"
1119 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
1120 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
1121 | dependencies:
1122 | ms "^2.1.1"
1123 |
1124 | debug@^4.1.0:
1125 | version "4.1.0"
1126 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87"
1127 | integrity sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==
1128 | dependencies:
1129 | ms "^2.1.1"
1130 |
1131 | decamelize@^1.1.2:
1132 | version "1.2.0"
1133 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1134 |
1135 | decompress-response@^3.3.0:
1136 | version "3.3.0"
1137 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
1138 | dependencies:
1139 | mimic-response "^1.0.0"
1140 |
1141 | deep-extend@^0.6.0:
1142 | version "0.6.0"
1143 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
1144 |
1145 | deep-is@~0.1.3:
1146 | version "0.1.3"
1147 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1148 |
1149 | define-properties@^1.1.2, define-properties@^1.1.3:
1150 | version "1.1.3"
1151 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1152 | dependencies:
1153 | object-keys "^1.0.12"
1154 |
1155 | defined@^1.0.0:
1156 | version "1.0.0"
1157 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
1158 |
1159 | deglob@^4.0.0:
1160 | version "4.0.1"
1161 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-4.0.1.tgz#0685c6383992fd6009be10653a2b1116696fad55"
1162 | integrity sha512-/g+RDZ7yf2HvoW+E5Cy+K94YhgcFgr6C8LuHZD1O5HoNPkf3KY6RfXJ0DBGlB/NkLi5gml+G9zqRzk9S0mHZCg==
1163 | dependencies:
1164 | find-root "^1.0.0"
1165 | glob "^7.0.5"
1166 | ignore "^5.0.0"
1167 | pkg-config "^1.1.0"
1168 | run-parallel "^1.1.2"
1169 | uniq "^1.0.1"
1170 |
1171 | del@^3.0.0:
1172 | version "3.0.0"
1173 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
1174 | dependencies:
1175 | globby "^6.1.0"
1176 | is-path-cwd "^1.0.0"
1177 | is-path-in-cwd "^1.0.0"
1178 | p-map "^1.1.1"
1179 | pify "^3.0.0"
1180 | rimraf "^2.2.8"
1181 |
1182 | delegates@^1.0.0:
1183 | version "1.0.0"
1184 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1185 |
1186 | detect-libc@^1.0.3:
1187 | version "1.0.3"
1188 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1189 |
1190 | dlv@^1.1.0:
1191 | version "1.1.2"
1192 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5"
1193 |
1194 | doctrine@1.5.0:
1195 | version "1.5.0"
1196 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1197 | dependencies:
1198 | esutils "^2.0.2"
1199 | isarray "^1.0.0"
1200 |
1201 | doctrine@^2.1.0:
1202 | version "2.1.0"
1203 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
1204 | dependencies:
1205 | esutils "^2.0.2"
1206 |
1207 | doctrine@^3.0.0:
1208 | version "3.0.0"
1209 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
1210 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
1211 | dependencies:
1212 | esutils "^2.0.2"
1213 |
1214 | dom-serializer@0:
1215 | version "0.1.0"
1216 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
1217 | dependencies:
1218 | domelementtype "~1.1.1"
1219 | entities "~1.1.1"
1220 |
1221 | domelementtype@1:
1222 | version "1.2.1"
1223 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.2.1.tgz#578558ef23befac043a1abb0db07635509393479"
1224 |
1225 | domelementtype@~1.1.1:
1226 | version "1.1.3"
1227 | resolved "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
1228 |
1229 | domutils@^1.7.0:
1230 | version "1.7.0"
1231 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
1232 | dependencies:
1233 | dom-serializer "0"
1234 | domelementtype "1"
1235 |
1236 | dot-prop@^4.1.1:
1237 | version "4.2.0"
1238 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
1239 | dependencies:
1240 | is-obj "^1.0.0"
1241 |
1242 | duplexer@^0.1.1:
1243 | version "0.1.1"
1244 | resolved "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
1245 |
1246 | electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.82:
1247 | version "1.3.83"
1248 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.83.tgz#74584eb0972bb6777811c5d68d988c722f5e6666"
1249 |
1250 | email-addresses@^3.0.1:
1251 | version "3.0.2"
1252 | resolved "https://registry.yarnpkg.com/email-addresses/-/email-addresses-3.0.2.tgz#a31280d19baf86669840a0aa45be1d7f6e7df315"
1253 |
1254 | emoji-regex@^7.0.1:
1255 | version "7.0.3"
1256 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
1257 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
1258 |
1259 | emojis-list@^2.0.0:
1260 | version "2.1.0"
1261 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1262 |
1263 | end-of-stream@^1.0.0, end-of-stream@^1.1.0:
1264 | version "1.4.1"
1265 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
1266 | dependencies:
1267 | once "^1.4.0"
1268 |
1269 | entities@~1.1.1:
1270 | version "1.1.2"
1271 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
1272 |
1273 | error-ex@^1.2.0, error-ex@^1.3.1:
1274 | version "1.3.2"
1275 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1276 | dependencies:
1277 | is-arrayish "^0.2.1"
1278 |
1279 | es-abstract@^1.11.0, es-abstract@^1.12.0:
1280 | version "1.14.2"
1281 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.14.2.tgz#7ce108fad83068c8783c3cdf62e504e084d8c497"
1282 | integrity sha512-DgoQmbpFNOofkjJtKwr87Ma5EW4Dc8fWhD0R+ndq7Oc456ivUfGOOP6oAZTTKl5/CcNMP+EN+e3/iUzgE0veZg==
1283 | dependencies:
1284 | es-to-primitive "^1.2.0"
1285 | function-bind "^1.1.1"
1286 | has "^1.0.3"
1287 | has-symbols "^1.0.0"
1288 | is-callable "^1.1.4"
1289 | is-regex "^1.0.4"
1290 | object-inspect "^1.6.0"
1291 | object-keys "^1.1.1"
1292 | string.prototype.trimleft "^2.0.0"
1293 | string.prototype.trimright "^2.0.0"
1294 |
1295 | es-abstract@^1.5.1, es-abstract@^1.6.1, es-abstract@^1.7.0:
1296 | version "1.12.0"
1297 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165"
1298 | dependencies:
1299 | es-to-primitive "^1.1.1"
1300 | function-bind "^1.1.1"
1301 | has "^1.0.1"
1302 | is-callable "^1.1.3"
1303 | is-regex "^1.0.4"
1304 |
1305 | es-to-primitive@^1.1.1, es-to-primitive@^1.2.0:
1306 | version "1.2.0"
1307 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
1308 | dependencies:
1309 | is-callable "^1.1.4"
1310 | is-date-object "^1.0.1"
1311 | is-symbol "^1.0.2"
1312 |
1313 | es6-promisify@^6.0.1:
1314 | version "6.0.1"
1315 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-6.0.1.tgz#6edaa45f3bd570ffe08febce66f7116be4b1cdb6"
1316 |
1317 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1318 | version "1.0.5"
1319 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1320 |
1321 | eslint-config-standard-jsx@8.1.0:
1322 | version "8.1.0"
1323 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-8.1.0.tgz#314c62a0e6f51f75547f89aade059bec140edfc7"
1324 | integrity sha512-ULVC8qH8qCqbU792ZOO6DaiaZyHNS/5CZt3hKqHkEhVlhPEPN3nfBqqxJCyp59XrjIBZPu1chMYe9T2DXZ7TMw==
1325 |
1326 | eslint-config-standard@14.1.0:
1327 | version "14.1.0"
1328 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.0.tgz#b23da2b76fe5a2eba668374f246454e7058f15d4"
1329 | integrity sha512-EF6XkrrGVbvv8hL/kYa/m6vnvmUT+K82pJJc4JJVMM6+Qgqh0pnwprSxdduDLB9p/7bIxD+YV5O0wfb8lmcPbA==
1330 |
1331 | eslint-import-resolver-node@^0.3.2:
1332 | version "0.3.2"
1333 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
1334 | integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==
1335 | dependencies:
1336 | debug "^2.6.9"
1337 | resolve "^1.5.0"
1338 |
1339 | eslint-module-utils@^2.4.0:
1340 | version "2.4.1"
1341 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c"
1342 | integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw==
1343 | dependencies:
1344 | debug "^2.6.8"
1345 | pkg-dir "^2.0.0"
1346 |
1347 | eslint-plugin-es@^2.0.0:
1348 | version "2.0.0"
1349 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz#0f5f5da5f18aa21989feebe8a73eadefb3432976"
1350 | integrity sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==
1351 | dependencies:
1352 | eslint-utils "^1.4.2"
1353 | regexpp "^3.0.0"
1354 |
1355 | eslint-plugin-import@~2.18.0:
1356 | version "2.18.2"
1357 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6"
1358 | integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==
1359 | dependencies:
1360 | array-includes "^3.0.3"
1361 | contains-path "^0.1.0"
1362 | debug "^2.6.9"
1363 | doctrine "1.5.0"
1364 | eslint-import-resolver-node "^0.3.2"
1365 | eslint-module-utils "^2.4.0"
1366 | has "^1.0.3"
1367 | minimatch "^3.0.4"
1368 | object.values "^1.1.0"
1369 | read-pkg-up "^2.0.0"
1370 | resolve "^1.11.0"
1371 |
1372 | eslint-plugin-node@~10.0.0:
1373 | version "10.0.0"
1374 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz#fd1adbc7a300cf7eb6ac55cf4b0b6fc6e577f5a6"
1375 | integrity sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==
1376 | dependencies:
1377 | eslint-plugin-es "^2.0.0"
1378 | eslint-utils "^1.4.2"
1379 | ignore "^5.1.1"
1380 | minimatch "^3.0.4"
1381 | resolve "^1.10.1"
1382 | semver "^6.1.0"
1383 |
1384 | eslint-plugin-promise@~4.2.1:
1385 | version "4.2.1"
1386 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a"
1387 | integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==
1388 |
1389 | eslint-plugin-react@~7.14.2:
1390 | version "7.14.3"
1391 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13"
1392 | integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==
1393 | dependencies:
1394 | array-includes "^3.0.3"
1395 | doctrine "^2.1.0"
1396 | has "^1.0.3"
1397 | jsx-ast-utils "^2.1.0"
1398 | object.entries "^1.1.0"
1399 | object.fromentries "^2.0.0"
1400 | object.values "^1.1.0"
1401 | prop-types "^15.7.2"
1402 | resolve "^1.10.1"
1403 |
1404 | eslint-plugin-standard@~4.0.0:
1405 | version "4.0.0"
1406 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz#f845b45109c99cd90e77796940a344546c8f6b5c"
1407 |
1408 | eslint-scope@3.7.1:
1409 | version "3.7.1"
1410 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1411 | dependencies:
1412 | esrecurse "^4.1.0"
1413 | estraverse "^4.1.1"
1414 |
1415 | eslint-scope@^3.7.1:
1416 | version "3.7.3"
1417 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535"
1418 | dependencies:
1419 | esrecurse "^4.1.0"
1420 | estraverse "^4.1.1"
1421 |
1422 | eslint-scope@^5.0.0:
1423 | version "5.0.0"
1424 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9"
1425 | integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==
1426 | dependencies:
1427 | esrecurse "^4.1.0"
1428 | estraverse "^4.1.1"
1429 |
1430 | eslint-utils@^1.4.2:
1431 | version "1.4.2"
1432 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
1433 | integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
1434 | dependencies:
1435 | eslint-visitor-keys "^1.0.0"
1436 |
1437 | eslint-visitor-keys@^1.0.0:
1438 | version "1.0.0"
1439 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1440 |
1441 | eslint-visitor-keys@^1.1.0:
1442 | version "1.1.0"
1443 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
1444 | integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
1445 |
1446 | eslint@^4.0.0, eslint@^4.7.2:
1447 | version "4.19.1"
1448 | resolved "http://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
1449 | dependencies:
1450 | ajv "^5.3.0"
1451 | babel-code-frame "^6.22.0"
1452 | chalk "^2.1.0"
1453 | concat-stream "^1.6.0"
1454 | cross-spawn "^5.1.0"
1455 | debug "^3.1.0"
1456 | doctrine "^2.1.0"
1457 | eslint-scope "^3.7.1"
1458 | eslint-visitor-keys "^1.0.0"
1459 | espree "^3.5.4"
1460 | esquery "^1.0.0"
1461 | esutils "^2.0.2"
1462 | file-entry-cache "^2.0.0"
1463 | functional-red-black-tree "^1.0.1"
1464 | glob "^7.1.2"
1465 | globals "^11.0.1"
1466 | ignore "^3.3.3"
1467 | imurmurhash "^0.1.4"
1468 | inquirer "^3.0.6"
1469 | is-resolvable "^1.0.0"
1470 | js-yaml "^3.9.1"
1471 | json-stable-stringify-without-jsonify "^1.0.1"
1472 | levn "^0.3.0"
1473 | lodash "^4.17.4"
1474 | minimatch "^3.0.2"
1475 | mkdirp "^0.5.1"
1476 | natural-compare "^1.4.0"
1477 | optionator "^0.8.2"
1478 | path-is-inside "^1.0.2"
1479 | pluralize "^7.0.0"
1480 | progress "^2.0.0"
1481 | regexpp "^1.0.1"
1482 | require-uncached "^1.0.3"
1483 | semver "^5.3.0"
1484 | strip-ansi "^4.0.0"
1485 | strip-json-comments "~2.0.1"
1486 | table "4.0.2"
1487 | text-table "~0.2.0"
1488 |
1489 | eslint@~6.4.0:
1490 | version "6.4.0"
1491 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.4.0.tgz#5aa9227c3fbe921982b2eda94ba0d7fae858611a"
1492 | integrity sha512-WTVEzK3lSFoXUovDHEbkJqCVPEPwbhCq4trDktNI6ygs7aO41d4cDT0JFAT5MivzZeVLWlg7vHL+bgrQv/t3vA==
1493 | dependencies:
1494 | "@babel/code-frame" "^7.0.0"
1495 | ajv "^6.10.0"
1496 | chalk "^2.1.0"
1497 | cross-spawn "^6.0.5"
1498 | debug "^4.0.1"
1499 | doctrine "^3.0.0"
1500 | eslint-scope "^5.0.0"
1501 | eslint-utils "^1.4.2"
1502 | eslint-visitor-keys "^1.1.0"
1503 | espree "^6.1.1"
1504 | esquery "^1.0.1"
1505 | esutils "^2.0.2"
1506 | file-entry-cache "^5.0.1"
1507 | functional-red-black-tree "^1.0.1"
1508 | glob-parent "^5.0.0"
1509 | globals "^11.7.0"
1510 | ignore "^4.0.6"
1511 | import-fresh "^3.0.0"
1512 | imurmurhash "^0.1.4"
1513 | inquirer "^6.4.1"
1514 | is-glob "^4.0.0"
1515 | js-yaml "^3.13.1"
1516 | json-stable-stringify-without-jsonify "^1.0.1"
1517 | levn "^0.3.0"
1518 | lodash "^4.17.14"
1519 | minimatch "^3.0.4"
1520 | mkdirp "^0.5.1"
1521 | natural-compare "^1.4.0"
1522 | optionator "^0.8.2"
1523 | progress "^2.0.0"
1524 | regexpp "^2.0.1"
1525 | semver "^6.1.2"
1526 | strip-ansi "^5.2.0"
1527 | strip-json-comments "^3.0.1"
1528 | table "^5.2.3"
1529 | text-table "^0.2.0"
1530 | v8-compile-cache "^2.0.3"
1531 |
1532 | espree@^3.5.2, espree@^3.5.4:
1533 | version "3.5.4"
1534 | resolved "http://registry.npmjs.org/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
1535 | dependencies:
1536 | acorn "^5.5.0"
1537 | acorn-jsx "^3.0.0"
1538 |
1539 | espree@^6.1.1:
1540 | version "6.1.1"
1541 | resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de"
1542 | integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ==
1543 | dependencies:
1544 | acorn "^7.0.0"
1545 | acorn-jsx "^5.0.2"
1546 | eslint-visitor-keys "^1.1.0"
1547 |
1548 | esprima@^2.6.0:
1549 | version "2.7.3"
1550 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1551 |
1552 | esprima@^4.0.0:
1553 | version "4.0.1"
1554 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1555 |
1556 | esquery@^1.0.0, esquery@^1.0.1:
1557 | version "1.0.1"
1558 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
1559 | dependencies:
1560 | estraverse "^4.0.0"
1561 |
1562 | esrecurse@^4.1.0:
1563 | version "4.2.1"
1564 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1565 | dependencies:
1566 | estraverse "^4.1.0"
1567 |
1568 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
1569 | version "4.2.0"
1570 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1571 |
1572 | estree-walker@^0.2.1:
1573 | version "0.2.1"
1574 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e"
1575 |
1576 | estree-walker@^0.5.2:
1577 | version "0.5.2"
1578 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39"
1579 |
1580 | esutils@^2.0.2:
1581 | version "2.0.2"
1582 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1583 |
1584 | expand-brackets@^0.1.4:
1585 | version "0.1.5"
1586 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1587 | dependencies:
1588 | is-posix-bracket "^0.1.0"
1589 |
1590 | expand-range@^1.8.1:
1591 | version "1.8.2"
1592 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1593 | dependencies:
1594 | fill-range "^2.1.0"
1595 |
1596 | expand-template@^1.0.2:
1597 | version "1.1.1"
1598 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-1.1.1.tgz#981f188c0c3a87d2e28f559bc541426ff94f21dd"
1599 |
1600 | external-editor@^2.0.4:
1601 | version "2.2.0"
1602 | resolved "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
1603 | dependencies:
1604 | chardet "^0.4.0"
1605 | iconv-lite "^0.4.17"
1606 | tmp "^0.0.33"
1607 |
1608 | external-editor@^3.0.3:
1609 | version "3.1.0"
1610 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
1611 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
1612 | dependencies:
1613 | chardet "^0.7.0"
1614 | iconv-lite "^0.4.24"
1615 | tmp "^0.0.33"
1616 |
1617 | extglob@^0.3.1:
1618 | version "0.3.2"
1619 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1620 | dependencies:
1621 | is-extglob "^1.0.0"
1622 |
1623 | fast-deep-equal@^1.0.0:
1624 | version "1.1.0"
1625 | resolved "http://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1626 |
1627 | fast-deep-equal@^2.0.1:
1628 | version "2.0.1"
1629 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
1630 |
1631 | fast-json-stable-stringify@^2.0.0:
1632 | version "2.0.0"
1633 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1634 |
1635 | fast-levenshtein@~2.0.4:
1636 | version "2.0.6"
1637 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1638 |
1639 | fastparse@^1.1.1:
1640 | version "1.1.2"
1641 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
1642 |
1643 | figures@^1.0.1:
1644 | version "1.7.0"
1645 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1646 | dependencies:
1647 | escape-string-regexp "^1.0.5"
1648 | object-assign "^4.1.0"
1649 |
1650 | figures@^2.0.0:
1651 | version "2.0.0"
1652 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1653 | dependencies:
1654 | escape-string-regexp "^1.0.5"
1655 |
1656 | file-entry-cache@^2.0.0:
1657 | version "2.0.0"
1658 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1659 | dependencies:
1660 | flat-cache "^1.2.1"
1661 | object-assign "^4.0.1"
1662 |
1663 | file-entry-cache@^5.0.1:
1664 | version "5.0.1"
1665 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
1666 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
1667 | dependencies:
1668 | flat-cache "^2.0.1"
1669 |
1670 | filename-regex@^2.0.0:
1671 | version "2.0.1"
1672 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1673 |
1674 | filename-reserved-regex@^1.0.0:
1675 | version "1.0.0"
1676 | resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz#e61cf805f0de1c984567d0386dc5df50ee5af7e4"
1677 |
1678 | filenamify-url@^1.0.0:
1679 | version "1.0.0"
1680 | resolved "https://registry.yarnpkg.com/filenamify-url/-/filenamify-url-1.0.0.tgz#b32bd81319ef5863b73078bed50f46a4f7975f50"
1681 | dependencies:
1682 | filenamify "^1.0.0"
1683 | humanize-url "^1.0.0"
1684 |
1685 | filenamify@^1.0.0:
1686 | version "1.2.1"
1687 | resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-1.2.1.tgz#a9f2ffd11c503bed300015029272378f1f1365a5"
1688 | dependencies:
1689 | filename-reserved-regex "^1.0.0"
1690 | strip-outer "^1.0.0"
1691 | trim-repeated "^1.0.0"
1692 |
1693 | filesize@^3.5.11:
1694 | version "3.6.1"
1695 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
1696 |
1697 | fill-range@^2.1.0:
1698 | version "2.2.4"
1699 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1700 | dependencies:
1701 | is-number "^2.1.0"
1702 | isobject "^2.0.0"
1703 | randomatic "^3.0.0"
1704 | repeat-element "^1.1.2"
1705 | repeat-string "^1.5.2"
1706 |
1707 | find-root@^1.0.0:
1708 | version "1.1.0"
1709 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
1710 |
1711 | find-up@^2.0.0, find-up@^2.1.0:
1712 | version "2.1.0"
1713 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1714 | dependencies:
1715 | locate-path "^2.0.0"
1716 |
1717 | find-up@^3.0.0:
1718 | version "3.0.0"
1719 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1720 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
1721 | dependencies:
1722 | locate-path "^3.0.0"
1723 |
1724 | flat-cache@^1.2.1:
1725 | version "1.3.2"
1726 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.2.tgz#7f852d70be573dac874a4c4129d340a34fba7e65"
1727 | dependencies:
1728 | circular-json "^0.3.1"
1729 | del "^3.0.0"
1730 | graceful-fs "^4.1.2"
1731 | write "^0.2.1"
1732 |
1733 | flat-cache@^2.0.1:
1734 | version "2.0.1"
1735 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
1736 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
1737 | dependencies:
1738 | flatted "^2.0.0"
1739 | rimraf "2.6.3"
1740 | write "1.0.3"
1741 |
1742 | flatted@^2.0.0:
1743 | version "2.0.1"
1744 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08"
1745 | integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==
1746 |
1747 | flatten@^1.0.2:
1748 | version "1.0.2"
1749 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
1750 |
1751 | flow-remove-types@^1.1.0:
1752 | version "1.2.3"
1753 | resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.2.3.tgz#6131aefc7da43364bb8b479758c9dec7735d1a18"
1754 | dependencies:
1755 | babylon "^6.15.0"
1756 | vlq "^0.2.1"
1757 |
1758 | for-in@^1.0.1:
1759 | version "1.0.2"
1760 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1761 |
1762 | for-own@^0.1.4:
1763 | version "0.1.5"
1764 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1765 | dependencies:
1766 | for-in "^1.0.1"
1767 |
1768 | fs-constants@^1.0.0:
1769 | version "1.0.0"
1770 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
1771 |
1772 | fs-extra@7.0.1, fs-extra@^7.0.0:
1773 | version "7.0.1"
1774 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
1775 | dependencies:
1776 | graceful-fs "^4.1.2"
1777 | jsonfile "^4.0.0"
1778 | universalify "^0.1.0"
1779 |
1780 | fs-extra@^5.0.0:
1781 | version "5.0.0"
1782 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd"
1783 | dependencies:
1784 | graceful-fs "^4.1.2"
1785 | jsonfile "^4.0.0"
1786 | universalify "^0.1.0"
1787 |
1788 | fs.realpath@^1.0.0:
1789 | version "1.0.0"
1790 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1791 |
1792 | function-bind@^1.1.0, function-bind@^1.1.1:
1793 | version "1.1.1"
1794 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1795 |
1796 | functional-red-black-tree@^1.0.1:
1797 | version "1.0.1"
1798 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1799 |
1800 | gauge@~2.7.3:
1801 | version "2.7.4"
1802 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1803 | dependencies:
1804 | aproba "^1.0.3"
1805 | console-control-strings "^1.0.0"
1806 | has-unicode "^2.0.0"
1807 | object-assign "^4.1.0"
1808 | signal-exit "^3.0.0"
1809 | string-width "^1.0.1"
1810 | strip-ansi "^3.0.1"
1811 | wide-align "^1.1.0"
1812 |
1813 | generic-names@^1.0.3:
1814 | version "1.0.3"
1815 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-1.0.3.tgz#2d786a121aee508876796939e8e3bff836c20917"
1816 | dependencies:
1817 | loader-utils "^0.2.16"
1818 |
1819 | get-stdin@^5.0.1:
1820 | version "5.0.1"
1821 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
1822 |
1823 | get-stdin@^7.0.0:
1824 | version "7.0.0"
1825 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6"
1826 | integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==
1827 |
1828 | gh-pages@2.1.1:
1829 | version "2.1.1"
1830 | resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-2.1.1.tgz#5be70a92f9cb70404bafabd8bb149c0e9a8c264b"
1831 | integrity sha512-yNW2SFp9xGRP/8Sk2WXuLI/Gn92oOL4HBgudn6PsqAnuWT90Y1tozJoTfX1WdrDSW5Rb90kLVOf5mm9KJ/2fDw==
1832 | dependencies:
1833 | async "^2.6.1"
1834 | commander "^2.18.0"
1835 | email-addresses "^3.0.1"
1836 | filenamify-url "^1.0.0"
1837 | fs-extra "^7.0.0"
1838 | globby "^6.1.0"
1839 | graceful-fs "^4.1.11"
1840 | rimraf "^2.6.2"
1841 |
1842 | github-from-package@0.0.0:
1843 | version "0.0.0"
1844 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
1845 |
1846 | glob-base@^0.3.0:
1847 | version "0.3.0"
1848 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1849 | dependencies:
1850 | glob-parent "^2.0.0"
1851 | is-glob "^2.0.0"
1852 |
1853 | glob-parent@^2.0.0:
1854 | version "2.0.0"
1855 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1856 | dependencies:
1857 | is-glob "^2.0.0"
1858 |
1859 | glob-parent@^5.0.0:
1860 | version "5.1.0"
1861 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
1862 | integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
1863 | dependencies:
1864 | is-glob "^4.0.1"
1865 |
1866 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
1867 | version "7.1.3"
1868 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
1869 | dependencies:
1870 | fs.realpath "^1.0.0"
1871 | inflight "^1.0.4"
1872 | inherits "2"
1873 | minimatch "^3.0.4"
1874 | once "^1.3.0"
1875 | path-is-absolute "^1.0.0"
1876 |
1877 | glob@^7.1.3:
1878 | version "7.1.4"
1879 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
1880 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
1881 | dependencies:
1882 | fs.realpath "^1.0.0"
1883 | inflight "^1.0.4"
1884 | inherits "2"
1885 | minimatch "^3.0.4"
1886 | once "^1.3.0"
1887 | path-is-absolute "^1.0.0"
1888 |
1889 | glob@~7.0.6:
1890 | version "7.0.6"
1891 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
1892 | dependencies:
1893 | fs.realpath "^1.0.0"
1894 | inflight "^1.0.4"
1895 | inherits "2"
1896 | minimatch "^3.0.2"
1897 | once "^1.3.0"
1898 | path-is-absolute "^1.0.0"
1899 |
1900 | globals@^11.0.1, globals@^11.1.0, globals@^11.7.0:
1901 | version "11.8.0"
1902 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.8.0.tgz#c1ef45ee9bed6badf0663c5cb90e8d1adec1321d"
1903 |
1904 | globalyzer@^0.1.0:
1905 | version "0.1.0"
1906 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465"
1907 |
1908 | globby@^6.1.0:
1909 | version "6.1.0"
1910 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1911 | dependencies:
1912 | array-union "^1.0.1"
1913 | glob "^7.0.3"
1914 | object-assign "^4.0.1"
1915 | pify "^2.0.0"
1916 | pinkie-promise "^2.0.0"
1917 |
1918 | globrex@^0.1.1:
1919 | version "0.1.1"
1920 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.1.tgz#cfe565cfa910707d0ef98eb0b9d78c3c055ca2ef"
1921 |
1922 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
1923 | version "4.1.15"
1924 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
1925 |
1926 | graceful-fs@^4.1.15:
1927 | version "4.2.2"
1928 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02"
1929 | integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==
1930 |
1931 | gzip-size@^3.0.0:
1932 | version "3.0.0"
1933 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
1934 | dependencies:
1935 | duplexer "^0.1.1"
1936 |
1937 | gzip-size@^5.0.0:
1938 | version "5.0.0"
1939 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.0.0.tgz#a55ecd99222f4c48fd8c01c625ce3b349d0a0e80"
1940 | dependencies:
1941 | duplexer "^0.1.1"
1942 | pify "^3.0.0"
1943 |
1944 | has-ansi@^2.0.0:
1945 | version "2.0.0"
1946 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1947 | dependencies:
1948 | ansi-regex "^2.0.0"
1949 |
1950 | has-flag@^1.0.0:
1951 | version "1.0.0"
1952 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1953 |
1954 | has-flag@^3.0.0:
1955 | version "3.0.0"
1956 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1957 |
1958 | has-symbols@^1.0.0:
1959 | version "1.0.0"
1960 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
1961 |
1962 | has-unicode@^2.0.0:
1963 | version "2.0.1"
1964 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1965 |
1966 | has@^1.0.0, has@^1.0.1, has@^1.0.3:
1967 | version "1.0.3"
1968 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1969 | dependencies:
1970 | function-bind "^1.1.1"
1971 |
1972 | hash-sum@^1.0.2:
1973 | version "1.0.2"
1974 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04"
1975 |
1976 | hex-color-regex@^1.1.0:
1977 | version "1.1.0"
1978 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
1979 |
1980 | hosted-git-info@^2.1.4:
1981 | version "2.7.1"
1982 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
1983 |
1984 | hsl-regex@^1.0.0:
1985 | version "1.0.0"
1986 | resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
1987 |
1988 | hsla-regex@^1.0.0:
1989 | version "1.0.0"
1990 | resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
1991 |
1992 | html-comment-regex@^1.1.0:
1993 | version "1.1.2"
1994 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
1995 |
1996 | humanize-url@^1.0.0:
1997 | version "1.0.1"
1998 | resolved "http://registry.npmjs.org/humanize-url/-/humanize-url-1.0.1.tgz#f4ab99e0d288174ca4e1e50407c55fbae464efff"
1999 | dependencies:
2000 | normalize-url "^1.0.0"
2001 | strip-url-auth "^1.0.0"
2002 |
2003 | iconv-lite@^0.4.17, iconv-lite@^0.4.24:
2004 | version "0.4.24"
2005 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
2006 | dependencies:
2007 | safer-buffer ">= 2.1.2 < 3"
2008 |
2009 | icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0:
2010 | version "1.1.0"
2011 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
2012 |
2013 | ignore@^3.3.3:
2014 | version "3.3.10"
2015 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
2016 |
2017 | ignore@^4.0.6:
2018 | version "4.0.6"
2019 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
2020 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
2021 |
2022 | ignore@^5.0.0, ignore@^5.1.1:
2023 | version "5.1.4"
2024 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
2025 | integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
2026 |
2027 | iltorb@^2.0.5:
2028 | version "2.4.1"
2029 | resolved "https://registry.yarnpkg.com/iltorb/-/iltorb-2.4.1.tgz#3ae14f0a76ba880503884a2fe630b1f748eb4c17"
2030 | dependencies:
2031 | detect-libc "^1.0.3"
2032 | npmlog "^4.1.2"
2033 | prebuild-install "^5.2.1"
2034 | which-pm-runs "^1.0.0"
2035 |
2036 | import-cwd@^2.1.0:
2037 | version "2.1.0"
2038 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
2039 | dependencies:
2040 | import-from "^2.1.0"
2041 |
2042 | import-fresh@^2.0.0:
2043 | version "2.0.0"
2044 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
2045 | dependencies:
2046 | caller-path "^2.0.0"
2047 | resolve-from "^3.0.0"
2048 |
2049 | import-fresh@^3.0.0:
2050 | version "3.1.0"
2051 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118"
2052 | integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ==
2053 | dependencies:
2054 | parent-module "^1.0.0"
2055 | resolve-from "^4.0.0"
2056 |
2057 | import-from@^2.1.0:
2058 | version "2.1.0"
2059 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
2060 | dependencies:
2061 | resolve-from "^3.0.0"
2062 |
2063 | imurmurhash@^0.1.4:
2064 | version "0.1.4"
2065 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2066 |
2067 | indent-string@^3.1.0, indent-string@^3.2.0:
2068 | version "3.2.0"
2069 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
2070 |
2071 | indexes-of@^1.0.1:
2072 | version "1.0.1"
2073 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
2074 |
2075 | inflight@^1.0.4:
2076 | version "1.0.6"
2077 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2078 | dependencies:
2079 | once "^1.3.0"
2080 | wrappy "1"
2081 |
2082 | inherits@2, inherits@^2.0.3, inherits@~2.0.3:
2083 | version "2.0.3"
2084 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2085 |
2086 | ini@~1.3.0:
2087 | version "1.3.5"
2088 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
2089 |
2090 | inquirer@^3.0.6:
2091 | version "3.3.0"
2092 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
2093 | dependencies:
2094 | ansi-escapes "^3.0.0"
2095 | chalk "^2.0.0"
2096 | cli-cursor "^2.1.0"
2097 | cli-width "^2.0.0"
2098 | external-editor "^2.0.4"
2099 | figures "^2.0.0"
2100 | lodash "^4.3.0"
2101 | mute-stream "0.0.7"
2102 | run-async "^2.2.0"
2103 | rx-lite "^4.0.8"
2104 | rx-lite-aggregates "^4.0.8"
2105 | string-width "^2.1.0"
2106 | strip-ansi "^4.0.0"
2107 | through "^2.3.6"
2108 |
2109 | inquirer@^6.4.1:
2110 | version "6.5.2"
2111 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
2112 | integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
2113 | dependencies:
2114 | ansi-escapes "^3.2.0"
2115 | chalk "^2.4.2"
2116 | cli-cursor "^2.1.0"
2117 | cli-width "^2.0.0"
2118 | external-editor "^3.0.3"
2119 | figures "^2.0.0"
2120 | lodash "^4.17.12"
2121 | mute-stream "0.0.7"
2122 | run-async "^2.2.0"
2123 | rxjs "^6.4.0"
2124 | string-width "^2.1.0"
2125 | strip-ansi "^5.1.0"
2126 | through "^2.3.6"
2127 |
2128 | is-absolute-url@^2.0.0:
2129 | version "2.1.0"
2130 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
2131 |
2132 | is-arrayish@^0.2.1:
2133 | version "0.2.1"
2134 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2135 |
2136 | is-arrayish@^0.3.1:
2137 | version "0.3.2"
2138 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
2139 |
2140 | is-buffer@^1.1.5:
2141 | version "1.1.6"
2142 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
2143 |
2144 | is-builtin-module@^1.0.0:
2145 | version "1.0.0"
2146 | resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2147 | dependencies:
2148 | builtin-modules "^1.0.0"
2149 |
2150 | is-callable@^1.1.3, is-callable@^1.1.4:
2151 | version "1.1.4"
2152 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
2153 |
2154 | is-color-stop@^1.0.0:
2155 | version "1.1.0"
2156 | resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
2157 | dependencies:
2158 | css-color-names "^0.0.4"
2159 | hex-color-regex "^1.1.0"
2160 | hsl-regex "^1.0.0"
2161 | hsla-regex "^1.0.0"
2162 | rgb-regex "^1.0.1"
2163 | rgba-regex "^1.0.0"
2164 |
2165 | is-date-object@^1.0.1:
2166 | version "1.0.1"
2167 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2168 |
2169 | is-directory@^0.3.1:
2170 | version "0.3.1"
2171 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
2172 |
2173 | is-dotfile@^1.0.0:
2174 | version "1.0.3"
2175 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2176 |
2177 | is-equal-shallow@^0.1.3:
2178 | version "0.1.3"
2179 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2180 | dependencies:
2181 | is-primitive "^2.0.0"
2182 |
2183 | is-extendable@^0.1.1:
2184 | version "0.1.1"
2185 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2186 |
2187 | is-extglob@^1.0.0:
2188 | version "1.0.0"
2189 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2190 |
2191 | is-extglob@^2.1.1:
2192 | version "2.1.1"
2193 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
2194 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
2195 |
2196 | is-fullwidth-code-point@^1.0.0:
2197 | version "1.0.0"
2198 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2199 | dependencies:
2200 | number-is-nan "^1.0.0"
2201 |
2202 | is-fullwidth-code-point@^2.0.0:
2203 | version "2.0.0"
2204 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2205 |
2206 | is-glob@^2.0.0, is-glob@^2.0.1:
2207 | version "2.0.1"
2208 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2209 | dependencies:
2210 | is-extglob "^1.0.0"
2211 |
2212 | is-glob@^4.0.0, is-glob@^4.0.1:
2213 | version "4.0.1"
2214 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
2215 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
2216 | dependencies:
2217 | is-extglob "^2.1.1"
2218 |
2219 | is-module@^1.0.0:
2220 | version "1.0.0"
2221 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
2222 |
2223 | is-number@^2.1.0:
2224 | version "2.1.0"
2225 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2226 | dependencies:
2227 | kind-of "^3.0.2"
2228 |
2229 | is-number@^4.0.0:
2230 | version "4.0.0"
2231 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
2232 |
2233 | is-obj@^1.0.0:
2234 | version "1.0.1"
2235 | resolved "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
2236 |
2237 | is-path-cwd@^1.0.0:
2238 | version "1.0.0"
2239 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
2240 |
2241 | is-path-in-cwd@^1.0.0:
2242 | version "1.0.1"
2243 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
2244 | dependencies:
2245 | is-path-inside "^1.0.0"
2246 |
2247 | is-path-inside@^1.0.0:
2248 | version "1.0.1"
2249 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
2250 | dependencies:
2251 | path-is-inside "^1.0.1"
2252 |
2253 | is-plain-obj@^1.0.0:
2254 | version "1.1.0"
2255 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
2256 |
2257 | is-posix-bracket@^0.1.0:
2258 | version "0.1.1"
2259 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2260 |
2261 | is-primitive@^2.0.0:
2262 | version "2.0.0"
2263 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2264 |
2265 | is-promise@^2.1.0:
2266 | version "2.1.0"
2267 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2268 |
2269 | is-regex@^1.0.4:
2270 | version "1.0.4"
2271 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2272 | dependencies:
2273 | has "^1.0.1"
2274 |
2275 | is-resolvable@^1.0.0:
2276 | version "1.1.0"
2277 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
2278 |
2279 | is-svg@^2.0.0:
2280 | version "2.1.0"
2281 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
2282 | dependencies:
2283 | html-comment-regex "^1.1.0"
2284 |
2285 | is-svg@^3.0.0:
2286 | version "3.0.0"
2287 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
2288 | dependencies:
2289 | html-comment-regex "^1.1.0"
2290 |
2291 | is-symbol@^1.0.2:
2292 | version "1.0.2"
2293 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
2294 | dependencies:
2295 | has-symbols "^1.0.0"
2296 |
2297 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2298 | version "1.0.0"
2299 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2300 |
2301 | isexe@^2.0.0:
2302 | version "2.0.0"
2303 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2304 |
2305 | isobject@^2.0.0:
2306 | version "2.1.0"
2307 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2308 | dependencies:
2309 | isarray "1.0.0"
2310 |
2311 | jest-worker@^23.2.0:
2312 | version "23.2.0"
2313 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9"
2314 | dependencies:
2315 | merge-stream "^1.0.1"
2316 |
2317 | js-base64@^2.1.9:
2318 | version "2.4.9"
2319 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.9.tgz#748911fb04f48a60c4771b375cac45a80df11c03"
2320 |
2321 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
2322 | version "4.0.0"
2323 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2324 |
2325 | js-tokens@^3.0.2:
2326 | version "3.0.2"
2327 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2328 |
2329 | js-yaml@^3.12.0, js-yaml@^3.4.3, js-yaml@^3.9.0, js-yaml@^3.9.1:
2330 | version "3.12.0"
2331 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
2332 | dependencies:
2333 | argparse "^1.0.7"
2334 | esprima "^4.0.0"
2335 |
2336 | js-yaml@^3.13.1:
2337 | version "3.13.1"
2338 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
2339 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
2340 | dependencies:
2341 | argparse "^1.0.7"
2342 | esprima "^4.0.0"
2343 |
2344 | js-yaml@~3.7.0:
2345 | version "3.7.0"
2346 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
2347 | dependencies:
2348 | argparse "^1.0.7"
2349 | esprima "^2.6.0"
2350 |
2351 | jsesc@^2.5.1:
2352 | version "2.5.1"
2353 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe"
2354 |
2355 | jsesc@~0.5.0:
2356 | version "0.5.0"
2357 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2358 |
2359 | json-parse-better-errors@^1.0.1:
2360 | version "1.0.2"
2361 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2362 |
2363 | json-schema-traverse@^0.3.0:
2364 | version "0.3.1"
2365 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2366 |
2367 | json-schema-traverse@^0.4.1:
2368 | version "0.4.1"
2369 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2370 |
2371 | json-stable-stringify-without-jsonify@^1.0.1:
2372 | version "1.0.1"
2373 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
2374 |
2375 | json5@^0.5.0:
2376 | version "0.5.1"
2377 | resolved "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2378 |
2379 | json5@^2.1.0:
2380 | version "2.1.0"
2381 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850"
2382 | integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==
2383 | dependencies:
2384 | minimist "^1.2.0"
2385 |
2386 | jsonfile@^4.0.0:
2387 | version "4.0.0"
2388 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
2389 | optionalDependencies:
2390 | graceful-fs "^4.1.6"
2391 |
2392 | jsx-ast-utils@^2.1.0:
2393 | version "2.2.1"
2394 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb"
2395 | integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ==
2396 | dependencies:
2397 | array-includes "^3.0.3"
2398 | object.assign "^4.1.0"
2399 |
2400 | kind-of@^3.0.2:
2401 | version "3.2.2"
2402 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2403 | dependencies:
2404 | is-buffer "^1.1.5"
2405 |
2406 | kind-of@^6.0.0:
2407 | version "6.0.2"
2408 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2409 |
2410 | levn@^0.3.0, levn@~0.3.0:
2411 | version "0.3.0"
2412 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2413 | dependencies:
2414 | prelude-ls "~1.1.2"
2415 | type-check "~0.3.2"
2416 |
2417 | load-json-file@^2.0.0:
2418 | version "2.0.0"
2419 | resolved "http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2420 | dependencies:
2421 | graceful-fs "^4.1.2"
2422 | parse-json "^2.2.0"
2423 | pify "^2.0.0"
2424 | strip-bom "^3.0.0"
2425 |
2426 | load-json-file@^5.2.0:
2427 | version "5.3.0"
2428 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3"
2429 | integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==
2430 | dependencies:
2431 | graceful-fs "^4.1.15"
2432 | parse-json "^4.0.0"
2433 | pify "^4.0.1"
2434 | strip-bom "^3.0.0"
2435 | type-fest "^0.3.0"
2436 |
2437 | loader-utils@^0.2.16:
2438 | version "0.2.17"
2439 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
2440 | dependencies:
2441 | big.js "^3.1.3"
2442 | emojis-list "^2.0.0"
2443 | json5 "^0.5.0"
2444 | object-assign "^4.0.1"
2445 |
2446 | locate-path@^2.0.0:
2447 | version "2.0.0"
2448 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2449 | dependencies:
2450 | p-locate "^2.0.0"
2451 | path-exists "^3.0.0"
2452 |
2453 | locate-path@^3.0.0:
2454 | version "3.0.0"
2455 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
2456 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
2457 | dependencies:
2458 | p-locate "^3.0.0"
2459 | path-exists "^3.0.0"
2460 |
2461 | lodash.camelcase@^4.3.0:
2462 | version "4.3.0"
2463 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
2464 |
2465 | lodash.foreach@^4.5.0:
2466 | version "4.5.0"
2467 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53"
2468 |
2469 | lodash.memoize@^4.1.2:
2470 | version "4.1.2"
2471 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
2472 |
2473 | lodash.merge@^4.6.0:
2474 | version "4.6.1"
2475 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54"
2476 |
2477 | lodash.sumby@^4.6.0:
2478 | version "4.6.0"
2479 | resolved "https://registry.yarnpkg.com/lodash.sumby/-/lodash.sumby-4.6.0.tgz#7d87737ddb216da2f7e5e7cd2dd9c403a7887346"
2480 |
2481 | lodash.unescape@4.0.1:
2482 | version "4.0.1"
2483 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
2484 |
2485 | lodash.uniq@^4.5.0:
2486 | version "4.5.0"
2487 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
2488 |
2489 | lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.3.0:
2490 | version "4.17.11"
2491 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
2492 |
2493 | lodash@^4.17.12, lodash@^4.17.14:
2494 | version "4.17.15"
2495 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
2496 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
2497 |
2498 | loglevel-colored-level-prefix@^1.0.0:
2499 | version "1.0.0"
2500 | resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e"
2501 | dependencies:
2502 | chalk "^1.1.3"
2503 | loglevel "^1.4.1"
2504 |
2505 | loglevel@^1.4.1:
2506 | version "1.6.1"
2507 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
2508 |
2509 | loose-envify@^1.4.0:
2510 | version "1.4.0"
2511 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
2512 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
2513 | dependencies:
2514 | js-tokens "^3.0.0 || ^4.0.0"
2515 |
2516 | lru-cache@^4.0.1, lru-cache@^4.1.2:
2517 | version "4.1.3"
2518 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
2519 | dependencies:
2520 | pseudomap "^1.0.2"
2521 | yallist "^2.1.2"
2522 |
2523 | magic-string@^0.22.4:
2524 | version "0.22.5"
2525 | resolved "http://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
2526 | dependencies:
2527 | vlq "^0.2.2"
2528 |
2529 | magic-string@^0.25.1:
2530 | version "0.25.1"
2531 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.1.tgz#b1c248b399cd7485da0fe7385c2fc7011843266e"
2532 | dependencies:
2533 | sourcemap-codec "^1.4.1"
2534 |
2535 | make-plural@^4.1.1:
2536 | version "4.3.0"
2537 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735"
2538 | optionalDependencies:
2539 | minimist "^1.2.0"
2540 |
2541 | math-expression-evaluator@^1.2.14:
2542 | version "1.2.17"
2543 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
2544 |
2545 | math-random@^1.0.1:
2546 | version "1.0.1"
2547 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
2548 |
2549 | maxmin@^2.1.0:
2550 | version "2.1.0"
2551 | resolved "https://registry.yarnpkg.com/maxmin/-/maxmin-2.1.0.tgz#4d3b220903d95eee7eb7ac7fa864e72dc09a3166"
2552 | dependencies:
2553 | chalk "^1.0.0"
2554 | figures "^1.0.1"
2555 | gzip-size "^3.0.0"
2556 | pretty-bytes "^3.0.0"
2557 |
2558 | mdn-data@~1.1.0:
2559 | version "1.1.4"
2560 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
2561 |
2562 | merge-source-map@^1.1.0:
2563 | version "1.1.0"
2564 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646"
2565 | dependencies:
2566 | source-map "^0.6.1"
2567 |
2568 | merge-stream@^1.0.1:
2569 | version "1.0.1"
2570 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2571 | dependencies:
2572 | readable-stream "^2.0.1"
2573 |
2574 | messageformat-parser@^1.1.0:
2575 | version "1.1.0"
2576 | resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a"
2577 |
2578 | messageformat@^1.0.2:
2579 | version "1.1.1"
2580 | resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz#ceaa2e6c86929d4807058275a7372b1bd963bdf6"
2581 | dependencies:
2582 | glob "~7.0.6"
2583 | make-plural "^4.1.1"
2584 | messageformat-parser "^1.1.0"
2585 | nopt "~3.0.6"
2586 | reserved-words "^0.1.2"
2587 |
2588 | microbundle@0.11.0:
2589 | version "0.11.0"
2590 | resolved "https://registry.yarnpkg.com/microbundle/-/microbundle-0.11.0.tgz#266bcf4210192698c23fe3bf3581ab81d31a14d0"
2591 | integrity sha512-Lt2f8OhC2y2uKyJ5zA8lEEiDsIAbk6yllBuoAWLIdYVIXYqOdN9mO3DI7VW7x/fw87gdnCLIJdVtpP6kaI99LA==
2592 | dependencies:
2593 | "@babel/core" "^7.2.2"
2594 | "@babel/plugin-proposal-class-properties" "7.2.1"
2595 | "@babel/plugin-syntax-jsx" "^7.2.0"
2596 | "@babel/polyfill" "^7.0.0"
2597 | asyncro "^3.0.0"
2598 | autoprefixer "^9.0.0"
2599 | babel-plugin-transform-async-to-promises "^0.8.3"
2600 | brotli-size "^0.0.3"
2601 | camelcase "^5.0.0"
2602 | chalk "^2.4.0"
2603 | cssnano "^4.1.7"
2604 | es6-promisify "^6.0.1"
2605 | gzip-size "^5.0.0"
2606 | pretty-bytes "^5.1.0"
2607 | rollup "^0.67.3"
2608 | rollup-plugin-alias "^1.5.1"
2609 | rollup-plugin-babel "^4.1.0-0"
2610 | rollup-plugin-buble "^0.19.4"
2611 | rollup-plugin-bundle-size "^1.0.1"
2612 | rollup-plugin-commonjs "^9.0.0"
2613 | rollup-plugin-es3 "^1.1.0"
2614 | rollup-plugin-flow "^1.1.1"
2615 | rollup-plugin-json "^3.1.0"
2616 | rollup-plugin-node-resolve "^4.0.0"
2617 | rollup-plugin-postcss "^1.6.1"
2618 | rollup-plugin-preserve-shebang "^0.1.6"
2619 | rollup-plugin-sizes "^0.4.2"
2620 | rollup-plugin-terser "^3.0.0"
2621 | rollup-plugin-typescript2 "^0.19.0"
2622 | sade "^1.4.0"
2623 | tiny-glob "^0.2.6"
2624 | tslib "^1.9.0"
2625 | typescript ">=2.8.3"
2626 |
2627 | micromatch@^2.3.11:
2628 | version "2.3.11"
2629 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2630 | dependencies:
2631 | arr-diff "^2.0.0"
2632 | array-unique "^0.2.1"
2633 | braces "^1.8.2"
2634 | expand-brackets "^0.1.4"
2635 | extglob "^0.3.1"
2636 | filename-regex "^2.0.0"
2637 | is-extglob "^1.0.0"
2638 | is-glob "^2.0.1"
2639 | kind-of "^3.0.2"
2640 | normalize-path "^2.0.1"
2641 | object.omit "^2.0.0"
2642 | parse-glob "^3.0.4"
2643 | regex-cache "^0.4.2"
2644 |
2645 | mimic-fn@^1.0.0:
2646 | version "1.2.0"
2647 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2648 |
2649 | mimic-response@^1.0.0:
2650 | version "1.0.1"
2651 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
2652 |
2653 | minimatch@^3.0.2, minimatch@^3.0.4:
2654 | version "3.0.4"
2655 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2656 | dependencies:
2657 | brace-expansion "^1.1.7"
2658 |
2659 | minimist@0.0.8:
2660 | version "0.0.8"
2661 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2662 |
2663 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.2.0:
2664 | version "1.2.0"
2665 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2666 |
2667 | mkdirp@^0.5.1, mkdirp@~0.5.1:
2668 | version "0.5.1"
2669 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2670 | dependencies:
2671 | minimist "0.0.8"
2672 |
2673 | module-details-from-path@^1.0.3:
2674 | version "1.0.3"
2675 | resolved "https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.3.tgz#114c949673e2a8a35e9d35788527aa37b679da2b"
2676 |
2677 | mri@^1.1.0:
2678 | version "1.1.1"
2679 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.1.tgz#85aa26d3daeeeedf80dc5984af95cc5ca5cad9f1"
2680 |
2681 | ms@2.0.0:
2682 | version "2.0.0"
2683 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2684 |
2685 | ms@^2.1.1:
2686 | version "2.1.1"
2687 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
2688 |
2689 | mute-stream@0.0.7:
2690 | version "0.0.7"
2691 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2692 |
2693 | napi-build-utils@^1.0.1:
2694 | version "1.0.1"
2695 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508"
2696 |
2697 | natural-compare@^1.4.0:
2698 | version "1.4.0"
2699 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2700 |
2701 | nice-try@^1.0.4:
2702 | version "1.0.5"
2703 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2704 |
2705 | node-abi@^2.2.0:
2706 | version "2.5.0"
2707 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.5.0.tgz#942e1a78bce764bc0c1672d5821e492b9d032052"
2708 | dependencies:
2709 | semver "^5.4.1"
2710 |
2711 | node-releases@^1.0.1:
2712 | version "1.0.3"
2713 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.0.3.tgz#3414ed84595096459c251699bfcb47d88324a9e4"
2714 | dependencies:
2715 | semver "^5.3.0"
2716 |
2717 | noop-logger@^0.1.1:
2718 | version "0.1.1"
2719 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2"
2720 |
2721 | nopt@~3.0.6:
2722 | version "3.0.6"
2723 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2724 | dependencies:
2725 | abbrev "1"
2726 |
2727 | normalize-package-data@^2.3.2:
2728 | version "2.4.0"
2729 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2730 | dependencies:
2731 | hosted-git-info "^2.1.4"
2732 | is-builtin-module "^1.0.0"
2733 | semver "2 || 3 || 4 || 5"
2734 | validate-npm-package-license "^3.0.1"
2735 |
2736 | normalize-path@^2.0.1:
2737 | version "2.1.1"
2738 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2739 | dependencies:
2740 | remove-trailing-separator "^1.0.1"
2741 |
2742 | normalize-range@^0.1.2:
2743 | version "0.1.2"
2744 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2745 |
2746 | normalize-url@^1.0.0, normalize-url@^1.4.0:
2747 | version "1.9.1"
2748 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
2749 | dependencies:
2750 | object-assign "^4.0.1"
2751 | prepend-http "^1.0.0"
2752 | query-string "^4.1.0"
2753 | sort-keys "^1.0.0"
2754 |
2755 | normalize-url@^3.0.0:
2756 | version "3.3.0"
2757 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
2758 |
2759 | npmlog@^4.0.1, npmlog@^4.1.2:
2760 | version "4.1.2"
2761 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2762 | dependencies:
2763 | are-we-there-yet "~1.1.2"
2764 | console-control-strings "~1.1.0"
2765 | gauge "~2.7.3"
2766 | set-blocking "~2.0.0"
2767 |
2768 | nth-check@^1.0.2:
2769 | version "1.0.2"
2770 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
2771 | dependencies:
2772 | boolbase "~1.0.0"
2773 |
2774 | num2fraction@^1.2.2:
2775 | version "1.2.2"
2776 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2777 |
2778 | number-is-nan@^1.0.0:
2779 | version "1.0.1"
2780 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2781 |
2782 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
2783 | version "4.1.1"
2784 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2785 |
2786 | object-inspect@^1.6.0:
2787 | version "1.6.0"
2788 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"
2789 | integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==
2790 |
2791 | object-keys@^1.0.11, object-keys@^1.1.1:
2792 | version "1.1.1"
2793 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2794 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2795 |
2796 | object-keys@^1.0.12:
2797 | version "1.0.12"
2798 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2"
2799 |
2800 | object.assign@^4.1.0:
2801 | version "4.1.0"
2802 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
2803 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
2804 | dependencies:
2805 | define-properties "^1.1.2"
2806 | function-bind "^1.1.1"
2807 | has-symbols "^1.0.0"
2808 | object-keys "^1.0.11"
2809 |
2810 | object.entries@^1.1.0:
2811 | version "1.1.0"
2812 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
2813 | integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==
2814 | dependencies:
2815 | define-properties "^1.1.3"
2816 | es-abstract "^1.12.0"
2817 | function-bind "^1.1.1"
2818 | has "^1.0.3"
2819 |
2820 | object.fromentries@^2.0.0:
2821 | version "2.0.0"
2822 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab"
2823 | integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA==
2824 | dependencies:
2825 | define-properties "^1.1.2"
2826 | es-abstract "^1.11.0"
2827 | function-bind "^1.1.1"
2828 | has "^1.0.1"
2829 |
2830 | object.getownpropertydescriptors@^2.0.3:
2831 | version "2.0.3"
2832 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2833 | dependencies:
2834 | define-properties "^1.1.2"
2835 | es-abstract "^1.5.1"
2836 |
2837 | object.omit@^2.0.0:
2838 | version "2.0.1"
2839 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2840 | dependencies:
2841 | for-own "^0.1.4"
2842 | is-extendable "^0.1.1"
2843 |
2844 | object.values@^1.0.4:
2845 | version "1.0.4"
2846 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a"
2847 | dependencies:
2848 | define-properties "^1.1.2"
2849 | es-abstract "^1.6.1"
2850 | function-bind "^1.1.0"
2851 | has "^1.0.1"
2852 |
2853 | object.values@^1.1.0:
2854 | version "1.1.0"
2855 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
2856 | integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
2857 | dependencies:
2858 | define-properties "^1.1.3"
2859 | es-abstract "^1.12.0"
2860 | function-bind "^1.1.1"
2861 | has "^1.0.3"
2862 |
2863 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
2864 | version "1.4.0"
2865 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2866 | dependencies:
2867 | wrappy "1"
2868 |
2869 | onetime@^2.0.0:
2870 | version "2.0.1"
2871 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2872 | dependencies:
2873 | mimic-fn "^1.0.0"
2874 |
2875 | optionator@^0.8.2:
2876 | version "0.8.2"
2877 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2878 | dependencies:
2879 | deep-is "~0.1.3"
2880 | fast-levenshtein "~2.0.4"
2881 | levn "~0.3.0"
2882 | prelude-ls "~1.1.2"
2883 | type-check "~0.3.2"
2884 | wordwrap "~1.0.0"
2885 |
2886 | os-homedir@^1.0.1:
2887 | version "1.0.2"
2888 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2889 |
2890 | os-tmpdir@~1.0.2:
2891 | version "1.0.2"
2892 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2893 |
2894 | p-limit@^1.1.0:
2895 | version "1.3.0"
2896 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
2897 | dependencies:
2898 | p-try "^1.0.0"
2899 |
2900 | p-limit@^2.0.0:
2901 | version "2.2.1"
2902 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537"
2903 | integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==
2904 | dependencies:
2905 | p-try "^2.0.0"
2906 |
2907 | p-locate@^2.0.0:
2908 | version "2.0.0"
2909 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2910 | dependencies:
2911 | p-limit "^1.1.0"
2912 |
2913 | p-locate@^3.0.0:
2914 | version "3.0.0"
2915 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
2916 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
2917 | dependencies:
2918 | p-limit "^2.0.0"
2919 |
2920 | p-map@^1.1.1:
2921 | version "1.2.0"
2922 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
2923 |
2924 | p-queue@^2.4.2:
2925 | version "2.4.2"
2926 | resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-2.4.2.tgz#03609826682b743be9a22dba25051bd46724fc34"
2927 |
2928 | p-try@^1.0.0:
2929 | version "1.0.0"
2930 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2931 |
2932 | p-try@^2.0.0:
2933 | version "2.2.0"
2934 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2935 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2936 |
2937 | pad-right@^0.2.2:
2938 | version "0.2.2"
2939 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774"
2940 | dependencies:
2941 | repeat-string "^1.5.2"
2942 |
2943 | parent-module@^1.0.0:
2944 | version "1.0.1"
2945 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2946 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2947 | dependencies:
2948 | callsites "^3.0.0"
2949 |
2950 | parse-glob@^3.0.4:
2951 | version "3.0.4"
2952 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2953 | dependencies:
2954 | glob-base "^0.3.0"
2955 | is-dotfile "^1.0.0"
2956 | is-extglob "^1.0.0"
2957 | is-glob "^2.0.0"
2958 |
2959 | parse-json@^2.2.0:
2960 | version "2.2.0"
2961 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2962 | dependencies:
2963 | error-ex "^1.2.0"
2964 |
2965 | parse-json@^4.0.0:
2966 | version "4.0.0"
2967 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2968 | dependencies:
2969 | error-ex "^1.3.1"
2970 | json-parse-better-errors "^1.0.1"
2971 |
2972 | path-exists@^3.0.0:
2973 | version "3.0.0"
2974 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2975 |
2976 | path-is-absolute@^1.0.0:
2977 | version "1.0.1"
2978 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2979 |
2980 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
2981 | version "1.0.2"
2982 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2983 |
2984 | path-key@^2.0.1:
2985 | version "2.0.1"
2986 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2987 |
2988 | path-parse@^1.0.5, path-parse@^1.0.6:
2989 | version "1.0.6"
2990 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
2991 |
2992 | path-type@^2.0.0:
2993 | version "2.0.0"
2994 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2995 | dependencies:
2996 | pify "^2.0.0"
2997 |
2998 | pify@^2.0.0:
2999 | version "2.3.0"
3000 | resolved "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
3001 |
3002 | pify@^3.0.0:
3003 | version "3.0.0"
3004 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
3005 |
3006 | pify@^4.0.1:
3007 | version "4.0.1"
3008 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
3009 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
3010 |
3011 | pinkie-promise@^2.0.0:
3012 | version "2.0.1"
3013 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
3014 | dependencies:
3015 | pinkie "^2.0.0"
3016 |
3017 | pinkie@^2.0.0:
3018 | version "2.0.4"
3019 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3020 |
3021 | pkg-conf@^3.1.0:
3022 | version "3.1.0"
3023 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-3.1.0.tgz#d9f9c75ea1bae0e77938cde045b276dac7cc69ae"
3024 | integrity sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==
3025 | dependencies:
3026 | find-up "^3.0.0"
3027 | load-json-file "^5.2.0"
3028 |
3029 | pkg-config@^1.1.0:
3030 | version "1.1.1"
3031 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4"
3032 | dependencies:
3033 | debug-log "^1.0.0"
3034 | find-root "^1.0.0"
3035 | xtend "^4.0.1"
3036 |
3037 | pkg-dir@^2.0.0:
3038 | version "2.0.0"
3039 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
3040 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
3041 | dependencies:
3042 | find-up "^2.1.0"
3043 |
3044 | pluralize@^7.0.0:
3045 | version "7.0.0"
3046 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
3047 |
3048 | postcss-calc@^5.2.0:
3049 | version "5.3.1"
3050 | resolved "http://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
3051 | dependencies:
3052 | postcss "^5.0.2"
3053 | postcss-message-helpers "^2.0.0"
3054 | reduce-css-calc "^1.2.6"
3055 |
3056 | postcss-calc@^7.0.0:
3057 | version "7.0.1"
3058 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436"
3059 | dependencies:
3060 | css-unit-converter "^1.1.1"
3061 | postcss "^7.0.5"
3062 | postcss-selector-parser "^5.0.0-rc.4"
3063 | postcss-value-parser "^3.3.1"
3064 |
3065 | postcss-colormin@^2.1.8:
3066 | version "2.2.2"
3067 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
3068 | dependencies:
3069 | colormin "^1.0.5"
3070 | postcss "^5.0.13"
3071 | postcss-value-parser "^3.2.3"
3072 |
3073 | postcss-colormin@^4.0.2:
3074 | version "4.0.2"
3075 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.2.tgz#93cd1fa11280008696887db1a528048b18e7ed99"
3076 | dependencies:
3077 | browserslist "^4.0.0"
3078 | color "^3.0.0"
3079 | has "^1.0.0"
3080 | postcss "^7.0.0"
3081 | postcss-value-parser "^3.0.0"
3082 |
3083 | postcss-convert-values@^2.3.4:
3084 | version "2.6.1"
3085 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
3086 | dependencies:
3087 | postcss "^5.0.11"
3088 | postcss-value-parser "^3.1.2"
3089 |
3090 | postcss-convert-values@^4.0.1:
3091 | version "4.0.1"
3092 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
3093 | dependencies:
3094 | postcss "^7.0.0"
3095 | postcss-value-parser "^3.0.0"
3096 |
3097 | postcss-discard-comments@^2.0.4:
3098 | version "2.0.4"
3099 | resolved "http://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
3100 | dependencies:
3101 | postcss "^5.0.14"
3102 |
3103 | postcss-discard-comments@^4.0.1:
3104 | version "4.0.1"
3105 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.1.tgz#30697735b0c476852a7a11050eb84387a67ef55d"
3106 | dependencies:
3107 | postcss "^7.0.0"
3108 |
3109 | postcss-discard-duplicates@^2.0.1:
3110 | version "2.1.0"
3111 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
3112 | dependencies:
3113 | postcss "^5.0.4"
3114 |
3115 | postcss-discard-duplicates@^4.0.2:
3116 | version "4.0.2"
3117 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
3118 | dependencies:
3119 | postcss "^7.0.0"
3120 |
3121 | postcss-discard-empty@^2.0.1:
3122 | version "2.1.0"
3123 | resolved "http://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
3124 | dependencies:
3125 | postcss "^5.0.14"
3126 |
3127 | postcss-discard-empty@^4.0.1:
3128 | version "4.0.1"
3129 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
3130 | dependencies:
3131 | postcss "^7.0.0"
3132 |
3133 | postcss-discard-overridden@^0.1.1:
3134 | version "0.1.1"
3135 | resolved "http://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
3136 | dependencies:
3137 | postcss "^5.0.16"
3138 |
3139 | postcss-discard-overridden@^4.0.1:
3140 | version "4.0.1"
3141 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
3142 | dependencies:
3143 | postcss "^7.0.0"
3144 |
3145 | postcss-discard-unused@^2.2.1:
3146 | version "2.2.3"
3147 | resolved "http://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
3148 | dependencies:
3149 | postcss "^5.0.14"
3150 | uniqs "^2.0.0"
3151 |
3152 | postcss-filter-plugins@^2.0.0:
3153 | version "2.0.3"
3154 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec"
3155 | dependencies:
3156 | postcss "^5.0.4"
3157 |
3158 | postcss-load-config@^1.2.0:
3159 | version "1.2.0"
3160 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
3161 | dependencies:
3162 | cosmiconfig "^2.1.0"
3163 | object-assign "^4.1.0"
3164 | postcss-load-options "^1.2.0"
3165 | postcss-load-plugins "^2.3.0"
3166 |
3167 | postcss-load-options@^1.2.0:
3168 | version "1.2.0"
3169 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
3170 | dependencies:
3171 | cosmiconfig "^2.1.0"
3172 | object-assign "^4.1.0"
3173 |
3174 | postcss-load-plugins@^2.3.0:
3175 | version "2.3.0"
3176 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
3177 | dependencies:
3178 | cosmiconfig "^2.1.1"
3179 | object-assign "^4.1.0"
3180 |
3181 | postcss-merge-idents@^2.1.5:
3182 | version "2.1.7"
3183 | resolved "http://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
3184 | dependencies:
3185 | has "^1.0.1"
3186 | postcss "^5.0.10"
3187 | postcss-value-parser "^3.1.1"
3188 |
3189 | postcss-merge-longhand@^2.0.1:
3190 | version "2.0.2"
3191 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
3192 | dependencies:
3193 | postcss "^5.0.4"
3194 |
3195 | postcss-merge-longhand@^4.0.9:
3196 | version "4.0.9"
3197 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.9.tgz#c2428b994833ffb2a072f290ca642e75ceabcd6f"
3198 | dependencies:
3199 | css-color-names "0.0.4"
3200 | postcss "^7.0.0"
3201 | postcss-value-parser "^3.0.0"
3202 | stylehacks "^4.0.0"
3203 |
3204 | postcss-merge-rules@^2.0.3:
3205 | version "2.1.2"
3206 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
3207 | dependencies:
3208 | browserslist "^1.5.2"
3209 | caniuse-api "^1.5.2"
3210 | postcss "^5.0.4"
3211 | postcss-selector-parser "^2.2.2"
3212 | vendors "^1.0.0"
3213 |
3214 | postcss-merge-rules@^4.0.2:
3215 | version "4.0.2"
3216 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.2.tgz#2be44401bf19856f27f32b8b12c0df5af1b88e74"
3217 | dependencies:
3218 | browserslist "^4.0.0"
3219 | caniuse-api "^3.0.0"
3220 | cssnano-util-same-parent "^4.0.0"
3221 | postcss "^7.0.0"
3222 | postcss-selector-parser "^3.0.0"
3223 | vendors "^1.0.0"
3224 |
3225 | postcss-message-helpers@^2.0.0:
3226 | version "2.0.0"
3227 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
3228 |
3229 | postcss-minify-font-values@^1.0.2:
3230 | version "1.0.5"
3231 | resolved "http://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
3232 | dependencies:
3233 | object-assign "^4.0.1"
3234 | postcss "^5.0.4"
3235 | postcss-value-parser "^3.0.2"
3236 |
3237 | postcss-minify-font-values@^4.0.2:
3238 | version "4.0.2"
3239 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
3240 | dependencies:
3241 | postcss "^7.0.0"
3242 | postcss-value-parser "^3.0.0"
3243 |
3244 | postcss-minify-gradients@^1.0.1:
3245 | version "1.0.5"
3246 | resolved "http://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
3247 | dependencies:
3248 | postcss "^5.0.12"
3249 | postcss-value-parser "^3.3.0"
3250 |
3251 | postcss-minify-gradients@^4.0.1:
3252 | version "4.0.1"
3253 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.1.tgz#6da95c6e92a809f956bb76bf0c04494953e1a7dd"
3254 | dependencies:
3255 | cssnano-util-get-arguments "^4.0.0"
3256 | is-color-stop "^1.0.0"
3257 | postcss "^7.0.0"
3258 | postcss-value-parser "^3.0.0"
3259 |
3260 | postcss-minify-params@^1.0.4:
3261 | version "1.2.2"
3262 | resolved "http://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
3263 | dependencies:
3264 | alphanum-sort "^1.0.1"
3265 | postcss "^5.0.2"
3266 | postcss-value-parser "^3.0.2"
3267 | uniqs "^2.0.0"
3268 |
3269 | postcss-minify-params@^4.0.1:
3270 | version "4.0.1"
3271 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.1.tgz#5b2e2d0264dd645ef5d68f8fec0d4c38c1cf93d2"
3272 | dependencies:
3273 | alphanum-sort "^1.0.0"
3274 | browserslist "^4.0.0"
3275 | cssnano-util-get-arguments "^4.0.0"
3276 | postcss "^7.0.0"
3277 | postcss-value-parser "^3.0.0"
3278 | uniqs "^2.0.0"
3279 |
3280 | postcss-minify-selectors@^2.0.4:
3281 | version "2.1.1"
3282 | resolved "http://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
3283 | dependencies:
3284 | alphanum-sort "^1.0.2"
3285 | has "^1.0.1"
3286 | postcss "^5.0.14"
3287 | postcss-selector-parser "^2.0.0"
3288 |
3289 | postcss-minify-selectors@^4.0.1:
3290 | version "4.0.1"
3291 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.1.tgz#a891c197977cc37abf60b3ea06b84248b1c1e9cd"
3292 | dependencies:
3293 | alphanum-sort "^1.0.0"
3294 | has "^1.0.0"
3295 | postcss "^7.0.0"
3296 | postcss-selector-parser "^3.0.0"
3297 |
3298 | postcss-modules-extract-imports@1.1.0:
3299 | version "1.1.0"
3300 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb"
3301 | dependencies:
3302 | postcss "^6.0.1"
3303 |
3304 | postcss-modules-local-by-default@1.2.0:
3305 | version "1.2.0"
3306 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
3307 | dependencies:
3308 | css-selector-tokenizer "^0.7.0"
3309 | postcss "^6.0.1"
3310 |
3311 | postcss-modules-scope@1.1.0:
3312 | version "1.1.0"
3313 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
3314 | dependencies:
3315 | css-selector-tokenizer "^0.7.0"
3316 | postcss "^6.0.1"
3317 |
3318 | postcss-modules-values@1.3.0:
3319 | version "1.3.0"
3320 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
3321 | dependencies:
3322 | icss-replace-symbols "^1.1.0"
3323 | postcss "^6.0.1"
3324 |
3325 | postcss-modules@^1.1.0:
3326 | version "1.4.1"
3327 | resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-1.4.1.tgz#8aa35bd3461db67e27377a7ce770d77b654a84ef"
3328 | dependencies:
3329 | css-modules-loader-core "^1.1.0"
3330 | generic-names "^1.0.3"
3331 | lodash.camelcase "^4.3.0"
3332 | postcss "^7.0.1"
3333 | string-hash "^1.1.1"
3334 |
3335 | postcss-normalize-charset@^1.1.0:
3336 | version "1.1.1"
3337 | resolved "http://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
3338 | dependencies:
3339 | postcss "^5.0.5"
3340 |
3341 | postcss-normalize-charset@^4.0.1:
3342 | version "4.0.1"
3343 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
3344 | dependencies:
3345 | postcss "^7.0.0"
3346 |
3347 | postcss-normalize-display-values@^4.0.1:
3348 | version "4.0.1"
3349 | resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz#d9a83d47c716e8a980f22f632c8b0458cfb48a4c"
3350 | dependencies:
3351 | cssnano-util-get-match "^4.0.0"
3352 | postcss "^7.0.0"
3353 | postcss-value-parser "^3.0.0"
3354 |
3355 | postcss-normalize-positions@^4.0.1:
3356 | version "4.0.1"
3357 | resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.1.tgz#ee2d4b67818c961964c6be09d179894b94fd6ba1"
3358 | dependencies:
3359 | cssnano-util-get-arguments "^4.0.0"
3360 | has "^1.0.0"
3361 | postcss "^7.0.0"
3362 | postcss-value-parser "^3.0.0"
3363 |
3364 | postcss-normalize-repeat-style@^4.0.1:
3365 | version "4.0.1"
3366 | resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.1.tgz#5293f234b94d7669a9f805495d35b82a581c50e5"
3367 | dependencies:
3368 | cssnano-util-get-arguments "^4.0.0"
3369 | cssnano-util-get-match "^4.0.0"
3370 | postcss "^7.0.0"
3371 | postcss-value-parser "^3.0.0"
3372 |
3373 | postcss-normalize-string@^4.0.1:
3374 | version "4.0.1"
3375 | resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.1.tgz#23c5030c2cc24175f66c914fa5199e2e3c10fef3"
3376 | dependencies:
3377 | has "^1.0.0"
3378 | postcss "^7.0.0"
3379 | postcss-value-parser "^3.0.0"
3380 |
3381 | postcss-normalize-timing-functions@^4.0.1:
3382 | version "4.0.1"
3383 | resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.1.tgz#8be83e0b9cb3ff2d1abddee032a49108f05f95d7"
3384 | dependencies:
3385 | cssnano-util-get-match "^4.0.0"
3386 | postcss "^7.0.0"
3387 | postcss-value-parser "^3.0.0"
3388 |
3389 | postcss-normalize-unicode@^4.0.1:
3390 | version "4.0.1"
3391 | resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
3392 | dependencies:
3393 | browserslist "^4.0.0"
3394 | postcss "^7.0.0"
3395 | postcss-value-parser "^3.0.0"
3396 |
3397 | postcss-normalize-url@^3.0.7:
3398 | version "3.0.8"
3399 | resolved "http://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
3400 | dependencies:
3401 | is-absolute-url "^2.0.0"
3402 | normalize-url "^1.4.0"
3403 | postcss "^5.0.14"
3404 | postcss-value-parser "^3.2.3"
3405 |
3406 | postcss-normalize-url@^4.0.1:
3407 | version "4.0.1"
3408 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
3409 | dependencies:
3410 | is-absolute-url "^2.0.0"
3411 | normalize-url "^3.0.0"
3412 | postcss "^7.0.0"
3413 | postcss-value-parser "^3.0.0"
3414 |
3415 | postcss-normalize-whitespace@^4.0.1:
3416 | version "4.0.1"
3417 | resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.1.tgz#d14cb639b61238418ac8bc8d3b7bdd65fc86575e"
3418 | dependencies:
3419 | postcss "^7.0.0"
3420 | postcss-value-parser "^3.0.0"
3421 |
3422 | postcss-ordered-values@^2.1.0:
3423 | version "2.2.3"
3424 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
3425 | dependencies:
3426 | postcss "^5.0.4"
3427 | postcss-value-parser "^3.0.1"
3428 |
3429 | postcss-ordered-values@^4.1.1:
3430 | version "4.1.1"
3431 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.1.tgz#2e3b432ef3e489b18333aeca1f1295eb89be9fc2"
3432 | dependencies:
3433 | cssnano-util-get-arguments "^4.0.0"
3434 | postcss "^7.0.0"
3435 | postcss-value-parser "^3.0.0"
3436 |
3437 | postcss-reduce-idents@^2.2.2:
3438 | version "2.4.0"
3439 | resolved "http://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
3440 | dependencies:
3441 | postcss "^5.0.4"
3442 | postcss-value-parser "^3.0.2"
3443 |
3444 | postcss-reduce-initial@^1.0.0:
3445 | version "1.0.1"
3446 | resolved "http://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
3447 | dependencies:
3448 | postcss "^5.0.4"
3449 |
3450 | postcss-reduce-initial@^4.0.2:
3451 | version "4.0.2"
3452 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.2.tgz#bac8e325d67510ee01fa460676dc8ea9e3b40f15"
3453 | dependencies:
3454 | browserslist "^4.0.0"
3455 | caniuse-api "^3.0.0"
3456 | has "^1.0.0"
3457 | postcss "^7.0.0"
3458 |
3459 | postcss-reduce-transforms@^1.0.3:
3460 | version "1.0.4"
3461 | resolved "http://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
3462 | dependencies:
3463 | has "^1.0.1"
3464 | postcss "^5.0.8"
3465 | postcss-value-parser "^3.0.1"
3466 |
3467 | postcss-reduce-transforms@^4.0.1:
3468 | version "4.0.1"
3469 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.1.tgz#8600d5553bdd3ad640f43bff81eb52f8760d4561"
3470 | dependencies:
3471 | cssnano-util-get-match "^4.0.0"
3472 | has "^1.0.0"
3473 | postcss "^7.0.0"
3474 | postcss-value-parser "^3.0.0"
3475 |
3476 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
3477 | version "2.2.3"
3478 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
3479 | dependencies:
3480 | flatten "^1.0.2"
3481 | indexes-of "^1.0.1"
3482 | uniq "^1.0.1"
3483 |
3484 | postcss-selector-parser@^3.0.0, postcss-selector-parser@^3.1.1:
3485 | version "3.1.1"
3486 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865"
3487 | dependencies:
3488 | dot-prop "^4.1.1"
3489 | indexes-of "^1.0.1"
3490 | uniq "^1.0.1"
3491 |
3492 | postcss-selector-parser@^5.0.0-rc.4:
3493 | version "5.0.0-rc.4"
3494 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0-rc.4.tgz#ca5e77238bf152966378c13e91ad6d611568ea87"
3495 | dependencies:
3496 | cssesc "^2.0.0"
3497 | indexes-of "^1.0.1"
3498 | uniq "^1.0.1"
3499 |
3500 | postcss-svgo@^2.1.1:
3501 | version "2.1.6"
3502 | resolved "http://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
3503 | dependencies:
3504 | is-svg "^2.0.0"
3505 | postcss "^5.0.14"
3506 | postcss-value-parser "^3.2.3"
3507 | svgo "^0.7.0"
3508 |
3509 | postcss-svgo@^4.0.1:
3510 | version "4.0.1"
3511 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.1.tgz#5628cdb38f015de6b588ce6d0bf0724b492b581d"
3512 | dependencies:
3513 | is-svg "^3.0.0"
3514 | postcss "^7.0.0"
3515 | postcss-value-parser "^3.0.0"
3516 | svgo "^1.0.0"
3517 |
3518 | postcss-unique-selectors@^2.0.2:
3519 | version "2.0.2"
3520 | resolved "http://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
3521 | dependencies:
3522 | alphanum-sort "^1.0.1"
3523 | postcss "^5.0.4"
3524 | uniqs "^2.0.0"
3525 |
3526 | postcss-unique-selectors@^4.0.1:
3527 | version "4.0.1"
3528 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
3529 | dependencies:
3530 | alphanum-sort "^1.0.0"
3531 | postcss "^7.0.0"
3532 | uniqs "^2.0.0"
3533 |
3534 | postcss-value-parser@^3.0.0, postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1:
3535 | version "3.3.1"
3536 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
3537 |
3538 | postcss-zindex@^2.0.1:
3539 | version "2.2.0"
3540 | resolved "http://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
3541 | dependencies:
3542 | has "^1.0.1"
3543 | postcss "^5.0.4"
3544 | uniqs "^2.0.0"
3545 |
3546 | postcss@6.0.1:
3547 | version "6.0.1"
3548 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"
3549 | dependencies:
3550 | chalk "^1.1.3"
3551 | source-map "^0.5.6"
3552 | supports-color "^3.2.3"
3553 |
3554 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.2.16:
3555 | version "5.2.18"
3556 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
3557 | dependencies:
3558 | chalk "^1.1.3"
3559 | js-base64 "^2.1.9"
3560 | source-map "^0.5.6"
3561 | supports-color "^3.2.3"
3562 |
3563 | postcss@^6.0.1, postcss@^6.0.20, postcss@^6.0.21:
3564 | version "6.0.23"
3565 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
3566 | dependencies:
3567 | chalk "^2.4.1"
3568 | source-map "^0.6.1"
3569 | supports-color "^5.4.0"
3570 |
3571 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.5:
3572 | version "7.0.5"
3573 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.5.tgz#70e6443e36a6d520b0fd4e7593fcca3635ee9f55"
3574 | dependencies:
3575 | chalk "^2.4.1"
3576 | source-map "^0.6.1"
3577 | supports-color "^5.5.0"
3578 |
3579 | prebuild-install@^5.2.1:
3580 | version "5.2.1"
3581 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.2.1.tgz#87ba8cf17c65360a75eefeb3519e87973bf9791d"
3582 | dependencies:
3583 | detect-libc "^1.0.3"
3584 | expand-template "^1.0.2"
3585 | github-from-package "0.0.0"
3586 | minimist "^1.2.0"
3587 | mkdirp "^0.5.1"
3588 | napi-build-utils "^1.0.1"
3589 | node-abi "^2.2.0"
3590 | noop-logger "^0.1.1"
3591 | npmlog "^4.0.1"
3592 | os-homedir "^1.0.1"
3593 | pump "^2.0.1"
3594 | rc "^1.2.7"
3595 | simple-get "^2.7.0"
3596 | tar-fs "^1.13.0"
3597 | tunnel-agent "^0.6.0"
3598 | which-pm-runs "^1.0.0"
3599 |
3600 | prelude-ls@~1.1.2:
3601 | version "1.1.2"
3602 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
3603 |
3604 | prepend-http@^1.0.0:
3605 | version "1.0.4"
3606 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
3607 |
3608 | preserve@^0.2.0:
3609 | version "0.2.0"
3610 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3611 |
3612 | prettier-eslint@^8.1.1:
3613 | version "8.8.2"
3614 | resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b"
3615 | dependencies:
3616 | babel-runtime "^6.26.0"
3617 | common-tags "^1.4.0"
3618 | dlv "^1.1.0"
3619 | eslint "^4.0.0"
3620 | indent-string "^3.2.0"
3621 | lodash.merge "^4.6.0"
3622 | loglevel-colored-level-prefix "^1.0.0"
3623 | prettier "^1.7.0"
3624 | pretty-format "^23.0.1"
3625 | require-relative "^0.8.7"
3626 | typescript "^2.5.1"
3627 | typescript-eslint-parser "^16.0.0"
3628 | vue-eslint-parser "^2.0.2"
3629 |
3630 | prettier-standard@8.0.1:
3631 | version "8.0.1"
3632 | resolved "https://registry.yarnpkg.com/prettier-standard/-/prettier-standard-8.0.1.tgz#3658ddc33d46a3ace950d5454654ae47cd6ca026"
3633 | integrity sha512-egiIKvmlizoXuRkh83myjB4elmdIahCaUACLDaZyCgvspZQyps0fUayQpvcv4/gW/XahMTu95a3f9Fu8ouGYZw==
3634 | dependencies:
3635 | "@sheerun/eslint-config-standard" "^10.2.1"
3636 | babel-eslint ">=7.2.3"
3637 | babel-runtime "^6.23.0"
3638 | chalk "^2.3.0"
3639 | core-js "^2.5.3"
3640 | eslint "^4.7.2"
3641 | find-up "^2.1.0"
3642 | get-stdin "^5.0.1"
3643 | glob "^7.1.2"
3644 | ignore "^3.3.3"
3645 | indent-string "^3.1.0"
3646 | lodash.memoize "^4.1.2"
3647 | loglevel-colored-level-prefix "^1.0.0"
3648 | messageformat "^1.0.2"
3649 | minimist "1.2.0"
3650 | prettier "1.9.x"
3651 | prettier-eslint "^8.1.1"
3652 | regenerator-runtime "^0.11.1"
3653 | rxjs "^5.4.0"
3654 |
3655 | prettier@1.9.x:
3656 | version "1.9.2"
3657 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.9.2.tgz#96bc2132f7a32338e6078aeb29727178c6335827"
3658 |
3659 | prettier@^1.13.0, prettier@^1.7.0:
3660 | version "1.15.1"
3661 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.1.tgz#06c67106afb1b40e74b002353b2079cc7e0e67bf"
3662 |
3663 | pretty-bytes@^3.0.0:
3664 | version "3.0.1"
3665 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-3.0.1.tgz#27d0008d778063a0b4811bb35c79f1bd5d5fbccf"
3666 | dependencies:
3667 | number-is-nan "^1.0.0"
3668 |
3669 | pretty-bytes@^5.1.0:
3670 | version "5.1.0"
3671 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.1.0.tgz#6237ecfbdc6525beaef4de722cc60a58ae0e6c6d"
3672 |
3673 | pretty-format@^23.0.1:
3674 | version "23.6.0"
3675 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
3676 | dependencies:
3677 | ansi-regex "^3.0.0"
3678 | ansi-styles "^3.2.0"
3679 |
3680 | process-nextick-args@~2.0.0:
3681 | version "2.0.0"
3682 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
3683 |
3684 | progress@^2.0.0:
3685 | version "2.0.1"
3686 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.1.tgz#c9242169342b1c29d275889c95734621b1952e31"
3687 |
3688 | promise.series@^0.2.0:
3689 | version "0.2.0"
3690 | resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd"
3691 |
3692 | prop-types@^15.7.2:
3693 | version "15.7.2"
3694 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
3695 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
3696 | dependencies:
3697 | loose-envify "^1.4.0"
3698 | object-assign "^4.1.1"
3699 | react-is "^16.8.1"
3700 |
3701 | pseudomap@^1.0.2:
3702 | version "1.0.2"
3703 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3704 |
3705 | pump@^1.0.0:
3706 | version "1.0.3"
3707 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954"
3708 | dependencies:
3709 | end-of-stream "^1.1.0"
3710 | once "^1.3.1"
3711 |
3712 | pump@^2.0.1:
3713 | version "2.0.1"
3714 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
3715 | dependencies:
3716 | end-of-stream "^1.1.0"
3717 | once "^1.3.1"
3718 |
3719 | punycode@^2.1.0:
3720 | version "2.1.1"
3721 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
3722 |
3723 | q@^1.1.2:
3724 | version "1.5.1"
3725 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
3726 |
3727 | query-string@^4.1.0:
3728 | version "4.3.4"
3729 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
3730 | dependencies:
3731 | object-assign "^4.1.0"
3732 | strict-uri-encode "^1.0.0"
3733 |
3734 | randomatic@^3.0.0:
3735 | version "3.1.1"
3736 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
3737 | dependencies:
3738 | is-number "^4.0.0"
3739 | kind-of "^6.0.0"
3740 | math-random "^1.0.1"
3741 |
3742 | rc@^1.2.7:
3743 | version "1.2.8"
3744 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
3745 | dependencies:
3746 | deep-extend "^0.6.0"
3747 | ini "~1.3.0"
3748 | minimist "^1.2.0"
3749 | strip-json-comments "~2.0.1"
3750 |
3751 | react-is@^16.8.1:
3752 | version "16.10.1"
3753 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.10.1.tgz#0612786bf19df406502d935494f0450b40b8294f"
3754 | integrity sha512-BXUMf9sIOPXXZWqr7+c5SeOKJykyVr2u0UDzEf4LNGc6taGkQe1A9DFD07umCIXz45RLr9oAAwZbAJ0Pkknfaw==
3755 |
3756 | read-pkg-up@^2.0.0:
3757 | version "2.0.0"
3758 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3759 | dependencies:
3760 | find-up "^2.0.0"
3761 | read-pkg "^2.0.0"
3762 |
3763 | read-pkg@^2.0.0:
3764 | version "2.0.0"
3765 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3766 | dependencies:
3767 | load-json-file "^2.0.0"
3768 | normalize-package-data "^2.3.2"
3769 | path-type "^2.0.0"
3770 |
3771 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5:
3772 | version "2.3.6"
3773 | resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
3774 | dependencies:
3775 | core-util-is "~1.0.0"
3776 | inherits "~2.0.3"
3777 | isarray "~1.0.0"
3778 | process-nextick-args "~2.0.0"
3779 | safe-buffer "~5.1.1"
3780 | string_decoder "~1.1.1"
3781 | util-deprecate "~1.0.1"
3782 |
3783 | reduce-css-calc@^1.2.6:
3784 | version "1.3.0"
3785 | resolved "http://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
3786 | dependencies:
3787 | balanced-match "^0.4.2"
3788 | math-expression-evaluator "^1.2.14"
3789 | reduce-function-call "^1.0.1"
3790 |
3791 | reduce-function-call@^1.0.1:
3792 | version "1.0.2"
3793 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
3794 | dependencies:
3795 | balanced-match "^0.4.2"
3796 |
3797 | regenerate-unicode-properties@^7.0.0:
3798 | version "7.0.0"
3799 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"
3800 | dependencies:
3801 | regenerate "^1.4.0"
3802 |
3803 | regenerate@^1.2.1, regenerate@^1.4.0:
3804 | version "1.4.0"
3805 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
3806 |
3807 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1:
3808 | version "0.11.1"
3809 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3810 |
3811 | regex-cache@^0.4.2:
3812 | version "0.4.4"
3813 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3814 | dependencies:
3815 | is-equal-shallow "^0.1.3"
3816 |
3817 | regexpp@^1.0.1:
3818 | version "1.1.0"
3819 | resolved "http://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
3820 |
3821 | regexpp@^2.0.1:
3822 | version "2.0.1"
3823 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
3824 |
3825 | regexpp@^3.0.0:
3826 | version "3.0.0"
3827 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e"
3828 | integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==
3829 |
3830 | regexpu-core@^1.0.0:
3831 | version "1.0.0"
3832 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
3833 | dependencies:
3834 | regenerate "^1.2.1"
3835 | regjsgen "^0.2.0"
3836 | regjsparser "^0.1.4"
3837 |
3838 | regexpu-core@^4.2.0:
3839 | version "4.2.0"
3840 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.2.0.tgz#a3744fa03806cffe146dea4421a3e73bdcc47b1d"
3841 | dependencies:
3842 | regenerate "^1.4.0"
3843 | regenerate-unicode-properties "^7.0.0"
3844 | regjsgen "^0.4.0"
3845 | regjsparser "^0.3.0"
3846 | unicode-match-property-ecmascript "^1.0.4"
3847 | unicode-match-property-value-ecmascript "^1.0.2"
3848 |
3849 | regjsgen@^0.2.0:
3850 | version "0.2.0"
3851 | resolved "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3852 |
3853 | regjsgen@^0.4.0:
3854 | version "0.4.0"
3855 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.4.0.tgz#c1eb4c89a209263f8717c782591523913ede2561"
3856 |
3857 | regjsparser@^0.1.4:
3858 | version "0.1.5"
3859 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3860 | dependencies:
3861 | jsesc "~0.5.0"
3862 |
3863 | regjsparser@^0.3.0:
3864 | version "0.3.0"
3865 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.3.0.tgz#3c326da7fcfd69fa0d332575a41c8c0cdf588c96"
3866 | dependencies:
3867 | jsesc "~0.5.0"
3868 |
3869 | remove-trailing-separator@^1.0.1:
3870 | version "1.1.0"
3871 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3872 |
3873 | repeat-element@^1.1.2:
3874 | version "1.1.3"
3875 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
3876 |
3877 | repeat-string@^1.5.2:
3878 | version "1.6.1"
3879 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3880 |
3881 | require-from-string@^1.1.0:
3882 | version "1.2.1"
3883 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
3884 |
3885 | require-relative@^0.8.7:
3886 | version "0.8.7"
3887 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de"
3888 |
3889 | require-uncached@^1.0.3:
3890 | version "1.0.3"
3891 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
3892 | dependencies:
3893 | caller-path "^0.1.0"
3894 | resolve-from "^1.0.0"
3895 |
3896 | reserved-words@^0.1.2:
3897 | version "0.1.2"
3898 | resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1"
3899 |
3900 | resolve-from@^1.0.0:
3901 | version "1.0.1"
3902 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
3903 |
3904 | resolve-from@^3.0.0:
3905 | version "3.0.0"
3906 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3907 |
3908 | resolve-from@^4.0.0:
3909 | version "4.0.0"
3910 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
3911 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
3912 |
3913 | resolve@1.8.1, resolve@^1.5.0, resolve@^1.8.1:
3914 | version "1.8.1"
3915 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26"
3916 | dependencies:
3917 | path-parse "^1.0.5"
3918 |
3919 | resolve@^1.10.0:
3920 | version "1.10.0"
3921 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
3922 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
3923 | dependencies:
3924 | path-parse "^1.0.6"
3925 |
3926 | resolve@^1.10.1, resolve@^1.11.0:
3927 | version "1.12.0"
3928 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
3929 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
3930 | dependencies:
3931 | path-parse "^1.0.6"
3932 |
3933 | resolve@^1.3.2:
3934 | version "1.9.0"
3935 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06"
3936 | integrity sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ==
3937 | dependencies:
3938 | path-parse "^1.0.6"
3939 |
3940 | restore-cursor@^2.0.0:
3941 | version "2.0.0"
3942 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3943 | dependencies:
3944 | onetime "^2.0.0"
3945 | signal-exit "^3.0.2"
3946 |
3947 | rgb-regex@^1.0.1:
3948 | version "1.0.1"
3949 | resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
3950 |
3951 | rgba-regex@^1.0.0:
3952 | version "1.0.0"
3953 | resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
3954 |
3955 | rimraf@2.6.3:
3956 | version "2.6.3"
3957 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
3958 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
3959 | dependencies:
3960 | glob "^7.1.3"
3961 |
3962 | rimraf@^2.2.8, rimraf@^2.6.2:
3963 | version "2.6.2"
3964 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3965 | dependencies:
3966 | glob "^7.0.5"
3967 |
3968 | rollup-plugin-alias@^1.5.1:
3969 | version "1.5.1"
3970 | resolved "https://registry.yarnpkg.com/rollup-plugin-alias/-/rollup-plugin-alias-1.5.1.tgz#80cce3a967befda5b09c86abc14a043a78035b46"
3971 | integrity sha512-pQTYBRNfLedoVOO7AYHNegIavEIp4jKTga5jUi1r//KYgHKGWgG4qJXYhbcWKt2k1FwGlR5wCYoY+IFkme0t4A==
3972 | dependencies:
3973 | slash "^2.0.0"
3974 |
3975 | rollup-plugin-babel@^4.1.0-0:
3976 | version "4.1.0"
3977 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.1.0.tgz#c97f50c82aa8e89ddaa116cdc5c832b8ba74db17"
3978 | integrity sha512-4IYv/yTNyH4P/Cma1mWdqy42gc051i1mTe/6oe8F055WzJGSb2qs1mSDwZTo93wA6kMBgHBIR/OcBk7JMnL59Q==
3979 | dependencies:
3980 | "@babel/helper-module-imports" "^7.0.0"
3981 | rollup-pluginutils "^2.3.0"
3982 |
3983 | rollup-plugin-buble@^0.19.4:
3984 | version "0.19.6"
3985 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.19.6.tgz#55ee0995d8870d536f01f4277c3eef4276e8747e"
3986 | integrity sha512-El5Fut4/wEO17ZN/n9BZvqd7DXXB2WbJr/DKvr89LXChC/cHllE0XwiUDeAalrTkgr0WrnyLDTCQvEv+cGywWQ==
3987 | dependencies:
3988 | buble "^0.19.6"
3989 | rollup-pluginutils "^2.3.3"
3990 |
3991 | rollup-plugin-bundle-size@^1.0.1:
3992 | version "1.0.2"
3993 | resolved "https://registry.yarnpkg.com/rollup-plugin-bundle-size/-/rollup-plugin-bundle-size-1.0.2.tgz#9943ad2c7629d7d71cfeff18b0ee07a96b3b9388"
3994 | dependencies:
3995 | chalk "^1.1.3"
3996 | maxmin "^2.1.0"
3997 |
3998 | rollup-plugin-commonjs@^9.0.0:
3999 | version "9.2.0"
4000 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.2.0.tgz#4604e25069e0c78a09e08faa95dc32dec27f7c89"
4001 | dependencies:
4002 | estree-walker "^0.5.2"
4003 | magic-string "^0.25.1"
4004 | resolve "^1.8.1"
4005 | rollup-pluginutils "^2.3.3"
4006 |
4007 | rollup-plugin-es3@^1.1.0:
4008 | version "1.1.0"
4009 | resolved "https://registry.yarnpkg.com/rollup-plugin-es3/-/rollup-plugin-es3-1.1.0.tgz#f866f91b4db839e5b475d8e4a7b9d4c77ecade14"
4010 | dependencies:
4011 | magic-string "^0.22.4"
4012 |
4013 | rollup-plugin-flow@^1.1.1:
4014 | version "1.1.1"
4015 | resolved "https://registry.yarnpkg.com/rollup-plugin-flow/-/rollup-plugin-flow-1.1.1.tgz#6ce568f1dd559666b77ab76b4bae251407528db6"
4016 | dependencies:
4017 | flow-remove-types "^1.1.0"
4018 | rollup-pluginutils "^1.5.1"
4019 |
4020 | rollup-plugin-json@^3.1.0:
4021 | version "3.1.0"
4022 | resolved "https://registry.yarnpkg.com/rollup-plugin-json/-/rollup-plugin-json-3.1.0.tgz#7c1daf60c46bc21021ea016bd00863561a03321b"
4023 | integrity sha512-BlYk5VspvGpjz7lAwArVzBXR60JK+4EKtPkCHouAWg39obk9S61hZYJDBfMK+oitPdoe11i69TlxKlMQNFC/Uw==
4024 | dependencies:
4025 | rollup-pluginutils "^2.3.1"
4026 |
4027 | rollup-plugin-node-resolve@^4.0.0:
4028 | version "4.0.1"
4029 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-4.0.1.tgz#f95765d174e5daeef9ea6268566141f53aa9d422"
4030 | integrity sha512-fSS7YDuCe0gYqKsr5OvxMloeZYUSgN43Ypi1WeRZzQcWtHgFayV5tUSPYpxuaioIIWaBXl6NrVk0T2/sKwueLg==
4031 | dependencies:
4032 | builtin-modules "^3.0.0"
4033 | is-module "^1.0.0"
4034 | resolve "^1.10.0"
4035 |
4036 | rollup-plugin-postcss@^1.6.1:
4037 | version "1.6.2"
4038 | resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-1.6.2.tgz#f3422a56dab21bcb2e9b7182763733d4ff2c1b4c"
4039 | dependencies:
4040 | "@vue/component-compiler-utils" "^1.0.0"
4041 | chalk "^2.0.0"
4042 | concat-with-sourcemaps "^1.0.5"
4043 | cssnano "^3.10.0"
4044 | fs-extra "^5.0.0"
4045 | import-cwd "^2.1.0"
4046 | p-queue "^2.4.2"
4047 | pify "^3.0.0"
4048 | postcss "^6.0.21"
4049 | postcss-load-config "^1.2.0"
4050 | postcss-modules "^1.1.0"
4051 | promise.series "^0.2.0"
4052 | reserved-words "^0.1.2"
4053 | resolve "^1.5.0"
4054 | rollup-pluginutils "^2.0.1"
4055 | style-inject "^0.3.0"
4056 |
4057 | rollup-plugin-preserve-shebang@^0.1.6:
4058 | version "0.1.6"
4059 | resolved "https://registry.yarnpkg.com/rollup-plugin-preserve-shebang/-/rollup-plugin-preserve-shebang-0.1.6.tgz#8cfc4c555d4ca87b9fbb7712869158db0e080d4a"
4060 | dependencies:
4061 | magic-string "^0.22.4"
4062 |
4063 | rollup-plugin-sizes@^0.4.2:
4064 | version "0.4.2"
4065 | resolved "https://registry.yarnpkg.com/rollup-plugin-sizes/-/rollup-plugin-sizes-0.4.2.tgz#1d97ecda2667a43afbb19d801e2476f80f67d12f"
4066 | dependencies:
4067 | filesize "^3.5.11"
4068 | lodash.foreach "^4.5.0"
4069 | lodash.sumby "^4.6.0"
4070 | module-details-from-path "^1.0.3"
4071 |
4072 | rollup-plugin-terser@^3.0.0:
4073 | version "3.0.0"
4074 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-3.0.0.tgz#045bd7cf625ee1affcfe6971dab6fffe6fb48c65"
4075 | dependencies:
4076 | "@babel/code-frame" "^7.0.0"
4077 | jest-worker "^23.2.0"
4078 | serialize-javascript "^1.5.0"
4079 | terser "^3.8.2"
4080 |
4081 | rollup-plugin-typescript2@^0.19.0:
4082 | version "0.19.3"
4083 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.19.3.tgz#713063233461765f030a2baa2640905c2656164f"
4084 | integrity sha512-lsRqfBCZhMl/tq9AT5YnQvzQWzXtnx3EQYFcHD72gul7nyyoOrzx5yCEH20smpw58v6UkHHZz03FbdLEPoHWjA==
4085 | dependencies:
4086 | fs-extra "7.0.1"
4087 | resolve "1.8.1"
4088 | rollup-pluginutils "2.3.3"
4089 | tslib "1.9.3"
4090 |
4091 | rollup-pluginutils@2.3.3, rollup-pluginutils@^2.0.1, rollup-pluginutils@^2.3.0, rollup-pluginutils@^2.3.1, rollup-pluginutils@^2.3.3:
4092 | version "2.3.3"
4093 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.3.3.tgz#3aad9b1eb3e7fe8262820818840bf091e5ae6794"
4094 | dependencies:
4095 | estree-walker "^0.5.2"
4096 | micromatch "^2.3.11"
4097 |
4098 | rollup-pluginutils@^1.5.1:
4099 | version "1.5.2"
4100 | resolved "http://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408"
4101 | dependencies:
4102 | estree-walker "^0.2.1"
4103 | minimatch "^3.0.2"
4104 |
4105 | rollup@^0.67.3:
4106 | version "0.67.4"
4107 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.67.4.tgz#8ed6b0993337f84ec8a0387f824fa6c197e833ec"
4108 | integrity sha512-AVuP73mkb4BBMUmksQ3Jw0jTrBTU1i7rLiUYjFxLZGb3xiFmtVEg40oByphkZAsiL0bJC3hRAJUQos/e5EBd+w==
4109 | dependencies:
4110 | "@types/estree" "0.0.39"
4111 | "@types/node" "*"
4112 |
4113 | run-async@^2.2.0:
4114 | version "2.3.0"
4115 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
4116 | dependencies:
4117 | is-promise "^2.1.0"
4118 |
4119 | run-parallel@^1.1.2:
4120 | version "1.1.9"
4121 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
4122 |
4123 | rx-lite-aggregates@^4.0.8:
4124 | version "4.0.8"
4125 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
4126 | dependencies:
4127 | rx-lite "*"
4128 |
4129 | rx-lite@*, rx-lite@^4.0.8:
4130 | version "4.0.8"
4131 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
4132 |
4133 | rxjs@^5.4.0:
4134 | version "5.5.12"
4135 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc"
4136 | dependencies:
4137 | symbol-observable "1.0.1"
4138 |
4139 | rxjs@^6.4.0:
4140 | version "6.5.3"
4141 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a"
4142 | integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==
4143 | dependencies:
4144 | tslib "^1.9.0"
4145 |
4146 | sade@^1.4.0:
4147 | version "1.4.1"
4148 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.4.1.tgz#80c6dfd3c03db1fbcd6bc10c0eb52f71e7cadc01"
4149 | dependencies:
4150 | mri "^1.1.0"
4151 | pad-right "^0.2.2"
4152 |
4153 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
4154 | version "5.1.2"
4155 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
4156 |
4157 | "safer-buffer@>= 2.1.2 < 3":
4158 | version "2.1.2"
4159 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
4160 |
4161 | sax@~1.2.1, sax@~1.2.4:
4162 | version "1.2.4"
4163 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
4164 |
4165 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0:
4166 | version "5.6.0"
4167 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
4168 |
4169 | semver@5.5.0:
4170 | version "5.5.0"
4171 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
4172 |
4173 | semver@^6.1.0, semver@^6.1.2:
4174 | version "6.3.0"
4175 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
4176 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
4177 |
4178 | serialize-javascript@^1.5.0:
4179 | version "1.5.0"
4180 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe"
4181 |
4182 | set-blocking@~2.0.0:
4183 | version "2.0.0"
4184 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
4185 |
4186 | shebang-command@^1.2.0:
4187 | version "1.2.0"
4188 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
4189 | dependencies:
4190 | shebang-regex "^1.0.0"
4191 |
4192 | shebang-regex@^1.0.0:
4193 | version "1.0.0"
4194 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
4195 |
4196 | signal-exit@^3.0.0, signal-exit@^3.0.2:
4197 | version "3.0.2"
4198 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
4199 |
4200 | simple-concat@^1.0.0:
4201 | version "1.0.0"
4202 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6"
4203 |
4204 | simple-get@^2.7.0:
4205 | version "2.8.1"
4206 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d"
4207 | dependencies:
4208 | decompress-response "^3.3.0"
4209 | once "^1.3.1"
4210 | simple-concat "^1.0.0"
4211 |
4212 | simple-swizzle@^0.2.2:
4213 | version "0.2.2"
4214 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
4215 | dependencies:
4216 | is-arrayish "^0.3.1"
4217 |
4218 | slash@^2.0.0:
4219 | version "2.0.0"
4220 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
4221 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
4222 |
4223 | slice-ansi@1.0.0:
4224 | version "1.0.0"
4225 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
4226 | dependencies:
4227 | is-fullwidth-code-point "^2.0.0"
4228 |
4229 | slice-ansi@^2.1.0:
4230 | version "2.1.0"
4231 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
4232 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
4233 | dependencies:
4234 | ansi-styles "^3.2.0"
4235 | astral-regex "^1.0.0"
4236 | is-fullwidth-code-point "^2.0.0"
4237 |
4238 | sort-keys@^1.0.0:
4239 | version "1.1.2"
4240 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
4241 | dependencies:
4242 | is-plain-obj "^1.0.0"
4243 |
4244 | source-map-support@~0.5.6:
4245 | version "0.5.9"
4246 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f"
4247 | dependencies:
4248 | buffer-from "^1.0.0"
4249 | source-map "^0.6.0"
4250 |
4251 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6:
4252 | version "0.5.7"
4253 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
4254 |
4255 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
4256 | version "0.6.1"
4257 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
4258 |
4259 | sourcemap-codec@^1.4.1:
4260 | version "1.4.3"
4261 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.3.tgz#0ba615b73ec35112f63c2f2d9e7c3f87282b0e33"
4262 |
4263 | spdx-correct@^3.0.0:
4264 | version "3.0.2"
4265 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e"
4266 | dependencies:
4267 | spdx-expression-parse "^3.0.0"
4268 | spdx-license-ids "^3.0.0"
4269 |
4270 | spdx-exceptions@^2.1.0:
4271 | version "2.2.0"
4272 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
4273 |
4274 | spdx-expression-parse@^3.0.0:
4275 | version "3.0.0"
4276 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
4277 | dependencies:
4278 | spdx-exceptions "^2.1.0"
4279 | spdx-license-ids "^3.0.0"
4280 |
4281 | spdx-license-ids@^3.0.0:
4282 | version "3.0.2"
4283 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2"
4284 |
4285 | sprintf-js@~1.0.2:
4286 | version "1.0.3"
4287 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
4288 |
4289 | stable@~0.1.6:
4290 | version "0.1.8"
4291 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
4292 |
4293 | standard-engine@^12.0.0:
4294 | version "12.0.0"
4295 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-12.0.0.tgz#1643dceba96ca9c04c535a1fb28d79bfb21b3572"
4296 | integrity sha512-gJIIRb0LpL7AHyGbN9+hJ4UJns37lxmNTnMGRLC8CFrzQ+oB/K60IQjKNgPBCB2VP60Ypm6f8DFXvhVWdBOO+g==
4297 | dependencies:
4298 | deglob "^4.0.0"
4299 | get-stdin "^7.0.0"
4300 | minimist "^1.1.0"
4301 | pkg-conf "^3.1.0"
4302 |
4303 | standard@14.3.1:
4304 | version "14.3.1"
4305 | resolved "https://registry.yarnpkg.com/standard/-/standard-14.3.1.tgz#f6a5d9244fbb6b76d0c2dbcc1048a03c863038b6"
4306 | integrity sha512-TUQwU7znlZLfgKH1Zwn/D84FitWZkUTfbxSiz/vFx+4c9GV+clSfG/qLiLZOlcdyzhw3oF5/pZydNjbNDfHPEw==
4307 | dependencies:
4308 | eslint "~6.4.0"
4309 | eslint-config-standard "14.1.0"
4310 | eslint-config-standard-jsx "8.1.0"
4311 | eslint-plugin-import "~2.18.0"
4312 | eslint-plugin-node "~10.0.0"
4313 | eslint-plugin-promise "~4.2.1"
4314 | eslint-plugin-react "~7.14.2"
4315 | eslint-plugin-standard "~4.0.0"
4316 | standard-engine "^12.0.0"
4317 |
4318 | strict-uri-encode@^1.0.0:
4319 | version "1.1.0"
4320 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
4321 |
4322 | string-hash@^1.1.1:
4323 | version "1.1.3"
4324 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
4325 |
4326 | string-width@^1.0.1:
4327 | version "1.0.2"
4328 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
4329 | dependencies:
4330 | code-point-at "^1.0.0"
4331 | is-fullwidth-code-point "^1.0.0"
4332 | strip-ansi "^3.0.0"
4333 |
4334 | "string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1:
4335 | version "2.1.1"
4336 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
4337 | dependencies:
4338 | is-fullwidth-code-point "^2.0.0"
4339 | strip-ansi "^4.0.0"
4340 |
4341 | string-width@^3.0.0:
4342 | version "3.1.0"
4343 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
4344 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
4345 | dependencies:
4346 | emoji-regex "^7.0.1"
4347 | is-fullwidth-code-point "^2.0.0"
4348 | strip-ansi "^5.1.0"
4349 |
4350 | string.prototype.trimleft@^2.0.0:
4351 | version "2.1.0"
4352 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634"
4353 | integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==
4354 | dependencies:
4355 | define-properties "^1.1.3"
4356 | function-bind "^1.1.1"
4357 |
4358 | string.prototype.trimright@^2.0.0:
4359 | version "2.1.0"
4360 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58"
4361 | integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==
4362 | dependencies:
4363 | define-properties "^1.1.3"
4364 | function-bind "^1.1.1"
4365 |
4366 | string_decoder@~1.1.1:
4367 | version "1.1.1"
4368 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
4369 | dependencies:
4370 | safe-buffer "~5.1.0"
4371 |
4372 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
4373 | version "3.0.1"
4374 | resolved "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
4375 | dependencies:
4376 | ansi-regex "^2.0.0"
4377 |
4378 | strip-ansi@^4.0.0:
4379 | version "4.0.0"
4380 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
4381 | dependencies:
4382 | ansi-regex "^3.0.0"
4383 |
4384 | strip-ansi@^5.1.0, strip-ansi@^5.2.0:
4385 | version "5.2.0"
4386 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
4387 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
4388 | dependencies:
4389 | ansi-regex "^4.1.0"
4390 |
4391 | strip-bom@^3.0.0:
4392 | version "3.0.0"
4393 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
4394 |
4395 | strip-json-comments@^3.0.1:
4396 | version "3.0.1"
4397 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7"
4398 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==
4399 |
4400 | strip-json-comments@~2.0.1:
4401 | version "2.0.1"
4402 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
4403 |
4404 | strip-outer@^1.0.0:
4405 | version "1.0.1"
4406 | resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631"
4407 | dependencies:
4408 | escape-string-regexp "^1.0.2"
4409 |
4410 | strip-url-auth@^1.0.0:
4411 | version "1.0.1"
4412 | resolved "https://registry.yarnpkg.com/strip-url-auth/-/strip-url-auth-1.0.1.tgz#22b0fa3a41385b33be3f331551bbb837fa0cd7ae"
4413 |
4414 | style-inject@^0.3.0:
4415 | version "0.3.0"
4416 | resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3"
4417 |
4418 | stylehacks@^4.0.0:
4419 | version "4.0.1"
4420 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.1.tgz#3186595d047ab0df813d213e51c8b94e0b9010f2"
4421 | dependencies:
4422 | browserslist "^4.0.0"
4423 | postcss "^7.0.0"
4424 | postcss-selector-parser "^3.0.0"
4425 |
4426 | supports-color@^2.0.0:
4427 | version "2.0.0"
4428 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
4429 |
4430 | supports-color@^3.2.3:
4431 | version "3.2.3"
4432 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
4433 | dependencies:
4434 | has-flag "^1.0.0"
4435 |
4436 | supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0:
4437 | version "5.5.0"
4438 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
4439 | dependencies:
4440 | has-flag "^3.0.0"
4441 |
4442 | svgo@^0.7.0:
4443 | version "0.7.2"
4444 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
4445 | dependencies:
4446 | coa "~1.0.1"
4447 | colors "~1.1.2"
4448 | csso "~2.3.1"
4449 | js-yaml "~3.7.0"
4450 | mkdirp "~0.5.1"
4451 | sax "~1.2.1"
4452 | whet.extend "~0.9.9"
4453 |
4454 | svgo@^1.0.0:
4455 | version "1.1.1"
4456 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.1.1.tgz#12384b03335bcecd85cfa5f4e3375fed671cb985"
4457 | dependencies:
4458 | coa "~2.0.1"
4459 | colors "~1.1.2"
4460 | css-select "^2.0.0"
4461 | css-select-base-adapter "~0.1.0"
4462 | css-tree "1.0.0-alpha.28"
4463 | css-url-regex "^1.1.0"
4464 | csso "^3.5.0"
4465 | js-yaml "^3.12.0"
4466 | mkdirp "~0.5.1"
4467 | object.values "^1.0.4"
4468 | sax "~1.2.4"
4469 | stable "~0.1.6"
4470 | unquote "~1.1.1"
4471 | util.promisify "~1.0.0"
4472 |
4473 | symbol-observable@1.0.1:
4474 | version "1.0.1"
4475 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
4476 |
4477 | table@4.0.2:
4478 | version "4.0.2"
4479 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
4480 | dependencies:
4481 | ajv "^5.2.3"
4482 | ajv-keywords "^2.1.0"
4483 | chalk "^2.1.0"
4484 | lodash "^4.17.4"
4485 | slice-ansi "1.0.0"
4486 | string-width "^2.1.1"
4487 |
4488 | table@^5.2.3:
4489 | version "5.4.6"
4490 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
4491 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
4492 | dependencies:
4493 | ajv "^6.10.2"
4494 | lodash "^4.17.14"
4495 | slice-ansi "^2.1.0"
4496 | string-width "^3.0.0"
4497 |
4498 | tar-fs@^1.13.0:
4499 | version "1.16.3"
4500 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509"
4501 | dependencies:
4502 | chownr "^1.0.1"
4503 | mkdirp "^0.5.1"
4504 | pump "^1.0.0"
4505 | tar-stream "^1.1.2"
4506 |
4507 | tar-stream@^1.1.2:
4508 | version "1.6.2"
4509 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555"
4510 | dependencies:
4511 | bl "^1.0.0"
4512 | buffer-alloc "^1.2.0"
4513 | end-of-stream "^1.0.0"
4514 | fs-constants "^1.0.0"
4515 | readable-stream "^2.3.0"
4516 | to-buffer "^1.1.1"
4517 | xtend "^4.0.0"
4518 |
4519 | terser@^3.8.2:
4520 | version "3.10.11"
4521 | resolved "https://registry.yarnpkg.com/terser/-/terser-3.10.11.tgz#e063da74b194dde9faf0a561f3a438c549d2da3f"
4522 | dependencies:
4523 | commander "~2.17.1"
4524 | source-map "~0.6.1"
4525 | source-map-support "~0.5.6"
4526 |
4527 | text-table@^0.2.0, text-table@~0.2.0:
4528 | version "0.2.0"
4529 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
4530 |
4531 | through@^2.3.6:
4532 | version "2.3.8"
4533 | resolved "http://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
4534 |
4535 | timsort@^0.3.0:
4536 | version "0.3.0"
4537 | resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
4538 |
4539 | tiny-glob@^0.2.6:
4540 | version "0.2.6"
4541 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.6.tgz#9e056e169d9788fe8a734dfa1ff02e9b92ed7eda"
4542 | integrity sha512-A7ewMqPu1B5PWwC3m7KVgAu96Ch5LA0w4SnEN/LbDREj/gAD0nPWboRbn8YoP9ISZXqeNAlMvKSKoEuhcfK3Pw==
4543 | dependencies:
4544 | globalyzer "^0.1.0"
4545 | globrex "^0.1.1"
4546 |
4547 | tmp@^0.0.33:
4548 | version "0.0.33"
4549 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
4550 | dependencies:
4551 | os-tmpdir "~1.0.2"
4552 |
4553 | to-buffer@^1.1.1:
4554 | version "1.1.1"
4555 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80"
4556 |
4557 | to-fast-properties@^2.0.0:
4558 | version "2.0.0"
4559 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
4560 |
4561 | trim-repeated@^1.0.0:
4562 | version "1.0.0"
4563 | resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21"
4564 | dependencies:
4565 | escape-string-regexp "^1.0.2"
4566 |
4567 | trim-right@^1.0.1:
4568 | version "1.0.1"
4569 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
4570 |
4571 | tslib@1.9.3, tslib@^1.9.0:
4572 | version "1.9.3"
4573 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
4574 |
4575 | tunnel-agent@^0.6.0:
4576 | version "0.6.0"
4577 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
4578 | dependencies:
4579 | safe-buffer "^5.0.1"
4580 |
4581 | type-check@~0.3.2:
4582 | version "0.3.2"
4583 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
4584 | dependencies:
4585 | prelude-ls "~1.1.2"
4586 |
4587 | type-fest@^0.3.0:
4588 | version "0.3.1"
4589 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
4590 | integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
4591 |
4592 | typedarray@^0.0.6:
4593 | version "0.0.6"
4594 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
4595 |
4596 | typescript-eslint-parser@^16.0.0:
4597 | version "16.0.1"
4598 | resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b"
4599 | dependencies:
4600 | lodash.unescape "4.0.1"
4601 | semver "5.5.0"
4602 |
4603 | typescript@>=2.8.3:
4604 | version "3.1.6"
4605 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.6.tgz#b6543a83cfc8c2befb3f4c8fba6896f5b0c9be68"
4606 |
4607 | typescript@^2.5.1:
4608 | version "2.9.2"
4609 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c"
4610 |
4611 | unicode-canonical-property-names-ecmascript@^1.0.4:
4612 | version "1.0.4"
4613 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
4614 |
4615 | unicode-match-property-ecmascript@^1.0.4:
4616 | version "1.0.4"
4617 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
4618 | dependencies:
4619 | unicode-canonical-property-names-ecmascript "^1.0.4"
4620 | unicode-property-aliases-ecmascript "^1.0.4"
4621 |
4622 | unicode-match-property-value-ecmascript@^1.0.2:
4623 | version "1.0.2"
4624 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4"
4625 |
4626 | unicode-property-aliases-ecmascript@^1.0.4:
4627 | version "1.0.4"
4628 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0"
4629 |
4630 | uniq@^1.0.1:
4631 | version "1.0.1"
4632 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
4633 |
4634 | uniqs@^2.0.0:
4635 | version "2.0.0"
4636 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
4637 |
4638 | universalify@^0.1.0:
4639 | version "0.1.2"
4640 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
4641 |
4642 | unquote@~1.1.1:
4643 | version "1.1.1"
4644 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
4645 |
4646 | uri-js@^4.2.2:
4647 | version "4.2.2"
4648 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
4649 | dependencies:
4650 | punycode "^2.1.0"
4651 |
4652 | util-deprecate@~1.0.1:
4653 | version "1.0.2"
4654 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4655 |
4656 | util.promisify@~1.0.0:
4657 | version "1.0.0"
4658 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
4659 | dependencies:
4660 | define-properties "^1.1.2"
4661 | object.getownpropertydescriptors "^2.0.3"
4662 |
4663 | v8-compile-cache@^2.0.3:
4664 | version "2.1.0"
4665 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
4666 | integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
4667 |
4668 | validate-npm-package-license@^3.0.1:
4669 | version "3.0.4"
4670 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
4671 | dependencies:
4672 | spdx-correct "^3.0.0"
4673 | spdx-expression-parse "^3.0.0"
4674 |
4675 | vendors@^1.0.0:
4676 | version "1.0.2"
4677 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801"
4678 |
4679 | vlq@^0.2.1, vlq@^0.2.2:
4680 | version "0.2.3"
4681 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
4682 |
4683 | vlq@^1.0.0:
4684 | version "1.0.0"
4685 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.0.tgz#8101be90843422954c2b13eb27f2f3122bdcc806"
4686 |
4687 | vue-eslint-parser@^2.0.2:
4688 | version "2.0.3"
4689 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1"
4690 | dependencies:
4691 | debug "^3.1.0"
4692 | eslint-scope "^3.7.1"
4693 | eslint-visitor-keys "^1.0.0"
4694 | espree "^3.5.2"
4695 | esquery "^1.0.0"
4696 | lodash "^4.17.4"
4697 |
4698 | vue-template-es2015-compiler@^1.6.0:
4699 | version "1.6.0"
4700 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz#dc42697133302ce3017524356a6c61b7b69b4a18"
4701 |
4702 | whet.extend@~0.9.9:
4703 | version "0.9.9"
4704 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
4705 |
4706 | which-pm-runs@^1.0.0:
4707 | version "1.0.0"
4708 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
4709 |
4710 | which@^1.2.9:
4711 | version "1.3.1"
4712 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
4713 | dependencies:
4714 | isexe "^2.0.0"
4715 |
4716 | wide-align@^1.1.0:
4717 | version "1.1.3"
4718 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
4719 | dependencies:
4720 | string-width "^1.0.2 || 2"
4721 |
4722 | wordwrap@~1.0.0:
4723 | version "1.0.0"
4724 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4725 |
4726 | wrappy@1:
4727 | version "1.0.2"
4728 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4729 |
4730 | write@1.0.3:
4731 | version "1.0.3"
4732 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
4733 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
4734 | dependencies:
4735 | mkdirp "^0.5.1"
4736 |
4737 | write@^0.2.1:
4738 | version "0.2.1"
4739 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
4740 | dependencies:
4741 | mkdirp "^0.5.1"
4742 |
4743 | xtend@^4.0.0, xtend@^4.0.1:
4744 | version "4.0.1"
4745 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4746 |
4747 | yallist@^2.1.2:
4748 | version "2.1.2"
4749 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4750 |
--------------------------------------------------------------------------------