├── .eslintrc
├── .gitattributes
├── .gitignore
├── .npmignore
├── .travis.yml
├── CHANGELOG.md
├── README.md
├── index.js
├── out
└── .gitignore
├── package.json
├── perf.js
├── test.js
└── yarn.lock
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "airbnb-base",
3 | "env": {
4 | browser: true,
5 | node: true
6 | },
7 | "rules": {
8 | "no-use-before-define": 0,
9 | "prefer-arrow-callback": 0,
10 | "no-continue": 0,
11 | "no-param-reassign": 0,
12 | "no-cond-assign": 0,
13 | "no-console": 0,
14 | "object-shorthand": 0,
15 | "prefer-template": 0,
16 | "import/no-extraneous-dependencies": 0,
17 | "strict": 0,
18 | "no-var": 0,
19 | "vars-on-top": 0
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.html export-ignore
2 | *.html linguist-vendored
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | npm-debug.log
3 | *.swp
4 | .DS_Store
5 | *.log
6 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neurosnap/scopeify-html/61dffbdec4fd01548efcde32bb6907ec65f2eafe/.npmignore
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "node"
4 | - "4.2"
5 | - "4.4"
6 | - "6.0"
7 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | CHANGELOG
2 | =========
3 |
4 | 0.10.0 (07-28-2017)
5 | -------------------
6 |
7 | * :bug: `postcss-scopeify-everything` will sometimes return a `scope.classes` key with multiple classes and we were not properly handling it
8 |
9 | 0.9.1 (07-06-2017)
10 | ------------------
11 |
12 | * :bug: upgrade `postcss-scopeify-everything` to fix async parser
13 |
14 | 0.9.0 (03-01-2017)
15 | ------------------
16 |
17 | * :bug: `replaceClassName` should work even if there is no `style` tags
18 |
19 | 0.3.0 (01-07-2016)
20 | ------------------
21 |
22 | * :sparkles: Upgraded `postcss-scopeify-everything` to better handle CSS syntax errors
23 |
24 | 0.2.0
25 | -----
26 |
27 | * :sparkles: Ability to remove unused, unscoped classes from DOM `replaceClassName` option
28 | * :sparkles: New API for sync and async scopeify
29 |
30 | 0.1.0
31 | -----
32 |
33 | * :rocket: Initial release
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Scopeify HTML [](https://travis-ci.org/neurosnap/scopeify-html)
2 | =============
3 |
4 | The goal of this library is to scope all CSS selectors in an HTML document.
5 |
6 | Features
7 | --------
8 |
9 | * Every CSS selector is scoped
10 | * Media queries are scoped and preserved
11 | * Fonts are scoped and preserved
12 | * Keyframes are scoped and preserved
13 | * Can use PostCSS plugins to modify all extracted CSS
14 | * Ability to do aditional processing with PostCSS
15 |
16 | Why
17 | ---
18 |
19 | The primary reason for creating this library was to render HTML and CSS inside
20 | a document without that CSS effecting the parent document. Basically this library
21 | was created to avoid having to use an iframe.
22 |
23 | Other libraries that attempt to solve this problem, such as [juice](https://github.com/Automattic/juice)
24 | do so by inlining all the CSS, which loses pseudo selectors, keyframes, and font-face names.
25 |
26 | How it works
27 | ------------
28 |
29 | The core functionality of this library comes from [PostCSS](https://github.com/postcss/postcss).
30 | We are using [postcss-scopeify-everything](https://github.com/neurosnap/postcss-scopeify-everything)
31 | to perform all the selector scope transformations.
32 |
33 | We iterate over all the CSS rules within an HTML document and scope all of them using a hash of the content. Then we iterate
34 | over all the DOM elements in the document and apply the newly scoped selectors. Then we return the
35 | document and the CSS separated.
36 |
37 | * Scope CSS by converting the following selectors and names in the HTML document:
38 | * Convert HTML elements into scoped classes,
39 | * Ids,
40 | * Classes,
41 | * Keyframe names, and
42 | * Font-face names
43 | * Convert all HTML selectors into scoped selectors
44 |
45 | Usage
46 | -----
47 |
48 | ```js
49 | const scopeifyHtml = require('scopeify-html');
50 | const insertCss = scopeifyHtml.insertCss;
51 | const getCss = scopeifyHtml.getCss;
52 |
53 | const html = `
54 |
55 |
56 |
57 |
62 |
63 |
64 |
65 |
All your base
66 |
Are belong to us
67 |
68 |
69 |
70 | `;
71 |
72 | const parser = new DOMParser();
73 | const doc = parser.parseFromString(html, "text/html");
74 |
75 | const scoped = scopeifyHtml().sync(doc);
76 | console.log(scoped);
77 | /*
78 | {
79 | elements: { div: 'div_el_3BuKMO' },
80 | classes: { foo: 'foo_3BuKMO' },
81 | ids: { bar: 'bar_3BuKMO' },
82 | keyframes: {},
83 | fontFaces: {}
84 | }
85 | */
86 |
87 | const scopedCss = getCss(scoped);
88 | console.log(scopedCss);
89 | /*
90 | .foo_3BuKMO { display: flex; }
91 | .div_el_3BuKMO { margin: 10px; border: 1px solid black; }
92 | #bar_3BuKMO { flex: 1; font-size: 18px; }
93 | */
94 |
95 | // insert scoped CSS into DOM
96 | insertCss(scopedCss, doc);
97 |
98 | console.log(doc.documentElement.outerHTML);
99 | /*
100 |
101 |
102 |
107 |
108 |
109 |
110 |
All your base
111 |
Are belong to us
112 |
113 |
114 |
115 | */
116 | ```
117 |
118 | ### Async promise
119 |
120 | ```js
121 | const scopeifyHtml = require('scopeify-html');
122 | const insertCss = scopeifyHtml.insertCss;
123 | const getCss = scopeifyHtml.getCss;
124 |
125 | const html = 'hi mom
';
126 | const parser = new DOMParser();
127 | const doc = parser.parseFromString(html, "text/html");
128 |
129 | scopeifyHtml({ replaceClassName: true })
130 | .promise(doc)
131 | .then((scoped) => {
132 | const scopedCss = getCss(scoped);
133 | insertCss(scopedCss, doc);
134 | })
135 | .catch(console.log);
136 | ```
137 |
138 | API
139 | ---
140 |
141 | ### scopeifyHtml
142 |
143 | Primary entry point for the library.
144 |
145 | #### scopeifyHtml(options: Object)
146 |
147 | * replaceClassName (Boolean, default `false`): Removes any classnames not used in CSS
148 |
149 | The options passed here will also be passed to [postcss-scopeify-everything](https://github.com/neurosnap/postcss-scopeify-everything#options)
150 | * plugins (Array, default `[]`): adds PostCSS plugins before the scopeify plugin
151 | * scopeifyFn (Function): the function that hashes the identifier name
152 | * scopeifyElFn (Function): the function that converts an element name to a class name
153 | * asteriskName (Function|String, default `__asterisk`): the string that is used for the wildcard selector `*`
154 | * ids (Boolean, default `false`): determines whether or not to disable scoping `ids`
155 | * elements (Boolean, default `false`): determines whether or not to disable scoping `elements`
156 | * classes (Boolean, default `false`): determines whether or not to disable scoping `classes`
157 | * keyframes (Boolean, default `false`): determines whether or not to disable scoping `keyframes`
158 | * fontFaces (Boolean, default `false`): determines whether or not to disable scoping `fontFaces`
159 |
160 | ### sync
161 |
162 | Synchronously processes the CSS and HTML
163 |
164 | `scopeifyHtml().sync(doc: Document) => scopedSelectors`
165 |
166 | ### promise
167 |
168 | Asynchronously processes the CSS and HTML
169 |
170 | `scopeifyHtml().promise(doc: Document) => Promise(scopedSelectors)`
171 |
172 | ### getCss
173 |
174 | Returns the CSS from scopeify
175 |
176 | `scopeifyHtml.getCss(scopedSelectors) => string`
177 |
178 | ### insertCss
179 |
180 | Inserts CSS into document
181 |
182 | `scopeify.insertCss(css: string, doc: Document) => undefined`
183 |
184 | Perf
185 | ----
186 |
187 | All speeds are measured in milliseconds (ms).
188 |
189 | fixture | scopeify-html | juice v4 |
190 | ---------------|---------------|------------|
191 | zillow.html | 43.316 | 81.557 |
192 | gog.html | 126.074 | 55.336 |
193 | readme_ex.html | 1.301 | 1.240 |
194 | apple.html | 114.198 | 26.452 |
195 | costco.html | 1.623 | 0.654 |
196 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var pse = require('postcss-scopeify-everything');
4 |
5 | module.exports = scopeifyHtml;
6 | module.exports.extractCss = extractCss;
7 | module.exports.insertCss = insertCss;
8 | module.exports.getCss = pse.getCss;
9 |
10 | function scopeifyHtml(opts) {
11 | opts = opts || {};
12 | var scopeify = pse.api(opts);
13 |
14 | return {
15 | sync: scopeifyFnSync.bind(this, scopeify, opts),
16 | promise: scopeifyFnPromise.bind(this, scopeify, opts),
17 | };
18 | }
19 |
20 | function scopeifyFnSync(scopeify, opts, doc) {
21 | var css = extractCss(doc);
22 | if (!css && opts.replaceClassName === false) {
23 | return null;
24 | }
25 |
26 | var scoped = scopeify(css).sync();
27 | iterateDom(doc, opts, scoped);
28 | return scoped;
29 | }
30 |
31 | function scopeifyFnPromise(scopeify, opts, doc) {
32 | var css = extractCss(doc);
33 | if (!css && opts.replaceClassName === false) {
34 | return Promise.resolve(null);
35 | }
36 |
37 | return scopeify(css)
38 | .promise()
39 | .then(function iterateDomPromise(scoped) {
40 | return new Promise(function iterateDomPromiseResolve(resolve, reject) {
41 | try {
42 | iterateDom(doc, opts, scoped);
43 | } catch (err) {
44 | reject(err);
45 | }
46 |
47 | resolve(scoped);
48 | });
49 | })
50 | .catch(function iterateDomCatch(err) { console.error(err); });
51 | }
52 |
53 | function extractCss(doc) {
54 | var stylesEl = doc.querySelectorAll('style');
55 | var styles = '';
56 | for (var i = 0; i < stylesEl.length; i++) {
57 | var child = stylesEl[i];
58 | styles += child.innerHTML;
59 | child.remove();
60 | }
61 | return styles;
62 | }
63 |
64 | function insertCss(css, doc, container) {
65 | if (typeof container === 'undefined') {
66 | container = doc.querySelector('head');
67 | }
68 |
69 | var style = doc.createElement('style');
70 | style.setAttribute('type', 'text/css');
71 |
72 | if (style.styleSheet) {
73 | style.styleSheet.cssText = css;
74 | } else {
75 | style.appendChild(doc.createTextNode(css));
76 | }
77 |
78 | container.appendChild(style);
79 | return style;
80 | }
81 |
82 | function iterateDom(doc, opts, scoped) {
83 | var elements = doc.getElementsByTagName('*');
84 | for (var i = 0; i < elements.length; i++) {
85 | var el = elements[i];
86 | replaceSelectors(el, scoped, opts.replaceClassName);
87 | }
88 | }
89 |
90 | function replaceSelectors(el, scoped, replaceClassName) {
91 | if (typeof replaceClassName === 'undefined') replaceClassName = false;
92 | var name = el.tagName.toLowerCase();
93 | var style = el.getAttribute('style');
94 |
95 | var newClasses = [];
96 | Object.keys(scoped.classes).forEach(function walkClass(scopeClass) {
97 | var classes = scopeClass.split(' ');
98 | // detect if a scopedClass is multiple classes and
99 | // if so then add the collective class to the element
100 | if (classes.length > 1) {
101 | var classesNotFound = classes.filter(function filterClasses(c) {
102 | return !el.classList.contains(c);
103 | });
104 |
105 | if (classesNotFound.length > 0) {
106 | return;
107 | }
108 |
109 | if (replaceClassName) {
110 | newClasses.push(scoped.classes[scopeClass]);
111 | } else {
112 | classes.forEach(c => el.classList.remove(c));
113 | el.classList.add(scoped.classes[scopeClass]);
114 | }
115 |
116 | return;
117 | }
118 |
119 | if (el.classList.contains(scopeClass)) {
120 | if (replaceClassName) {
121 | newClasses.push(scoped.classes[scopeClass]);
122 | } else {
123 | el.classList.remove(scopeClass);
124 | el.classList.add(scoped.classes[scopeClass]);
125 | }
126 | }
127 | });
128 |
129 | if (replaceClassName && el.className) {
130 | el.className = newClasses.join(' ');
131 | }
132 |
133 | Object.keys(scoped.elements).forEach(function walkEl(scopeEl) {
134 | if (scopeEl === name || scopeEl === '*') {
135 | el.classList.add(scoped.elements[scopeEl]);
136 | }
137 | });
138 |
139 | Object.keys(scoped.ids).forEach(function walkId(scopeId) {
140 | if (scopeId === el.getAttribute('id')) {
141 | el.setAttribute('id', scoped.ids[scopeId]);
142 | }
143 | });
144 |
145 | Object.keys(scoped.fontFaces).forEach(function walkFaces(scopedFace) {
146 | var re = new RegExp(scopedFace, 'gi');
147 | if (style && re.test(style)) {
148 | var scopedAttr = style.replace(re, scoped.fontFaces[scopedFace]);
149 | el.setAttribute('style', scopedAttr);
150 | }
151 | });
152 |
153 | Object.keys(scoped.keyframes).forEach(function walkFrames(scopedFrames) {
154 | var re = new RegExp(scopedFrames, 'gi');
155 | if (style && re.test(style)) {
156 | var scopedAttr = style.replace(re, scoped.keyframes[scopedFrames]);
157 | el.setAttribute('style', scopedAttr);
158 | }
159 | });
160 | }
161 |
--------------------------------------------------------------------------------
/out/.gitignore:
--------------------------------------------------------------------------------
1 | *.html
2 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "scopeify-html",
3 | "version": "0.10.1",
4 | "description": "Scopeify CSS in HTML",
5 | "main": "dist/index.js",
6 | "repository": "git@github.com:neurosnap/scopeify-html.git",
7 | "scripts": {
8 | "test": "tape-dots test.js",
9 | "perf": "node perf.js"
10 | },
11 | "keywords": [
12 | "scopeify",
13 | "scopify",
14 | "html",
15 | "document",
16 | "css",
17 | "render",
18 | "email"
19 | ],
20 | "author": "Eric Bower",
21 | "license": "MIT",
22 | "dependencies": {
23 | "postcss-scopeify-everything": "^0.7.1"
24 | },
25 | "devDependencies": {
26 | "cheerio": "^0.20.0",
27 | "eslint": "^3.4.0",
28 | "eslint-config-airbnb-base": "^5.0.3",
29 | "eslint-plugin-import": "^1.14.0",
30 | "js-beautify": "^1.6.4",
31 | "jsdom": "^9.4.2",
32 | "juice": "^4.0.2",
33 | "postcss": "^5.2.4",
34 | "tape": "^4.6.0",
35 | "tape-dots": "^1.0.0"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/perf.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const fs = require('fs');
4 | const jsdom = require('jsdom').jsdom;
5 | const juice = require('juice');
6 | const cheerio = require('cheerio');
7 | const scopeifyHtml = require('./index');
8 |
9 | const fixtures = [
10 | 'zillow.html',
11 | 'gog.html',
12 | 'readme_ex.html',
13 | 'apple.html',
14 | 'costco.html',
15 | 'sentry.html',
16 | ];
17 |
18 | fixtures.forEach(fname => {
19 | const html = fs.readFileSync(`./fixtures/${fname}`);
20 | const htmlStr = html.toString();
21 |
22 | console.log('---');
23 |
24 | const scopeifyId = `scopeify-html ${fname}`;
25 | const doc = jsdom(html);
26 | console.time(scopeifyId);
27 | scopeifyHtml().sync(doc);
28 | console.timeEnd(scopeifyId);
29 |
30 | const juiceId = `juice ${fname}`;
31 | const $ = cheerio.load(htmlStr);
32 | console.time(juiceId);
33 | juice.juiceDocument($);
34 | console.timeEnd(juiceId);
35 |
36 | console.log('---');
37 | });
38 |
--------------------------------------------------------------------------------
/test.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const fs = require('fs');
4 | const jsdom = require('jsdom').jsdom;
5 | const test = require('tape');
6 | const beautify = require('js-beautify').html;
7 |
8 | const scopeifyHtml = require('./index');
9 |
10 | const extractCss = scopeifyHtml.extractCss;
11 | const insertCss = scopeifyHtml.insertCss;
12 | const getCss = scopeifyHtml.getCss;
13 |
14 | const fixtures = [
15 | 'zillow.html',
16 | 'gog.html',
17 | 'readme_ex.html',
18 | 'apple.html',
19 | 'costco.html',
20 | 'sentry.html',
21 | ];
22 |
23 | test('removing unused classnames', t => {
24 | t.plan(1);
25 | const html = '';
26 | const expectedHtml = '';
27 | const actualDoc = jsdom(html);
28 |
29 | scopeifyHtml({ replaceClassName: true }).sync(actualDoc);
30 | t.equal(actualDoc.documentElement.outerHTML, expectedHtml);
31 | });
32 |
33 | test('async removing unused classnames', t => {
34 | t.plan(1);
35 | const html = '';
36 | const expectedHtml = '';
37 | const actualDoc = jsdom(html);
38 |
39 | scopeifyHtml({ replaceClassName: true }).promise(actualDoc).then(() => {
40 | const actualHtml = actualDoc.documentElement.outerHTML;
41 | t.equal(actualHtml, expectedHtml);
42 | });
43 | });
44 |
45 | test('when replaceClassName is `true` should process a class key with multiple classes', t => {
46 | t.plan(1);
47 | const html = '';
49 | const expectedHtml = ''
50 | + '
';
51 | const actualDoc = jsdom(html);
52 |
53 | scopeifyHtml({ replaceClassName: true }).sync(actualDoc);
54 | t.equal(actualDoc.documentElement.outerHTML, expectedHtml);
55 | });
56 |
57 | test('when replaceClassName is `false` should process a class key with multiple classes', t => {
58 | t.plan(1);
59 | const html = '';
61 | const expectedHtml = ''
62 | + '
';
63 | const actualDoc = jsdom(html);
64 |
65 | scopeifyHtml({ replaceClassName: false }).sync(actualDoc);
66 | t.equal(actualDoc.documentElement.outerHTML, expectedHtml);
67 | });
68 |
69 | test('emails', t => {
70 | fixtures.forEach(fname => {
71 | const html = fs.readFileSync(`./fixtures/${fname}`);
72 | const actualDoc = jsdom(html);
73 | const scopedSelectorMap = scopeifyHtml().sync(actualDoc);
74 |
75 | const expectedDoc = jsdom(html);
76 | const expectedCss = extractCss(expectedDoc);
77 |
78 | if (!expectedCss) return;
79 |
80 | insertCss(expectedCss, expectedDoc);
81 | insertCss(getCss(scopedSelectorMap), actualDoc);
82 |
83 | compare(t, actualDoc, expectedDoc, scopedSelectorMap);
84 | saveFile(fname, actualDoc);
85 | });
86 |
87 | t.end();
88 | });
89 |
90 | test('emails async', t => {
91 | fixtures.forEach(fname => {
92 | const html = fs.readFileSync(`./fixtures/${fname}`);
93 | const actualDoc = jsdom(html);
94 | scopeifyHtml().promise(actualDoc).then(scopedSelectorMap => {
95 | if (!scopedSelectorMap) return;
96 |
97 | const expectedDoc = jsdom(html);
98 | const expectedCss = extractCss(expectedDoc);
99 |
100 | if (!expectedCss) return;
101 |
102 | insertCss(expectedCss, expectedDoc);
103 | insertCss(getCss(scopedSelectorMap), actualDoc);
104 |
105 | compare(t, actualDoc, expectedDoc, scopedSelectorMap);
106 | }).catch(err => { console.error(err); });
107 | });
108 |
109 | t.end();
110 | });
111 |
112 | function saveFile(fname, doc) {
113 | const beautyOpts = { indent_size: 2, preserve_newlines: false };
114 | const html = beautify(doc.documentElement.outerHTML, beautyOpts);
115 | fs.writeFileSync(`./out/${fname}`, html);
116 | }
117 |
118 | function compare(t, actual, expected, scoped) {
119 | t.equal(actual.length, expected.length);
120 | const actualEls = actual.getElementsByTagName('*');
121 | const expectedEls = expected.getElementsByTagName('*');
122 |
123 | for (let i = 0; i < expectedEls.length; i++) {
124 | const actualEl = actualEls[i];
125 | const expectedEl = expectedEls[i];
126 |
127 | const actualStyles = getStyles(actual.defaultView, actualEl);
128 | const expectedStyles = getStyles(expected.defaultView, expectedEl);
129 |
130 | const actualTagName = actualEl.tagName.toLowerCase();
131 | const expectedTagName = expectedEl.tagName.toLowerCase();
132 |
133 | if (actualTagName === 'style' || expectedTagName === 'style') continue;
134 |
135 | if ({}.hasOwnProperty.call(scoped.elements, actualTagName)) {
136 | t.ok(actualEl.classList.contains(scoped.elements[actualTagName]));
137 | }
138 |
139 | t.deepEqual(actualTagName, expectedTagName);
140 | t.deepEqual(actualStyles, expectedStyles);
141 | }
142 | }
143 |
144 | function getStyles(win, el) {
145 | const styles = win.getComputedStyle(el);
146 | const obj = {};
147 | for (let i = 0; i < styles.length; i++) {
148 | const style = styles[i];
149 | if (style === 'font-family') continue;
150 | obj[style] = styles.getPropertyValue(style);
151 | }
152 | return obj;
153 | }
154 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abab@^1.0.0:
6 | version "1.0.3"
7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d"
8 |
9 | abbrev@1:
10 | version "1.0.9"
11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
12 |
13 | acorn-globals@^1.0.4:
14 | version "1.0.9"
15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf"
16 | dependencies:
17 | acorn "^2.1.0"
18 |
19 | acorn-jsx@^3.0.0:
20 | version "3.0.1"
21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
22 | dependencies:
23 | acorn "^3.0.4"
24 |
25 | acorn@^2.1.0, acorn@^2.4.0:
26 | version "2.7.0"
27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7"
28 |
29 | acorn@^3.0.4:
30 | version "3.3.0"
31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
32 |
33 | acorn@^4.0.1:
34 | version "4.0.3"
35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1"
36 |
37 | ajv-keywords@^1.0.0:
38 | version "1.1.1"
39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
40 |
41 | ajv@^4.7.0:
42 | version "4.8.2"
43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.2.tgz#65486936ca36fea39a1504332a78bebd5d447bdc"
44 | dependencies:
45 | co "^4.6.0"
46 | json-stable-stringify "^1.0.1"
47 |
48 | amdefine@>=0.0.4:
49 | version "1.0.1"
50 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
51 |
52 | ansi-escapes@^1.1.0:
53 | version "1.4.0"
54 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
55 |
56 | ansi-regex@^2.0.0:
57 | version "2.0.0"
58 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
59 |
60 | ansi-styles@^2.2.1:
61 | version "2.2.1"
62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
63 |
64 | argparse@^1.0.7:
65 | version "1.0.9"
66 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
67 | dependencies:
68 | sprintf-js "~1.0.2"
69 |
70 | array-equal@^1.0.0:
71 | version "1.0.0"
72 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
73 |
74 | array-union@^1.0.1:
75 | version "1.0.2"
76 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
77 | dependencies:
78 | array-uniq "^1.0.1"
79 |
80 | array-uniq@^1.0.1:
81 | version "1.0.3"
82 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
83 |
84 | arrify@^1.0.0:
85 | version "1.0.1"
86 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
87 |
88 | asn1@~0.2.3:
89 | version "0.2.3"
90 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
91 |
92 | assert-plus@^0.2.0:
93 | version "0.2.0"
94 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
95 |
96 | assert-plus@^1.0.0:
97 | version "1.0.0"
98 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
99 |
100 | async@^2.1.2:
101 | version "2.1.4"
102 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4"
103 | dependencies:
104 | lodash "^4.14.0"
105 |
106 | asynckit@^0.4.0:
107 | version "0.4.0"
108 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
109 |
110 | aws-sign2@~0.6.0:
111 | version "0.6.0"
112 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
113 |
114 | aws4@^1.2.1:
115 | version "1.5.0"
116 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
117 |
118 | babel-code-frame@^6.16.0:
119 | version "6.22.0"
120 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
121 | dependencies:
122 | chalk "^1.1.0"
123 | esutils "^2.0.2"
124 | js-tokens "^3.0.0"
125 |
126 | balanced-match@^0.4.1:
127 | version "0.4.2"
128 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
129 |
130 | bcrypt-pbkdf@^1.0.0:
131 | version "1.0.0"
132 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
133 | dependencies:
134 | tweetnacl "^0.14.3"
135 |
136 | bluebird@^3.0.5:
137 | version "3.4.6"
138 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f"
139 |
140 | boolbase@~1.0.0:
141 | version "1.0.0"
142 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
143 |
144 | boom@2.x.x:
145 | version "2.10.1"
146 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
147 | dependencies:
148 | hoek "2.x.x"
149 |
150 | brace-expansion@^1.0.0:
151 | version "1.1.6"
152 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
153 | dependencies:
154 | balanced-match "^0.4.1"
155 | concat-map "0.0.1"
156 |
157 | builtin-modules@^1.1.1:
158 | version "1.1.1"
159 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
160 |
161 | caller-path@^0.1.0:
162 | version "0.1.0"
163 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
164 | dependencies:
165 | callsites "^0.2.0"
166 |
167 | callsites@^0.2.0:
168 | version "0.2.0"
169 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
170 |
171 | caseless@~0.11.0:
172 | version "0.11.0"
173 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
174 |
175 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
176 | version "1.1.3"
177 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
178 | dependencies:
179 | ansi-styles "^2.2.1"
180 | escape-string-regexp "^1.0.2"
181 | has-ansi "^2.0.0"
182 | strip-ansi "^3.0.0"
183 | supports-color "^2.0.0"
184 |
185 | cheerio@^0.20.0:
186 | version "0.20.0"
187 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.20.0.tgz#5c710f2bab95653272842ba01c6ea61b3545ec35"
188 | dependencies:
189 | css-select "~1.2.0"
190 | dom-serializer "~0.1.0"
191 | entities "~1.1.1"
192 | htmlparser2 "~3.8.1"
193 | lodash "^4.1.0"
194 | optionalDependencies:
195 | jsdom "^7.0.2"
196 |
197 | cheerio@^0.22.0:
198 | version "0.22.0"
199 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e"
200 | dependencies:
201 | css-select "~1.2.0"
202 | dom-serializer "~0.1.0"
203 | entities "~1.1.1"
204 | htmlparser2 "^3.9.1"
205 | lodash.assignin "^4.0.9"
206 | lodash.bind "^4.1.4"
207 | lodash.defaults "^4.0.1"
208 | lodash.filter "^4.4.0"
209 | lodash.flatten "^4.2.0"
210 | lodash.foreach "^4.3.0"
211 | lodash.map "^4.4.0"
212 | lodash.merge "^4.4.0"
213 | lodash.pick "^4.2.1"
214 | lodash.reduce "^4.4.0"
215 | lodash.reject "^4.4.0"
216 | lodash.some "^4.4.0"
217 |
218 | circular-json@^0.3.0:
219 | version "0.3.1"
220 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
221 |
222 | cli-cursor@^1.0.1:
223 | version "1.0.2"
224 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
225 | dependencies:
226 | restore-cursor "^1.0.1"
227 |
228 | cli-width@^2.0.0:
229 | version "2.1.0"
230 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
231 |
232 | co@^4.6.0:
233 | version "4.6.0"
234 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
235 |
236 | code-point-at@^1.0.0:
237 | version "1.1.0"
238 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
239 |
240 | combined-stream@^1.0.5, combined-stream@~1.0.5:
241 | version "1.0.5"
242 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
243 | dependencies:
244 | delayed-stream "~1.0.0"
245 |
246 | commander@2.9.0, commander@^2.9.0:
247 | version "2.9.0"
248 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
249 | dependencies:
250 | graceful-readlink ">= 1.0.0"
251 |
252 | concat-map@0.0.1:
253 | version "0.0.1"
254 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
255 |
256 | concat-stream@^1.4.6:
257 | version "1.5.2"
258 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266"
259 | dependencies:
260 | inherits "~2.0.1"
261 | readable-stream "~2.0.0"
262 | typedarray "~0.0.5"
263 |
264 | config-chain@~1.1.5:
265 | version "1.1.11"
266 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2"
267 | dependencies:
268 | ini "^1.3.4"
269 | proto-list "~1.2.1"
270 |
271 | contains-path@^0.1.0:
272 | version "0.1.0"
273 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
274 |
275 | content-type-parser@^1.0.1:
276 | version "1.0.1"
277 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94"
278 |
279 | core-util-is@~1.0.0:
280 | version "1.0.2"
281 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
282 |
283 | cross-spawn@^5.0.1:
284 | version "5.0.1"
285 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.0.1.tgz#a3bbb302db2297cbea3c04edf36941f4613aa399"
286 | dependencies:
287 | lru-cache "^4.0.1"
288 | shebang-command "^1.2.0"
289 | which "^1.2.9"
290 |
291 | cryptiles@2.x.x:
292 | version "2.0.5"
293 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
294 | dependencies:
295 | boom "2.x.x"
296 |
297 | css-select@~1.2.0:
298 | version "1.2.0"
299 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
300 | dependencies:
301 | boolbase "~1.0.0"
302 | css-what "2.1"
303 | domutils "1.5.1"
304 | nth-check "~1.0.1"
305 |
306 | css-what@2.1:
307 | version "2.1.0"
308 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
309 |
310 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0":
311 | version "0.3.1"
312 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3"
313 |
314 | "cssstyle@>= 0.2.29 < 0.3.0", "cssstyle@>= 0.2.36 < 0.3.0":
315 | version "0.2.37"
316 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
317 | dependencies:
318 | cssom "0.3.x"
319 |
320 | d@^0.1.1, d@~0.1.1:
321 | version "0.1.1"
322 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
323 | dependencies:
324 | es5-ext "~0.10.2"
325 |
326 | dashdash@^1.12.0:
327 | version "1.14.0"
328 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141"
329 | dependencies:
330 | assert-plus "^1.0.0"
331 |
332 | datauri@^1.0.4:
333 | version "1.0.5"
334 | resolved "https://registry.yarnpkg.com/datauri/-/datauri-1.0.5.tgz#d0975d1ab6c8f2e0ce3ca43baa4539be12d289a0"
335 | dependencies:
336 | image-size "^0.3.5"
337 | mimer "^0.2.1"
338 | semver "^5.0.3"
339 |
340 | debug@^2.1.1, debug@^2.2.0:
341 | version "2.3.2"
342 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.2.tgz#94cb466ef7d6d2c7e5245cdd6e4104f2d0d70d30"
343 | dependencies:
344 | ms "0.7.2"
345 |
346 | deep-equal@~1.0.1:
347 | version "1.0.1"
348 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
349 |
350 | deep-extend@^0.4.0:
351 | version "0.4.1"
352 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
353 |
354 | deep-is@~0.1.3:
355 | version "0.1.3"
356 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
357 |
358 | define-properties@^1.1.2:
359 | version "1.1.2"
360 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
361 | dependencies:
362 | foreach "^2.0.5"
363 | object-keys "^1.0.8"
364 |
365 | defined@~1.0.0:
366 | version "1.0.0"
367 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
368 |
369 | del@^2.0.2:
370 | version "2.2.2"
371 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
372 | dependencies:
373 | globby "^5.0.0"
374 | is-path-cwd "^1.0.0"
375 | is-path-in-cwd "^1.0.0"
376 | object-assign "^4.0.1"
377 | pify "^2.0.0"
378 | pinkie-promise "^2.0.0"
379 | rimraf "^2.2.8"
380 |
381 | delayed-stream@~1.0.0:
382 | version "1.0.0"
383 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
384 |
385 | doctrine@1.3.x:
386 | version "1.3.0"
387 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.3.0.tgz#13e75682b55518424276f7c173783456ef913d26"
388 | dependencies:
389 | esutils "^2.0.2"
390 | isarray "^1.0.0"
391 |
392 | doctrine@^1.2.2:
393 | version "1.5.0"
394 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
395 | dependencies:
396 | esutils "^2.0.2"
397 | isarray "^1.0.0"
398 |
399 | dom-serializer@0, dom-serializer@~0.1.0:
400 | version "0.1.0"
401 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
402 | dependencies:
403 | domelementtype "~1.1.1"
404 | entities "~1.1.1"
405 |
406 | domelementtype@1, domelementtype@~1.1.1:
407 | version "1.1.3"
408 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
409 |
410 | domelementtype@^1.3.0:
411 | version "1.3.0"
412 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
413 |
414 | domhandler@2.3, domhandler@^2.3.0:
415 | version "2.3.0"
416 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738"
417 | dependencies:
418 | domelementtype "1"
419 |
420 | domutils@1.5, domutils@1.5.1, domutils@^1.5.1:
421 | version "1.5.1"
422 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
423 | dependencies:
424 | dom-serializer "0"
425 | domelementtype "1"
426 |
427 | ecc-jsbn@~0.1.1:
428 | version "0.1.1"
429 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
430 | dependencies:
431 | jsbn "~0.1.0"
432 |
433 | editorconfig@^0.13.2:
434 | version "0.13.2"
435 | resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.13.2.tgz#8e57926d9ee69ab6cb999f027c2171467acceb35"
436 | dependencies:
437 | bluebird "^3.0.5"
438 | commander "^2.9.0"
439 | lru-cache "^3.2.0"
440 | sigmund "^1.0.1"
441 |
442 | entities@1.0:
443 | version "1.0.0"
444 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26"
445 |
446 | entities@^1.1.1, entities@~1.1.1:
447 | version "1.1.1"
448 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
449 |
450 | es-abstract@^1.5.0:
451 | version "1.6.1"
452 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99"
453 | dependencies:
454 | es-to-primitive "^1.1.1"
455 | function-bind "^1.1.0"
456 | is-callable "^1.1.3"
457 | is-regex "^1.0.3"
458 |
459 | es-to-primitive@^1.1.1:
460 | version "1.1.1"
461 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
462 | dependencies:
463 | is-callable "^1.1.1"
464 | is-date-object "^1.0.1"
465 | is-symbol "^1.0.1"
466 |
467 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
468 | version "0.10.12"
469 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
470 | dependencies:
471 | es6-iterator "2"
472 | es6-symbol "~3.1"
473 |
474 | es6-iterator@2:
475 | version "2.0.0"
476 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
477 | dependencies:
478 | d "^0.1.1"
479 | es5-ext "^0.10.7"
480 | es6-symbol "3"
481 |
482 | es6-map@^0.1.3:
483 | version "0.1.4"
484 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
485 | dependencies:
486 | d "~0.1.1"
487 | es5-ext "~0.10.11"
488 | es6-iterator "2"
489 | es6-set "~0.1.3"
490 | es6-symbol "~3.1.0"
491 | event-emitter "~0.3.4"
492 |
493 | es6-set@^0.1.4, es6-set@~0.1.3:
494 | version "0.1.4"
495 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
496 | dependencies:
497 | d "~0.1.1"
498 | es5-ext "~0.10.11"
499 | es6-iterator "2"
500 | es6-symbol "3"
501 | event-emitter "~0.3.4"
502 |
503 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
504 | version "3.1.0"
505 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
506 | dependencies:
507 | d "~0.1.1"
508 | es5-ext "~0.10.11"
509 |
510 | es6-weak-map@^2.0.1:
511 | version "2.0.1"
512 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
513 | dependencies:
514 | d "^0.1.1"
515 | es5-ext "^0.10.8"
516 | es6-iterator "2"
517 | es6-symbol "3"
518 |
519 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
520 | version "1.0.5"
521 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
522 |
523 | escodegen@^1.6.1:
524 | version "1.8.1"
525 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018"
526 | dependencies:
527 | esprima "^2.7.1"
528 | estraverse "^1.9.1"
529 | esutils "^2.0.2"
530 | optionator "^0.8.1"
531 | optionalDependencies:
532 | source-map "~0.2.0"
533 |
534 | escope@^3.6.0:
535 | version "3.6.0"
536 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
537 | dependencies:
538 | es6-map "^0.1.3"
539 | es6-weak-map "^2.0.1"
540 | esrecurse "^4.1.0"
541 | estraverse "^4.1.1"
542 |
543 | eslint-config-airbnb-base@^5.0.3:
544 | version "5.0.3"
545 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-5.0.3.tgz#9714ac35ec2cd7fab0d44d148a9f91db2944074d"
546 |
547 | eslint-import-resolver-node@^0.2.0:
548 | version "0.2.3"
549 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
550 | dependencies:
551 | debug "^2.2.0"
552 | object-assign "^4.0.1"
553 | resolve "^1.1.6"
554 |
555 | eslint-plugin-import@^1.14.0:
556 | version "1.16.0"
557 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-1.16.0.tgz#b2fa07ebcc53504d0f2a4477582ec8bff1871b9f"
558 | dependencies:
559 | builtin-modules "^1.1.1"
560 | contains-path "^0.1.0"
561 | debug "^2.2.0"
562 | doctrine "1.3.x"
563 | es6-map "^0.1.3"
564 | es6-set "^0.1.4"
565 | eslint-import-resolver-node "^0.2.0"
566 | has "^1.0.1"
567 | lodash.cond "^4.3.0"
568 | lodash.endswith "^4.0.1"
569 | lodash.find "^4.3.0"
570 | lodash.findindex "^4.3.0"
571 | minimatch "^3.0.3"
572 | object-assign "^4.0.1"
573 | pkg-dir "^1.0.0"
574 | pkg-up "^1.0.0"
575 |
576 | eslint@^3.4.0:
577 | version "3.9.1"
578 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.9.1.tgz#5a8597706fc6048bc6061ac754d4a211d28f4f5b"
579 | dependencies:
580 | babel-code-frame "^6.16.0"
581 | chalk "^1.1.3"
582 | concat-stream "^1.4.6"
583 | debug "^2.1.1"
584 | doctrine "^1.2.2"
585 | escope "^3.6.0"
586 | espree "^3.3.1"
587 | estraverse "^4.2.0"
588 | esutils "^2.0.2"
589 | file-entry-cache "^2.0.0"
590 | glob "^7.0.3"
591 | globals "^9.2.0"
592 | ignore "^3.1.5"
593 | imurmurhash "^0.1.4"
594 | inquirer "^0.12.0"
595 | is-my-json-valid "^2.10.0"
596 | is-resolvable "^1.0.0"
597 | js-yaml "^3.5.1"
598 | json-stable-stringify "^1.0.0"
599 | levn "^0.3.0"
600 | lodash "^4.0.0"
601 | mkdirp "^0.5.0"
602 | natural-compare "^1.4.0"
603 | optionator "^0.8.2"
604 | path-is-inside "^1.0.1"
605 | pluralize "^1.2.1"
606 | progress "^1.1.8"
607 | require-uncached "^1.0.2"
608 | shelljs "^0.7.5"
609 | strip-bom "^3.0.0"
610 | strip-json-comments "~1.0.1"
611 | table "^3.7.8"
612 | text-table "~0.2.0"
613 | user-home "^2.0.0"
614 |
615 | espree@^3.3.1:
616 | version "3.3.2"
617 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c"
618 | dependencies:
619 | acorn "^4.0.1"
620 | acorn-jsx "^3.0.0"
621 |
622 | esprima@^2.6.0, esprima@^2.7.1:
623 | version "2.7.3"
624 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
625 |
626 | esrecurse@^4.1.0:
627 | version "4.1.0"
628 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
629 | dependencies:
630 | estraverse "~4.1.0"
631 | object-assign "^4.0.1"
632 |
633 | estraverse@^1.9.1:
634 | version "1.9.3"
635 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
636 |
637 | estraverse@^4.1.1, estraverse@^4.2.0:
638 | version "4.2.0"
639 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
640 |
641 | estraverse@~4.1.0:
642 | version "4.1.1"
643 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
644 |
645 | esutils@^2.0.2:
646 | version "2.0.2"
647 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
648 |
649 | event-emitter@~0.3.4:
650 | version "0.3.4"
651 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
652 | dependencies:
653 | d "~0.1.1"
654 | es5-ext "~0.10.7"
655 |
656 | exit-hook@^1.0.0:
657 | version "1.1.1"
658 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
659 |
660 | extend@~3.0.0:
661 | version "3.0.0"
662 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
663 |
664 | extsprintf@1.0.2:
665 | version "1.0.2"
666 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
667 |
668 | fast-levenshtein@~2.0.4:
669 | version "2.0.5"
670 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
671 |
672 | figures@^1.3.5:
673 | version "1.7.0"
674 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
675 | dependencies:
676 | escape-string-regexp "^1.0.5"
677 | object-assign "^4.1.0"
678 |
679 | file-entry-cache@^2.0.0:
680 | version "2.0.0"
681 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
682 | dependencies:
683 | flat-cache "^1.2.1"
684 | object-assign "^4.0.1"
685 |
686 | find-up@^1.0.0:
687 | version "1.1.2"
688 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
689 | dependencies:
690 | path-exists "^2.0.0"
691 | pinkie-promise "^2.0.0"
692 |
693 | flat-cache@^1.2.1:
694 | version "1.2.1"
695 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff"
696 | dependencies:
697 | circular-json "^0.3.0"
698 | del "^2.0.2"
699 | graceful-fs "^4.1.2"
700 | write "^0.2.1"
701 |
702 | foreach@^2.0.5:
703 | version "2.0.5"
704 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
705 |
706 | forever-agent@~0.6.1:
707 | version "0.6.1"
708 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
709 |
710 | form-data@~2.1.1:
711 | version "2.1.2"
712 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
713 | dependencies:
714 | asynckit "^0.4.0"
715 | combined-stream "^1.0.5"
716 | mime-types "^2.1.12"
717 |
718 | fs.realpath@^1.0.0:
719 | version "1.0.0"
720 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
721 |
722 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@~1.1.0:
723 | version "1.1.0"
724 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
725 |
726 | generate-function@^2.0.0:
727 | version "2.0.0"
728 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
729 |
730 | generate-object-property@^1.1.0:
731 | version "1.2.0"
732 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
733 | dependencies:
734 | is-property "^1.0.0"
735 |
736 | getpass@^0.1.1:
737 | version "0.1.6"
738 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
739 | dependencies:
740 | assert-plus "^1.0.0"
741 |
742 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.0:
743 | version "7.1.1"
744 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
745 | dependencies:
746 | fs.realpath "^1.0.0"
747 | inflight "^1.0.4"
748 | inherits "2"
749 | minimatch "^3.0.2"
750 | once "^1.3.0"
751 | path-is-absolute "^1.0.0"
752 |
753 | globals@^9.2.0:
754 | version "9.13.0"
755 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.13.0.tgz#d97706b61600d8dbe94708c367d3fdcf48470b8f"
756 |
757 | globby@^5.0.0:
758 | version "5.0.0"
759 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
760 | dependencies:
761 | array-union "^1.0.1"
762 | arrify "^1.0.0"
763 | glob "^7.0.3"
764 | object-assign "^4.0.1"
765 | pify "^2.0.0"
766 | pinkie-promise "^2.0.0"
767 |
768 | graceful-fs@^4.1.2:
769 | version "4.1.10"
770 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131"
771 |
772 | "graceful-readlink@>= 1.0.0":
773 | version "1.0.1"
774 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
775 |
776 | har-validator@~2.0.6:
777 | version "2.0.6"
778 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
779 | dependencies:
780 | chalk "^1.1.1"
781 | commander "^2.9.0"
782 | is-my-json-valid "^2.12.4"
783 | pinkie-promise "^2.0.0"
784 |
785 | has-ansi@^2.0.0:
786 | version "2.0.0"
787 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
788 | dependencies:
789 | ansi-regex "^2.0.0"
790 |
791 | has-flag@^1.0.0:
792 | version "1.0.0"
793 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
794 |
795 | has@^1.0.1, has@~1.0.1:
796 | version "1.0.1"
797 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
798 | dependencies:
799 | function-bind "^1.0.2"
800 |
801 | hawk@~3.1.3:
802 | version "3.1.3"
803 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
804 | dependencies:
805 | boom "2.x.x"
806 | cryptiles "2.x.x"
807 | hoek "2.x.x"
808 | sntp "1.x.x"
809 |
810 | hoek@2.x.x:
811 | version "2.16.3"
812 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
813 |
814 | html-encoding-sniffer@^1.0.1:
815 | version "1.0.1"
816 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da"
817 | dependencies:
818 | whatwg-encoding "^1.0.1"
819 |
820 | htmlparser2@^3.9.1, htmlparser2@^3.9.2:
821 | version "3.9.2"
822 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"
823 | dependencies:
824 | domelementtype "^1.3.0"
825 | domhandler "^2.3.0"
826 | domutils "^1.5.1"
827 | entities "^1.1.1"
828 | inherits "^2.0.1"
829 | readable-stream "^2.0.2"
830 |
831 | htmlparser2@~3.8.1:
832 | version "3.8.3"
833 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068"
834 | dependencies:
835 | domelementtype "1"
836 | domhandler "2.3"
837 | domutils "1.5"
838 | entities "1.0"
839 | readable-stream "1.1"
840 |
841 | http-signature@~1.1.0:
842 | version "1.1.1"
843 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
844 | dependencies:
845 | assert-plus "^0.2.0"
846 | jsprim "^1.2.2"
847 | sshpk "^1.7.0"
848 |
849 | iconv-lite@0.4.13, iconv-lite@^0.4.13:
850 | version "0.4.13"
851 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
852 |
853 | ignore@^3.1.5:
854 | version "3.2.0"
855 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435"
856 |
857 | image-size@^0.3.5:
858 | version "0.3.5"
859 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.3.5.tgz#83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"
860 |
861 | imurmurhash@^0.1.4:
862 | version "0.1.4"
863 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
864 |
865 | inflight@^1.0.4:
866 | version "1.0.6"
867 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
868 | dependencies:
869 | once "^1.3.0"
870 | wrappy "1"
871 |
872 | inherits@2, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3:
873 | version "2.0.3"
874 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
875 |
876 | ini@^1.3.4:
877 | version "1.3.4"
878 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
879 |
880 | inquirer@^0.12.0:
881 | version "0.12.0"
882 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
883 | dependencies:
884 | ansi-escapes "^1.1.0"
885 | ansi-regex "^2.0.0"
886 | chalk "^1.0.0"
887 | cli-cursor "^1.0.1"
888 | cli-width "^2.0.0"
889 | figures "^1.3.5"
890 | lodash "^4.3.0"
891 | readline2 "^1.0.1"
892 | run-async "^0.1.0"
893 | rx-lite "^3.1.2"
894 | string-width "^1.0.1"
895 | strip-ansi "^3.0.0"
896 | through "^2.3.6"
897 |
898 | interpret@^1.0.0:
899 | version "1.0.1"
900 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
901 |
902 | is-callable@^1.1.1, is-callable@^1.1.3:
903 | version "1.1.3"
904 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
905 |
906 | is-date-object@^1.0.1:
907 | version "1.0.1"
908 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
909 |
910 | is-fullwidth-code-point@^1.0.0:
911 | version "1.0.0"
912 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
913 | dependencies:
914 | number-is-nan "^1.0.0"
915 |
916 | is-fullwidth-code-point@^2.0.0:
917 | version "2.0.0"
918 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
919 |
920 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4:
921 | version "2.15.0"
922 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
923 | dependencies:
924 | generate-function "^2.0.0"
925 | generate-object-property "^1.1.0"
926 | jsonpointer "^4.0.0"
927 | xtend "^4.0.0"
928 |
929 | is-path-cwd@^1.0.0:
930 | version "1.0.0"
931 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
932 |
933 | is-path-in-cwd@^1.0.0:
934 | version "1.0.0"
935 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
936 | dependencies:
937 | is-path-inside "^1.0.0"
938 |
939 | is-path-inside@^1.0.0:
940 | version "1.0.0"
941 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
942 | dependencies:
943 | path-is-inside "^1.0.1"
944 |
945 | is-property@^1.0.0:
946 | version "1.0.2"
947 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
948 |
949 | is-regex@^1.0.3:
950 | version "1.0.3"
951 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637"
952 |
953 | is-resolvable@^1.0.0:
954 | version "1.0.0"
955 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
956 | dependencies:
957 | tryit "^1.0.1"
958 |
959 | is-symbol@^1.0.1:
960 | version "1.0.1"
961 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
962 |
963 | is-typedarray@~1.0.0:
964 | version "1.0.0"
965 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
966 |
967 | isarray@0.0.1:
968 | version "0.0.1"
969 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
970 |
971 | isarray@^1.0.0, isarray@~1.0.0:
972 | version "1.0.0"
973 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
974 |
975 | isexe@^1.1.1:
976 | version "1.1.2"
977 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0"
978 |
979 | isstream@~0.1.2:
980 | version "0.1.2"
981 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
982 |
983 | jodid25519@^1.0.0:
984 | version "1.0.2"
985 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
986 | dependencies:
987 | jsbn "~0.1.0"
988 |
989 | js-base64@^2.1.9:
990 | version "2.1.9"
991 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce"
992 |
993 | js-beautify@^1.6.4:
994 | version "1.6.4"
995 | resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.6.4.tgz#a9af79699742ac9a1b6fddc1fdbc78bc4d515fc3"
996 | dependencies:
997 | config-chain "~1.1.5"
998 | editorconfig "^0.13.2"
999 | mkdirp "~0.5.0"
1000 | nopt "~3.0.1"
1001 |
1002 | js-tokens@^3.0.0:
1003 | version "3.0.1"
1004 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
1005 |
1006 | js-yaml@^3.5.1:
1007 | version "3.6.1"
1008 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30"
1009 | dependencies:
1010 | argparse "^1.0.7"
1011 | esprima "^2.6.0"
1012 |
1013 | jsbn@~0.1.0:
1014 | version "0.1.0"
1015 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
1016 |
1017 | jsdom@^7.0.2:
1018 | version "7.2.2"
1019 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e"
1020 | dependencies:
1021 | abab "^1.0.0"
1022 | acorn "^2.4.0"
1023 | acorn-globals "^1.0.4"
1024 | cssom ">= 0.3.0 < 0.4.0"
1025 | cssstyle ">= 0.2.29 < 0.3.0"
1026 | escodegen "^1.6.1"
1027 | nwmatcher ">= 1.3.7 < 2.0.0"
1028 | parse5 "^1.5.1"
1029 | request "^2.55.0"
1030 | sax "^1.1.4"
1031 | symbol-tree ">= 3.1.0 < 4.0.0"
1032 | tough-cookie "^2.2.0"
1033 | webidl-conversions "^2.0.0"
1034 | whatwg-url-compat "~0.6.5"
1035 | xml-name-validator ">= 2.0.1 < 3.0.0"
1036 |
1037 | jsdom@^9.4.2:
1038 | version "9.8.3"
1039 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.8.3.tgz#fde29c109c32a1131e0b6c65914e64198f97c370"
1040 | dependencies:
1041 | abab "^1.0.0"
1042 | acorn "^2.4.0"
1043 | acorn-globals "^1.0.4"
1044 | array-equal "^1.0.0"
1045 | content-type-parser "^1.0.1"
1046 | cssom ">= 0.3.0 < 0.4.0"
1047 | cssstyle ">= 0.2.36 < 0.3.0"
1048 | escodegen "^1.6.1"
1049 | html-encoding-sniffer "^1.0.1"
1050 | iconv-lite "^0.4.13"
1051 | nwmatcher ">= 1.3.7 < 2.0.0"
1052 | parse5 "^1.5.1"
1053 | request "^2.55.0"
1054 | sax "^1.1.4"
1055 | symbol-tree ">= 3.1.0 < 4.0.0"
1056 | tough-cookie "^2.3.1"
1057 | webidl-conversions "^3.0.1"
1058 | whatwg-encoding "^1.0.1"
1059 | whatwg-url "^3.0.0"
1060 | xml-name-validator ">= 2.0.1 < 3.0.0"
1061 |
1062 | json-schema@0.2.3:
1063 | version "0.2.3"
1064 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1065 |
1066 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1067 | version "1.0.1"
1068 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1069 | dependencies:
1070 | jsonify "~0.0.0"
1071 |
1072 | json-stringify-safe@~5.0.1:
1073 | version "5.0.1"
1074 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1075 |
1076 | jsonify@~0.0.0:
1077 | version "0.0.0"
1078 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1079 |
1080 | jsonpointer@^4.0.0:
1081 | version "4.0.0"
1082 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
1083 |
1084 | jsprim@^1.2.2:
1085 | version "1.3.1"
1086 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
1087 | dependencies:
1088 | extsprintf "1.0.2"
1089 | json-schema "0.2.3"
1090 | verror "1.3.6"
1091 |
1092 | juice:
1093 | version "4.0.2"
1094 | resolved "https://registry.yarnpkg.com/juice/-/juice-4.0.2.tgz#0797481c9a8ee3b780fe6dadc95e21119a8a9674"
1095 | dependencies:
1096 | cheerio "^0.22.0"
1097 | commander "2.9.0"
1098 | cross-spawn "^5.0.1"
1099 | deep-extend "^0.4.0"
1100 | mensch "^0.3.3"
1101 | slick "1.12.2"
1102 | web-resource-inliner "^4.0.0"
1103 |
1104 | levn@^0.3.0, levn@~0.3.0:
1105 | version "0.3.0"
1106 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1107 | dependencies:
1108 | prelude-ls "~1.1.2"
1109 | type-check "~0.3.2"
1110 |
1111 | lodash.assignin@^4.0.9:
1112 | version "4.2.0"
1113 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
1114 |
1115 | lodash.bind@^4.1.4:
1116 | version "4.2.1"
1117 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
1118 |
1119 | lodash.cond@^4.3.0:
1120 | version "4.5.2"
1121 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
1122 |
1123 | lodash.defaults@^4.0.1:
1124 | version "4.2.0"
1125 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
1126 |
1127 | lodash.endswith@^4.0.1:
1128 | version "4.2.1"
1129 | resolved "https://registry.yarnpkg.com/lodash.endswith/-/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09"
1130 |
1131 | lodash.filter@^4.4.0:
1132 | version "4.6.0"
1133 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace"
1134 |
1135 | lodash.find@^4.3.0:
1136 | version "4.6.0"
1137 | resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1"
1138 |
1139 | lodash.findindex@^4.3.0:
1140 | version "4.6.0"
1141 | resolved "https://registry.yarnpkg.com/lodash.findindex/-/lodash.findindex-4.6.0.tgz#a3245dee61fb9b6e0624b535125624bb69c11106"
1142 |
1143 | lodash.flatten@^4.2.0:
1144 | version "4.4.0"
1145 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
1146 |
1147 | lodash.foreach@^4.3.0:
1148 | version "4.5.0"
1149 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53"
1150 |
1151 | lodash.map@^4.4.0:
1152 | version "4.6.0"
1153 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
1154 |
1155 | lodash.merge@^4.4.0:
1156 | version "4.6.0"
1157 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5"
1158 |
1159 | lodash.pick@^4.2.1:
1160 | version "4.4.0"
1161 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
1162 |
1163 | lodash.reduce@^4.4.0:
1164 | version "4.6.0"
1165 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b"
1166 |
1167 | lodash.reject@^4.4.0:
1168 | version "4.6.0"
1169 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415"
1170 |
1171 | lodash.some@^4.4.0:
1172 | version "4.6.0"
1173 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
1174 |
1175 | lodash.unescape@^4.0.1:
1176 | version "4.0.1"
1177 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
1178 |
1179 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.3.0:
1180 | version "4.17.4"
1181 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1182 |
1183 | lru-cache@^3.2.0:
1184 | version "3.2.0"
1185 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee"
1186 | dependencies:
1187 | pseudomap "^1.0.1"
1188 |
1189 | lru-cache@^4.0.1:
1190 | version "4.0.2"
1191 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e"
1192 | dependencies:
1193 | pseudomap "^1.0.1"
1194 | yallist "^2.0.0"
1195 |
1196 | mensch@^0.3.3:
1197 | version "0.3.3"
1198 | resolved "https://registry.yarnpkg.com/mensch/-/mensch-0.3.3.tgz#e200ff4dd823717f8e0563b32e3f5481fca262b2"
1199 |
1200 | mime-db@~1.24.0:
1201 | version "1.24.0"
1202 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c"
1203 |
1204 | mime-types@^2.1.12, mime-types@~2.1.7:
1205 | version "2.1.12"
1206 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729"
1207 | dependencies:
1208 | mime-db "~1.24.0"
1209 |
1210 | mimer@^0.2.1:
1211 | version "0.2.1"
1212 | resolved "https://registry.yarnpkg.com/mimer/-/mimer-0.2.1.tgz#c63c5a17fe86423f5161a85d55c3ed5189baaffc"
1213 |
1214 | minimatch@^3.0.2, minimatch@^3.0.3:
1215 | version "3.0.3"
1216 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
1217 | dependencies:
1218 | brace-expansion "^1.0.0"
1219 |
1220 | minimist@0.0.8:
1221 | version "0.0.8"
1222 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1223 |
1224 | minimist@~1.2.0:
1225 | version "1.2.0"
1226 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1227 |
1228 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
1229 | version "0.5.1"
1230 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1231 | dependencies:
1232 | minimist "0.0.8"
1233 |
1234 | ms@0.7.2:
1235 | version "0.7.2"
1236 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
1237 |
1238 | mute-stream@0.0.5:
1239 | version "0.0.5"
1240 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1241 |
1242 | natural-compare@^1.4.0:
1243 | version "1.4.0"
1244 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1245 |
1246 | node-uuid@~1.4.7:
1247 | version "1.4.7"
1248 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"
1249 |
1250 | nopt@~3.0.1:
1251 | version "3.0.6"
1252 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
1253 | dependencies:
1254 | abbrev "1"
1255 |
1256 | nth-check@~1.0.1:
1257 | version "1.0.1"
1258 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
1259 | dependencies:
1260 | boolbase "~1.0.0"
1261 |
1262 | number-is-nan@^1.0.0:
1263 | version "1.0.1"
1264 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1265 |
1266 | "nwmatcher@>= 1.3.7 < 2.0.0":
1267 | version "1.3.9"
1268 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a"
1269 |
1270 | oauth-sign@~0.8.1:
1271 | version "0.8.2"
1272 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1273 |
1274 | object-assign@^4.0.1, object-assign@^4.1.0:
1275 | version "4.1.1"
1276 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1277 |
1278 | object-inspect@~1.2.1:
1279 | version "1.2.1"
1280 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f"
1281 |
1282 | object-keys@^1.0.8:
1283 | version "1.0.11"
1284 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
1285 |
1286 | once@^1.3.0:
1287 | version "1.4.0"
1288 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1289 | dependencies:
1290 | wrappy "1"
1291 |
1292 | onetime@^1.0.0:
1293 | version "1.1.0"
1294 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1295 |
1296 | optionator@^0.8.1, optionator@^0.8.2:
1297 | version "0.8.2"
1298 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1299 | dependencies:
1300 | deep-is "~0.1.3"
1301 | fast-levenshtein "~2.0.4"
1302 | levn "~0.3.0"
1303 | prelude-ls "~1.1.2"
1304 | type-check "~0.3.2"
1305 | wordwrap "~1.0.0"
1306 |
1307 | os-homedir@^1.0.0:
1308 | version "1.0.2"
1309 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1310 |
1311 | parse5@^1.5.1:
1312 | version "1.5.1"
1313 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"
1314 |
1315 | path-exists@^2.0.0:
1316 | version "2.1.0"
1317 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1318 | dependencies:
1319 | pinkie-promise "^2.0.0"
1320 |
1321 | path-is-absolute@^1.0.0:
1322 | version "1.0.1"
1323 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1324 |
1325 | path-is-inside@^1.0.1:
1326 | version "1.0.2"
1327 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1328 |
1329 | pify@^2.0.0:
1330 | version "2.3.0"
1331 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1332 |
1333 | pinkie-promise@^2.0.0:
1334 | version "2.0.1"
1335 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1336 | dependencies:
1337 | pinkie "^2.0.0"
1338 |
1339 | pinkie@^2.0.0:
1340 | version "2.0.4"
1341 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1342 |
1343 | pkg-dir@^1.0.0:
1344 | version "1.0.0"
1345 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1346 | dependencies:
1347 | find-up "^1.0.0"
1348 |
1349 | pkg-up@^1.0.0:
1350 | version "1.0.0"
1351 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
1352 | dependencies:
1353 | find-up "^1.0.0"
1354 |
1355 | pluralize@^1.2.1:
1356 | version "1.2.1"
1357 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1358 |
1359 | postcss-safe-parser@^2.0.0:
1360 | version "2.0.0"
1361 | resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-2.0.0.tgz#5a629fe1363225a3a2b4b1f657b59d3462455c6b"
1362 | dependencies:
1363 | postcss "^5.2.0"
1364 |
1365 | postcss-scopeify-everything@^0.7.1:
1366 | version "0.7.1"
1367 | resolved "https://registry.yarnpkg.com/postcss-scopeify-everything/-/postcss-scopeify-everything-0.7.1.tgz#eeb74167bb1f6aa6af98b5aefea61c472bae6979"
1368 | dependencies:
1369 | postcss-safe-parser "^2.0.0"
1370 |
1371 | postcss@^5.2.0, postcss@^5.2.4:
1372 | version "5.2.5"
1373 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.5.tgz#ec428c27dffc7fac65961340a9b022fa4af5f056"
1374 | dependencies:
1375 | chalk "^1.1.3"
1376 | js-base64 "^2.1.9"
1377 | source-map "^0.5.6"
1378 | supports-color "^3.1.2"
1379 |
1380 | prelude-ls@~1.1.2:
1381 | version "1.1.2"
1382 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1383 |
1384 | process-nextick-args@~1.0.6:
1385 | version "1.0.7"
1386 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1387 |
1388 | progress@^1.1.8:
1389 | version "1.1.8"
1390 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1391 |
1392 | proto-list@~1.2.1:
1393 | version "1.2.4"
1394 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
1395 |
1396 | pseudomap@^1.0.1:
1397 | version "1.0.2"
1398 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1399 |
1400 | punycode@^1.4.1:
1401 | version "1.4.1"
1402 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1403 |
1404 | qs@~6.3.0:
1405 | version "6.3.0"
1406 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442"
1407 |
1408 | readable-stream@1.1:
1409 | version "1.1.13"
1410 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e"
1411 | dependencies:
1412 | core-util-is "~1.0.0"
1413 | inherits "~2.0.1"
1414 | isarray "0.0.1"
1415 | string_decoder "~0.10.x"
1416 |
1417 | readable-stream@^2.0.2, readable-stream@~2.0.0:
1418 | version "2.0.6"
1419 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
1420 | dependencies:
1421 | core-util-is "~1.0.0"
1422 | inherits "~2.0.1"
1423 | isarray "~1.0.0"
1424 | process-nextick-args "~1.0.6"
1425 | string_decoder "~0.10.x"
1426 | util-deprecate "~1.0.1"
1427 |
1428 | readline2@^1.0.1:
1429 | version "1.0.1"
1430 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1431 | dependencies:
1432 | code-point-at "^1.0.0"
1433 | is-fullwidth-code-point "^1.0.0"
1434 | mute-stream "0.0.5"
1435 |
1436 | rechoir@^0.6.2:
1437 | version "0.6.2"
1438 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1439 | dependencies:
1440 | resolve "^1.1.6"
1441 |
1442 | request@^2.55.0, request@^2.78.0:
1443 | version "2.78.0"
1444 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc"
1445 | dependencies:
1446 | aws-sign2 "~0.6.0"
1447 | aws4 "^1.2.1"
1448 | caseless "~0.11.0"
1449 | combined-stream "~1.0.5"
1450 | extend "~3.0.0"
1451 | forever-agent "~0.6.1"
1452 | form-data "~2.1.1"
1453 | har-validator "~2.0.6"
1454 | hawk "~3.1.3"
1455 | http-signature "~1.1.0"
1456 | is-typedarray "~1.0.0"
1457 | isstream "~0.1.2"
1458 | json-stringify-safe "~5.0.1"
1459 | mime-types "~2.1.7"
1460 | node-uuid "~1.4.7"
1461 | oauth-sign "~0.8.1"
1462 | qs "~6.3.0"
1463 | stringstream "~0.0.4"
1464 | tough-cookie "~2.3.0"
1465 | tunnel-agent "~0.4.1"
1466 |
1467 | require-uncached@^1.0.2:
1468 | version "1.0.3"
1469 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1470 | dependencies:
1471 | caller-path "^0.1.0"
1472 | resolve-from "^1.0.0"
1473 |
1474 | resolve-from@^1.0.0:
1475 | version "1.0.1"
1476 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1477 |
1478 | resolve@^1.1.6, resolve@~1.1.7:
1479 | version "1.1.7"
1480 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
1481 |
1482 | restore-cursor@^1.0.1:
1483 | version "1.0.1"
1484 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
1485 | dependencies:
1486 | exit-hook "^1.0.0"
1487 | onetime "^1.0.0"
1488 |
1489 | resumer@~0.0.0:
1490 | version "0.0.0"
1491 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759"
1492 | dependencies:
1493 | through "~2.3.4"
1494 |
1495 | rimraf@^2.2.8:
1496 | version "2.5.4"
1497 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
1498 | dependencies:
1499 | glob "^7.0.5"
1500 |
1501 | run-async@^0.1.0:
1502 | version "0.1.0"
1503 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
1504 | dependencies:
1505 | once "^1.3.0"
1506 |
1507 | rx-lite@^3.1.2:
1508 | version "3.1.2"
1509 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
1510 |
1511 | sax@^1.1.4:
1512 | version "1.2.1"
1513 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a"
1514 |
1515 | semver@^5.0.3:
1516 | version "5.3.0"
1517 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
1518 |
1519 | shebang-command@^1.2.0:
1520 | version "1.2.0"
1521 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1522 | dependencies:
1523 | shebang-regex "^1.0.0"
1524 |
1525 | shebang-regex@^1.0.0:
1526 | version "1.0.0"
1527 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1528 |
1529 | shelljs@^0.7.5:
1530 | version "0.7.5"
1531 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675"
1532 | dependencies:
1533 | glob "^7.0.0"
1534 | interpret "^1.0.0"
1535 | rechoir "^0.6.2"
1536 |
1537 | sigmund@^1.0.1:
1538 | version "1.0.1"
1539 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
1540 |
1541 | slice-ansi@0.0.4:
1542 | version "0.0.4"
1543 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
1544 |
1545 | slick@1.12.2:
1546 | version "1.12.2"
1547 | resolved "https://registry.yarnpkg.com/slick/-/slick-1.12.2.tgz#bd048ddb74de7d1ca6915faa4a57570b3550c2d7"
1548 |
1549 | sntp@1.x.x:
1550 | version "1.0.9"
1551 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
1552 | dependencies:
1553 | hoek "2.x.x"
1554 |
1555 | source-map@^0.5.6:
1556 | version "0.5.6"
1557 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
1558 |
1559 | source-map@~0.2.0:
1560 | version "0.2.0"
1561 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"
1562 | dependencies:
1563 | amdefine ">=0.0.4"
1564 |
1565 | sprintf-js@~1.0.2:
1566 | version "1.0.3"
1567 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1568 |
1569 | sshpk@^1.7.0:
1570 | version "1.10.1"
1571 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
1572 | dependencies:
1573 | asn1 "~0.2.3"
1574 | assert-plus "^1.0.0"
1575 | dashdash "^1.12.0"
1576 | getpass "^0.1.1"
1577 | optionalDependencies:
1578 | bcrypt-pbkdf "^1.0.0"
1579 | ecc-jsbn "~0.1.1"
1580 | jodid25519 "^1.0.0"
1581 | jsbn "~0.1.0"
1582 | tweetnacl "~0.14.0"
1583 |
1584 | string-width@^1.0.1:
1585 | version "1.0.2"
1586 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1587 | dependencies:
1588 | code-point-at "^1.0.0"
1589 | is-fullwidth-code-point "^1.0.0"
1590 | strip-ansi "^3.0.0"
1591 |
1592 | string-width@^2.0.0:
1593 | version "2.0.0"
1594 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
1595 | dependencies:
1596 | is-fullwidth-code-point "^2.0.0"
1597 | strip-ansi "^3.0.0"
1598 |
1599 | string.prototype.trim@~1.1.2:
1600 | version "1.1.2"
1601 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea"
1602 | dependencies:
1603 | define-properties "^1.1.2"
1604 | es-abstract "^1.5.0"
1605 | function-bind "^1.0.2"
1606 |
1607 | string_decoder@~0.10.x:
1608 | version "0.10.31"
1609 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
1610 |
1611 | stringstream@~0.0.4:
1612 | version "0.0.5"
1613 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1614 |
1615 | strip-ansi@^3.0.0:
1616 | version "3.0.1"
1617 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1618 | dependencies:
1619 | ansi-regex "^2.0.0"
1620 |
1621 | strip-bom@^3.0.0:
1622 | version "3.0.0"
1623 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1624 |
1625 | strip-json-comments@~1.0.1:
1626 | version "1.0.4"
1627 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
1628 |
1629 | supports-color@^2.0.0:
1630 | version "2.0.0"
1631 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1632 |
1633 | supports-color@^3.1.2:
1634 | version "3.1.2"
1635 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
1636 | dependencies:
1637 | has-flag "^1.0.0"
1638 |
1639 | "symbol-tree@>= 3.1.0 < 4.0.0":
1640 | version "3.1.4"
1641 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a"
1642 |
1643 | table@^3.7.8:
1644 | version "3.8.3"
1645 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
1646 | dependencies:
1647 | ajv "^4.7.0"
1648 | ajv-keywords "^1.0.0"
1649 | chalk "^1.1.1"
1650 | lodash "^4.0.0"
1651 | slice-ansi "0.0.4"
1652 | string-width "^2.0.0"
1653 |
1654 | tape-dots@^1.0.0:
1655 | version "1.0.0"
1656 | resolved "https://registry.yarnpkg.com/tape-dots/-/tape-dots-1.0.0.tgz#b5cfb4c8d850271a4942a095b857a71bbc1c3b3c"
1657 |
1658 | tape@^4.6.0:
1659 | version "4.6.2"
1660 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.2.tgz#19b3d874508485a1dc30fb30fe2a7d9be2c28b78"
1661 | dependencies:
1662 | deep-equal "~1.0.1"
1663 | defined "~1.0.0"
1664 | function-bind "~1.1.0"
1665 | glob "~7.1.0"
1666 | has "~1.0.1"
1667 | inherits "~2.0.3"
1668 | minimist "~1.2.0"
1669 | object-inspect "~1.2.1"
1670 | resolve "~1.1.7"
1671 | resumer "~0.0.0"
1672 | string.prototype.trim "~1.1.2"
1673 | through "~2.3.8"
1674 |
1675 | text-table@~0.2.0:
1676 | version "0.2.0"
1677 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1678 |
1679 | through@^2.3.6, through@~2.3.4, through@~2.3.8:
1680 | version "2.3.8"
1681 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1682 |
1683 | tough-cookie@^2.2.0, tough-cookie@^2.3.1, tough-cookie@~2.3.0:
1684 | version "2.3.2"
1685 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
1686 | dependencies:
1687 | punycode "^1.4.1"
1688 |
1689 | tr46@~0.0.1, tr46@~0.0.3:
1690 | version "0.0.3"
1691 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
1692 |
1693 | tryit@^1.0.1:
1694 | version "1.0.3"
1695 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
1696 |
1697 | tunnel-agent@~0.4.1:
1698 | version "0.4.3"
1699 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
1700 |
1701 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1702 | version "0.14.3"
1703 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d"
1704 |
1705 | type-check@~0.3.2:
1706 | version "0.3.2"
1707 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1708 | dependencies:
1709 | prelude-ls "~1.1.2"
1710 |
1711 | typedarray@~0.0.5:
1712 | version "0.0.6"
1713 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1714 |
1715 | user-home@^2.0.0:
1716 | version "2.0.0"
1717 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
1718 | dependencies:
1719 | os-homedir "^1.0.0"
1720 |
1721 | util-deprecate@~1.0.1:
1722 | version "1.0.2"
1723 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1724 |
1725 | verror@1.3.6:
1726 | version "1.3.6"
1727 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
1728 | dependencies:
1729 | extsprintf "1.0.2"
1730 |
1731 | web-resource-inliner@^4.0.0:
1732 | version "4.0.0"
1733 | resolved "https://registry.yarnpkg.com/web-resource-inliner/-/web-resource-inliner-4.0.0.tgz#bb1b4a03420368a04589214df449f5838ccb2187"
1734 | dependencies:
1735 | async "^2.1.2"
1736 | chalk "^1.1.3"
1737 | datauri "^1.0.4"
1738 | htmlparser2 "^3.9.2"
1739 | lodash.unescape "^4.0.1"
1740 | request "^2.78.0"
1741 | xtend "^4.0.0"
1742 |
1743 | webidl-conversions@^2.0.0:
1744 | version "2.0.1"
1745 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506"
1746 |
1747 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1:
1748 | version "3.0.1"
1749 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
1750 |
1751 | whatwg-encoding@^1.0.1:
1752 | version "1.0.1"
1753 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4"
1754 | dependencies:
1755 | iconv-lite "0.4.13"
1756 |
1757 | whatwg-url-compat@~0.6.5:
1758 | version "0.6.5"
1759 | resolved "https://registry.yarnpkg.com/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz#00898111af689bb097541cd5a45ca6c8798445bf"
1760 | dependencies:
1761 | tr46 "~0.0.1"
1762 |
1763 | whatwg-url@^3.0.0:
1764 | version "3.0.0"
1765 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.0.0.tgz#b9033c50c7ce763e91d78777ce825a6d7f56dac5"
1766 | dependencies:
1767 | tr46 "~0.0.3"
1768 | webidl-conversions "^3.0.0"
1769 |
1770 | which@^1.2.9:
1771 | version "1.2.12"
1772 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192"
1773 | dependencies:
1774 | isexe "^1.1.1"
1775 |
1776 | wordwrap@~1.0.0:
1777 | version "1.0.0"
1778 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1779 |
1780 | wrappy@1:
1781 | version "1.0.2"
1782 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1783 |
1784 | write@^0.2.1:
1785 | version "0.2.1"
1786 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1787 | dependencies:
1788 | mkdirp "^0.5.1"
1789 |
1790 | "xml-name-validator@>= 2.0.1 < 3.0.0":
1791 | version "2.0.1"
1792 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
1793 |
1794 | xtend@^4.0.0:
1795 | version "4.0.1"
1796 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
1797 |
1798 | yallist@^2.0.0:
1799 | version "2.0.0"
1800 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4"
1801 |
--------------------------------------------------------------------------------