├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── index.js
├── naive.js
├── package.json
├── scripts
└── prepare.sh
├── test
├── index.js
├── react-15
│ ├── index.js
│ ├── package.json
│ ├── performance.js
│ └── yarn.lock
├── react-16
│ ├── index.js
│ ├── package.json
│ └── yarn.lock
└── react-18
│ ├── index.js
│ ├── package.json
│ └── yarn.lock
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | /.nyc_output
3 | npm-debug.log
4 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | node_js:
4 | - 8
5 |
6 | script:
7 | - cd test/react-15 && yarn && cd -
8 | - cd test/react-16 && yarn && cd -
9 | - yarn lint
10 | - yarn test
11 |
12 | cache:
13 | directories:
14 | - node_modules
15 |
16 | after_success:
17 | - yarn test-coverage-coveralls
18 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to this project will be documented in this file.
4 | This project adheres to [Semantic Versioning].
5 |
6 | This change log follows the format documented in [Keep a CHANGELOG].
7 |
8 | [semantic versioning]: http://semver.org/
9 | [keep a changelog]: http://keepachangelog.com/
10 |
11 | ## 0.6.0 - 2022-08-30
12 |
13 | ### Added
14 |
15 | - Added support for function components.
16 |
17 | ## 0.5.0 - 2017-07-28
18 |
19 | ### Fixed
20 |
21 | - Fix exception cause by native (not transpiled) arrow functions.
22 | Kudos to [@lixiaoyan](https://github.com/lixiaoyan).
23 |
24 | ## 0.4.0 - 2016-12-12
25 |
26 | ### Added
27 |
28 | - Fallback to `constructor.name` when `constructor.displayName`
29 | isn't present.
30 |
31 | ## 0.3.1 - 2016-12-01
32 |
33 | ### Fixed
34 |
35 | - Fix a stateful component missing the state when it's rendered
36 | as a function component children.
37 | - Copy all original function component properties to
38 | the wrapped function.
39 |
40 | ## 0.3.0 - 2016-11-20
41 |
42 | ### Fixed
43 |
44 | - Fix function components behaviour. Now the guarded function
45 | accepts 3 arguments instead of just 1:
46 | `props`, `publicContext` and `updateQueue`.
47 |
48 | ### Added
49 |
50 | - Pass `displayName` to the guard function.
51 |
52 | ## 0.2.0 - 2016-11-18
53 |
54 | ### Added
55 |
56 | - Classes & function components support.
57 | - Pass the component props and state to the guard function.
58 | - Restore function.
59 |
60 | ## 0.1.0 - 2014-12-08
61 |
62 | Initial release.
63 |
64 | [unreleased]: https://github.com/kossnocorp/react-guard/compare/v0.3.1...HEAD
65 | [0.3.1]: https://github.com/kossnocorp/react-guard/compare/v0.3.0...v0.3.1
66 | [0.3.0]: https://github.com/kossnocorp/react-guard/compare/v0.2.0...v0.3.0
67 | [0.2.0]: https://github.com/kossnocorp/react-guard/compare/v0.1.0...v0.2.0
68 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | # License
2 |
3 | react-guard is licensed under the [MIT license](http://kossnocorp.mit-license.org).
4 | Read more about MIT at [TLDRLegal](https://tldrlegal.com/license/mit-license).
5 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React Guard
2 |
3 | React Guard helps to prevent White Screen of Death,
4 | improves user expirience and assists in the bug hunt.
5 |
6 | It patches React, so it wraps every render function (including
7 | function components) intro try-catch block.
8 |
9 | If an exception occurs during the rendering, it calls specified guard function.
10 | The guard function gets the exception object and extra information such as
11 | the component `props`, `state` and `displayName`.
12 |
13 | ## Installation
14 |
15 | ```
16 | npm install react-guard --save
17 | ```
18 |
19 | or
20 |
21 | ```
22 | yarn add react-guard
23 | ```
24 |
25 | ## Usage
26 |
27 | ```javascript
28 | var React = require('react')
29 | var reactGuard = require('react-guard')
30 |
31 | // Catch and process component render exceptions.
32 | reactGuard(React, function (err, componentInfo) {
33 | // Print stacktrace to the console
34 | console && console.error && console.error(err.stack)
35 |
36 | // Notify Sentry (replace with your service of choice)
37 | Raven.captureException(err, {
38 | extra: {
39 | props: componentInfo.props,
40 | state: componentInfo.state,
41 | displayName: componentInfo.displayName
42 | }
43 | })
44 |
45 | // Replace failed component with "Failed to render".
46 | // Use `return null` to render nothing.
47 | return
Failed to render
48 | })
49 | ```
50 |
51 | ## License
52 |
53 | [MIT © Sasha Koss](https://kossnocorp.mit-license.org/)
54 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable no-redeclare */
2 |
3 | // XXX: This is highly optimized implementation, used in production
4 | // see naive.js for the logic reference.
5 | //
6 | // See V8 Bailout Reasons for optimization reference:
7 | // https://github.com/vhf/v8-bailout-reasons
8 | var reactGuard = function (React, guardFn) {
9 | guardFn =
10 | guardFn ||
11 | function () {
12 | return null
13 | }
14 |
15 | function classComponentRender () {
16 | try {
17 | return this.__guardedRender__()
18 | } catch (err) {
19 | return guardFn(err, {
20 | props: this.props,
21 | state: this.state,
22 | displayName: this.constructor.displayName || this.constructor.name
23 | })
24 | }
25 | }
26 |
27 | function buildFunctionComponent (type) {
28 | var _type = function (props, publicContext, updateQueue) {
29 | try {
30 | return type(props, publicContext, updateQueue)
31 | } catch (err) {
32 | return guardFn(err, { props: props, displayName: type.displayName || type.name })
33 | }
34 | }
35 | Object.assign(_type, type, { displayName: type.displayName || type.name })
36 | return _type
37 | }
38 |
39 | React.__reactGuardOriginalCreateElement__ = React.createElement
40 | React.createElement = function (type, createElementProps) {
41 | // DOM component
42 | if (typeof type === 'string') {
43 | if (arguments.length === 2) {
44 | return React.__reactGuardOriginalCreateElement__(
45 | type,
46 | createElementProps
47 | )
48 | } else {
49 | var args = new Array(arguments.length)
50 | for (var i = 0; i < args.length; ++i) {
51 | args[i] = arguments[i]
52 | }
53 | return React.__reactGuardOriginalCreateElement__.apply(React, args)
54 | }
55 | // Class component
56 | } else if (
57 | typeof type === 'function' &&
58 | type.prototype &&
59 | 'render' in type.prototype &&
60 | !('__guardedRender__' in type.prototype)
61 | ) {
62 | type.prototype.__guardedRender__ = type.prototype.render
63 | type.prototype.render = classComponentRender
64 | var args = new Array(arguments.length)
65 | for (var i = 0; i < args.length; ++i) {
66 | args[i] = arguments[i]
67 | }
68 | return React.__reactGuardOriginalCreateElement__.apply(React, args)
69 | // Function component
70 | } else if (
71 | typeof type === 'function' &&
72 | (!type.prototype || !('render' in type.prototype))
73 | ) {
74 | var _type
75 | if (type.__reactGuardGuardedFunction__) {
76 | _type = type.__reactGuardGuardedFunction__
77 | } else {
78 | _type = buildFunctionComponent(type)
79 | type.__reactGuardGuardedFunction__ = _type
80 | }
81 | var args = new Array(arguments.length)
82 | args[0] = _type
83 | for (var i = 1; i < args.length; ++i) {
84 | args[i] = arguments[i]
85 | }
86 | return React.__reactGuardOriginalCreateElement__.apply(React, args)
87 | // "Warm" class component
88 | } else {
89 | if (arguments.length === 2) {
90 | return React.__reactGuardOriginalCreateElement__(
91 | type,
92 | createElementProps
93 | )
94 | } else {
95 | var args = new Array(arguments.length)
96 | for (var i = 0; i < args.length; ++i) {
97 | args[i] = arguments[i]
98 | }
99 | return React.__reactGuardOriginalCreateElement__.apply(React, args)
100 | }
101 | }
102 | }
103 | }
104 |
105 | reactGuard.restore = function (React) {
106 | if ('__reactGuardOriginalCreateElement__' in React) {
107 | React.createElement = React.__reactGuardOriginalCreateElement__
108 | delete React.__reactGuardOriginalCreateElement__
109 | }
110 | }
111 |
112 | module.exports = reactGuard
113 |
--------------------------------------------------------------------------------
/naive.js:
--------------------------------------------------------------------------------
1 | // XXX: This is a naive implementation, see index.js
2 | // for optimized, production verion.
3 | var naiveReactGuard = function (React, guardFn) {
4 | guardFn =
5 | guardFn ||
6 | function () {
7 | return null
8 | }
9 |
10 | React.__reactGuardOriginalCreateElement__ = React.createElement
11 | React.createElement = function (type) {
12 | if (
13 | typeof type === 'function' &&
14 | type.prototype &&
15 | 'render' in type.prototype &&
16 | !('__guardedRender__' in type.prototype)
17 | ) {
18 | type.prototype.__guardedRender__ = type.prototype.render
19 | type.prototype.render = function () {
20 | try {
21 | return this.__guardedRender__()
22 | } catch (err) {
23 | return guardFn(err, {
24 | props: this.props,
25 | state: this.state,
26 | displayName: this.constructor.displayName || this.constructor.name
27 | })
28 | }
29 | }
30 | } else if (
31 | typeof type === 'function' &&
32 | (!type.prototype || !('render' in type.prototype))
33 | ) {
34 | var guardedType = type
35 | var _type
36 | if (guardedType.__reactGuardGuardedFunction__) {
37 | _type = guardedType.__reactGuardGuardedFunction__
38 | } else {
39 | _type = function (props, publicContext, updateQueue) {
40 | try {
41 | return guardedType(props, publicContext, updateQueue)
42 | } catch (err) {
43 | return guardFn(err, {
44 | props: props,
45 | displayName: guardedType.displayName
46 | })
47 | }
48 | }
49 | Object.assign(_type, guardedType)
50 | guardedType.__reactGuardGuardedFunction__ = _type
51 | }
52 | type = _type
53 | }
54 | return React.__reactGuardOriginalCreateElement__.apply(
55 | React,
56 | [type].concat(Array.prototype.slice.call(arguments, 1))
57 | )
58 | }
59 | }
60 |
61 | module.exports = naiveReactGuard
62 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-guard",
3 | "version": "0.6.0",
4 | "author": "Sasha Koss ",
5 | "description": "React Guard automagically catches exceptions from React components, extracts useful debug information and prevents White Screen of Death",
6 | "license": "MIT",
7 | "main": "index.js",
8 | "files": [
9 | "index.js",
10 | "naive.js",
11 | "CHANGELOG.md",
12 | "README.md",
13 | "LICENSE.md"
14 | ],
15 | "repository": "https://github.com/kossnocorp/react-guard",
16 | "engine": {
17 | "node": ">= 6"
18 | },
19 | "dependencies": {},
20 | "devDependencies": {
21 | "ava": "^0.21.0",
22 | "coveralls": "^2.13.1",
23 | "nyc": "^11.0.3",
24 | "sinon": "^2.4.1",
25 | "snazzy": "^7.0.0",
26 | "standard": "^10.0.2"
27 | },
28 | "scripts": {
29 | "lint": "standard --verbose | snazzy",
30 | "test": "nyc ava test/**/index.js --source '!tmp'",
31 | "test-watch": "npm test -- --watch",
32 | "test-coverage-report": "nyc report --reporter=html",
33 | "test-coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
34 | "test-performance": "node test/react-15/performance.js"
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/scripts/prepare.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | set -e
4 |
5 | yarn --version || (echo "Install Yarn: npm install -g yarn" && exit 1)
6 |
7 | # Install main packages
8 | yarn
9 |
10 | # Install test packages
11 | cd test/react-15
12 | yarn
13 |
--------------------------------------------------------------------------------
/test/index.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable no-throw-literal */
2 |
3 | const reactGuard = require('..')
4 | const naiveReactGuard = require('../naive')
5 | const test = require('ava')
6 | const sinon = require('sinon')
7 |
8 | module.exports = function (React, ReactDOMServer) {
9 | test.always.afterEach(() => {
10 | reactGuard.restore(React)
11 | // Restore spy
12 | React.createElement.restore && React.createElement.restore()
13 | })
14 | ;[
15 | { title: 'reactGuard', reactGuardFn: reactGuard },
16 | { title: 'Naive reactGuard', reactGuardFn: naiveReactGuard }
17 | ].forEach(({ title, reactGuardFn }) => {
18 | if (React.createClass) {
19 | test(`${title} › a component created using React.createClass`, t => {
20 | const guardSpy = sinon.spy(() =>
21 | React.createElement('div', {}, 'w', '0', '0', 't')
22 | )
23 | reactGuardFn(React, guardSpy)
24 | const CreateClassComponent = React.createClass({
25 | getInitialState () {
26 | return { b: 'B' }
27 | },
28 | render () {
29 | throw { error: 'test' }
30 | }
31 | })
32 | CreateClassComponent.displayName = 'CreateClassComponent'
33 | const result = ReactDOMServer.renderToStaticMarkup(
34 | React.createElement(CreateClassComponent, { a: 'A' }, 'children')
35 | )
36 | t.is(result, 'w00t
')
37 | t.true(guardSpy.called)
38 | t.true(
39 | guardSpy.calledWith(
40 | { error: 'test' },
41 | {
42 | props: { a: 'A', children: 'children' },
43 | state: { b: 'B' },
44 | displayName: 'CreateClassComponent'
45 | }
46 | )
47 | )
48 | })
49 |
50 | test(`${title} › a component created using React.createClass with empty displayName`, t => {
51 | const guardSpy = sinon.spy(() =>
52 | React.createElement('div', {}, 'w', '0', '0', 't')
53 | )
54 | reactGuardFn(React, guardSpy)
55 | const CreateClassComponent = React.createClass({
56 | getInitialState () {
57 | return { b: 'B' }
58 | },
59 | render () {
60 | throw { error: 'test' }
61 | }
62 | })
63 | CreateClassComponent.displayName = ''
64 | const result = ReactDOMServer.renderToStaticMarkup(
65 | React.createElement(CreateClassComponent, { a: 'A' }, 'children')
66 | )
67 | t.is(result, 'w00t
')
68 | t.true(guardSpy.called)
69 | t.true(
70 | guardSpy.calledWith(
71 | { error: 'test' },
72 | {
73 | props: { a: 'A', children: 'children' },
74 | state: { b: 'B' },
75 | displayName: 'Constructor'
76 | }
77 | )
78 | )
79 | })
80 |
81 | test(`${title} › a warm component created using React.createClass`, t => {
82 | reactGuardFn(React)
83 | const CreateClassComponent = React.createClass({
84 | render () {
85 | return React.createElement('div', {}, 'w', '0', '0', 't')
86 | }
87 | })
88 | React.createElement(CreateClassComponent, { a: 'A' }, 'children')
89 | const result = ReactDOMServer.renderToStaticMarkup(
90 | React.createElement(CreateClassComponent, { a: 'A' }, 'children')
91 | )
92 | t.is(result, 'w00t
')
93 | })
94 | }
95 |
96 | test(`${title} › a component inherited from React.Component`, t => {
97 | const guardSpy = sinon.spy(() =>
98 | React.createElement('div', {}, 'w', '0', '0', 't')
99 | )
100 | reactGuardFn(React, guardSpy)
101 | class ClassComponent extends React.Component {
102 | constructor (props) {
103 | super(props)
104 | this.state = { b: 'B' }
105 | }
106 | render () {
107 | throw { error: 'test' }
108 | }
109 | }
110 | ClassComponent.displayName = 'CustomDisplayName'
111 | const result = ReactDOMServer.renderToStaticMarkup(
112 | React.createElement(ClassComponent, { a: 'A' }, 'children')
113 | )
114 | t.is(result, 'w00t
')
115 | t.true(guardSpy.called)
116 | t.true(
117 | guardSpy.calledWith(
118 | { error: 'test' },
119 | {
120 | props: { a: 'A', children: 'children' },
121 | state: { b: 'B' },
122 | displayName: 'CustomDisplayName'
123 | }
124 | )
125 | )
126 | })
127 |
128 | test(`${title} › a component inherited from React.Component with empty displayName`, t => {
129 | const guardSpy = sinon.spy(() =>
130 | React.createElement('div', {}, 'w', '0', '0', 't')
131 | )
132 | reactGuardFn(React, guardSpy)
133 | class ClassComponent extends React.Component {
134 | constructor (props) {
135 | super(props)
136 | this.state = { b: 'B' }
137 | }
138 | render () {
139 | throw { error: 'test' }
140 | }
141 | }
142 | ClassComponent.displayName = ''
143 | const result = ReactDOMServer.renderToStaticMarkup(
144 | React.createElement(ClassComponent, { a: 'A' }, 'children')
145 | )
146 | t.is(result, 'w00t
')
147 | t.true(guardSpy.called)
148 | t.true(
149 | guardSpy.calledWith(
150 | { error: 'test' },
151 | {
152 | props: { a: 'A', children: 'children' },
153 | state: { b: 'B' },
154 | displayName: 'ClassComponent'
155 | }
156 | )
157 | )
158 | })
159 |
160 | test(`${title} › a warm component inherited from React.Component`, t => {
161 | reactGuardFn(React)
162 | class ClassComponent extends React.Component {
163 | render () {
164 | return React.createElement('div', {}, 'w', '0', '0', 't')
165 | }
166 | }
167 | React.createElement(ClassComponent, { a: 'A' }, 'children')
168 | const result = ReactDOMServer.renderToStaticMarkup(
169 | React.createElement(ClassComponent, { a: 'A' }, 'children')
170 | )
171 | t.is(result, 'w00t
')
172 | })
173 |
174 | test(`${title} › a component inherited from React.PureComponent`, t => {
175 | const guardSpy = sinon.spy(() =>
176 | React.createElement('div', {}, 'w', '0', '0', 't')
177 | )
178 | reactGuardFn(React, guardSpy)
179 | class PureClassComponent extends React.PureComponent {
180 | render () {
181 | throw { error: 'test' }
182 | }
183 | }
184 | PureClassComponent.displayName = 'CustomDisplayName'
185 | const result = ReactDOMServer.renderToStaticMarkup(
186 | React.createElement(PureClassComponent, { a: 'A' }, 'children')
187 | )
188 | t.is(result, 'w00t
')
189 | t.true(guardSpy.called)
190 | t.true(
191 | guardSpy.calledWith(
192 | { error: 'test' },
193 | {
194 | props: { a: 'A', children: 'children' },
195 | state: null,
196 | displayName: 'CustomDisplayName'
197 | }
198 | )
199 | )
200 | })
201 |
202 | test(`${title} › a component inherited from React.PureComponent`, t => {
203 | const guardSpy = sinon.spy(() =>
204 | React.createElement('div', {}, 'w', '0', '0', 't')
205 | )
206 | reactGuardFn(React, guardSpy)
207 | class PureClassComponent extends React.PureComponent {
208 | render () {
209 | throw { error: 'test' }
210 | }
211 | }
212 | PureClassComponent.displayName = ''
213 | const result = ReactDOMServer.renderToStaticMarkup(
214 | React.createElement(PureClassComponent, { a: 'A' }, 'children')
215 | )
216 | t.is(result, 'w00t
')
217 | t.true(guardSpy.called)
218 | t.true(
219 | guardSpy.calledWith(
220 | { error: 'test' },
221 | {
222 | props: { a: 'A', children: 'children' },
223 | state: null,
224 | displayName: 'PureClassComponent'
225 | }
226 | )
227 | )
228 | })
229 |
230 | test(`${title} › a warm component inherited from React.PureComponent`, t => {
231 | reactGuardFn(React)
232 | class PureClassComponent extends React.PureComponent {
233 | render () {
234 | return React.createElement('div', {}, 'w', '0', '0', 't')
235 | }
236 | }
237 | React.createElement(PureClassComponent, { a: 'A' }, 'children')
238 | const result = ReactDOMServer.renderToStaticMarkup(
239 | React.createElement(PureClassComponent, { a: 'A' }, 'children')
240 | )
241 | t.is(result, 'w00t
')
242 | })
243 |
244 | test(`${title} › a function component`, t => {
245 | const guardSpy = sinon.spy(() =>
246 | React.createElement('div', {}, 'w', '0', '0', 't')
247 | )
248 | reactGuardFn(React, guardSpy)
249 | const FunctionComponent = () => {
250 | throw { error: 'test' }
251 | }
252 | FunctionComponent.displayName = 'FunctionComponent'
253 | const result = ReactDOMServer.renderToStaticMarkup(
254 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
255 | )
256 | t.is(result, 'w00t
')
257 | t.true(guardSpy.called)
258 | t.true(
259 | guardSpy.calledWith(
260 | { error: 'test' },
261 | {
262 | props: { a: 'A', children: 'children' },
263 | displayName: 'FunctionComponent'
264 | }
265 | )
266 | )
267 | })
268 |
269 | test(`${title} › an arrow function component`, t => {
270 | const guardSpy = sinon.spy(() =>
271 | React.createElement('div', {}, 'w', '0', '0', 't')
272 | )
273 | reactGuardFn(React, guardSpy)
274 | const FunctionComponent = () => {
275 | throw { error: 'test' }
276 | }
277 | // Arrow functions don't have the prototype. But because of AVA transpiling
278 | // the source code, there is no way to test it against real arrow functions.
279 | FunctionComponent.prototype = undefined
280 | FunctionComponent.displayName = 'FunctionComponent'
281 | const result = ReactDOMServer.renderToStaticMarkup(
282 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
283 | )
284 | t.is(result, 'w00t
')
285 | t.true(guardSpy.called)
286 | t.true(
287 | guardSpy.calledWith(
288 | { error: 'test' },
289 | {
290 | props: { a: 'A', children: 'children' },
291 | displayName: 'FunctionComponent'
292 | }
293 | )
294 | )
295 | })
296 |
297 | test(`${title} › a function component with empty displayName`, t => {
298 | const guardSpy = sinon.spy(() =>
299 | React.createElement('div', {}, 'w', '0', '0', 't')
300 | )
301 | reactGuardFn(React, guardSpy)
302 | const FunctionComponent = () => {
303 | throw { error: 'test' }
304 | }
305 | FunctionComponent.displayName = ''
306 | const result = ReactDOMServer.renderToStaticMarkup(
307 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
308 | )
309 | t.is(result, 'w00t
')
310 | t.true(guardSpy.called)
311 | t.true(
312 | guardSpy.calledWith(
313 | { error: 'test' },
314 | { props: { a: 'A', children: 'children' }, displayName: '' }
315 | )
316 | )
317 | })
318 |
319 | test(`${title} › a warm function component`, t => {
320 | reactGuardFn(React)
321 | const FunctionComponent = () =>
322 | React.createElement('div', {}, 'w', '0', '0', 't')
323 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
324 | const result = ReactDOMServer.renderToStaticMarkup(
325 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
326 | )
327 | t.is(result, 'w00t
')
328 | })
329 |
330 | test(`${title} › default guard`, t => {
331 | reactGuardFn(React)
332 | const FunctionComponent = () => {
333 | throw { error: 'test' }
334 | }
335 | const result = ReactDOMServer.renderToStaticMarkup(
336 | React.createElement(FunctionComponent, { a: 'A' }, 'children')
337 | )
338 | t.is(result, '')
339 | })
340 |
341 | test(`${title} › createElement called on function component passes all 3 arguments`, t => {
342 | reactGuardFn(React)
343 | const ComponentSpy = sinon.spy()
344 | const element = React.createElement(ComponentSpy)
345 | element.type(
346 | { props: true },
347 | { publicContext: true },
348 | { updateQueue: true }
349 | )
350 | t.true(
351 | ComponentSpy.calledWith(
352 | { props: true },
353 | { publicContext: true },
354 | { updateQueue: true }
355 | )
356 | )
357 | })
358 |
359 | test(`${title} › createElement called on function component saves guarded function`, t => {
360 | const createElement = sinon.spy(React, 'createElement')
361 | reactGuardFn(React)
362 | const FunctionComponent = () => {
363 | return null
364 | }
365 | React.createElement(FunctionComponent)
366 | React.createElement(FunctionComponent)
367 | t.is(createElement.args[0][0], createElement.args[1][0])
368 | })
369 |
370 | test(`${title} › createElement called on function saves all original properties`, t => {
371 | const createElement = sinon.spy(React, 'createElement')
372 | reactGuardFn(React)
373 | const FunctionComponent = () => {
374 | return null
375 | }
376 | FunctionComponent.displayName = 'FunctionComponent'
377 | FunctionComponent.propTypes = {}
378 | React.createElement(FunctionComponent)
379 | const FunctionComponentWrapper = createElement.args[0][0]
380 | t.is(FunctionComponentWrapper.displayName, 'FunctionComponent')
381 | t.is(FunctionComponentWrapper.propTypes, FunctionComponent.propTypes)
382 | })
383 | })
384 |
385 | test('restore function restores the original createElement function', t => {
386 | const createElement = React.createElement
387 | reactGuard(React)
388 | reactGuard.restore(React)
389 | t.is(React.createElement, createElement)
390 | })
391 |
392 | test('restore function removes cached create element', t => {
393 | reactGuard(React)
394 | reactGuard.restore(React)
395 | t.false('__reactGuardOriginalCreateElement__' in React)
396 | })
397 |
398 | test('restore function saves the original createElement if guard was not called', t => {
399 | const createElement = React.createElement
400 | reactGuard.restore(React)
401 | t.true(typeof createElement === 'function')
402 | t.is(React.createElement, createElement)
403 | })
404 | }
405 |
--------------------------------------------------------------------------------
/test/react-15/index.js:
--------------------------------------------------------------------------------
1 | const React = require('react')
2 | const ReactDOMServer = require('react-dom/server')
3 | const runTests = require('..')
4 |
5 | runTests(React, ReactDOMServer)
6 |
--------------------------------------------------------------------------------
/test/react-15/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "react": "15",
4 | "react-dom": "15"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/react-15/performance.js:
--------------------------------------------------------------------------------
1 | const reactGuard = require('../..')
2 | const React = require('react')
3 |
4 | const numberOfRuns = 10000
5 |
6 | const fakeGuardFn = () => {}
7 |
8 | // Original / div
9 |
10 | const test1Array = new Array(numberOfRuns).fill(undefined)
11 | console.time(`Original createElement called ${numberOfRuns} times with a div`)
12 | test1Array.forEach((_, index) => {
13 | React.createElement('div', { key: index })
14 | })
15 | console.timeEnd(
16 | `Original createElement called ${numberOfRuns} times with a div`
17 | )
18 |
19 | // Original / class component
20 |
21 | const test2Components = new Array(numberOfRuns)
22 | .fill(undefined)
23 | .map((_, index) => {
24 | return React.createClass({
25 | render () {
26 | return null
27 | }
28 | })
29 | })
30 | const test2Array = new Array(numberOfRuns).fill(undefined)
31 | console.time(
32 | `Original createElement called ${numberOfRuns} times with a class component`
33 | )
34 | test2Array.forEach((_, index) => {
35 | React.createElement(test2Components[index], { key: index })
36 | })
37 | console.timeEnd(
38 | `Original createElement called ${numberOfRuns} times with a class component`
39 | )
40 |
41 | // Original / class component + try-catch
42 |
43 | const test2ComponentsTryCatch = new Array(numberOfRuns)
44 | .fill(undefined)
45 | .map((_, index) => {
46 | return React.createClass({
47 | render () {
48 | return null
49 | }
50 | })
51 | })
52 | const test2ArrayTryCatch = new Array(numberOfRuns).fill(undefined)
53 | console.time(
54 | `Original createElement called ${numberOfRuns} times with a class component (try-catch)`
55 | )
56 | test2ArrayTryCatch.forEach((_, index) => {
57 | React.createElement(test2ComponentsTryCatch[index], { key: index })
58 | })
59 | console.timeEnd(
60 | `Original createElement called ${numberOfRuns} times with a class component (try-catch)`
61 | )
62 |
63 | // Original / function component
64 |
65 | const test3Components = new Array(numberOfRuns)
66 | .fill(undefined)
67 | .map((_, index) => {
68 | return function () {
69 | return null
70 | }
71 | })
72 | const test3Array = new Array(numberOfRuns).fill(undefined)
73 | console.time(
74 | `Original createElement called ${numberOfRuns} times with a function component`
75 | )
76 | test3Array.forEach((_, index) => {
77 | React.createElement(test3Components[index], { key: index })
78 | })
79 | console.timeEnd(
80 | `Original createElement called ${numberOfRuns} times with a function component`
81 | )
82 |
83 | // Original / function component + try-catch
84 |
85 | const test3ComponentsTryCatch = new Array(numberOfRuns)
86 | .fill(undefined)
87 | .map((_, index) => {
88 | return function () {
89 | /* eslint-disable no-unreachable */
90 | try {
91 | return null
92 | } catch (err) {
93 | fakeGuardFn(err)
94 | }
95 | /* eslint-enable no-unreachable */
96 | }
97 | })
98 | const test3ArrayTryCatch = new Array(numberOfRuns).fill(undefined)
99 | console.time(
100 | `Original createElement called ${numberOfRuns} times with a function component (try-catch)`
101 | )
102 | test3ArrayTryCatch.forEach((_, index) => {
103 | React.createElement(test3ComponentsTryCatch[index], { key: index })
104 | })
105 | console.timeEnd(
106 | `Original createElement called ${numberOfRuns} times with a function component (try-catch)`
107 | )
108 |
109 | // Patched / div
110 |
111 | const test1ArrayPatched = new Array(numberOfRuns).fill(undefined)
112 | reactGuard(React)
113 | console.time(`Patched createElement called ${numberOfRuns} times with a div`)
114 | test1ArrayPatched.forEach((_, index) => {
115 | React.createElement('div', { key: index })
116 | })
117 | console.timeEnd(`Patched createElement called ${numberOfRuns} times with a div`)
118 | reactGuard.restore(React)
119 |
120 | // Patched / class component
121 |
122 | const test2ComponentsPatched = new Array(numberOfRuns)
123 | .fill(undefined)
124 | .map((_, index) => {
125 | return React.createClass({
126 | render () {
127 | return null
128 | }
129 | })
130 | })
131 | const test2ArrayPatched = new Array(numberOfRuns).fill(undefined)
132 | reactGuard(React)
133 | console.time(
134 | `Patched createElement called ${numberOfRuns} times with a class component (cold)`
135 | )
136 | test2ArrayPatched.forEach((_, index) => {
137 | React.createElement(test2ComponentsPatched[index], { key: index })
138 | })
139 | console.timeEnd(
140 | `Patched createElement called ${numberOfRuns} times with a class component (cold)`
141 | )
142 | console.time(
143 | `Patched createElement called ${numberOfRuns} times with a class component (warm)`
144 | )
145 | test2ArrayPatched.forEach((_, index) => {
146 | React.createElement(test2ComponentsPatched[index], { key: index })
147 | })
148 | console.timeEnd(
149 | `Patched createElement called ${numberOfRuns} times with a class component (warm)`
150 | )
151 | reactGuard.restore(React)
152 |
153 | // Patched / function component
154 |
155 | const test3ComponentsPatched = new Array(numberOfRuns)
156 | .fill(undefined)
157 | .map((_, index) => {
158 | return function () {
159 | return null
160 | }
161 | })
162 | const test3ArrayPatched = new Array(numberOfRuns).fill(undefined)
163 | reactGuard(React)
164 | console.time(
165 | `Patched createElement called ${numberOfRuns} times with a function component (cold)`
166 | )
167 | test3ArrayPatched.forEach((_, index) => {
168 | React.createElement(test3ComponentsPatched[index], { key: index })
169 | })
170 | console.timeEnd(
171 | `Patched createElement called ${numberOfRuns} times with a function component (cold)`
172 | )
173 | console.time(
174 | `Patched createElement called ${numberOfRuns} times with a function component (warm)`
175 | )
176 | test3ArrayPatched.forEach((_, index) => {
177 | React.createElement(test3ComponentsPatched[index], { key: index })
178 | })
179 | console.timeEnd(
180 | `Patched createElement called ${numberOfRuns} times with a function component (warm)`
181 | )
182 | reactGuard.restore(React)
183 |
--------------------------------------------------------------------------------
/test/react-15/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 | asap@~2.0.3:
4 | version "2.0.5"
5 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
6 |
7 | core-js@^1.0.0:
8 | version "1.2.7"
9 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
10 |
11 | encoding@^0.1.11:
12 | version "0.1.12"
13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
14 | dependencies:
15 | iconv-lite "~0.4.13"
16 |
17 | fbjs@^0.8.4:
18 | version "0.8.6"
19 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.6.tgz#7eb67d6986b2d5007a9b6e92e0e7cb6f75cad290"
20 | dependencies:
21 | core-js "^1.0.0"
22 | isomorphic-fetch "^2.1.1"
23 | loose-envify "^1.0.0"
24 | object-assign "^4.1.0"
25 | promise "^7.1.1"
26 | ua-parser-js "^0.7.9"
27 |
28 | iconv-lite@~0.4.13:
29 | version "0.4.13"
30 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
31 |
32 | is-stream@^1.0.1:
33 | version "1.1.0"
34 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
35 |
36 | isomorphic-fetch@^2.1.1:
37 | version "2.2.1"
38 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
39 | dependencies:
40 | node-fetch "^1.0.1"
41 | whatwg-fetch ">=0.10.0"
42 |
43 | js-tokens@^2.0.0:
44 | version "2.0.0"
45 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
46 |
47 | loose-envify@^1.0.0, loose-envify@^1.1.0:
48 | version "1.3.0"
49 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
50 | dependencies:
51 | js-tokens "^2.0.0"
52 |
53 | node-fetch@^1.0.1:
54 | version "1.6.3"
55 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04"
56 | dependencies:
57 | encoding "^0.1.11"
58 | is-stream "^1.0.1"
59 |
60 | object-assign@^4.1.0:
61 | version "4.1.0"
62 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
63 |
64 | promise@^7.1.1:
65 | version "7.1.1"
66 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
67 | dependencies:
68 | asap "~2.0.3"
69 |
70 | react-dom@15:
71 | version "15.3.2"
72 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.3.2.tgz#c46b0aa5380d7b838e7a59c4a7beff2ed315531f"
73 |
74 | react@15:
75 | version "15.3.2"
76 | resolved "https://registry.yarnpkg.com/react/-/react-15.3.2.tgz#a7bccd2fee8af126b0317e222c28d1d54528d09e"
77 | dependencies:
78 | fbjs "^0.8.4"
79 | loose-envify "^1.1.0"
80 | object-assign "^4.1.0"
81 |
82 | ua-parser-js@^0.7.9:
83 | version "0.7.12"
84 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
85 |
86 | whatwg-fetch@>=0.10.0:
87 | version "2.0.0"
88 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.0.tgz#cde428ac2b1dab717c96bc6785feb557619b249e"
89 |
90 |
--------------------------------------------------------------------------------
/test/react-16/index.js:
--------------------------------------------------------------------------------
1 | const React = require('react')
2 | const ReactDOMServer = require('react-dom/server')
3 | const runTests = require('..')
4 |
5 | runTests(React, ReactDOMServer)
6 |
--------------------------------------------------------------------------------
/test/react-16/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "react": "16.0.0-beta.2",
4 | "react-dom": "16.0.0-beta.2"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/react-16/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | asap@~2.0.3:
6 | version "2.0.5"
7 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
8 |
9 | core-js@^1.0.0:
10 | version "1.2.7"
11 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
12 |
13 | encoding@^0.1.11:
14 | version "0.1.12"
15 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
16 | dependencies:
17 | iconv-lite "~0.4.13"
18 |
19 | fbjs@^0.8.9:
20 | version "0.8.14"
21 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c"
22 | dependencies:
23 | core-js "^1.0.0"
24 | isomorphic-fetch "^2.1.1"
25 | loose-envify "^1.0.0"
26 | object-assign "^4.1.0"
27 | promise "^7.1.1"
28 | setimmediate "^1.0.5"
29 | ua-parser-js "^0.7.9"
30 |
31 | iconv-lite@~0.4.13:
32 | version "0.4.13"
33 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
34 |
35 | is-stream@^1.0.1:
36 | version "1.1.0"
37 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
38 |
39 | isomorphic-fetch@^2.1.1:
40 | version "2.2.1"
41 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
42 | dependencies:
43 | node-fetch "^1.0.1"
44 | whatwg-fetch ">=0.10.0"
45 |
46 | js-tokens@^2.0.0:
47 | version "2.0.0"
48 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
49 |
50 | js-tokens@^3.0.0:
51 | version "3.0.2"
52 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
53 |
54 | loose-envify@^1.0.0, loose-envify@^1.1.0:
55 | version "1.3.0"
56 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
57 | dependencies:
58 | js-tokens "^2.0.0"
59 |
60 | loose-envify@^1.3.1:
61 | version "1.3.1"
62 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
63 | dependencies:
64 | js-tokens "^3.0.0"
65 |
66 | node-fetch@^1.0.1:
67 | version "1.6.3"
68 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04"
69 | dependencies:
70 | encoding "^0.1.11"
71 | is-stream "^1.0.1"
72 |
73 | object-assign@^4.1.0:
74 | version "4.1.0"
75 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
76 |
77 | promise@^7.1.1:
78 | version "7.1.1"
79 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
80 | dependencies:
81 | asap "~2.0.3"
82 |
83 | prop-types@^15.5.6:
84 | version "15.5.10"
85 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
86 | dependencies:
87 | fbjs "^0.8.9"
88 | loose-envify "^1.3.1"
89 |
90 | react-dom@16.0.0-beta.2:
91 | version "16.0.0-beta.2"
92 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.0.0-beta.2.tgz#55352e02d93112f06cce7f83ca378a1beae465d9"
93 | dependencies:
94 | fbjs "^0.8.9"
95 | loose-envify "^1.1.0"
96 | object-assign "^4.1.0"
97 | prop-types "^15.5.6"
98 |
99 | react@16.0.0-beta.2:
100 | version "16.0.0-beta.2"
101 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0-beta.2.tgz#340bbaa28c8678499353586cf46d096438dee561"
102 | dependencies:
103 | fbjs "^0.8.9"
104 | loose-envify "^1.1.0"
105 | object-assign "^4.1.0"
106 | prop-types "^15.5.6"
107 |
108 | setimmediate@^1.0.5:
109 | version "1.0.5"
110 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
111 |
112 | ua-parser-js@^0.7.9:
113 | version "0.7.12"
114 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
115 |
116 | whatwg-fetch@>=0.10.0:
117 | version "2.0.0"
118 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.0.tgz#cde428ac2b1dab717c96bc6785feb557619b249e"
119 |
--------------------------------------------------------------------------------
/test/react-18/index.js:
--------------------------------------------------------------------------------
1 | const React = require('react')
2 | const ReactDOMServer = require('react-dom/server')
3 | const runTests = require('..')
4 |
5 | runTests(React, ReactDOMServer)
6 |
--------------------------------------------------------------------------------
/test/react-18/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "react": "18",
4 | "react-dom": "18"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/react-18/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | js-tokens@^2.0.0:
6 | version "2.0.0"
7 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
8 |
9 | loose-envify@^1.1.0:
10 | version "1.3.0"
11 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
12 | dependencies:
13 | js-tokens "^2.0.0"
14 |
15 | react-dom@18:
16 | version "18.2.0"
17 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
18 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
19 | dependencies:
20 | loose-envify "^1.1.0"
21 | scheduler "^0.23.0"
22 |
23 | react@18:
24 | version "18.2.0"
25 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
26 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
27 | dependencies:
28 | loose-envify "^1.1.0"
29 |
30 | scheduler@^0.23.0:
31 | version "0.23.0"
32 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
33 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
34 | dependencies:
35 | loose-envify "^1.1.0"
36 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ava/babel-plugin-throws-helper@^2.0.0":
6 | version "2.0.0"
7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c"
8 |
9 | "@ava/babel-preset-stage-4@^1.1.0":
10 | version "1.1.0"
11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd"
12 | dependencies:
13 | babel-plugin-check-es2015-constants "^6.8.0"
14 | babel-plugin-syntax-trailing-function-commas "^6.20.0"
15 | babel-plugin-transform-async-to-generator "^6.16.0"
16 | babel-plugin-transform-es2015-destructuring "^6.19.0"
17 | babel-plugin-transform-es2015-function-name "^6.9.0"
18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
19 | babel-plugin-transform-es2015-parameters "^6.21.0"
20 | babel-plugin-transform-es2015-spread "^6.8.0"
21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0"
22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0"
23 | babel-plugin-transform-exponentiation-operator "^6.8.0"
24 | package-hash "^1.2.0"
25 |
26 | "@ava/babel-preset-transform-test-files@^3.0.0":
27 | version "3.0.0"
28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7"
29 | dependencies:
30 | "@ava/babel-plugin-throws-helper" "^2.0.0"
31 | babel-plugin-espower "^2.3.2"
32 |
33 | "@ava/write-file-atomic@^2.2.0":
34 | version "2.2.0"
35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247"
36 | dependencies:
37 | graceful-fs "^4.1.11"
38 | imurmurhash "^0.1.4"
39 | slide "^1.1.5"
40 |
41 | "@concordance/react@^1.0.0":
42 | version "1.0.0"
43 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734"
44 | dependencies:
45 | arrify "^1.0.1"
46 |
47 | abbrev@1:
48 | version "1.0.9"
49 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
50 |
51 | acorn-jsx@^3.0.0:
52 | version "3.0.1"
53 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
54 | dependencies:
55 | acorn "^3.0.4"
56 |
57 | acorn@^3.0.4:
58 | version "3.3.0"
59 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
60 |
61 | acorn@^5.0.1:
62 | version "5.1.1"
63 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
64 |
65 | ajv-keywords@^1.0.0:
66 | version "1.1.1"
67 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
68 |
69 | ajv@^4.7.0:
70 | version "4.9.0"
71 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.9.0.tgz#5a358085747b134eb567d6d15e015f1d7802f45c"
72 | dependencies:
73 | co "^4.6.0"
74 | json-stable-stringify "^1.0.1"
75 |
76 | align-text@^0.1.1, align-text@^0.1.3:
77 | version "0.1.4"
78 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
79 | dependencies:
80 | kind-of "^3.0.2"
81 | longest "^1.0.1"
82 | repeat-string "^1.5.2"
83 |
84 | amdefine@>=0.0.4:
85 | version "1.0.1"
86 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
87 |
88 | ansi-align@^2.0.0:
89 | version "2.0.0"
90 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
91 | dependencies:
92 | string-width "^2.0.0"
93 |
94 | ansi-escapes@^1.1.0:
95 | version "1.4.0"
96 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
97 |
98 | ansi-escapes@^2.0.0:
99 | version "2.0.0"
100 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b"
101 |
102 | ansi-regex@^2.0.0:
103 | version "2.0.0"
104 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
105 |
106 | ansi-regex@^3.0.0:
107 | version "3.0.0"
108 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
109 |
110 | ansi-styles@^2.2.1:
111 | version "2.2.1"
112 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
113 |
114 | ansi-styles@^3.1.0:
115 | version "3.2.0"
116 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
117 | dependencies:
118 | color-convert "^1.9.0"
119 |
120 | ansi-styles@~1.0.0:
121 | version "1.0.0"
122 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178"
123 |
124 | anymatch@^1.3.0:
125 | version "1.3.0"
126 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
127 | dependencies:
128 | arrify "^1.0.0"
129 | micromatch "^2.1.5"
130 |
131 | append-transform@^0.4.0:
132 | version "0.4.0"
133 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
134 | dependencies:
135 | default-require-extensions "^1.0.0"
136 |
137 | aproba@^1.0.3:
138 | version "1.0.4"
139 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0"
140 |
141 | archy@^1.0.0:
142 | version "1.0.0"
143 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
144 |
145 | are-we-there-yet@~1.1.2:
146 | version "1.1.2"
147 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
148 | dependencies:
149 | delegates "^1.0.0"
150 | readable-stream "^2.0.0 || ^1.1.13"
151 |
152 | argparse@^1.0.7:
153 | version "1.0.9"
154 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
155 | dependencies:
156 | sprintf-js "~1.0.2"
157 |
158 | arr-diff@^2.0.0:
159 | version "2.0.0"
160 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
161 | dependencies:
162 | arr-flatten "^1.0.1"
163 |
164 | arr-exclude@^1.0.0:
165 | version "1.0.0"
166 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631"
167 |
168 | arr-flatten@^1.0.1:
169 | version "1.0.1"
170 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
171 |
172 | array-differ@^1.0.0:
173 | version "1.0.0"
174 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
175 |
176 | array-find-index@^1.0.1:
177 | version "1.0.2"
178 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
179 |
180 | array-union@^1.0.1:
181 | version "1.0.2"
182 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
183 | dependencies:
184 | array-uniq "^1.0.1"
185 |
186 | array-uniq@^1.0.1, array-uniq@^1.0.2:
187 | version "1.0.3"
188 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
189 |
190 | array-unique@^0.2.1:
191 | version "0.2.1"
192 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
193 |
194 | array.prototype.find@^2.0.1:
195 | version "2.0.4"
196 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90"
197 | dependencies:
198 | define-properties "^1.1.2"
199 | es-abstract "^1.7.0"
200 |
201 | arrify@^1.0.0, arrify@^1.0.1:
202 | version "1.0.1"
203 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
204 |
205 | asn1@~0.2.3:
206 | version "0.2.3"
207 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
208 |
209 | assert-plus@^0.2.0:
210 | version "0.2.0"
211 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
212 |
213 | assert-plus@^1.0.0:
214 | version "1.0.0"
215 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
216 |
217 | async-each@^1.0.0:
218 | version "1.0.1"
219 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
220 |
221 | async@^1.4.0:
222 | version "1.5.2"
223 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
224 |
225 | async@~0.2.6:
226 | version "0.2.10"
227 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
228 |
229 | asynckit@^0.4.0:
230 | version "0.4.0"
231 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
232 |
233 | auto-bind@^1.1.0:
234 | version "1.1.0"
235 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961"
236 |
237 | ava-init@^0.2.0:
238 | version "0.2.1"
239 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.1.tgz#75ac4c8553326290d2866e63b62fa7035684bd58"
240 | dependencies:
241 | arr-exclude "^1.0.0"
242 | execa "^0.7.0"
243 | has-yarn "^1.0.0"
244 | read-pkg-up "^2.0.0"
245 | write-pkg "^3.1.0"
246 |
247 | ava@^0.21.0:
248 | version "0.21.0"
249 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.21.0.tgz#cd8d8ea3546f57150dea38548b9f72f8ca583d29"
250 | dependencies:
251 | "@ava/babel-preset-stage-4" "^1.1.0"
252 | "@ava/babel-preset-transform-test-files" "^3.0.0"
253 | "@ava/write-file-atomic" "^2.2.0"
254 | "@concordance/react" "^1.0.0"
255 | ansi-escapes "^2.0.0"
256 | ansi-styles "^3.1.0"
257 | arr-flatten "^1.0.1"
258 | array-union "^1.0.1"
259 | array-uniq "^1.0.2"
260 | arrify "^1.0.0"
261 | auto-bind "^1.1.0"
262 | ava-init "^0.2.0"
263 | babel-core "^6.17.0"
264 | bluebird "^3.0.0"
265 | caching-transform "^1.0.0"
266 | chalk "^2.0.1"
267 | chokidar "^1.4.2"
268 | clean-stack "^1.1.1"
269 | clean-yaml-object "^0.1.0"
270 | cli-cursor "^2.1.0"
271 | cli-spinners "^1.0.0"
272 | cli-truncate "^1.0.0"
273 | co-with-promise "^4.6.0"
274 | code-excerpt "^2.1.0"
275 | common-path-prefix "^1.0.0"
276 | concordance "^3.0.0"
277 | convert-source-map "^1.2.0"
278 | core-assert "^0.2.0"
279 | currently-unhandled "^0.4.1"
280 | debug "^2.2.0"
281 | dot-prop "^4.1.0"
282 | empower-core "^0.6.1"
283 | equal-length "^1.0.0"
284 | figures "^2.0.0"
285 | find-cache-dir "^1.0.0"
286 | fn-name "^2.0.0"
287 | get-port "^3.0.0"
288 | globby "^6.0.0"
289 | has-flag "^2.0.0"
290 | hullabaloo-config-manager "^1.1.0"
291 | ignore-by-default "^1.0.0"
292 | import-local "^0.1.1"
293 | indent-string "^3.0.0"
294 | is-ci "^1.0.7"
295 | is-generator-fn "^1.0.0"
296 | is-obj "^1.0.0"
297 | is-observable "^0.2.0"
298 | is-promise "^2.1.0"
299 | js-yaml "^3.8.2"
300 | last-line-stream "^1.0.0"
301 | lodash.clonedeepwith "^4.5.0"
302 | lodash.debounce "^4.0.3"
303 | lodash.difference "^4.3.0"
304 | lodash.flatten "^4.2.0"
305 | loud-rejection "^1.2.0"
306 | make-dir "^1.0.0"
307 | matcher "^1.0.0"
308 | md5-hex "^2.0.0"
309 | meow "^3.7.0"
310 | ms "^2.0.0"
311 | multimatch "^2.1.0"
312 | observable-to-promise "^0.5.0"
313 | option-chain "^1.0.0"
314 | package-hash "^2.0.0"
315 | pkg-conf "^2.0.0"
316 | plur "^2.0.0"
317 | pretty-ms "^2.0.0"
318 | require-precompiled "^0.1.0"
319 | resolve-cwd "^2.0.0"
320 | safe-buffer "^5.1.1"
321 | slash "^1.0.0"
322 | source-map-support "^0.4.0"
323 | stack-utils "^1.0.0"
324 | strip-ansi "^4.0.0"
325 | strip-bom-buf "^1.0.0"
326 | supports-color "^4.0.0"
327 | time-require "^0.1.2"
328 | trim-off-newlines "^1.0.1"
329 | unique-temp-dir "^1.0.0"
330 | update-notifier "^2.1.0"
331 |
332 | aws-sign2@~0.6.0:
333 | version "0.6.0"
334 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
335 |
336 | aws4@^1.2.1:
337 | version "1.5.0"
338 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
339 |
340 | babel-code-frame@^6.16.0:
341 | version "6.16.0"
342 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de"
343 | dependencies:
344 | chalk "^1.1.0"
345 | esutils "^2.0.2"
346 | js-tokens "^2.0.0"
347 |
348 | babel-code-frame@^6.22.0:
349 | version "6.22.0"
350 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
351 | dependencies:
352 | chalk "^1.1.0"
353 | esutils "^2.0.2"
354 | js-tokens "^3.0.0"
355 |
356 | babel-core@^6.17.0, babel-core@^6.24.1:
357 | version "6.25.0"
358 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
359 | dependencies:
360 | babel-code-frame "^6.22.0"
361 | babel-generator "^6.25.0"
362 | babel-helpers "^6.24.1"
363 | babel-messages "^6.23.0"
364 | babel-register "^6.24.1"
365 | babel-runtime "^6.22.0"
366 | babel-template "^6.25.0"
367 | babel-traverse "^6.25.0"
368 | babel-types "^6.25.0"
369 | babylon "^6.17.2"
370 | convert-source-map "^1.1.0"
371 | debug "^2.1.1"
372 | json5 "^0.5.0"
373 | lodash "^4.2.0"
374 | minimatch "^3.0.2"
375 | path-is-absolute "^1.0.0"
376 | private "^0.1.6"
377 | slash "^1.0.0"
378 | source-map "^0.5.0"
379 |
380 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.25.0:
381 | version "6.25.0"
382 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc"
383 | dependencies:
384 | babel-messages "^6.23.0"
385 | babel-runtime "^6.22.0"
386 | babel-types "^6.25.0"
387 | detect-indent "^4.0.0"
388 | jsesc "^1.3.0"
389 | lodash "^4.2.0"
390 | source-map "^0.5.0"
391 | trim-right "^1.0.1"
392 |
393 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
394 | version "6.24.1"
395 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
396 | dependencies:
397 | babel-helper-explode-assignable-expression "^6.24.1"
398 | babel-runtime "^6.22.0"
399 | babel-types "^6.24.1"
400 |
401 | babel-helper-call-delegate@^6.24.1:
402 | version "6.24.1"
403 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
404 | dependencies:
405 | babel-helper-hoist-variables "^6.24.1"
406 | babel-runtime "^6.22.0"
407 | babel-traverse "^6.24.1"
408 | babel-types "^6.24.1"
409 |
410 | babel-helper-explode-assignable-expression@^6.24.1:
411 | version "6.24.1"
412 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
413 | dependencies:
414 | babel-runtime "^6.22.0"
415 | babel-traverse "^6.24.1"
416 | babel-types "^6.24.1"
417 |
418 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0:
419 | version "6.18.0"
420 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6"
421 | dependencies:
422 | babel-helper-get-function-arity "^6.18.0"
423 | babel-runtime "^6.0.0"
424 | babel-template "^6.8.0"
425 | babel-traverse "^6.18.0"
426 | babel-types "^6.18.0"
427 |
428 | babel-helper-get-function-arity@^6.18.0:
429 | version "6.18.0"
430 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24"
431 | dependencies:
432 | babel-runtime "^6.0.0"
433 | babel-types "^6.18.0"
434 |
435 | babel-helper-get-function-arity@^6.24.1:
436 | version "6.24.1"
437 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
438 | dependencies:
439 | babel-runtime "^6.22.0"
440 | babel-types "^6.24.1"
441 |
442 | babel-helper-hoist-variables@^6.24.1:
443 | version "6.24.1"
444 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
445 | dependencies:
446 | babel-runtime "^6.22.0"
447 | babel-types "^6.24.1"
448 |
449 | babel-helper-regex@^6.24.1:
450 | version "6.24.1"
451 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8"
452 | dependencies:
453 | babel-runtime "^6.22.0"
454 | babel-types "^6.24.1"
455 | lodash "^4.2.0"
456 |
457 | babel-helper-remap-async-to-generator@^6.16.0:
458 | version "6.18.0"
459 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.18.0.tgz#336cdf3cab650bb191b02fc16a3708e7be7f9ce5"
460 | dependencies:
461 | babel-helper-function-name "^6.18.0"
462 | babel-runtime "^6.0.0"
463 | babel-template "^6.16.0"
464 | babel-traverse "^6.18.0"
465 | babel-types "^6.18.0"
466 |
467 | babel-helpers@^6.24.1:
468 | version "6.24.1"
469 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
470 | dependencies:
471 | babel-runtime "^6.22.0"
472 | babel-template "^6.24.1"
473 |
474 | babel-messages@^6.23.0:
475 | version "6.23.0"
476 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
477 | dependencies:
478 | babel-runtime "^6.22.0"
479 |
480 | babel-messages@^6.8.0:
481 | version "6.8.0"
482 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
483 | dependencies:
484 | babel-runtime "^6.0.0"
485 |
486 | babel-plugin-check-es2015-constants@^6.8.0:
487 | version "6.22.0"
488 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
489 | dependencies:
490 | babel-runtime "^6.22.0"
491 |
492 | babel-plugin-espower@^2.3.2:
493 | version "2.3.2"
494 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e"
495 | dependencies:
496 | babel-generator "^6.1.0"
497 | babylon "^6.1.0"
498 | call-matcher "^1.0.0"
499 | core-js "^2.0.0"
500 | espower-location-detector "^1.0.0"
501 | espurify "^1.6.0"
502 | estraverse "^4.1.1"
503 |
504 | babel-plugin-syntax-async-functions@^6.8.0:
505 | version "6.13.0"
506 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
507 |
508 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
509 | version "6.13.0"
510 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
511 |
512 | babel-plugin-syntax-trailing-function-commas@^6.20.0:
513 | version "6.22.0"
514 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
515 |
516 | babel-plugin-transform-async-to-generator@^6.16.0:
517 | version "6.16.0"
518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999"
519 | dependencies:
520 | babel-helper-remap-async-to-generator "^6.16.0"
521 | babel-plugin-syntax-async-functions "^6.8.0"
522 | babel-runtime "^6.0.0"
523 |
524 | babel-plugin-transform-es2015-destructuring@^6.19.0:
525 | version "6.23.0"
526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
527 | dependencies:
528 | babel-runtime "^6.22.0"
529 |
530 | babel-plugin-transform-es2015-function-name@^6.9.0:
531 | version "6.9.0"
532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719"
533 | dependencies:
534 | babel-helper-function-name "^6.8.0"
535 | babel-runtime "^6.9.0"
536 | babel-types "^6.9.0"
537 |
538 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0:
539 | version "6.18.0"
540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc"
541 | dependencies:
542 | babel-plugin-transform-strict-mode "^6.18.0"
543 | babel-runtime "^6.0.0"
544 | babel-template "^6.16.0"
545 | babel-types "^6.18.0"
546 |
547 | babel-plugin-transform-es2015-parameters@^6.21.0:
548 | version "6.24.1"
549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
550 | dependencies:
551 | babel-helper-call-delegate "^6.24.1"
552 | babel-helper-get-function-arity "^6.24.1"
553 | babel-runtime "^6.22.0"
554 | babel-template "^6.24.1"
555 | babel-traverse "^6.24.1"
556 | babel-types "^6.24.1"
557 |
558 | babel-plugin-transform-es2015-spread@^6.8.0:
559 | version "6.22.0"
560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
561 | dependencies:
562 | babel-runtime "^6.22.0"
563 |
564 | babel-plugin-transform-es2015-sticky-regex@^6.8.0:
565 | version "6.24.1"
566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
567 | dependencies:
568 | babel-helper-regex "^6.24.1"
569 | babel-runtime "^6.22.0"
570 | babel-types "^6.24.1"
571 |
572 | babel-plugin-transform-es2015-unicode-regex@^6.11.0:
573 | version "6.24.1"
574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
575 | dependencies:
576 | babel-helper-regex "^6.24.1"
577 | babel-runtime "^6.22.0"
578 | regexpu-core "^2.0.0"
579 |
580 | babel-plugin-transform-exponentiation-operator@^6.8.0:
581 | version "6.24.1"
582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
583 | dependencies:
584 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
585 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
586 | babel-runtime "^6.22.0"
587 |
588 | babel-plugin-transform-strict-mode@^6.18.0:
589 | version "6.18.0"
590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d"
591 | dependencies:
592 | babel-runtime "^6.0.0"
593 | babel-types "^6.18.0"
594 |
595 | babel-register@^6.24.1:
596 | version "6.24.1"
597 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
598 | dependencies:
599 | babel-core "^6.24.1"
600 | babel-runtime "^6.22.0"
601 | core-js "^2.4.0"
602 | home-or-tmp "^2.0.0"
603 | lodash "^4.2.0"
604 | mkdirp "^0.5.1"
605 | source-map-support "^0.4.2"
606 |
607 | babel-runtime@^6.0.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1:
608 | version "6.18.0"
609 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078"
610 | dependencies:
611 | core-js "^2.4.0"
612 | regenerator-runtime "^0.9.5"
613 |
614 | babel-runtime@^6.22.0:
615 | version "6.25.0"
616 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c"
617 | dependencies:
618 | core-js "^2.4.0"
619 | regenerator-runtime "^0.10.0"
620 |
621 | babel-template@^6.16.0, babel-template@^6.8.0:
622 | version "6.16.0"
623 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
624 | dependencies:
625 | babel-runtime "^6.9.0"
626 | babel-traverse "^6.16.0"
627 | babel-types "^6.16.0"
628 | babylon "^6.11.0"
629 | lodash "^4.2.0"
630 |
631 | babel-template@^6.24.1, babel-template@^6.25.0:
632 | version "6.25.0"
633 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071"
634 | dependencies:
635 | babel-runtime "^6.22.0"
636 | babel-traverse "^6.25.0"
637 | babel-types "^6.25.0"
638 | babylon "^6.17.2"
639 | lodash "^4.2.0"
640 |
641 | babel-traverse@^6.16.0, babel-traverse@^6.18.0:
642 | version "6.18.0"
643 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e"
644 | dependencies:
645 | babel-code-frame "^6.16.0"
646 | babel-messages "^6.8.0"
647 | babel-runtime "^6.9.0"
648 | babel-types "^6.18.0"
649 | babylon "^6.11.0"
650 | debug "^2.2.0"
651 | globals "^9.0.0"
652 | invariant "^2.2.0"
653 | lodash "^4.2.0"
654 |
655 | babel-traverse@^6.24.1, babel-traverse@^6.25.0:
656 | version "6.25.0"
657 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
658 | dependencies:
659 | babel-code-frame "^6.22.0"
660 | babel-messages "^6.23.0"
661 | babel-runtime "^6.22.0"
662 | babel-types "^6.25.0"
663 | babylon "^6.17.2"
664 | debug "^2.2.0"
665 | globals "^9.0.0"
666 | invariant "^2.2.0"
667 | lodash "^4.2.0"
668 |
669 | babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.9.0:
670 | version "6.18.0"
671 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8"
672 | dependencies:
673 | babel-runtime "^6.9.1"
674 | esutils "^2.0.2"
675 | lodash "^4.2.0"
676 | to-fast-properties "^1.0.1"
677 |
678 | babel-types@^6.24.1, babel-types@^6.25.0:
679 | version "6.25.0"
680 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e"
681 | dependencies:
682 | babel-runtime "^6.22.0"
683 | esutils "^2.0.2"
684 | lodash "^4.2.0"
685 | to-fast-properties "^1.0.1"
686 |
687 | babylon@^6.1.0, babylon@^6.17.2, babylon@^6.17.4:
688 | version "6.17.4"
689 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a"
690 |
691 | babylon@^6.11.0:
692 | version "6.13.1"
693 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb"
694 |
695 | balanced-match@^0.4.1:
696 | version "0.4.2"
697 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
698 |
699 | bcrypt-pbkdf@^1.0.0:
700 | version "1.0.0"
701 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
702 | dependencies:
703 | tweetnacl "^0.14.3"
704 |
705 | binary-extensions@^1.0.0:
706 | version "1.7.0"
707 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d"
708 |
709 | bl@~1.1.2:
710 | version "1.1.2"
711 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398"
712 | dependencies:
713 | readable-stream "~2.0.5"
714 |
715 | block-stream@*:
716 | version "0.0.9"
717 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
718 | dependencies:
719 | inherits "~2.0.0"
720 |
721 | bluebird@^3.0.0:
722 | version "3.4.6"
723 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f"
724 |
725 | boom@2.x.x:
726 | version "2.10.1"
727 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
728 | dependencies:
729 | hoek "2.x.x"
730 |
731 | boxen@^1.0.0:
732 | version "1.2.1"
733 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.1.tgz#0f11e7fe344edb9397977fc13ede7f64d956481d"
734 | dependencies:
735 | ansi-align "^2.0.0"
736 | camelcase "^4.0.0"
737 | chalk "^2.0.1"
738 | cli-boxes "^1.0.0"
739 | string-width "^2.0.0"
740 | term-size "^1.2.0"
741 | widest-line "^1.0.0"
742 |
743 | brace-expansion@^1.0.0:
744 | version "1.1.6"
745 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
746 | dependencies:
747 | balanced-match "^0.4.1"
748 | concat-map "0.0.1"
749 |
750 | braces@^1.8.2:
751 | version "1.8.5"
752 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
753 | dependencies:
754 | expand-range "^1.8.1"
755 | preserve "^0.2.0"
756 | repeat-element "^1.1.2"
757 |
758 | buf-compare@^1.0.0:
759 | version "1.0.1"
760 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a"
761 |
762 | buffer-shims@^1.0.0:
763 | version "1.0.0"
764 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
765 |
766 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
767 | version "1.1.1"
768 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
769 |
770 | caching-transform@^1.0.0:
771 | version "1.0.1"
772 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1"
773 | dependencies:
774 | md5-hex "^1.2.0"
775 | mkdirp "^0.5.1"
776 | write-file-atomic "^1.1.4"
777 |
778 | call-matcher@^1.0.0:
779 | version "1.0.0"
780 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.0.tgz#eafa31036dbfaa9c0d1716f12ddacfd9c69ef22f"
781 | dependencies:
782 | core-js "^2.0.0"
783 | deep-equal "^1.0.0"
784 | espurify "^1.6.0"
785 | estraverse "^4.0.0"
786 |
787 | call-signature@0.0.2:
788 | version "0.0.2"
789 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996"
790 |
791 | caller-path@^0.1.0:
792 | version "0.1.0"
793 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
794 | dependencies:
795 | callsites "^0.2.0"
796 |
797 | callsites@^0.2.0:
798 | version "0.2.0"
799 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
800 |
801 | camelcase-keys@^2.0.0:
802 | version "2.1.0"
803 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
804 | dependencies:
805 | camelcase "^2.0.0"
806 | map-obj "^1.0.0"
807 |
808 | camelcase@^1.0.2:
809 | version "1.2.1"
810 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
811 |
812 | camelcase@^2.0.0:
813 | version "2.1.1"
814 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
815 |
816 | camelcase@^3.0.0:
817 | version "3.0.0"
818 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
819 |
820 | camelcase@^4.0.0, camelcase@^4.1.0:
821 | version "4.1.0"
822 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
823 |
824 | capture-stack-trace@^1.0.0:
825 | version "1.0.0"
826 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
827 |
828 | caseless@~0.11.0:
829 | version "0.11.0"
830 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
831 |
832 | center-align@^0.1.1:
833 | version "0.1.3"
834 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
835 | dependencies:
836 | align-text "^0.1.3"
837 | lazy-cache "^1.0.3"
838 |
839 | chalk@^0.4.0:
840 | version "0.4.0"
841 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"
842 | dependencies:
843 | ansi-styles "~1.0.0"
844 | has-color "~0.1.0"
845 | strip-ansi "~0.1.0"
846 |
847 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
848 | version "1.1.3"
849 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
850 | dependencies:
851 | ansi-styles "^2.2.1"
852 | escape-string-regexp "^1.0.2"
853 | has-ansi "^2.0.0"
854 | strip-ansi "^3.0.0"
855 | supports-color "^2.0.0"
856 |
857 | chalk@^2.0.1:
858 | version "2.0.1"
859 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d"
860 | dependencies:
861 | ansi-styles "^3.1.0"
862 | escape-string-regexp "^1.0.5"
863 | supports-color "^4.0.0"
864 |
865 | chokidar@^1.4.2:
866 | version "1.6.1"
867 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
868 | dependencies:
869 | anymatch "^1.3.0"
870 | async-each "^1.0.0"
871 | glob-parent "^2.0.0"
872 | inherits "^2.0.1"
873 | is-binary-path "^1.0.0"
874 | is-glob "^2.0.0"
875 | path-is-absolute "^1.0.0"
876 | readdirp "^2.0.0"
877 | optionalDependencies:
878 | fsevents "^1.0.0"
879 |
880 | ci-info@^1.0.0:
881 | version "1.0.0"
882 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534"
883 |
884 | circular-json@^0.3.0:
885 | version "0.3.1"
886 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
887 |
888 | clean-stack@^1.1.1:
889 | version "1.3.0"
890 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31"
891 |
892 | clean-yaml-object@^0.1.0:
893 | version "0.1.0"
894 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68"
895 |
896 | cli-boxes@^1.0.0:
897 | version "1.0.0"
898 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
899 |
900 | cli-cursor@^1.0.1:
901 | version "1.0.2"
902 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
903 | dependencies:
904 | restore-cursor "^1.0.1"
905 |
906 | cli-cursor@^2.1.0:
907 | version "2.1.0"
908 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
909 | dependencies:
910 | restore-cursor "^2.0.0"
911 |
912 | cli-spinners@^1.0.0:
913 | version "1.0.0"
914 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a"
915 |
916 | cli-truncate@^1.0.0:
917 | version "1.1.0"
918 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086"
919 | dependencies:
920 | slice-ansi "^1.0.0"
921 | string-width "^2.0.0"
922 |
923 | cli-width@^2.0.0:
924 | version "2.1.0"
925 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
926 |
927 | cliui@^2.1.0:
928 | version "2.1.0"
929 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
930 | dependencies:
931 | center-align "^0.1.1"
932 | right-align "^0.1.1"
933 | wordwrap "0.0.2"
934 |
935 | cliui@^3.2.0:
936 | version "3.2.0"
937 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
938 | dependencies:
939 | string-width "^1.0.1"
940 | strip-ansi "^3.0.1"
941 | wrap-ansi "^2.0.0"
942 |
943 | co-with-promise@^4.6.0:
944 | version "4.6.0"
945 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7"
946 | dependencies:
947 | pinkie-promise "^1.0.0"
948 |
949 | co@^4.6.0:
950 | version "4.6.0"
951 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
952 |
953 | code-excerpt@^2.1.0:
954 | version "2.1.0"
955 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147"
956 | dependencies:
957 | convert-to-spaces "^1.0.1"
958 |
959 | code-point-at@^1.0.0:
960 | version "1.1.0"
961 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
962 |
963 | color-convert@^1.9.0:
964 | version "1.9.0"
965 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
966 | dependencies:
967 | color-name "^1.1.1"
968 |
969 | color-name@^1.1.1:
970 | version "1.1.3"
971 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
972 |
973 | combined-stream@^1.0.5, combined-stream@~1.0.5:
974 | version "1.0.5"
975 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
976 | dependencies:
977 | delayed-stream "~1.0.0"
978 |
979 | commander@^2.9.0:
980 | version "2.9.0"
981 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
982 | dependencies:
983 | graceful-readlink ">= 1.0.0"
984 |
985 | common-path-prefix@^1.0.0:
986 | version "1.0.0"
987 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0"
988 |
989 | commondir@^1.0.1:
990 | version "1.0.1"
991 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
992 |
993 | concat-map@0.0.1:
994 | version "0.0.1"
995 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
996 |
997 | concat-stream@^1.5.0, concat-stream@^1.5.2:
998 | version "1.5.2"
999 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266"
1000 | dependencies:
1001 | inherits "~2.0.1"
1002 | readable-stream "~2.0.0"
1003 | typedarray "~0.0.5"
1004 |
1005 | concordance@^3.0.0:
1006 | version "3.0.0"
1007 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29"
1008 | dependencies:
1009 | date-time "^2.1.0"
1010 | esutils "^2.0.2"
1011 | fast-diff "^1.1.1"
1012 | function-name-support "^0.2.0"
1013 | js-string-escape "^1.0.1"
1014 | lodash.clonedeep "^4.5.0"
1015 | lodash.flattendeep "^4.4.0"
1016 | lodash.merge "^4.6.0"
1017 | md5-hex "^2.0.0"
1018 | semver "^5.3.0"
1019 | well-known-symbols "^1.0.0"
1020 |
1021 | configstore@^3.0.0:
1022 | version "3.1.1"
1023 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90"
1024 | dependencies:
1025 | dot-prop "^4.1.0"
1026 | graceful-fs "^4.1.2"
1027 | make-dir "^1.0.0"
1028 | unique-string "^1.0.0"
1029 | write-file-atomic "^2.0.0"
1030 | xdg-basedir "^3.0.0"
1031 |
1032 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1033 | version "1.1.0"
1034 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1035 |
1036 | contains-path@^0.1.0:
1037 | version "0.1.0"
1038 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1039 |
1040 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0:
1041 | version "1.3.0"
1042 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67"
1043 |
1044 | convert-to-spaces@^1.0.1:
1045 | version "1.0.2"
1046 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715"
1047 |
1048 | core-assert@^0.2.0:
1049 | version "0.2.1"
1050 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f"
1051 | dependencies:
1052 | buf-compare "^1.0.0"
1053 | is-error "^2.2.0"
1054 |
1055 | core-js@^2.0.0, core-js@^2.4.0:
1056 | version "2.4.1"
1057 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1058 |
1059 | core-util-is@~1.0.0:
1060 | version "1.0.2"
1061 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1062 |
1063 | coveralls@^2.13.1:
1064 | version "2.13.1"
1065 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178"
1066 | dependencies:
1067 | js-yaml "3.6.1"
1068 | lcov-parse "0.0.10"
1069 | log-driver "1.2.5"
1070 | minimist "1.2.0"
1071 | request "2.79.0"
1072 |
1073 | create-error-class@^3.0.0:
1074 | version "3.0.2"
1075 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
1076 | dependencies:
1077 | capture-stack-trace "^1.0.0"
1078 |
1079 | cross-spawn@^4:
1080 | version "4.0.2"
1081 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
1082 | dependencies:
1083 | lru-cache "^4.0.1"
1084 | which "^1.2.9"
1085 |
1086 | cross-spawn@^5.0.1:
1087 | version "5.1.0"
1088 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1089 | dependencies:
1090 | lru-cache "^4.0.1"
1091 | shebang-command "^1.2.0"
1092 | which "^1.2.9"
1093 |
1094 | cryptiles@2.x.x:
1095 | version "2.0.5"
1096 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1097 | dependencies:
1098 | boom "2.x.x"
1099 |
1100 | crypto-random-string@^1.0.0:
1101 | version "1.0.0"
1102 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
1103 |
1104 | currently-unhandled@^0.4.1:
1105 | version "0.4.1"
1106 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1107 | dependencies:
1108 | array-find-index "^1.0.1"
1109 |
1110 | d@^0.1.1, d@~0.1.1:
1111 | version "0.1.1"
1112 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
1113 | dependencies:
1114 | es5-ext "~0.10.2"
1115 |
1116 | dashdash@^1.12.0:
1117 | version "1.14.0"
1118 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141"
1119 | dependencies:
1120 | assert-plus "^1.0.0"
1121 |
1122 | date-time@^0.1.1:
1123 | version "0.1.1"
1124 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07"
1125 |
1126 | date-time@^2.1.0:
1127 | version "2.1.0"
1128 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2"
1129 | dependencies:
1130 | time-zone "^1.0.0"
1131 |
1132 | debug-log@^1.0.0, debug-log@^1.0.1:
1133 | version "1.0.1"
1134 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f"
1135 |
1136 | debug@^2.1.1, debug@^2.2.0:
1137 | version "2.3.2"
1138 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.2.tgz#94cb466ef7d6d2c7e5245cdd6e4104f2d0d70d30"
1139 | dependencies:
1140 | ms "0.7.2"
1141 |
1142 | debug@^2.6.3, debug@^2.6.8:
1143 | version "2.6.8"
1144 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1145 | dependencies:
1146 | ms "2.0.0"
1147 |
1148 | debug@~2.2.0:
1149 | version "2.2.0"
1150 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1151 | dependencies:
1152 | ms "0.7.1"
1153 |
1154 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1155 | version "1.2.0"
1156 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1157 |
1158 | deep-equal@^1.0.0:
1159 | version "1.0.1"
1160 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
1161 |
1162 | deep-extend@~0.4.0:
1163 | version "0.4.1"
1164 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
1165 |
1166 | deep-is@~0.1.3:
1167 | version "0.1.3"
1168 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1169 |
1170 | default-require-extensions@^1.0.0:
1171 | version "1.0.0"
1172 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
1173 | dependencies:
1174 | strip-bom "^2.0.0"
1175 |
1176 | define-properties@^1.1.2:
1177 | version "1.1.2"
1178 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1179 | dependencies:
1180 | foreach "^2.0.5"
1181 | object-keys "^1.0.8"
1182 |
1183 | deglob@^2.1.0:
1184 | version "2.1.0"
1185 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a"
1186 | dependencies:
1187 | find-root "^1.0.0"
1188 | glob "^7.0.5"
1189 | ignore "^3.0.9"
1190 | pkg-config "^1.1.0"
1191 | run-parallel "^1.1.2"
1192 | uniq "^1.0.1"
1193 |
1194 | del@^2.0.2:
1195 | version "2.2.2"
1196 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1197 | dependencies:
1198 | globby "^5.0.0"
1199 | is-path-cwd "^1.0.0"
1200 | is-path-in-cwd "^1.0.0"
1201 | object-assign "^4.0.1"
1202 | pify "^2.0.0"
1203 | pinkie-promise "^2.0.0"
1204 | rimraf "^2.2.8"
1205 |
1206 | delayed-stream@~1.0.0:
1207 | version "1.0.0"
1208 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1209 |
1210 | delegates@^1.0.0:
1211 | version "1.0.0"
1212 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1213 |
1214 | detect-indent@^4.0.0:
1215 | version "4.0.0"
1216 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1217 | dependencies:
1218 | repeating "^2.0.0"
1219 |
1220 | detect-indent@^5.0.0:
1221 | version "5.0.0"
1222 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
1223 |
1224 | diff@^3.1.0:
1225 | version "3.3.0"
1226 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9"
1227 |
1228 | doctrine@1.5.0, doctrine@^1.2.2:
1229 | version "1.5.0"
1230 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1231 | dependencies:
1232 | esutils "^2.0.2"
1233 | isarray "^1.0.0"
1234 |
1235 | doctrine@^2.0.0:
1236 | version "2.0.0"
1237 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63"
1238 | dependencies:
1239 | esutils "^2.0.2"
1240 | isarray "^1.0.0"
1241 |
1242 | dot-prop@^4.1.0:
1243 | version "4.2.0"
1244 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
1245 | dependencies:
1246 | is-obj "^1.0.0"
1247 |
1248 | duplexer3@^0.1.4:
1249 | version "0.1.4"
1250 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
1251 |
1252 | ecc-jsbn@~0.1.1:
1253 | version "0.1.1"
1254 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1255 | dependencies:
1256 | jsbn "~0.1.0"
1257 |
1258 | empower-core@^0.6.1:
1259 | version "0.6.1"
1260 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1"
1261 | dependencies:
1262 | call-signature "0.0.2"
1263 | core-js "^2.0.0"
1264 |
1265 | equal-length@^1.0.0:
1266 | version "1.0.1"
1267 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c"
1268 |
1269 | error-ex@^1.2.0:
1270 | version "1.3.0"
1271 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
1272 | dependencies:
1273 | is-arrayish "^0.2.1"
1274 |
1275 | es-abstract@^1.7.0:
1276 | version "1.7.0"
1277 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
1278 | dependencies:
1279 | es-to-primitive "^1.1.1"
1280 | function-bind "^1.1.0"
1281 | is-callable "^1.1.3"
1282 | is-regex "^1.0.3"
1283 |
1284 | es-to-primitive@^1.1.1:
1285 | version "1.1.1"
1286 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1287 | dependencies:
1288 | is-callable "^1.1.1"
1289 | is-date-object "^1.0.1"
1290 | is-symbol "^1.0.1"
1291 |
1292 | 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:
1293 | version "0.10.12"
1294 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
1295 | dependencies:
1296 | es6-iterator "2"
1297 | es6-symbol "~3.1"
1298 |
1299 | es6-error@^4.0.1, es6-error@^4.0.2:
1300 | version "4.0.2"
1301 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98"
1302 |
1303 | es6-iterator@2:
1304 | version "2.0.0"
1305 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
1306 | dependencies:
1307 | d "^0.1.1"
1308 | es5-ext "^0.10.7"
1309 | es6-symbol "3"
1310 |
1311 | es6-map@^0.1.3:
1312 | version "0.1.4"
1313 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
1314 | dependencies:
1315 | d "~0.1.1"
1316 | es5-ext "~0.10.11"
1317 | es6-iterator "2"
1318 | es6-set "~0.1.3"
1319 | es6-symbol "~3.1.0"
1320 | event-emitter "~0.3.4"
1321 |
1322 | es6-set@~0.1.3:
1323 | version "0.1.4"
1324 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
1325 | dependencies:
1326 | d "~0.1.1"
1327 | es5-ext "~0.10.11"
1328 | es6-iterator "2"
1329 | es6-symbol "3"
1330 | event-emitter "~0.3.4"
1331 |
1332 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
1333 | version "3.1.0"
1334 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
1335 | dependencies:
1336 | d "~0.1.1"
1337 | es5-ext "~0.10.11"
1338 |
1339 | es6-weak-map@^2.0.1:
1340 | version "2.0.1"
1341 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
1342 | dependencies:
1343 | d "^0.1.1"
1344 | es5-ext "^0.10.8"
1345 | es6-iterator "2"
1346 | es6-symbol "3"
1347 |
1348 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5:
1349 | version "1.0.5"
1350 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1351 |
1352 | escope@^3.6.0:
1353 | version "3.6.0"
1354 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1355 | dependencies:
1356 | es6-map "^0.1.3"
1357 | es6-weak-map "^2.0.1"
1358 | esrecurse "^4.1.0"
1359 | estraverse "^4.1.1"
1360 |
1361 | eslint-config-standard-jsx@4.0.1:
1362 | version "4.0.1"
1363 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642"
1364 |
1365 | eslint-config-standard@10.2.1:
1366 | version "10.2.1"
1367 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591"
1368 |
1369 | eslint-import-resolver-node@^0.2.0:
1370 | version "0.2.3"
1371 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
1372 | dependencies:
1373 | debug "^2.2.0"
1374 | object-assign "^4.0.1"
1375 | resolve "^1.1.6"
1376 |
1377 | eslint-module-utils@^2.0.0:
1378 | version "2.1.1"
1379 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
1380 | dependencies:
1381 | debug "^2.6.8"
1382 | pkg-dir "^1.0.0"
1383 |
1384 | eslint-plugin-import@~2.2.0:
1385 | version "2.2.0"
1386 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e"
1387 | dependencies:
1388 | builtin-modules "^1.1.1"
1389 | contains-path "^0.1.0"
1390 | debug "^2.2.0"
1391 | doctrine "1.5.0"
1392 | eslint-import-resolver-node "^0.2.0"
1393 | eslint-module-utils "^2.0.0"
1394 | has "^1.0.1"
1395 | lodash.cond "^4.3.0"
1396 | minimatch "^3.0.3"
1397 | pkg-up "^1.0.0"
1398 |
1399 | eslint-plugin-node@~4.2.2:
1400 | version "4.2.3"
1401 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.3.tgz#c04390ab8dbcbb6887174023d6f3a72769e63b97"
1402 | dependencies:
1403 | ignore "^3.0.11"
1404 | minimatch "^3.0.2"
1405 | object-assign "^4.0.1"
1406 | resolve "^1.1.7"
1407 | semver "5.3.0"
1408 |
1409 | eslint-plugin-promise@~3.5.0:
1410 | version "3.5.0"
1411 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca"
1412 |
1413 | eslint-plugin-react@~6.10.0:
1414 | version "6.10.3"
1415 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78"
1416 | dependencies:
1417 | array.prototype.find "^2.0.1"
1418 | doctrine "^1.2.2"
1419 | has "^1.0.1"
1420 | jsx-ast-utils "^1.3.4"
1421 | object.assign "^4.0.4"
1422 |
1423 | eslint-plugin-standard@~3.0.1:
1424 | version "3.0.1"
1425 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2"
1426 |
1427 | eslint@~3.19.0:
1428 | version "3.19.0"
1429 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
1430 | dependencies:
1431 | babel-code-frame "^6.16.0"
1432 | chalk "^1.1.3"
1433 | concat-stream "^1.5.2"
1434 | debug "^2.1.1"
1435 | doctrine "^2.0.0"
1436 | escope "^3.6.0"
1437 | espree "^3.4.0"
1438 | esquery "^1.0.0"
1439 | estraverse "^4.2.0"
1440 | esutils "^2.0.2"
1441 | file-entry-cache "^2.0.0"
1442 | glob "^7.0.3"
1443 | globals "^9.14.0"
1444 | ignore "^3.2.0"
1445 | imurmurhash "^0.1.4"
1446 | inquirer "^0.12.0"
1447 | is-my-json-valid "^2.10.0"
1448 | is-resolvable "^1.0.0"
1449 | js-yaml "^3.5.1"
1450 | json-stable-stringify "^1.0.0"
1451 | levn "^0.3.0"
1452 | lodash "^4.0.0"
1453 | mkdirp "^0.5.0"
1454 | natural-compare "^1.4.0"
1455 | optionator "^0.8.2"
1456 | path-is-inside "^1.0.1"
1457 | pluralize "^1.2.1"
1458 | progress "^1.1.8"
1459 | require-uncached "^1.0.2"
1460 | shelljs "^0.7.5"
1461 | strip-bom "^3.0.0"
1462 | strip-json-comments "~2.0.1"
1463 | table "^3.7.8"
1464 | text-table "~0.2.0"
1465 | user-home "^2.0.0"
1466 |
1467 | espower-location-detector@^1.0.0:
1468 | version "1.0.0"
1469 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5"
1470 | dependencies:
1471 | is-url "^1.2.1"
1472 | path-is-absolute "^1.0.0"
1473 | source-map "^0.5.0"
1474 | xtend "^4.0.0"
1475 |
1476 | espree@^3.4.0:
1477 | version "3.4.3"
1478 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374"
1479 | dependencies:
1480 | acorn "^5.0.1"
1481 | acorn-jsx "^3.0.0"
1482 |
1483 | esprima@^2.6.0:
1484 | version "2.7.3"
1485 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1486 |
1487 | esprima@^4.0.0:
1488 | version "4.0.0"
1489 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1490 |
1491 | espurify@^1.6.0:
1492 | version "1.6.0"
1493 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.6.0.tgz#6cb993582d9422bd6f2d4b258aadb14833f394f0"
1494 | dependencies:
1495 | core-js "^2.0.0"
1496 |
1497 | esquery@^1.0.0:
1498 | version "1.0.0"
1499 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
1500 | dependencies:
1501 | estraverse "^4.0.0"
1502 |
1503 | esrecurse@^4.1.0:
1504 | version "4.1.0"
1505 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
1506 | dependencies:
1507 | estraverse "~4.1.0"
1508 | object-assign "^4.0.1"
1509 |
1510 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0:
1511 | version "4.2.0"
1512 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1513 |
1514 | estraverse@~4.1.0:
1515 | version "4.1.1"
1516 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
1517 |
1518 | esutils@^2.0.2:
1519 | version "2.0.2"
1520 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1521 |
1522 | event-emitter@~0.3.4:
1523 | version "0.3.4"
1524 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
1525 | dependencies:
1526 | d "~0.1.1"
1527 | es5-ext "~0.10.7"
1528 |
1529 | execa@^0.7.0:
1530 | version "0.7.0"
1531 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1532 | dependencies:
1533 | cross-spawn "^5.0.1"
1534 | get-stream "^3.0.0"
1535 | is-stream "^1.1.0"
1536 | npm-run-path "^2.0.0"
1537 | p-finally "^1.0.0"
1538 | signal-exit "^3.0.0"
1539 | strip-eof "^1.0.0"
1540 |
1541 | exit-hook@^1.0.0:
1542 | version "1.1.1"
1543 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
1544 |
1545 | expand-brackets@^0.1.4:
1546 | version "0.1.5"
1547 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1548 | dependencies:
1549 | is-posix-bracket "^0.1.0"
1550 |
1551 | expand-range@^1.8.1:
1552 | version "1.8.2"
1553 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1554 | dependencies:
1555 | fill-range "^2.1.0"
1556 |
1557 | extend@~3.0.0:
1558 | version "3.0.0"
1559 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1560 |
1561 | extglob@^0.3.1:
1562 | version "0.3.2"
1563 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1564 | dependencies:
1565 | is-extglob "^1.0.0"
1566 |
1567 | extsprintf@1.0.2:
1568 | version "1.0.2"
1569 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1570 |
1571 | fast-diff@^1.1.1:
1572 | version "1.1.1"
1573 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b"
1574 |
1575 | fast-levenshtein@~2.0.4:
1576 | version "2.0.5"
1577 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
1578 |
1579 | figures@^1.3.5:
1580 | version "1.7.0"
1581 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1582 | dependencies:
1583 | escape-string-regexp "^1.0.5"
1584 | object-assign "^4.1.0"
1585 |
1586 | figures@^2.0.0:
1587 | version "2.0.0"
1588 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1589 | dependencies:
1590 | escape-string-regexp "^1.0.5"
1591 |
1592 | file-entry-cache@^2.0.0:
1593 | version "2.0.0"
1594 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1595 | dependencies:
1596 | flat-cache "^1.2.1"
1597 | object-assign "^4.0.1"
1598 |
1599 | filename-regex@^2.0.0:
1600 | version "2.0.0"
1601 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1602 |
1603 | fill-range@^2.1.0:
1604 | version "2.2.3"
1605 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1606 | dependencies:
1607 | is-number "^2.1.0"
1608 | isobject "^2.0.0"
1609 | randomatic "^1.1.3"
1610 | repeat-element "^1.1.2"
1611 | repeat-string "^1.5.2"
1612 |
1613 | find-cache-dir@^0.1.1:
1614 | version "0.1.1"
1615 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1616 | dependencies:
1617 | commondir "^1.0.1"
1618 | mkdirp "^0.5.1"
1619 | pkg-dir "^1.0.0"
1620 |
1621 | find-cache-dir@^1.0.0:
1622 | version "1.0.0"
1623 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
1624 | dependencies:
1625 | commondir "^1.0.1"
1626 | make-dir "^1.0.0"
1627 | pkg-dir "^2.0.0"
1628 |
1629 | find-root@^1.0.0:
1630 | version "1.0.0"
1631 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a"
1632 |
1633 | find-up@^1.0.0:
1634 | version "1.1.2"
1635 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1636 | dependencies:
1637 | path-exists "^2.0.0"
1638 | pinkie-promise "^2.0.0"
1639 |
1640 | find-up@^2.0.0, find-up@^2.1.0:
1641 | version "2.1.0"
1642 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1643 | dependencies:
1644 | locate-path "^2.0.0"
1645 |
1646 | flat-cache@^1.2.1:
1647 | version "1.2.1"
1648 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff"
1649 | dependencies:
1650 | circular-json "^0.3.0"
1651 | del "^2.0.2"
1652 | graceful-fs "^4.1.2"
1653 | write "^0.2.1"
1654 |
1655 | fn-name@^2.0.0:
1656 | version "2.0.1"
1657 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7"
1658 |
1659 | for-in@^0.1.5:
1660 | version "0.1.6"
1661 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
1662 |
1663 | for-own@^0.1.4:
1664 | version "0.1.4"
1665 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
1666 | dependencies:
1667 | for-in "^0.1.5"
1668 |
1669 | foreach@^2.0.5:
1670 | version "2.0.5"
1671 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1672 |
1673 | foreground-child@^1.5.3:
1674 | version "1.5.3"
1675 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.3.tgz#94dd6aba671389867de8e57e99f1c2ecfb15c01a"
1676 | dependencies:
1677 | cross-spawn "^4"
1678 | signal-exit "^3.0.0"
1679 |
1680 | foreground-child@^1.5.6:
1681 | version "1.5.6"
1682 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9"
1683 | dependencies:
1684 | cross-spawn "^4"
1685 | signal-exit "^3.0.0"
1686 |
1687 | forever-agent@~0.6.1:
1688 | version "0.6.1"
1689 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1690 |
1691 | form-data@~2.0.0:
1692 | version "2.0.0"
1693 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25"
1694 | dependencies:
1695 | asynckit "^0.4.0"
1696 | combined-stream "^1.0.5"
1697 | mime-types "^2.1.11"
1698 |
1699 | form-data@~2.1.1:
1700 | version "2.1.4"
1701 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1702 | dependencies:
1703 | asynckit "^0.4.0"
1704 | combined-stream "^1.0.5"
1705 | mime-types "^2.1.12"
1706 |
1707 | formatio@1.2.0:
1708 | version "1.2.0"
1709 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb"
1710 | dependencies:
1711 | samsam "1.x"
1712 |
1713 | fs.realpath@^1.0.0:
1714 | version "1.0.0"
1715 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1716 |
1717 | fsevents@^1.0.0:
1718 | version "1.0.15"
1719 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44"
1720 | dependencies:
1721 | nan "^2.3.0"
1722 | node-pre-gyp "^0.6.29"
1723 |
1724 | fstream-ignore@~1.0.5:
1725 | version "1.0.5"
1726 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1727 | dependencies:
1728 | fstream "^1.0.0"
1729 | inherits "2"
1730 | minimatch "^3.0.0"
1731 |
1732 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
1733 | version "1.0.10"
1734 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822"
1735 | dependencies:
1736 | graceful-fs "^4.1.2"
1737 | inherits "~2.0.0"
1738 | mkdirp ">=0.5 0"
1739 | rimraf "2"
1740 |
1741 | function-bind@^1.0.2, function-bind@^1.1.0:
1742 | version "1.1.0"
1743 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1744 |
1745 | function-name-support@^0.2.0:
1746 | version "0.2.0"
1747 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071"
1748 |
1749 | gauge@~2.6.0:
1750 | version "2.6.0"
1751 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46"
1752 | dependencies:
1753 | aproba "^1.0.3"
1754 | console-control-strings "^1.0.0"
1755 | has-color "^0.1.7"
1756 | has-unicode "^2.0.0"
1757 | object-assign "^4.1.0"
1758 | signal-exit "^3.0.0"
1759 | string-width "^1.0.1"
1760 | strip-ansi "^3.0.1"
1761 | wide-align "^1.1.0"
1762 |
1763 | generate-function@^2.0.0:
1764 | version "2.0.0"
1765 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1766 |
1767 | generate-object-property@^1.1.0:
1768 | version "1.2.0"
1769 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1770 | dependencies:
1771 | is-property "^1.0.0"
1772 |
1773 | get-caller-file@^1.0.1:
1774 | version "1.0.2"
1775 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1776 |
1777 | get-port@^3.0.0:
1778 | version "3.1.0"
1779 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e"
1780 |
1781 | get-stdin@^4.0.1:
1782 | version "4.0.1"
1783 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1784 |
1785 | get-stdin@^5.0.1:
1786 | version "5.0.1"
1787 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
1788 |
1789 | get-stream@^3.0.0:
1790 | version "3.0.0"
1791 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1792 |
1793 | getpass@^0.1.1:
1794 | version "0.1.6"
1795 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1796 | dependencies:
1797 | assert-plus "^1.0.0"
1798 |
1799 | glob-base@^0.3.0:
1800 | version "0.3.0"
1801 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1802 | dependencies:
1803 | glob-parent "^2.0.0"
1804 | is-glob "^2.0.0"
1805 |
1806 | glob-parent@^2.0.0:
1807 | version "2.0.0"
1808 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1809 | dependencies:
1810 | is-glob "^2.0.0"
1811 |
1812 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6:
1813 | version "7.1.1"
1814 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1815 | dependencies:
1816 | fs.realpath "^1.0.0"
1817 | inflight "^1.0.4"
1818 | inherits "2"
1819 | minimatch "^3.0.2"
1820 | once "^1.3.0"
1821 | path-is-absolute "^1.0.0"
1822 |
1823 | globals@^9.0.0:
1824 | version "9.13.0"
1825 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.13.0.tgz#d97706b61600d8dbe94708c367d3fdcf48470b8f"
1826 |
1827 | globals@^9.14.0:
1828 | version "9.18.0"
1829 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1830 |
1831 | globby@^5.0.0:
1832 | version "5.0.0"
1833 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1834 | dependencies:
1835 | array-union "^1.0.1"
1836 | arrify "^1.0.0"
1837 | glob "^7.0.3"
1838 | object-assign "^4.0.1"
1839 | pify "^2.0.0"
1840 | pinkie-promise "^2.0.0"
1841 |
1842 | globby@^6.0.0:
1843 | version "6.1.0"
1844 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1845 | dependencies:
1846 | array-union "^1.0.1"
1847 | glob "^7.0.3"
1848 | object-assign "^4.0.1"
1849 | pify "^2.0.0"
1850 | pinkie-promise "^2.0.0"
1851 |
1852 | got@^6.7.1:
1853 | version "6.7.1"
1854 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
1855 | dependencies:
1856 | create-error-class "^3.0.0"
1857 | duplexer3 "^0.1.4"
1858 | get-stream "^3.0.0"
1859 | is-redirect "^1.0.0"
1860 | is-retry-allowed "^1.0.0"
1861 | is-stream "^1.0.0"
1862 | lowercase-keys "^1.0.0"
1863 | safe-buffer "^5.0.1"
1864 | timed-out "^4.0.0"
1865 | unzip-response "^2.0.1"
1866 | url-parse-lax "^1.0.0"
1867 |
1868 | graceful-fs@^4.1.11:
1869 | version "4.1.11"
1870 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1871 |
1872 | graceful-fs@^4.1.2:
1873 | version "4.1.10"
1874 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131"
1875 |
1876 | "graceful-readlink@>= 1.0.0":
1877 | version "1.0.1"
1878 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1879 |
1880 | handlebars@^4.0.3:
1881 | version "4.0.6"
1882 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7"
1883 | dependencies:
1884 | async "^1.4.0"
1885 | optimist "^0.6.1"
1886 | source-map "^0.4.4"
1887 | optionalDependencies:
1888 | uglify-js "^2.6"
1889 |
1890 | har-validator@~2.0.6:
1891 | version "2.0.6"
1892 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
1893 | dependencies:
1894 | chalk "^1.1.1"
1895 | commander "^2.9.0"
1896 | is-my-json-valid "^2.12.4"
1897 | pinkie-promise "^2.0.0"
1898 |
1899 | has-ansi@^2.0.0:
1900 | version "2.0.0"
1901 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1902 | dependencies:
1903 | ansi-regex "^2.0.0"
1904 |
1905 | has-color@^0.1.7, has-color@~0.1.0:
1906 | version "0.1.7"
1907 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
1908 |
1909 | has-flag@^1.0.0:
1910 | version "1.0.0"
1911 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1912 |
1913 | has-flag@^2.0.0:
1914 | version "2.0.0"
1915 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1916 |
1917 | has-unicode@^2.0.0:
1918 | version "2.0.1"
1919 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1920 |
1921 | has-yarn@^1.0.0:
1922 | version "1.0.0"
1923 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7"
1924 |
1925 | has@^1.0.1:
1926 | version "1.0.1"
1927 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1928 | dependencies:
1929 | function-bind "^1.0.2"
1930 |
1931 | hawk@~3.1.3:
1932 | version "3.1.3"
1933 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1934 | dependencies:
1935 | boom "2.x.x"
1936 | cryptiles "2.x.x"
1937 | hoek "2.x.x"
1938 | sntp "1.x.x"
1939 |
1940 | hoek@2.x.x:
1941 | version "2.16.3"
1942 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1943 |
1944 | home-or-tmp@^2.0.0:
1945 | version "2.0.0"
1946 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1947 | dependencies:
1948 | os-homedir "^1.0.0"
1949 | os-tmpdir "^1.0.1"
1950 |
1951 | hosted-git-info@^2.1.4:
1952 | version "2.1.5"
1953 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b"
1954 |
1955 | http-signature@~1.1.0:
1956 | version "1.1.1"
1957 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1958 | dependencies:
1959 | assert-plus "^0.2.0"
1960 | jsprim "^1.2.2"
1961 | sshpk "^1.7.0"
1962 |
1963 | hullabaloo-config-manager@^1.1.0:
1964 | version "1.1.1"
1965 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3"
1966 | dependencies:
1967 | dot-prop "^4.1.0"
1968 | es6-error "^4.0.2"
1969 | graceful-fs "^4.1.11"
1970 | indent-string "^3.1.0"
1971 | json5 "^0.5.1"
1972 | lodash.clonedeep "^4.5.0"
1973 | lodash.clonedeepwith "^4.5.0"
1974 | lodash.isequal "^4.5.0"
1975 | lodash.merge "^4.6.0"
1976 | md5-hex "^2.0.0"
1977 | package-hash "^2.0.0"
1978 | pkg-dir "^2.0.0"
1979 | resolve-from "^3.0.0"
1980 | safe-buffer "^5.0.1"
1981 |
1982 | ignore-by-default@^1.0.0:
1983 | version "1.0.1"
1984 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
1985 |
1986 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0:
1987 | version "3.3.3"
1988 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d"
1989 |
1990 | import-lazy@^2.1.0:
1991 | version "2.1.0"
1992 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
1993 |
1994 | import-local@^0.1.1:
1995 | version "0.1.1"
1996 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8"
1997 | dependencies:
1998 | pkg-dir "^2.0.0"
1999 | resolve-cwd "^2.0.0"
2000 |
2001 | imurmurhash@^0.1.4:
2002 | version "0.1.4"
2003 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2004 |
2005 | indent-string@^2.1.0:
2006 | version "2.1.0"
2007 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
2008 | dependencies:
2009 | repeating "^2.0.0"
2010 |
2011 | indent-string@^3.0.0, indent-string@^3.1.0:
2012 | version "3.2.0"
2013 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
2014 |
2015 | inflight@^1.0.4:
2016 | version "1.0.6"
2017 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2018 | dependencies:
2019 | once "^1.3.0"
2020 | wrappy "1"
2021 |
2022 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1:
2023 | version "2.0.3"
2024 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2025 |
2026 | ini@~1.3.0:
2027 | version "1.3.4"
2028 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
2029 |
2030 | inquirer@^0.12.0:
2031 | version "0.12.0"
2032 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
2033 | dependencies:
2034 | ansi-escapes "^1.1.0"
2035 | ansi-regex "^2.0.0"
2036 | chalk "^1.0.0"
2037 | cli-cursor "^1.0.1"
2038 | cli-width "^2.0.0"
2039 | figures "^1.3.5"
2040 | lodash "^4.3.0"
2041 | readline2 "^1.0.1"
2042 | run-async "^0.1.0"
2043 | rx-lite "^3.1.2"
2044 | string-width "^1.0.1"
2045 | strip-ansi "^3.0.0"
2046 | through "^2.3.6"
2047 |
2048 | interpret@^1.0.0:
2049 | version "1.0.3"
2050 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
2051 |
2052 | invariant@^2.2.0:
2053 | version "2.2.1"
2054 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54"
2055 | dependencies:
2056 | loose-envify "^1.0.0"
2057 |
2058 | invert-kv@^1.0.0:
2059 | version "1.0.0"
2060 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2061 |
2062 | irregular-plurals@^1.0.0:
2063 | version "1.2.0"
2064 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac"
2065 |
2066 | is-arrayish@^0.2.1:
2067 | version "0.2.1"
2068 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2069 |
2070 | is-binary-path@^1.0.0:
2071 | version "1.0.1"
2072 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2073 | dependencies:
2074 | binary-extensions "^1.0.0"
2075 |
2076 | is-buffer@^1.0.2:
2077 | version "1.1.4"
2078 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
2079 |
2080 | is-builtin-module@^1.0.0:
2081 | version "1.0.0"
2082 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2083 | dependencies:
2084 | builtin-modules "^1.0.0"
2085 |
2086 | is-callable@^1.1.1, is-callable@^1.1.3:
2087 | version "1.1.3"
2088 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
2089 |
2090 | is-ci@^1.0.7:
2091 | version "1.0.10"
2092 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
2093 | dependencies:
2094 | ci-info "^1.0.0"
2095 |
2096 | is-date-object@^1.0.1:
2097 | version "1.0.1"
2098 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2099 |
2100 | is-dotfile@^1.0.0:
2101 | version "1.0.2"
2102 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
2103 |
2104 | is-equal-shallow@^0.1.3:
2105 | version "0.1.3"
2106 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2107 | dependencies:
2108 | is-primitive "^2.0.0"
2109 |
2110 | is-error@^2.2.0:
2111 | version "2.2.1"
2112 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c"
2113 |
2114 | is-extendable@^0.1.1:
2115 | version "0.1.1"
2116 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2117 |
2118 | is-extglob@^1.0.0:
2119 | version "1.0.0"
2120 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2121 |
2122 | is-finite@^1.0.0, is-finite@^1.0.1:
2123 | version "1.0.2"
2124 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2125 | dependencies:
2126 | number-is-nan "^1.0.0"
2127 |
2128 | is-fullwidth-code-point@^1.0.0:
2129 | version "1.0.0"
2130 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2131 | dependencies:
2132 | number-is-nan "^1.0.0"
2133 |
2134 | is-fullwidth-code-point@^2.0.0:
2135 | version "2.0.0"
2136 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2137 |
2138 | is-generator-fn@^1.0.0:
2139 | version "1.0.0"
2140 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
2141 |
2142 | is-glob@^2.0.0, is-glob@^2.0.1:
2143 | version "2.0.1"
2144 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2145 | dependencies:
2146 | is-extglob "^1.0.0"
2147 |
2148 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4:
2149 | version "2.15.0"
2150 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
2151 | dependencies:
2152 | generate-function "^2.0.0"
2153 | generate-object-property "^1.1.0"
2154 | jsonpointer "^4.0.0"
2155 | xtend "^4.0.0"
2156 |
2157 | is-npm@^1.0.0:
2158 | version "1.0.0"
2159 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
2160 |
2161 | is-number@^2.0.2, is-number@^2.1.0:
2162 | version "2.1.0"
2163 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2164 | dependencies:
2165 | kind-of "^3.0.2"
2166 |
2167 | is-obj@^1.0.0:
2168 | version "1.0.1"
2169 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
2170 |
2171 | is-observable@^0.2.0:
2172 | version "0.2.0"
2173 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2"
2174 | dependencies:
2175 | symbol-observable "^0.2.2"
2176 |
2177 | is-path-cwd@^1.0.0:
2178 | version "1.0.0"
2179 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
2180 |
2181 | is-path-in-cwd@^1.0.0:
2182 | version "1.0.0"
2183 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
2184 | dependencies:
2185 | is-path-inside "^1.0.0"
2186 |
2187 | is-path-inside@^1.0.0:
2188 | version "1.0.0"
2189 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
2190 | dependencies:
2191 | path-is-inside "^1.0.1"
2192 |
2193 | is-plain-obj@^1.0.0:
2194 | version "1.1.0"
2195 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
2196 |
2197 | is-posix-bracket@^0.1.0:
2198 | version "0.1.1"
2199 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2200 |
2201 | is-primitive@^2.0.0:
2202 | version "2.0.0"
2203 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2204 |
2205 | is-promise@^2.1.0:
2206 | version "2.1.0"
2207 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2208 |
2209 | is-property@^1.0.0:
2210 | version "1.0.2"
2211 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
2212 |
2213 | is-redirect@^1.0.0:
2214 | version "1.0.0"
2215 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
2216 |
2217 | is-regex@^1.0.3:
2218 | version "1.0.4"
2219 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2220 | dependencies:
2221 | has "^1.0.1"
2222 |
2223 | is-resolvable@^1.0.0:
2224 | version "1.0.0"
2225 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
2226 | dependencies:
2227 | tryit "^1.0.1"
2228 |
2229 | is-retry-allowed@^1.0.0:
2230 | version "1.1.0"
2231 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
2232 |
2233 | is-stream@^1.0.0, is-stream@^1.1.0:
2234 | version "1.1.0"
2235 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2236 |
2237 | is-symbol@^1.0.1:
2238 | version "1.0.1"
2239 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
2240 |
2241 | is-typedarray@~1.0.0:
2242 | version "1.0.0"
2243 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2244 |
2245 | is-url@^1.2.1:
2246 | version "1.2.2"
2247 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26"
2248 |
2249 | is-utf8@^0.2.0, is-utf8@^0.2.1:
2250 | version "0.2.1"
2251 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2252 |
2253 | isarray@0.0.1:
2254 | version "0.0.1"
2255 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
2256 |
2257 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2258 | version "1.0.0"
2259 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2260 |
2261 | isexe@^1.1.1:
2262 | version "1.1.2"
2263 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0"
2264 |
2265 | isobject@^2.0.0:
2266 | version "2.1.0"
2267 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2268 | dependencies:
2269 | isarray "1.0.0"
2270 |
2271 | isstream@~0.1.2:
2272 | version "0.1.2"
2273 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2274 |
2275 | istanbul-lib-coverage@^1.1.1:
2276 | version "1.1.1"
2277 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da"
2278 |
2279 | istanbul-lib-hook@^1.0.7:
2280 | version "1.0.7"
2281 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc"
2282 | dependencies:
2283 | append-transform "^0.4.0"
2284 |
2285 | istanbul-lib-instrument@^1.7.3:
2286 | version "1.7.4"
2287 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8"
2288 | dependencies:
2289 | babel-generator "^6.18.0"
2290 | babel-template "^6.16.0"
2291 | babel-traverse "^6.18.0"
2292 | babel-types "^6.18.0"
2293 | babylon "^6.17.4"
2294 | istanbul-lib-coverage "^1.1.1"
2295 | semver "^5.3.0"
2296 |
2297 | istanbul-lib-report@^1.1.1:
2298 | version "1.1.1"
2299 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9"
2300 | dependencies:
2301 | istanbul-lib-coverage "^1.1.1"
2302 | mkdirp "^0.5.1"
2303 | path-parse "^1.0.5"
2304 | supports-color "^3.1.2"
2305 |
2306 | istanbul-lib-source-maps@^1.2.1:
2307 | version "1.2.1"
2308 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c"
2309 | dependencies:
2310 | debug "^2.6.3"
2311 | istanbul-lib-coverage "^1.1.1"
2312 | mkdirp "^0.5.1"
2313 | rimraf "^2.6.1"
2314 | source-map "^0.5.3"
2315 |
2316 | istanbul-reports@^1.1.1:
2317 | version "1.1.1"
2318 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e"
2319 | dependencies:
2320 | handlebars "^4.0.3"
2321 |
2322 | jodid25519@^1.0.0:
2323 | version "1.0.2"
2324 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2325 | dependencies:
2326 | jsbn "~0.1.0"
2327 |
2328 | js-string-escape@^1.0.1:
2329 | version "1.0.1"
2330 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef"
2331 |
2332 | js-tokens@^2.0.0:
2333 | version "2.0.0"
2334 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
2335 |
2336 | js-tokens@^3.0.0:
2337 | version "3.0.2"
2338 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2339 |
2340 | js-yaml@3.6.1:
2341 | version "3.6.1"
2342 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30"
2343 | dependencies:
2344 | argparse "^1.0.7"
2345 | esprima "^2.6.0"
2346 |
2347 | js-yaml@^3.5.1, js-yaml@^3.8.2:
2348 | version "3.9.0"
2349 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.0.tgz#4ffbbf25c2ac963b8299dc74da7e3740de1c18ce"
2350 | dependencies:
2351 | argparse "^1.0.7"
2352 | esprima "^4.0.0"
2353 |
2354 | jsbn@~0.1.0:
2355 | version "0.1.0"
2356 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
2357 |
2358 | jsesc@^1.3.0:
2359 | version "1.3.0"
2360 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2361 |
2362 | jsesc@~0.5.0:
2363 | version "0.5.0"
2364 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2365 |
2366 | json-schema@0.2.3:
2367 | version "0.2.3"
2368 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2369 |
2370 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
2371 | version "1.0.1"
2372 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2373 | dependencies:
2374 | jsonify "~0.0.0"
2375 |
2376 | json-stringify-safe@~5.0.1:
2377 | version "5.0.1"
2378 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2379 |
2380 | json5@^0.5.0:
2381 | version "0.5.0"
2382 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2"
2383 |
2384 | json5@^0.5.1:
2385 | version "0.5.1"
2386 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2387 |
2388 | jsonify@~0.0.0:
2389 | version "0.0.0"
2390 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2391 |
2392 | jsonpointer@^4.0.0:
2393 | version "4.0.0"
2394 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
2395 |
2396 | jsprim@^1.2.2:
2397 | version "1.3.1"
2398 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
2399 | dependencies:
2400 | extsprintf "1.0.2"
2401 | json-schema "0.2.3"
2402 | verror "1.3.6"
2403 |
2404 | jsx-ast-utils@^1.3.4:
2405 | version "1.4.1"
2406 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
2407 |
2408 | kind-of@^3.0.2:
2409 | version "3.0.4"
2410 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74"
2411 | dependencies:
2412 | is-buffer "^1.0.2"
2413 |
2414 | last-line-stream@^1.0.0:
2415 | version "1.0.0"
2416 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600"
2417 | dependencies:
2418 | through2 "^2.0.0"
2419 |
2420 | latest-version@^3.0.0:
2421 | version "3.1.0"
2422 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
2423 | dependencies:
2424 | package-json "^4.0.0"
2425 |
2426 | lazy-cache@^1.0.3:
2427 | version "1.0.4"
2428 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2429 |
2430 | lcid@^1.0.0:
2431 | version "1.0.0"
2432 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2433 | dependencies:
2434 | invert-kv "^1.0.0"
2435 |
2436 | lcov-parse@0.0.10:
2437 | version "0.0.10"
2438 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
2439 |
2440 | levn@^0.3.0, levn@~0.3.0:
2441 | version "0.3.0"
2442 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2443 | dependencies:
2444 | prelude-ls "~1.1.2"
2445 | type-check "~0.3.2"
2446 |
2447 | load-json-file@^1.0.0:
2448 | version "1.1.0"
2449 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2450 | dependencies:
2451 | graceful-fs "^4.1.2"
2452 | parse-json "^2.2.0"
2453 | pify "^2.0.0"
2454 | pinkie-promise "^2.0.0"
2455 | strip-bom "^2.0.0"
2456 |
2457 | load-json-file@^2.0.0:
2458 | version "2.0.0"
2459 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2460 | dependencies:
2461 | graceful-fs "^4.1.2"
2462 | parse-json "^2.2.0"
2463 | pify "^2.0.0"
2464 | strip-bom "^3.0.0"
2465 |
2466 | locate-path@^2.0.0:
2467 | version "2.0.0"
2468 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2469 | dependencies:
2470 | p-locate "^2.0.0"
2471 | path-exists "^3.0.0"
2472 |
2473 | lodash.clonedeep@^4.5.0:
2474 | version "4.5.0"
2475 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
2476 |
2477 | lodash.clonedeepwith@^4.5.0:
2478 | version "4.5.0"
2479 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"
2480 |
2481 | lodash.cond@^4.3.0:
2482 | version "4.5.2"
2483 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
2484 |
2485 | lodash.debounce@^4.0.3:
2486 | version "4.0.8"
2487 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2488 |
2489 | lodash.difference@^4.3.0:
2490 | version "4.5.0"
2491 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c"
2492 |
2493 | lodash.flatten@^4.2.0:
2494 | version "4.4.0"
2495 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
2496 |
2497 | lodash.flattendeep@^4.4.0:
2498 | version "4.4.0"
2499 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
2500 |
2501 | lodash.isequal@^4.5.0:
2502 | version "4.5.0"
2503 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
2504 |
2505 | lodash.merge@^4.6.0:
2506 | version "4.6.0"
2507 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5"
2508 |
2509 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0:
2510 | version "4.17.1"
2511 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.1.tgz#e75eaf17a34730c6491d9956f4d81f3a044f01bf"
2512 |
2513 | log-driver@1.2.5:
2514 | version "1.2.5"
2515 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056"
2516 |
2517 | lolex@^1.6.0:
2518 | version "1.6.0"
2519 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6"
2520 |
2521 | longest@^1.0.1:
2522 | version "1.0.1"
2523 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2524 |
2525 | loose-envify@^1.0.0:
2526 | version "1.3.0"
2527 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
2528 | dependencies:
2529 | js-tokens "^2.0.0"
2530 |
2531 | loud-rejection@^1.0.0, loud-rejection@^1.2.0:
2532 | version "1.6.0"
2533 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2534 | dependencies:
2535 | currently-unhandled "^0.4.1"
2536 | signal-exit "^3.0.0"
2537 |
2538 | lowercase-keys@^1.0.0:
2539 | version "1.0.0"
2540 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
2541 |
2542 | lru-cache@^4.0.1:
2543 | version "4.0.1"
2544 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be"
2545 | dependencies:
2546 | pseudomap "^1.0.1"
2547 | yallist "^2.0.0"
2548 |
2549 | make-dir@^1.0.0:
2550 | version "1.0.0"
2551 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
2552 | dependencies:
2553 | pify "^2.3.0"
2554 |
2555 | map-obj@^1.0.0, map-obj@^1.0.1:
2556 | version "1.0.1"
2557 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2558 |
2559 | matcher@^1.0.0:
2560 | version "1.0.0"
2561 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19"
2562 | dependencies:
2563 | escape-string-regexp "^1.0.4"
2564 |
2565 | md5-hex@^1.2.0, md5-hex@^1.3.0:
2566 | version "1.3.0"
2567 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4"
2568 | dependencies:
2569 | md5-o-matic "^0.1.1"
2570 |
2571 | md5-hex@^2.0.0:
2572 | version "2.0.0"
2573 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33"
2574 | dependencies:
2575 | md5-o-matic "^0.1.1"
2576 |
2577 | md5-o-matic@^0.1.1:
2578 | version "0.1.1"
2579 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3"
2580 |
2581 | mem@^1.1.0:
2582 | version "1.1.0"
2583 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2584 | dependencies:
2585 | mimic-fn "^1.0.0"
2586 |
2587 | meow@^3.7.0:
2588 | version "3.7.0"
2589 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2590 | dependencies:
2591 | camelcase-keys "^2.0.0"
2592 | decamelize "^1.1.2"
2593 | loud-rejection "^1.0.0"
2594 | map-obj "^1.0.1"
2595 | minimist "^1.1.3"
2596 | normalize-package-data "^2.3.4"
2597 | object-assign "^4.0.1"
2598 | read-pkg-up "^1.0.1"
2599 | redent "^1.0.0"
2600 | trim-newlines "^1.0.0"
2601 |
2602 | merge-source-map@^1.0.2:
2603 | version "1.0.3"
2604 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf"
2605 | dependencies:
2606 | source-map "^0.5.3"
2607 |
2608 | micromatch@^2.1.5, micromatch@^2.3.11:
2609 | version "2.3.11"
2610 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2611 | dependencies:
2612 | arr-diff "^2.0.0"
2613 | array-unique "^0.2.1"
2614 | braces "^1.8.2"
2615 | expand-brackets "^0.1.4"
2616 | extglob "^0.3.1"
2617 | filename-regex "^2.0.0"
2618 | is-extglob "^1.0.0"
2619 | is-glob "^2.0.1"
2620 | kind-of "^3.0.2"
2621 | normalize-path "^2.0.1"
2622 | object.omit "^2.0.0"
2623 | parse-glob "^3.0.4"
2624 | regex-cache "^0.4.2"
2625 |
2626 | mime-db@~1.24.0:
2627 | version "1.24.0"
2628 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c"
2629 |
2630 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7:
2631 | version "2.1.12"
2632 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729"
2633 | dependencies:
2634 | mime-db "~1.24.0"
2635 |
2636 | mimic-fn@^1.0.0:
2637 | version "1.1.0"
2638 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2639 |
2640 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
2641 | version "3.0.3"
2642 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
2643 | dependencies:
2644 | brace-expansion "^1.0.0"
2645 |
2646 | minimist@0.0.8, minimist@~0.0.1:
2647 | version "0.0.8"
2648 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2649 |
2650 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
2651 | version "1.2.0"
2652 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2653 |
2654 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
2655 | version "0.5.1"
2656 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2657 | dependencies:
2658 | minimist "0.0.8"
2659 |
2660 | ms@0.7.1:
2661 | version "0.7.1"
2662 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2663 |
2664 | ms@0.7.2:
2665 | version "0.7.2"
2666 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2667 |
2668 | ms@2.0.0, ms@^2.0.0:
2669 | version "2.0.0"
2670 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2671 |
2672 | multimatch@^2.1.0:
2673 | version "2.1.0"
2674 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
2675 | dependencies:
2676 | array-differ "^1.0.0"
2677 | array-union "^1.0.1"
2678 | arrify "^1.0.0"
2679 | minimatch "^3.0.0"
2680 |
2681 | mute-stream@0.0.5:
2682 | version "0.0.5"
2683 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
2684 |
2685 | nan@^2.3.0:
2686 | version "2.4.0"
2687 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232"
2688 |
2689 | native-promise-only@^0.8.1:
2690 | version "0.8.1"
2691 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11"
2692 |
2693 | natural-compare@^1.4.0:
2694 | version "1.4.0"
2695 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2696 |
2697 | node-pre-gyp@^0.6.29:
2698 | version "0.6.31"
2699 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017"
2700 | dependencies:
2701 | mkdirp "~0.5.1"
2702 | nopt "~3.0.6"
2703 | npmlog "^4.0.0"
2704 | rc "~1.1.6"
2705 | request "^2.75.0"
2706 | rimraf "~2.5.4"
2707 | semver "~5.3.0"
2708 | tar "~2.2.1"
2709 | tar-pack "~3.3.0"
2710 |
2711 | node-uuid@~1.4.7:
2712 | version "1.4.7"
2713 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"
2714 |
2715 | nopt@~3.0.6:
2716 | version "3.0.6"
2717 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2718 | dependencies:
2719 | abbrev "1"
2720 |
2721 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2722 | version "2.3.5"
2723 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
2724 | dependencies:
2725 | hosted-git-info "^2.1.4"
2726 | is-builtin-module "^1.0.0"
2727 | semver "2 || 3 || 4 || 5"
2728 | validate-npm-package-license "^3.0.1"
2729 |
2730 | normalize-path@^2.0.1:
2731 | version "2.0.1"
2732 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
2733 |
2734 | npm-run-path@^2.0.0:
2735 | version "2.0.2"
2736 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2737 | dependencies:
2738 | path-key "^2.0.0"
2739 |
2740 | npmlog@^4.0.0:
2741 | version "4.0.0"
2742 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f"
2743 | dependencies:
2744 | are-we-there-yet "~1.1.2"
2745 | console-control-strings "~1.1.0"
2746 | gauge "~2.6.0"
2747 | set-blocking "~2.0.0"
2748 |
2749 | number-is-nan@^1.0.0:
2750 | version "1.0.1"
2751 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2752 |
2753 | nyc@^11.0.3:
2754 | version "11.0.3"
2755 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.0.3.tgz#0c28bc669a851621709bf7a08503034bee3812b6"
2756 | dependencies:
2757 | archy "^1.0.0"
2758 | arrify "^1.0.1"
2759 | caching-transform "^1.0.0"
2760 | convert-source-map "^1.3.0"
2761 | debug-log "^1.0.1"
2762 | default-require-extensions "^1.0.0"
2763 | find-cache-dir "^0.1.1"
2764 | find-up "^2.1.0"
2765 | foreground-child "^1.5.3"
2766 | glob "^7.0.6"
2767 | istanbul-lib-coverage "^1.1.1"
2768 | istanbul-lib-hook "^1.0.7"
2769 | istanbul-lib-instrument "^1.7.3"
2770 | istanbul-lib-report "^1.1.1"
2771 | istanbul-lib-source-maps "^1.2.1"
2772 | istanbul-reports "^1.1.1"
2773 | md5-hex "^1.2.0"
2774 | merge-source-map "^1.0.2"
2775 | micromatch "^2.3.11"
2776 | mkdirp "^0.5.0"
2777 | resolve-from "^2.0.0"
2778 | rimraf "^2.5.4"
2779 | signal-exit "^3.0.1"
2780 | spawn-wrap "^1.3.7"
2781 | test-exclude "^4.1.1"
2782 | yargs "^8.0.1"
2783 | yargs-parser "^5.0.0"
2784 |
2785 | oauth-sign@~0.8.1:
2786 | version "0.8.2"
2787 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2788 |
2789 | object-assign@^4.0.1, object-assign@^4.1.0:
2790 | version "4.1.0"
2791 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
2792 |
2793 | object-keys@^1.0.10, object-keys@^1.0.8:
2794 | version "1.0.11"
2795 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2796 |
2797 | object.assign@^4.0.4:
2798 | version "4.0.4"
2799 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
2800 | dependencies:
2801 | define-properties "^1.1.2"
2802 | function-bind "^1.1.0"
2803 | object-keys "^1.0.10"
2804 |
2805 | object.omit@^2.0.0:
2806 | version "2.0.1"
2807 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2808 | dependencies:
2809 | for-own "^0.1.4"
2810 | is-extendable "^0.1.1"
2811 |
2812 | observable-to-promise@^0.5.0:
2813 | version "0.5.0"
2814 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f"
2815 | dependencies:
2816 | is-observable "^0.2.0"
2817 | symbol-observable "^1.0.4"
2818 |
2819 | once@^1.3.0, once@~1.3.3:
2820 | version "1.3.3"
2821 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
2822 | dependencies:
2823 | wrappy "1"
2824 |
2825 | onetime@^1.0.0:
2826 | version "1.1.0"
2827 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
2828 |
2829 | onetime@^2.0.0:
2830 | version "2.0.1"
2831 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2832 | dependencies:
2833 | mimic-fn "^1.0.0"
2834 |
2835 | optimist@^0.6.1:
2836 | version "0.6.1"
2837 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2838 | dependencies:
2839 | minimist "~0.0.1"
2840 | wordwrap "~0.0.2"
2841 |
2842 | option-chain@^1.0.0:
2843 | version "1.0.0"
2844 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2"
2845 |
2846 | optionator@^0.8.2:
2847 | version "0.8.2"
2848 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2849 | dependencies:
2850 | deep-is "~0.1.3"
2851 | fast-levenshtein "~2.0.4"
2852 | levn "~0.3.0"
2853 | prelude-ls "~1.1.2"
2854 | type-check "~0.3.2"
2855 | wordwrap "~1.0.0"
2856 |
2857 | os-homedir@^1.0.0, os-homedir@^1.0.1:
2858 | version "1.0.2"
2859 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2860 |
2861 | os-locale@^2.0.0:
2862 | version "2.1.0"
2863 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2864 | dependencies:
2865 | execa "^0.7.0"
2866 | lcid "^1.0.0"
2867 | mem "^1.1.0"
2868 |
2869 | os-tmpdir@^1.0.1:
2870 | version "1.0.2"
2871 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2872 |
2873 | p-finally@^1.0.0:
2874 | version "1.0.0"
2875 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2876 |
2877 | p-limit@^1.1.0:
2878 | version "1.1.0"
2879 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2880 |
2881 | p-locate@^2.0.0:
2882 | version "2.0.0"
2883 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2884 | dependencies:
2885 | p-limit "^1.1.0"
2886 |
2887 | package-hash@^1.2.0:
2888 | version "1.2.0"
2889 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44"
2890 | dependencies:
2891 | md5-hex "^1.3.0"
2892 |
2893 | package-hash@^2.0.0:
2894 | version "2.0.0"
2895 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d"
2896 | dependencies:
2897 | graceful-fs "^4.1.11"
2898 | lodash.flattendeep "^4.4.0"
2899 | md5-hex "^2.0.0"
2900 | release-zalgo "^1.0.0"
2901 |
2902 | package-json@^4.0.0:
2903 | version "4.0.1"
2904 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
2905 | dependencies:
2906 | got "^6.7.1"
2907 | registry-auth-token "^3.0.1"
2908 | registry-url "^3.0.3"
2909 | semver "^5.1.0"
2910 |
2911 | parse-glob@^3.0.4:
2912 | version "3.0.4"
2913 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2914 | dependencies:
2915 | glob-base "^0.3.0"
2916 | is-dotfile "^1.0.0"
2917 | is-extglob "^1.0.0"
2918 | is-glob "^2.0.0"
2919 |
2920 | parse-json@^2.2.0:
2921 | version "2.2.0"
2922 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2923 | dependencies:
2924 | error-ex "^1.2.0"
2925 |
2926 | parse-ms@^0.1.0:
2927 | version "0.1.2"
2928 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e"
2929 |
2930 | parse-ms@^1.0.0:
2931 | version "1.0.1"
2932 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d"
2933 |
2934 | path-exists@^2.0.0:
2935 | version "2.1.0"
2936 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2937 | dependencies:
2938 | pinkie-promise "^2.0.0"
2939 |
2940 | path-exists@^3.0.0:
2941 | version "3.0.0"
2942 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2943 |
2944 | path-is-absolute@^1.0.0:
2945 | version "1.0.1"
2946 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2947 |
2948 | path-is-inside@^1.0.1:
2949 | version "1.0.2"
2950 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2951 |
2952 | path-key@^2.0.0:
2953 | version "2.0.1"
2954 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2955 |
2956 | path-parse@^1.0.5:
2957 | version "1.0.5"
2958 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2959 |
2960 | path-to-regexp@^1.7.0:
2961 | version "1.7.0"
2962 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d"
2963 | dependencies:
2964 | isarray "0.0.1"
2965 |
2966 | path-type@^1.0.0:
2967 | version "1.1.0"
2968 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2969 | dependencies:
2970 | graceful-fs "^4.1.2"
2971 | pify "^2.0.0"
2972 | pinkie-promise "^2.0.0"
2973 |
2974 | path-type@^2.0.0:
2975 | version "2.0.0"
2976 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2977 | dependencies:
2978 | pify "^2.0.0"
2979 |
2980 | pify@^2.0.0, pify@^2.3.0:
2981 | version "2.3.0"
2982 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2983 |
2984 | pinkie-promise@^1.0.0:
2985 | version "1.0.0"
2986 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670"
2987 | dependencies:
2988 | pinkie "^1.0.0"
2989 |
2990 | pinkie-promise@^2.0.0:
2991 | version "2.0.1"
2992 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2993 | dependencies:
2994 | pinkie "^2.0.0"
2995 |
2996 | pinkie@^1.0.0:
2997 | version "1.0.0"
2998 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4"
2999 |
3000 | pinkie@^2.0.0:
3001 | version "2.0.4"
3002 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3003 |
3004 | pkg-conf@^2.0.0:
3005 | version "2.0.0"
3006 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279"
3007 | dependencies:
3008 | find-up "^2.0.0"
3009 | load-json-file "^2.0.0"
3010 |
3011 | pkg-config@^1.1.0:
3012 | version "1.1.1"
3013 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4"
3014 | dependencies:
3015 | debug-log "^1.0.0"
3016 | find-root "^1.0.0"
3017 | xtend "^4.0.1"
3018 |
3019 | pkg-dir@^1.0.0:
3020 | version "1.0.0"
3021 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
3022 | dependencies:
3023 | find-up "^1.0.0"
3024 |
3025 | pkg-dir@^2.0.0:
3026 | version "2.0.0"
3027 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
3028 | dependencies:
3029 | find-up "^2.1.0"
3030 |
3031 | pkg-up@^1.0.0:
3032 | version "1.0.0"
3033 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
3034 | dependencies:
3035 | find-up "^1.0.0"
3036 |
3037 | plur@^1.0.0:
3038 | version "1.0.0"
3039 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156"
3040 |
3041 | plur@^2.0.0:
3042 | version "2.1.2"
3043 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a"
3044 | dependencies:
3045 | irregular-plurals "^1.0.0"
3046 |
3047 | pluralize@^1.2.1:
3048 | version "1.2.1"
3049 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
3050 |
3051 | prelude-ls@~1.1.2:
3052 | version "1.1.2"
3053 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
3054 |
3055 | prepend-http@^1.0.1:
3056 | version "1.0.4"
3057 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
3058 |
3059 | preserve@^0.2.0:
3060 | version "0.2.0"
3061 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3062 |
3063 | pretty-ms@^0.2.1:
3064 | version "0.2.2"
3065 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6"
3066 | dependencies:
3067 | parse-ms "^0.1.0"
3068 |
3069 | pretty-ms@^2.0.0:
3070 | version "2.1.0"
3071 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc"
3072 | dependencies:
3073 | is-finite "^1.0.1"
3074 | parse-ms "^1.0.0"
3075 | plur "^1.0.0"
3076 |
3077 | private@^0.1.6:
3078 | version "0.1.6"
3079 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
3080 |
3081 | process-nextick-args@~1.0.6:
3082 | version "1.0.7"
3083 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
3084 |
3085 | progress@^1.1.8:
3086 | version "1.1.8"
3087 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
3088 |
3089 | pseudomap@^1.0.1:
3090 | version "1.0.2"
3091 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3092 |
3093 | punycode@^1.4.1:
3094 | version "1.4.1"
3095 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3096 |
3097 | qs@~6.2.0:
3098 | version "6.2.1"
3099 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625"
3100 |
3101 | qs@~6.3.0:
3102 | version "6.3.2"
3103 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c"
3104 |
3105 | randomatic@^1.1.3:
3106 | version "1.1.5"
3107 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b"
3108 | dependencies:
3109 | is-number "^2.0.2"
3110 | kind-of "^3.0.2"
3111 |
3112 | rc@^1.0.1, rc@^1.1.6, rc@~1.1.6:
3113 | version "1.1.6"
3114 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
3115 | dependencies:
3116 | deep-extend "~0.4.0"
3117 | ini "~1.3.0"
3118 | minimist "^1.2.0"
3119 | strip-json-comments "~1.0.4"
3120 |
3121 | read-pkg-up@^1.0.1:
3122 | version "1.0.1"
3123 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3124 | dependencies:
3125 | find-up "^1.0.0"
3126 | read-pkg "^1.0.0"
3127 |
3128 | read-pkg-up@^2.0.0:
3129 | version "2.0.0"
3130 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3131 | dependencies:
3132 | find-up "^2.0.0"
3133 | read-pkg "^2.0.0"
3134 |
3135 | read-pkg@^1.0.0:
3136 | version "1.1.0"
3137 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3138 | dependencies:
3139 | load-json-file "^1.0.0"
3140 | normalize-package-data "^2.3.2"
3141 | path-type "^1.0.0"
3142 |
3143 | read-pkg@^2.0.0:
3144 | version "2.0.0"
3145 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3146 | dependencies:
3147 | load-json-file "^2.0.0"
3148 | normalize-package-data "^2.3.2"
3149 | path-type "^2.0.0"
3150 |
3151 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.6:
3152 | version "2.2.2"
3153 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
3154 | dependencies:
3155 | buffer-shims "^1.0.0"
3156 | core-util-is "~1.0.0"
3157 | inherits "~2.0.1"
3158 | isarray "~1.0.0"
3159 | process-nextick-args "~1.0.6"
3160 | string_decoder "~0.10.x"
3161 | util-deprecate "~1.0.1"
3162 |
3163 | readable-stream@~2.0.0, readable-stream@~2.0.5:
3164 | version "2.0.6"
3165 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
3166 | dependencies:
3167 | core-util-is "~1.0.0"
3168 | inherits "~2.0.1"
3169 | isarray "~1.0.0"
3170 | process-nextick-args "~1.0.6"
3171 | string_decoder "~0.10.x"
3172 | util-deprecate "~1.0.1"
3173 |
3174 | readable-stream@~2.1.4:
3175 | version "2.1.5"
3176 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
3177 | dependencies:
3178 | buffer-shims "^1.0.0"
3179 | core-util-is "~1.0.0"
3180 | inherits "~2.0.1"
3181 | isarray "~1.0.0"
3182 | process-nextick-args "~1.0.6"
3183 | string_decoder "~0.10.x"
3184 | util-deprecate "~1.0.1"
3185 |
3186 | readdirp@^2.0.0:
3187 | version "2.1.0"
3188 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3189 | dependencies:
3190 | graceful-fs "^4.1.2"
3191 | minimatch "^3.0.2"
3192 | readable-stream "^2.0.2"
3193 | set-immediate-shim "^1.0.1"
3194 |
3195 | readline2@^1.0.1:
3196 | version "1.0.1"
3197 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
3198 | dependencies:
3199 | code-point-at "^1.0.0"
3200 | is-fullwidth-code-point "^1.0.0"
3201 | mute-stream "0.0.5"
3202 |
3203 | rechoir@^0.6.2:
3204 | version "0.6.2"
3205 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
3206 | dependencies:
3207 | resolve "^1.1.6"
3208 |
3209 | redent@^1.0.0:
3210 | version "1.0.0"
3211 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
3212 | dependencies:
3213 | indent-string "^2.1.0"
3214 | strip-indent "^1.0.1"
3215 |
3216 | regenerate@^1.2.1:
3217 | version "1.3.2"
3218 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3219 |
3220 | regenerator-runtime@^0.10.0:
3221 | version "0.10.5"
3222 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3223 |
3224 | regenerator-runtime@^0.9.5:
3225 | version "0.9.6"
3226 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029"
3227 |
3228 | regex-cache@^0.4.2:
3229 | version "0.4.3"
3230 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3231 | dependencies:
3232 | is-equal-shallow "^0.1.3"
3233 | is-primitive "^2.0.0"
3234 |
3235 | regexpu-core@^2.0.0:
3236 | version "2.0.0"
3237 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3238 | dependencies:
3239 | regenerate "^1.2.1"
3240 | regjsgen "^0.2.0"
3241 | regjsparser "^0.1.4"
3242 |
3243 | registry-auth-token@^3.0.1:
3244 | version "3.1.0"
3245 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b"
3246 | dependencies:
3247 | rc "^1.1.6"
3248 |
3249 | registry-url@^3.0.3:
3250 | version "3.1.0"
3251 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
3252 | dependencies:
3253 | rc "^1.0.1"
3254 |
3255 | regjsgen@^0.2.0:
3256 | version "0.2.0"
3257 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3258 |
3259 | regjsparser@^0.1.4:
3260 | version "0.1.5"
3261 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3262 | dependencies:
3263 | jsesc "~0.5.0"
3264 |
3265 | release-zalgo@^1.0.0:
3266 | version "1.0.0"
3267 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730"
3268 | dependencies:
3269 | es6-error "^4.0.1"
3270 |
3271 | repeat-element@^1.1.2:
3272 | version "1.1.2"
3273 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3274 |
3275 | repeat-string@^1.5.2:
3276 | version "1.6.1"
3277 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3278 |
3279 | repeating@^2.0.0:
3280 | version "2.0.1"
3281 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3282 | dependencies:
3283 | is-finite "^1.0.0"
3284 |
3285 | request@2.79.0:
3286 | version "2.79.0"
3287 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
3288 | dependencies:
3289 | aws-sign2 "~0.6.0"
3290 | aws4 "^1.2.1"
3291 | caseless "~0.11.0"
3292 | combined-stream "~1.0.5"
3293 | extend "~3.0.0"
3294 | forever-agent "~0.6.1"
3295 | form-data "~2.1.1"
3296 | har-validator "~2.0.6"
3297 | hawk "~3.1.3"
3298 | http-signature "~1.1.0"
3299 | is-typedarray "~1.0.0"
3300 | isstream "~0.1.2"
3301 | json-stringify-safe "~5.0.1"
3302 | mime-types "~2.1.7"
3303 | oauth-sign "~0.8.1"
3304 | qs "~6.3.0"
3305 | stringstream "~0.0.4"
3306 | tough-cookie "~2.3.0"
3307 | tunnel-agent "~0.4.1"
3308 | uuid "^3.0.0"
3309 |
3310 | request@^2.75.0:
3311 | version "2.75.0"
3312 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93"
3313 | dependencies:
3314 | aws-sign2 "~0.6.0"
3315 | aws4 "^1.2.1"
3316 | bl "~1.1.2"
3317 | caseless "~0.11.0"
3318 | combined-stream "~1.0.5"
3319 | extend "~3.0.0"
3320 | forever-agent "~0.6.1"
3321 | form-data "~2.0.0"
3322 | har-validator "~2.0.6"
3323 | hawk "~3.1.3"
3324 | http-signature "~1.1.0"
3325 | is-typedarray "~1.0.0"
3326 | isstream "~0.1.2"
3327 | json-stringify-safe "~5.0.1"
3328 | mime-types "~2.1.7"
3329 | node-uuid "~1.4.7"
3330 | oauth-sign "~0.8.1"
3331 | qs "~6.2.0"
3332 | stringstream "~0.0.4"
3333 | tough-cookie "~2.3.0"
3334 | tunnel-agent "~0.4.1"
3335 |
3336 | require-directory@^2.1.1:
3337 | version "2.1.1"
3338 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3339 |
3340 | require-main-filename@^1.0.1:
3341 | version "1.0.1"
3342 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3343 |
3344 | require-precompiled@^0.1.0:
3345 | version "0.1.0"
3346 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa"
3347 |
3348 | require-uncached@^1.0.2:
3349 | version "1.0.3"
3350 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
3351 | dependencies:
3352 | caller-path "^0.1.0"
3353 | resolve-from "^1.0.0"
3354 |
3355 | resolve-cwd@^2.0.0:
3356 | version "2.0.0"
3357 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3358 | dependencies:
3359 | resolve-from "^3.0.0"
3360 |
3361 | resolve-from@^1.0.0:
3362 | version "1.0.1"
3363 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
3364 |
3365 | resolve-from@^2.0.0:
3366 | version "2.0.0"
3367 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
3368 |
3369 | resolve-from@^3.0.0:
3370 | version "3.0.0"
3371 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3372 |
3373 | resolve@^1.1.6, resolve@^1.1.7:
3374 | version "1.4.0"
3375 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
3376 | dependencies:
3377 | path-parse "^1.0.5"
3378 |
3379 | restore-cursor@^1.0.1:
3380 | version "1.0.1"
3381 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
3382 | dependencies:
3383 | exit-hook "^1.0.0"
3384 | onetime "^1.0.0"
3385 |
3386 | restore-cursor@^2.0.0:
3387 | version "2.0.0"
3388 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3389 | dependencies:
3390 | onetime "^2.0.0"
3391 | signal-exit "^3.0.2"
3392 |
3393 | right-align@^0.1.1:
3394 | version "0.1.3"
3395 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3396 | dependencies:
3397 | align-text "^0.1.1"
3398 |
3399 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4:
3400 | version "2.5.4"
3401 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
3402 | dependencies:
3403 | glob "^7.0.5"
3404 |
3405 | rimraf@^2.6.1:
3406 | version "2.6.1"
3407 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
3408 | dependencies:
3409 | glob "^7.0.5"
3410 |
3411 | run-async@^0.1.0:
3412 | version "0.1.0"
3413 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
3414 | dependencies:
3415 | once "^1.3.0"
3416 |
3417 | run-parallel@^1.1.2:
3418 | version "1.1.6"
3419 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039"
3420 |
3421 | rx-lite@^3.1.2:
3422 | version "3.1.2"
3423 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
3424 |
3425 | safe-buffer@^5.0.1, safe-buffer@^5.1.1:
3426 | version "5.1.1"
3427 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
3428 |
3429 | samsam@1.x, samsam@^1.1.3:
3430 | version "1.2.1"
3431 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67"
3432 |
3433 | semver-diff@^2.0.0:
3434 | version "2.1.0"
3435 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
3436 | dependencies:
3437 | semver "^5.0.3"
3438 |
3439 | "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0:
3440 | version "5.3.0"
3441 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
3442 |
3443 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3444 | version "2.0.0"
3445 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3446 |
3447 | set-immediate-shim@^1.0.1:
3448 | version "1.0.1"
3449 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3450 |
3451 | shebang-command@^1.2.0:
3452 | version "1.2.0"
3453 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3454 | dependencies:
3455 | shebang-regex "^1.0.0"
3456 |
3457 | shebang-regex@^1.0.0:
3458 | version "1.0.0"
3459 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3460 |
3461 | shelljs@^0.7.5:
3462 | version "0.7.8"
3463 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
3464 | dependencies:
3465 | glob "^7.0.0"
3466 | interpret "^1.0.0"
3467 | rechoir "^0.6.2"
3468 |
3469 | signal-exit@^3.0.0, signal-exit@^3.0.1:
3470 | version "3.0.1"
3471 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81"
3472 |
3473 | signal-exit@^3.0.2:
3474 | version "3.0.2"
3475 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3476 |
3477 | sinon@^2.4.1:
3478 | version "2.4.1"
3479 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.4.1.tgz#021fd64b54cb77d9d2fb0d43cdedfae7629c3a36"
3480 | dependencies:
3481 | diff "^3.1.0"
3482 | formatio "1.2.0"
3483 | lolex "^1.6.0"
3484 | native-promise-only "^0.8.1"
3485 | path-to-regexp "^1.7.0"
3486 | samsam "^1.1.3"
3487 | text-encoding "0.6.4"
3488 | type-detect "^4.0.0"
3489 |
3490 | slash@^1.0.0:
3491 | version "1.0.0"
3492 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3493 |
3494 | slice-ansi@0.0.4:
3495 | version "0.0.4"
3496 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3497 |
3498 | slice-ansi@^1.0.0:
3499 | version "1.0.0"
3500 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
3501 | dependencies:
3502 | is-fullwidth-code-point "^2.0.0"
3503 |
3504 | slide@^1.1.5:
3505 | version "1.1.6"
3506 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
3507 |
3508 | snazzy@^7.0.0:
3509 | version "7.0.0"
3510 | resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-7.0.0.tgz#95edaccc4a8d6f80f4ac5cc7b520e8f8f9ac2325"
3511 | dependencies:
3512 | chalk "^1.1.0"
3513 | inherits "^2.0.1"
3514 | minimist "^1.1.1"
3515 | readable-stream "^2.0.6"
3516 | standard-json "^1.0.0"
3517 | text-table "^0.2.0"
3518 |
3519 | sntp@1.x.x:
3520 | version "1.0.9"
3521 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3522 | dependencies:
3523 | hoek "2.x.x"
3524 |
3525 | sort-keys@^1.1.1:
3526 | version "1.1.2"
3527 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
3528 | dependencies:
3529 | is-plain-obj "^1.0.0"
3530 |
3531 | sort-keys@^2.0.0:
3532 | version "2.0.0"
3533 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
3534 | dependencies:
3535 | is-plain-obj "^1.0.0"
3536 |
3537 | source-map-support@^0.4.0, source-map-support@^0.4.2:
3538 | version "0.4.6"
3539 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb"
3540 | dependencies:
3541 | source-map "^0.5.3"
3542 |
3543 | source-map@^0.4.4:
3544 | version "0.4.4"
3545 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3546 | dependencies:
3547 | amdefine ">=0.0.4"
3548 |
3549 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1:
3550 | version "0.5.6"
3551 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3552 |
3553 | spawn-wrap@^1.3.7:
3554 | version "1.3.8"
3555 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.3.8.tgz#fa2a79b990cbb0bb0018dca6748d88367b19ec31"
3556 | dependencies:
3557 | foreground-child "^1.5.6"
3558 | mkdirp "^0.5.0"
3559 | os-homedir "^1.0.1"
3560 | rimraf "^2.3.3"
3561 | signal-exit "^3.0.2"
3562 | which "^1.2.4"
3563 |
3564 | spdx-correct@~1.0.0:
3565 | version "1.0.2"
3566 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3567 | dependencies:
3568 | spdx-license-ids "^1.0.2"
3569 |
3570 | spdx-expression-parse@~1.0.0:
3571 | version "1.0.4"
3572 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3573 |
3574 | spdx-license-ids@^1.0.2:
3575 | version "1.2.2"
3576 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3577 |
3578 | sprintf-js@~1.0.2:
3579 | version "1.0.3"
3580 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3581 |
3582 | sshpk@^1.7.0:
3583 | version "1.10.1"
3584 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
3585 | dependencies:
3586 | asn1 "~0.2.3"
3587 | assert-plus "^1.0.0"
3588 | dashdash "^1.12.0"
3589 | getpass "^0.1.1"
3590 | optionalDependencies:
3591 | bcrypt-pbkdf "^1.0.0"
3592 | ecc-jsbn "~0.1.1"
3593 | jodid25519 "^1.0.0"
3594 | jsbn "~0.1.0"
3595 | tweetnacl "~0.14.0"
3596 |
3597 | stack-utils@^1.0.0:
3598 | version "1.0.1"
3599 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
3600 |
3601 | standard-engine@~7.0.0:
3602 | version "7.0.0"
3603 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690"
3604 | dependencies:
3605 | deglob "^2.1.0"
3606 | get-stdin "^5.0.1"
3607 | minimist "^1.1.0"
3608 | pkg-conf "^2.0.0"
3609 |
3610 | standard-json@^1.0.0:
3611 | version "1.0.1"
3612 | resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.1.tgz#75dd5952c59bb6cb358b136af0633ae3d7f35b6b"
3613 | dependencies:
3614 | concat-stream "^1.5.0"
3615 |
3616 | standard@^10.0.2:
3617 | version "10.0.2"
3618 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.2.tgz#974c1c53cc865b075a4b576e78441e1695daaf7b"
3619 | dependencies:
3620 | eslint "~3.19.0"
3621 | eslint-config-standard "10.2.1"
3622 | eslint-config-standard-jsx "4.0.1"
3623 | eslint-plugin-import "~2.2.0"
3624 | eslint-plugin-node "~4.2.2"
3625 | eslint-plugin-promise "~3.5.0"
3626 | eslint-plugin-react "~6.10.0"
3627 | eslint-plugin-standard "~3.0.1"
3628 | standard-engine "~7.0.0"
3629 |
3630 | string-width@^1.0.1:
3631 | version "1.0.2"
3632 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3633 | dependencies:
3634 | code-point-at "^1.0.0"
3635 | is-fullwidth-code-point "^1.0.0"
3636 | strip-ansi "^3.0.0"
3637 |
3638 | string-width@^2.0.0:
3639 | version "2.0.0"
3640 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
3641 | dependencies:
3642 | is-fullwidth-code-point "^2.0.0"
3643 | strip-ansi "^3.0.0"
3644 |
3645 | string_decoder@~0.10.x:
3646 | version "0.10.31"
3647 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3648 |
3649 | stringstream@~0.0.4:
3650 | version "0.0.5"
3651 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3652 |
3653 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3654 | version "3.0.1"
3655 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3656 | dependencies:
3657 | ansi-regex "^2.0.0"
3658 |
3659 | strip-ansi@^4.0.0:
3660 | version "4.0.0"
3661 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3662 | dependencies:
3663 | ansi-regex "^3.0.0"
3664 |
3665 | strip-ansi@~0.1.0:
3666 | version "0.1.1"
3667 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991"
3668 |
3669 | strip-bom-buf@^1.0.0:
3670 | version "1.0.0"
3671 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572"
3672 | dependencies:
3673 | is-utf8 "^0.2.1"
3674 |
3675 | strip-bom@^2.0.0:
3676 | version "2.0.0"
3677 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3678 | dependencies:
3679 | is-utf8 "^0.2.0"
3680 |
3681 | strip-bom@^3.0.0:
3682 | version "3.0.0"
3683 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3684 |
3685 | strip-eof@^1.0.0:
3686 | version "1.0.0"
3687 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3688 |
3689 | strip-indent@^1.0.1:
3690 | version "1.0.1"
3691 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3692 | dependencies:
3693 | get-stdin "^4.0.1"
3694 |
3695 | strip-json-comments@~1.0.4:
3696 | version "1.0.4"
3697 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
3698 |
3699 | strip-json-comments@~2.0.1:
3700 | version "2.0.1"
3701 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3702 |
3703 | supports-color@^2.0.0:
3704 | version "2.0.0"
3705 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3706 |
3707 | supports-color@^3.1.2:
3708 | version "3.1.2"
3709 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
3710 | dependencies:
3711 | has-flag "^1.0.0"
3712 |
3713 | supports-color@^4.0.0:
3714 | version "4.2.1"
3715 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836"
3716 | dependencies:
3717 | has-flag "^2.0.0"
3718 |
3719 | symbol-observable@^0.2.2:
3720 | version "0.2.4"
3721 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40"
3722 |
3723 | symbol-observable@^1.0.4:
3724 | version "1.0.4"
3725 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
3726 |
3727 | table@^3.7.8:
3728 | version "3.8.3"
3729 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
3730 | dependencies:
3731 | ajv "^4.7.0"
3732 | ajv-keywords "^1.0.0"
3733 | chalk "^1.1.1"
3734 | lodash "^4.0.0"
3735 | slice-ansi "0.0.4"
3736 | string-width "^2.0.0"
3737 |
3738 | tar-pack@~3.3.0:
3739 | version "3.3.0"
3740 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae"
3741 | dependencies:
3742 | debug "~2.2.0"
3743 | fstream "~1.0.10"
3744 | fstream-ignore "~1.0.5"
3745 | once "~1.3.3"
3746 | readable-stream "~2.1.4"
3747 | rimraf "~2.5.1"
3748 | tar "~2.2.1"
3749 | uid-number "~0.0.6"
3750 |
3751 | tar@~2.2.1:
3752 | version "2.2.1"
3753 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3754 | dependencies:
3755 | block-stream "*"
3756 | fstream "^1.0.2"
3757 | inherits "2"
3758 |
3759 | term-size@^1.2.0:
3760 | version "1.2.0"
3761 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
3762 | dependencies:
3763 | execa "^0.7.0"
3764 |
3765 | test-exclude@^4.1.1:
3766 | version "4.1.1"
3767 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26"
3768 | dependencies:
3769 | arrify "^1.0.1"
3770 | micromatch "^2.3.11"
3771 | object-assign "^4.1.0"
3772 | read-pkg-up "^1.0.1"
3773 | require-main-filename "^1.0.1"
3774 |
3775 | text-encoding@0.6.4:
3776 | version "0.6.4"
3777 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19"
3778 |
3779 | text-table@^0.2.0, text-table@~0.2.0:
3780 | version "0.2.0"
3781 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3782 |
3783 | through2@^2.0.0:
3784 | version "2.0.1"
3785 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9"
3786 | dependencies:
3787 | readable-stream "~2.0.0"
3788 | xtend "~4.0.0"
3789 |
3790 | through@^2.3.6:
3791 | version "2.3.8"
3792 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3793 |
3794 | time-require@^0.1.2:
3795 | version "0.1.2"
3796 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98"
3797 | dependencies:
3798 | chalk "^0.4.0"
3799 | date-time "^0.1.1"
3800 | pretty-ms "^0.2.1"
3801 | text-table "^0.2.0"
3802 |
3803 | time-zone@^1.0.0:
3804 | version "1.0.0"
3805 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d"
3806 |
3807 | timed-out@^4.0.0:
3808 | version "4.0.1"
3809 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
3810 |
3811 | to-fast-properties@^1.0.1:
3812 | version "1.0.2"
3813 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
3814 |
3815 | tough-cookie@~2.3.0:
3816 | version "2.3.2"
3817 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3818 | dependencies:
3819 | punycode "^1.4.1"
3820 |
3821 | trim-newlines@^1.0.0:
3822 | version "1.0.0"
3823 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3824 |
3825 | trim-off-newlines@^1.0.1:
3826 | version "1.0.1"
3827 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
3828 |
3829 | trim-right@^1.0.1:
3830 | version "1.0.1"
3831 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3832 |
3833 | tryit@^1.0.1:
3834 | version "1.0.3"
3835 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
3836 |
3837 | tunnel-agent@~0.4.1:
3838 | version "0.4.3"
3839 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
3840 |
3841 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3842 | version "0.14.3"
3843 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d"
3844 |
3845 | type-check@~0.3.2:
3846 | version "0.3.2"
3847 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3848 | dependencies:
3849 | prelude-ls "~1.1.2"
3850 |
3851 | type-detect@^4.0.0:
3852 | version "4.0.3"
3853 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea"
3854 |
3855 | typedarray@~0.0.5:
3856 | version "0.0.6"
3857 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3858 |
3859 | uglify-js@^2.6:
3860 | version "2.7.4"
3861 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2"
3862 | dependencies:
3863 | async "~0.2.6"
3864 | source-map "~0.5.1"
3865 | uglify-to-browserify "~1.0.0"
3866 | yargs "~3.10.0"
3867 |
3868 | uglify-to-browserify@~1.0.0:
3869 | version "1.0.2"
3870 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3871 |
3872 | uid-number@~0.0.6:
3873 | version "0.0.6"
3874 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3875 |
3876 | uid2@0.0.3:
3877 | version "0.0.3"
3878 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82"
3879 |
3880 | uniq@^1.0.1:
3881 | version "1.0.1"
3882 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
3883 |
3884 | unique-string@^1.0.0:
3885 | version "1.0.0"
3886 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
3887 | dependencies:
3888 | crypto-random-string "^1.0.0"
3889 |
3890 | unique-temp-dir@^1.0.0:
3891 | version "1.0.0"
3892 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385"
3893 | dependencies:
3894 | mkdirp "^0.5.1"
3895 | os-tmpdir "^1.0.1"
3896 | uid2 "0.0.3"
3897 |
3898 | unzip-response@^2.0.1:
3899 | version "2.0.1"
3900 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
3901 |
3902 | update-notifier@^2.1.0:
3903 | version "2.2.0"
3904 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f"
3905 | dependencies:
3906 | boxen "^1.0.0"
3907 | chalk "^1.0.0"
3908 | configstore "^3.0.0"
3909 | import-lazy "^2.1.0"
3910 | is-npm "^1.0.0"
3911 | latest-version "^3.0.0"
3912 | semver-diff "^2.0.0"
3913 | xdg-basedir "^3.0.0"
3914 |
3915 | url-parse-lax@^1.0.0:
3916 | version "1.0.0"
3917 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
3918 | dependencies:
3919 | prepend-http "^1.0.1"
3920 |
3921 | user-home@^2.0.0:
3922 | version "2.0.0"
3923 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
3924 | dependencies:
3925 | os-homedir "^1.0.0"
3926 |
3927 | util-deprecate@~1.0.1:
3928 | version "1.0.2"
3929 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3930 |
3931 | uuid@^3.0.0:
3932 | version "3.1.0"
3933 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
3934 |
3935 | validate-npm-package-license@^3.0.1:
3936 | version "3.0.1"
3937 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3938 | dependencies:
3939 | spdx-correct "~1.0.0"
3940 | spdx-expression-parse "~1.0.0"
3941 |
3942 | verror@1.3.6:
3943 | version "1.3.6"
3944 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3945 | dependencies:
3946 | extsprintf "1.0.2"
3947 |
3948 | well-known-symbols@^1.0.0:
3949 | version "1.0.0"
3950 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518"
3951 |
3952 | which-module@^2.0.0:
3953 | version "2.0.0"
3954 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3955 |
3956 | which@^1.2.4, which@^1.2.9:
3957 | version "1.2.12"
3958 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192"
3959 | dependencies:
3960 | isexe "^1.1.1"
3961 |
3962 | wide-align@^1.1.0:
3963 | version "1.1.0"
3964 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
3965 | dependencies:
3966 | string-width "^1.0.1"
3967 |
3968 | widest-line@^1.0.0:
3969 | version "1.0.0"
3970 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"
3971 | dependencies:
3972 | string-width "^1.0.1"
3973 |
3974 | window-size@0.1.0:
3975 | version "0.1.0"
3976 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3977 |
3978 | wordwrap@0.0.2:
3979 | version "0.0.2"
3980 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3981 |
3982 | wordwrap@~0.0.2:
3983 | version "0.0.3"
3984 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3985 |
3986 | wordwrap@~1.0.0:
3987 | version "1.0.0"
3988 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3989 |
3990 | wrap-ansi@^2.0.0:
3991 | version "2.0.0"
3992 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f"
3993 | dependencies:
3994 | string-width "^1.0.1"
3995 |
3996 | wrappy@1:
3997 | version "1.0.2"
3998 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3999 |
4000 | write-file-atomic@^1.1.4:
4001 | version "1.2.0"
4002 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab"
4003 | dependencies:
4004 | graceful-fs "^4.1.2"
4005 | imurmurhash "^0.1.4"
4006 | slide "^1.1.5"
4007 |
4008 | write-file-atomic@^2.0.0:
4009 | version "2.1.0"
4010 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37"
4011 | dependencies:
4012 | graceful-fs "^4.1.11"
4013 | imurmurhash "^0.1.4"
4014 | slide "^1.1.5"
4015 |
4016 | write-json-file@^2.2.0:
4017 | version "2.2.0"
4018 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.2.0.tgz#51862506bbb3b619eefab7859f1fd6c6d0530876"
4019 | dependencies:
4020 | detect-indent "^5.0.0"
4021 | graceful-fs "^4.1.2"
4022 | make-dir "^1.0.0"
4023 | pify "^2.0.0"
4024 | sort-keys "^1.1.1"
4025 | write-file-atomic "^2.0.0"
4026 |
4027 | write-pkg@^3.1.0:
4028 | version "3.1.0"
4029 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9"
4030 | dependencies:
4031 | sort-keys "^2.0.0"
4032 | write-json-file "^2.2.0"
4033 |
4034 | write@^0.2.1:
4035 | version "0.2.1"
4036 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
4037 | dependencies:
4038 | mkdirp "^0.5.1"
4039 |
4040 | xdg-basedir@^3.0.0:
4041 | version "3.0.0"
4042 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
4043 |
4044 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0:
4045 | version "4.0.1"
4046 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4047 |
4048 | y18n@^3.2.1:
4049 | version "3.2.1"
4050 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4051 |
4052 | yallist@^2.0.0:
4053 | version "2.0.0"
4054 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4"
4055 |
4056 | yargs-parser@^5.0.0:
4057 | version "5.0.0"
4058 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
4059 | dependencies:
4060 | camelcase "^3.0.0"
4061 |
4062 | yargs-parser@^7.0.0:
4063 | version "7.0.0"
4064 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
4065 | dependencies:
4066 | camelcase "^4.1.0"
4067 |
4068 | yargs@^8.0.1:
4069 | version "8.0.2"
4070 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
4071 | dependencies:
4072 | camelcase "^4.1.0"
4073 | cliui "^3.2.0"
4074 | decamelize "^1.1.1"
4075 | get-caller-file "^1.0.1"
4076 | os-locale "^2.0.0"
4077 | read-pkg-up "^2.0.0"
4078 | require-directory "^2.1.1"
4079 | require-main-filename "^1.0.1"
4080 | set-blocking "^2.0.0"
4081 | string-width "^2.0.0"
4082 | which-module "^2.0.0"
4083 | y18n "^3.2.1"
4084 | yargs-parser "^7.0.0"
4085 |
4086 | yargs@~3.10.0:
4087 | version "3.10.0"
4088 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
4089 | dependencies:
4090 | camelcase "^1.0.2"
4091 | cliui "^2.1.0"
4092 | decamelize "^1.0.0"
4093 | window-size "0.1.0"
4094 |
--------------------------------------------------------------------------------