├── .babelrc
├── .editoronfig
├── .gitbook.yml
├── .gitignore
├── .npmrc
├── .travis.yml
├── .yarnrc
├── CHANGELOG.md
├── LICENSE
├── README.md
├── TODO.md
├── docs
├── INDEX.md
├── api
│ ├── consumer.md
│ ├── context.md
│ ├── index.md
│ ├── provider.md
│ ├── use-localize.md
│ └── with-localization.md
├── guides
│ ├── index.md
│ ├── localizing.md
│ ├── message-bundles.md
│ └── migrating-4.0.md
└── quick-start.md
├── package.json
├── rollup.config.js
├── src
├── index.js
├── react-localize.js
├── react-localize.test.js
├── util.format.js
├── util.format.test.js
└── withLocalization.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "build": {
4 | "presets": [["env", { "modules": false }], "stage-3", "react"],
5 | "plugins": ["external-helpers", "transform-class-properties"],
6 | "ignore": [
7 | "*.test.js"
8 | ]
9 | },
10 | "buildProd": {
11 | "presets": [["env", { "modules": false }], "stage-3", "react"],
12 | "plugins": [
13 | "external-helpers",
14 | "transform-class-properties",
15 | [
16 | "transform-react-remove-prop-types",
17 | { "mode": "remove", "removeImport": true }
18 | ]
19 | ],
20 | "ignore": [
21 | "*.test.js"
22 | ]
23 | },
24 | "es": {
25 | "presets": [["env", { "modules": false }], "stage-3", "react"],
26 | "plugins": ["transform-class-properties"],
27 | "ignore": [
28 | "*.test.js"
29 | ]
30 | },
31 | "commonjs": {
32 | "plugins": [
33 | ["transform-es2015-modules-commonjs", { "loose": true }],
34 | "transform-class-properties"
35 | ],
36 | "presets": ["stage-3", "react"],
37 | "ignore": [
38 | "*.test.js"
39 | ]
40 | },
41 | "test": {
42 | "presets": ["env", "stage-3", "react"],
43 | "plugins": ["transform-class-properties"]
44 | }
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/.editoronfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_style = space
5 | indent_size = 2
6 |
7 | end_of_line = lf
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
--------------------------------------------------------------------------------
/.gitbook.yml:
--------------------------------------------------------------------------------
1 | structure:
2 | readme: README.md
3 | summary: docs/INDEX.md
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | coverage/
4 | es/
5 | lib/
6 | .coveralls.yml
7 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | save-exact = true
2 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 8
4 | sudo: false
5 | matrix:
6 | include:
7 | # testing the ^15.x releases
8 | - env: REACT_VERSION=^15.x
9 | # testing the ^16.x releases
10 | - env: REACT_VERSION=^16.x
11 | # testing the latest release
12 | - env: REACT_VERSION=latest
13 | cache: yarn
14 | install:
15 | - yarn
16 | - yarn add react@$REACT_VERSION react-dom@$REACT_VERSION
17 | notifications:
18 | email: false
19 | after_success:
20 | # Upload to coveralls, but don't _fail_ if coveralls is down.
21 | - cat coverage/lcov.info | node_modules/.bin/coveralls || echo "Coveralls upload failed"
22 |
--------------------------------------------------------------------------------
/.yarnrc:
--------------------------------------------------------------------------------
1 | registry "https://registry.yarnpkg.com/"
2 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 | All notable changes to this project will be documented in this file. This project
3 | attempts to adhere to [Semantic Versioning](http://semver.org/). We also try to use
4 | [http://keepachangelog.com/](http://keepachangelog.com/) formatting for this file to
5 | make it easier to update and read.
6 |
7 | ## [Unreleased]
8 | _(add items here to be added to future release)_
9 |
10 | ## 2019-07-15 5.1.0
11 | ### Added
12 | - `LocalizationContext` is exposed for being used in classes with context api
13 | - documentation on `withLocalization` and `LocalizationContext`
14 |
15 | ## 2019-07-15 5.0.1
16 | ### Changed
17 | - Provide ability to use empty string as translation
18 |
19 | ## 2019-05-01 5.0.0
20 | ### Added
21 | - Added `useLocalize` hook.
22 |
23 | ## 2018-06-19 4.0.0-beta.2
24 | ### Added
25 | - More documentation (migration guide, ` ` replacement guide)
26 | - Made a few fixes to the `_localize` internal function flow, although
27 | the order of operations here may need to change again if there's feedback
28 | around the current way we invoke / don't invoke `props.localize`.
29 |
30 | ## 4.0.0-beta.1
31 | ### Added
32 | - Support for older react versions via `create-react-context`
33 |
34 | ### Changed
35 | - Basically everything. Aligned with `react-access` from a deps/structure/tooling standpoint
36 | - The entire API is updated, while conceptually the same its now more
37 | in line with the latest React Context functionality
38 | - Documentation matches up more with the new API. Which is _probably_ for the best?
39 |
40 | ### Removed
41 | - the ` ` component is no longer in the API at all, and we will plan to add documentation
42 | on how you can build a simple one yourself using `withLocalization()`.
43 |
44 |
45 | ## 3.0.0, 3.0.0-beta 2017-04-26
46 | ### Added
47 | - Support for React 15.5 💯
48 | - `peerDependencies` now includes `prop-types` 🎉.
49 | - I don't have a strategy yet for you to only include that in development, and
50 | strip PropTypes in prod bundles, but that is what you should do especially if size is a concern.
51 |
52 | ### Changed
53 | - Updated devDependencies for mocha & babel-register 👍
54 | - Update Travis CI matrix to test against a wider variety of
55 | node and react versions.
56 |
57 | ## 2.0.1 2017-04-03
58 | ### Added
59 | - Tests for ` ` that assert it can work with larger, nested bundles by default
60 |
61 | ### Changed
62 | - Published module now only includes `build/` files, and doesn't download src/test files not
63 | needed for consumption.
64 | - Precommit rule/script has been disabled until linting is fixed.
65 |
66 | ### Fixed
67 | - Width formatting on some lines in the this CHANGELOG
68 | - `PropTypes` correctly indicate any object can be passed, not just `objectOf(string)`
69 |
70 | ## 2.0.0 2017-02-14
71 | ### Added
72 | - Support for `.eslintrc`, code clean up to get `src/` directory passing new rules
73 | - Connected components can now log warnings out when `_localizeDebug` is set, and will
74 | always be passed a safe to invoke function regardless of a missing context function.
75 |
76 | ### Changed
77 | - Localization Connector now behaves more like redux `connect()` in that it passes
78 | `localize()` as a prop to components now, removing the need for components to access
79 | context.
80 | - Project now uses `save-exact` for installed dependencies
81 |
82 | ## 1.1.1 2016-08-02
83 | ### Fixed
84 | - Bug to handle passing `null` to `localize('label', null)` more gracefully
85 |
86 | ## 1.1.0 2016-08-02
87 | ### Added
88 | - Support for peerDependency `react@^0.14.6 || 15.x`
89 | - Changelog formatting for better release tracking
90 |
91 | ### Changed
92 | - Repo files (.gitignore, README.md)
93 |
94 | ### Fixed
95 | - Bug causing `[]` to show at end of messages using ` ` introduced [here](https://github.com/stevey-p/react-localize/blob/fde285cb2392194db7712a619f040b0c21daecaf/src/Localization.jsx#L35).
96 |
97 | ## 1.0.0
98 | Intial release of ` ` wrapper and ` ` helper components for looking up keys in
99 | a message bundle and localizing text. Includes interpolation, custom rendering options, and
100 | context helper function.
101 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2016, Stephen Rivas JR
2 |
3 | Permission to use, copy, modify, and/or distribute this software for any
4 | purpose with or without fee is hereby granted, provided that the above
5 | copyright notice and this permission notice appear in all copies.
6 |
7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # react-localize
2 | A simple React Context wrapper and text localization component
3 | for localizing strings.
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | ## Documentation:
20 |
21 | Please refer to our [gitbook documentation](https://reactlocalize.gitbook.io/docs/)
22 | for more detailed information & resources.
23 |
24 | ## Getting Started, Quickly:
25 |
26 | ### Install it from [npm, Inc.*](http://www.npmjs.org):
27 | `npm i react-localize`
28 |
29 | _*or via `yarn add react-localize`_
30 |
31 | ### Example of usage:
32 |
33 | ```js
34 | import { LocalizationProvider, LocalizationConsumer } from 'react-localize';
35 | // this should come from your server or localization strings bundle source
36 | // for your application.
37 | const localizationBundle = {
38 | 'app.button.Submit': 'Submit',
39 | foo: {
40 | bar: 'Hey %s, you must be %d years old?'
41 | }
42 | };
43 |
44 |
45 |
46 |
47 | {({ localize }) => {
48 | return
49 |
{localize('prop.MissingValue')}
50 |
{localize('app.button.Submit')}
51 |
{localize('foo.bar', ['Stephen', 34])}
52 |
;
53 | }}
54 |
55 |
56 |
57 |
58 | // outputs:
59 | //
60 | //
prop.MissingValue
61 | //
Submit
62 | //
Hey Stephen, you must be 34 years old?
63 | //
64 | ```
65 |
--------------------------------------------------------------------------------
/TODO.md:
--------------------------------------------------------------------------------
1 | # Done is Better than Perfect™
2 | (but we should do these, eventually)
3 |
4 | - Fix up lint / style and update githooks
5 |
--------------------------------------------------------------------------------
/docs/INDEX.md:
--------------------------------------------------------------------------------
1 | # Table of Contents
2 |
3 | * [Home](../README.md)
4 | * [Quick Start](quick-start.md)
5 | * [API Reference](api/index.md)
6 | * [LocalizationProvider](api/provider.md)
7 | * [LocalizationConsumer](api/consumer.md)
8 | * [LocalizationContext](api/context.md)
9 | * [withLocalization()](api/with-localization.md)
10 | * [useLocalize()](api/use-localize.md)
11 | * [Guides](guides/index.md)
12 | * [Localizing](guides/localizing.md)
13 | * [Message Bundles](guides/message-bundles.md)
14 | * [Examples](INDEX.md)
15 |
--------------------------------------------------------------------------------
/docs/api/consumer.md:
--------------------------------------------------------------------------------
1 | The ` ` component of this library is quite
2 | straightforward. It accepts only 1 prop, `children`, and it will
3 | invoke that provided function any time it renders.
4 |
5 | ```jsx
6 |
7 | {({ localize }) => {
8 | // you can return any valid React return value here
9 |
10 | // `localize` is a function that has context to the
11 | // `messages` object in it's nearest provider
12 | // and can be used to obtain format strings based on
13 | // two arguments:
14 |
15 | return
16 |
{localize('key', ['values'])}
17 |
;
18 | }}
19 |
20 | ```
21 |
22 | The main benefit of this library comes from this component,
23 | as any time the app, or more specifically, the provider, re-
24 | renders this will ensure that the children & grandchildren nodes
25 | will re-render as well with updated localization values.
26 |
27 | If your app doesn't benefit from retrieving a new bundle based
28 | on a language/locale change (e.g. a user toggles from English
29 | to French) or you don't need to update the change without
30 | refreshing the page you can consider using a singleton library
31 | with a simple `getMessage()` function.
32 |
--------------------------------------------------------------------------------
/docs/api/context.md:
--------------------------------------------------------------------------------
1 | The contextType property on a class can be assigned a Context object created by React.createContext(). This lets you consume the nearest current value of that Context type using this.context. You can reference this in any of the lifecycle methods including the render function:
2 |
3 | ```js
4 | import { LocalizationContext } from 'react-localize';
5 |
6 | const localizationBundle = {
7 | 'app.button.Submit': 'Submit',
8 | foo: {
9 | bar: 'Hey %s, you must be %d years old?'
10 | }
11 | };
12 |
13 | class App extends React.PureComponent {
14 | render() {
15 | const { localize } = this.context;
16 |
17 | return (
18 |
19 |
{localize('prop.MissingValue')}
20 |
{localize('app.button.Submit')}
21 |
{localize('foo.bar', ['Stephen', 34])}
22 |
23 | );
24 | }
25 | }
26 |
27 | App.contextType = LocalizationContext;
28 |
29 | // outputs:
30 | //
31 | //
prop.MissingValue
32 | //
Submit
33 | //
Hey Stephen, you must be 34 years old?
34 | //
35 | ```
36 |
--------------------------------------------------------------------------------
/docs/api/index.md:
--------------------------------------------------------------------------------
1 | `react-localize` exports the following named exports:
2 |
3 | * [LocalizationProvider](PROVIDER.md)
4 | * [LocalizationConsumer](CONSUMER.md)
5 | * [withLocalization](WITHLOCALIZATION.md)
6 |
7 | To use this library, you need to use at least _two_ of the
8 | above exports or you won't really be getting any value
9 | from this library.
10 |
11 | If you're not familiar with [React Context](https://reactjs.org/docs/context.html)
12 | you should check that out to familiarize yourself with how
13 | it works. `react-localize` is really just a pattern on top
14 | of this concept to help provide a string formatter to your
15 | components so they can localize messages that are displayed
16 | to your user.
17 |
18 | You can use the above pieces during an [internationalization](https://en.wikipedia.org/wiki/Internationalization_and_localization)
19 | project for your application to allow your components to
20 | localize as follows:
21 |
22 | ### Before
23 | ```jsx
24 | // a non-localized component that will always render
25 | // the same text for the user(s)
26 | render() {
27 | return
28 |
Shopping Cart
29 |
You have {this.state.count} items in your cart
30 |
31 | }
32 | ```
33 |
34 | ### After
35 | ```jsx
36 | // a component designed with localization in mind
37 | render() {
38 | const { localize } = this.props;
39 | return
40 |
{localize('label.ShoppingCart')}
41 |
{localize('label.CartItemsCount', [this.state.count])}
42 |
43 | }
44 | ```
45 |
46 | In the second example, the text that is displayed to a user is
47 | controlled outside of the render method. The primary benefit
48 | here is that you can change this value as translations may need,
49 | or if a user language preference changes.
50 |
--------------------------------------------------------------------------------
/docs/api/provider.md:
--------------------------------------------------------------------------------
1 | This is the primary wrapper component for this library. Most apps
2 | likely only need one of these, at or near the top of the render
3 | tree. However, you can provide different levels / messages at
4 | each level if necessary. The ` ` takes
5 | the following properties:
6 |
7 |
8 | ### messages
9 | This is your localization bundle, and it should be an object with
10 | a format like so:
11 |
12 | ```js
13 | const messages = {
14 | foo: 'bar',
15 | 'label.baz': 'bat',
16 | // etc
17 | }
18 | ```
19 |
20 | The default `localize` function does a simple `messages[key]`
21 | lookup. If your bundle requires a different format (e.g. nested
22 | like so: `{ labels: { error: 'error', ... }, ... }`) you may need
23 | to override the `localize` function property (below).
24 |
25 | ### localize
26 | Internally we do a few sanity checks before invoking a simple format
27 | function (similar to util.format) provided by default to return
28 | key/value results. You can override this behavior by providing your
29 | _own_ `localize(messages, key, values)` function to
30 | ` `. This function will be called in place
31 | of the default one, and you can do any lookup / formatting that
32 | you need not provided by the default.
33 |
34 | The default `localize()` format function behaves similar to `printf`
35 | formatted strings. You can read more about how that works on
36 | [util.format](https://nodejs.org/api/util.html#util_util_format_format) as well.
37 |
38 | Here's some quick examples:
39 |
40 | ```js
41 | util.format('Why hello, %s!', 'Stephen');
42 | // 'Why hello, Foophen!'
43 |
44 | util.format('There are %d things you have to do today', 5)
45 | // There are 5 things you have to do today
46 | ```
47 |
48 | ### xLocale
49 | If you pass ` ` this short circuits
50 | `localize()` calls to always return `XXXXXX`. This can be useful
51 | for viewing your UI and identifying which parts of the application
52 | are not using localization.
53 |
54 | ### debug
55 | Utilizing ` ` expands the `localize()`
56 | function to include a `console.warn` messages when a key cannot be
57 | found or when key/messages are not provided to the function when
58 | invoked.
59 |
--------------------------------------------------------------------------------
/docs/api/use-localize.md:
--------------------------------------------------------------------------------
1 | `useLocalize` function is built on top of [useContext React Hook](https://reactjs.org/docs/hooks-reference.html#usecontext). Hooks functionality is supported only in pure components.
2 |
3 | ```js
4 | import { useLocalize } from 'react-localize';
5 |
6 | const localizationBundle = {
7 | 'app.button.Submit': 'Submit',
8 | foo: {
9 | bar: 'Hey %s, you must be %d years old?'
10 | }
11 | };
12 |
13 | const PureFn = () => {
14 | const { localize } = useLocalize();
15 |
16 | return (
17 |
18 |
{localize('prop.MissingValue')}
19 |
{localize('app.button.Submit')}
20 |
{localize('foo.bar', ['Stephen', 34])}
21 |
22 | )
23 | };
24 |
25 | // outputs:
26 | //
27 | //
prop.MissingValue
28 | //
Submit
29 | //
Hey Stephen, you must be 34 years old?
30 | //
31 | ```
--------------------------------------------------------------------------------
/docs/api/with-localization.md:
--------------------------------------------------------------------------------
1 | This connector behaves similarly to [connect()](https://github.com/reactjs/react-redux/blob/master/docs/api.md#connectmapstatetoprops-mapdispatchtoprops-mergeprops-options)
2 | in that it will take a `Component` and wrap it inside of a
3 | ` ` and hoist the `localize` method
4 | onto the `props` provided to a given ` `.
5 |
6 | ```js
7 | import { withLocalization } from 'react-localize';
8 |
9 | const MyComponent = props => {
10 | const { label, localize } = this.props;
11 | return
12 | {label}
13 | ;
14 |
15 | };
16 |
17 | const LocalizedMyComponent = withLocalization(MyComponent);
18 |
19 | export default LocalizedMyComponent;
20 | ```
21 |
22 | Since this causes a ` ` to be added to your
23 | render output, it is not recommended that you do this for small
24 | components. Be sure to at least consider the potential impact
25 | this could have on performance.
26 |
27 | From a component design perspective, it's best to simply design
28 | their `propTypes` API to include:
29 |
30 | ```js
31 | class Foo {
32 | static propTypes = {
33 | localize: PropTypes.func.isRequired,
34 | }
35 | // etc
36 | }
37 | ```
38 |
39 | When these are rendered in various places in your app you can
40 | provide this function to them. Although this will introduce
41 | passing props, it will reduce the number of elements that get
42 | added to your output tree - just something to keep in mind when
43 | using this part of the API!
44 |
--------------------------------------------------------------------------------
/docs/guides/index.md:
--------------------------------------------------------------------------------
1 | // todo
2 |
3 | * [Localizing](localizing.md)
4 | * [Message Bundles](message-bundles.md)
5 | * Migration Guides
6 | * [Migrating to 4.0.0](migrating-4.0.md)
7 |
--------------------------------------------------------------------------------
/docs/guides/localizing.md:
--------------------------------------------------------------------------------
1 | After you've installed `react-localize` and integrated it in your application
2 | your primary interaction point will be with a `localize` function. This function
3 | is invoked with 3 arguments: `localize(messages, key, values)`.
4 |
5 | - `messages` is the localization bundle that was provided to the nearest parent
6 | ` `. We recommend this be an object, something like this:
7 |
8 | ```js
9 | const messages = {
10 | 'label.Checkout': 'Checkout',
11 | 'messages.error.accessDenied': 'Access Denied',
12 | 'label.cart.items': '%d Items in cart',
13 | // etc
14 | }
15 | ```
16 |
17 | By default, `localize()` will do a simple `messages[key]` lookup to get the
18 | string, and then it will run it against a `printf` style formatter passing the
19 | string and the values to it.
20 |
21 | The simple use cases supported out of the box look something like:
22 |
23 | ```jsx
24 | class MyApp extends React.Component {
25 | render() {
26 | return
27 | {({ localize }) => {
28 | // using the messages bundle above ^
29 |
30 | const itemsInCart = localize('label.cart.items', this.state.itemsCount);
31 |
32 | return
33 |
{itemsInCart}
34 |
{localize('label.Checkout')}
35 |
;
36 | }}
37 | ;
38 | }
39 | }
40 | ```
41 |
42 | ### Customizing Localization Output
43 | As long as you can gain value from the `(messages, key, values, xLocale, debug)`
44 | signature, you can provide an override `localize` function to the
45 | ` `.
46 |
47 | This would allow you to add in more advanced things like pluralization, or
48 | following a different string templates format & behavior. For example, by default
49 | we simply return the `key` if a string is not found in a bundle, that could be
50 | overridden like so:
51 |
52 | ```jsx
53 | const customLocalize = (messages, key, values, xLocale, debug) => {
54 | const messageString = _.get(messages, key, `Localization Error for: ${key}`);
55 |
56 | return util.format(messageString, values);
57 | }
58 |
59 | ReactDOM.render(
60 | );
61 | ```
62 |
63 | In this example we also introduce `util.format` for our string formatting, and
64 | we leveraged `lodash.get` to look up the string for a key, while providing a
65 | fallback value if one was not found.
66 |
--------------------------------------------------------------------------------
/docs/guides/message-bundles.md:
--------------------------------------------------------------------------------
1 | Message Bundles are relatively straightforward objects that contain some
2 | strings that map to a `key` and can be used to produce some display text
3 | to users. Depending on how your existing bundle object is defined, you
4 | might need to override the `localize` method.
5 |
6 | If your bundle follows a simple structure & is `printf` format friendly:
7 |
8 | ```js
9 | const messages = {
10 | save: 'Save',
11 | cancel: 'Cancel',
12 | 'banner.alt.text': 'A neat graphic of our Company Brand',
13 | 'menu.welcome.user': 'Welcome, %s!',
14 | }
15 | ```
16 |
17 | then you can use the defaults provided in `react-localize`.
18 |
19 | A benefit of using ` ` in this library, is that if
20 | messages _change_ then your UI display text can change as well. One real
21 | world example of this would be changing the display language without
22 | refreshing the whole page. Here's an example of what that might look like:
23 |
24 | ```jsx
25 | export class LanguageSwitcher extends React.Component {
26 | render() {
27 | return
28 |
29 |
30 |
Select Language:
31 |
this.getBundle('en')}>English
32 |
this.getBundle('fr')}>French
33 |
this.getBundle('jp')}>Japanese
34 |
35 |
{this.props.children}
36 |
37 | ;
38 | }
39 |
40 | getBundle = (languageCode) => {
41 | // retrieve a new language bundle from the server, and store it
42 | // in local state for use by other components in the tree
43 | return fetch(`/api/bundle/${languageCode || 'en'}`)
44 | .then(messages => this.setState({ messages }));
45 | }
46 | }
47 | ```
48 |
49 | Of course, our language selection bar itself would likely want to be able
50 | to take advantage of the bundle for the button values, so you'd probably
51 | split this out a bit more in your app or use something like redux to store
52 | the messages bundle that gets passed to ` `. That
53 | part is of course up to you and what your application needs.
54 |
--------------------------------------------------------------------------------
/docs/guides/migrating-4.0.md:
--------------------------------------------------------------------------------
1 | Throughout the project evolution we have not put together a migration guide
2 | for the changes leading up to `4.0.0`, and relied mostly on our `CHANGELOG`.
3 | Since this API change is the most significant, we put together this guide to
4 | help you ensure the best possible migration. If you're still having issues,
5 | [ask for help!](https://github.com/stevey-p/react-localize/issues/new).
6 |
7 | ### Migrating the Provider
8 | Previously, our context wrapper was exported like so:
9 | ```js
10 | import { Localization } from 'react-localize';
11 | ```
12 |
13 | In the 4.x release, all of the top level props remained the same but you need
14 | to use the component under it's new name anywhere you previously were using
15 | ` ` in your app:
16 |
17 | ```js
18 | import { LocalizationProvider as Localization } from 'react-localize';
19 | ```
20 |
21 | Of course, you don't _have_ to rename it back to ` ` but you can
22 | if that is preferred to change both the import name _and_ the component name.
23 |
24 | ### Migrating `localizationConnect()` to `withLocalization()`
25 | This step should be straightforward and you can simply find & replace this
26 | throughout your code base. Be sure to change both the `import` and the usage
27 | of the wrapper:
28 |
29 | ```js
30 | // before:
31 | // import { localizationConnector } from 'react-localize';
32 |
33 | // now:
34 | import { withLocalization } from 'react-localize';
35 |
36 | class MyReactComponent extends React.Component {
37 | render() {
38 | const { localize } = this.props;
39 |
40 | return localize('a.key');
41 | }
42 | }
43 |
44 | // before:
45 | // export default localizationConnector(MyReactComponent);
46 | // now:
47 | export default withLocalization(MyReactComponent);
48 | ```
49 |
50 | ### Migrating from `context` to `props`
51 | Previous versions of React context allowed components themselves to define
52 | pieces of context they wished to be provided via `contextTypes`. This API was
53 | removed in newer versions of React, so you need to remove any code referencing
54 | the `localize` method in `contextTypes` or on `this.context`:
55 |
56 | ```js
57 | export class MyContextComponent extends React.Component {
58 | render() {
59 | const { localize } = this.context;
60 |
61 | return localize('a.context.key');
62 | }
63 |
64 | static contextTypes = {
65 | localize: PropTypes.func,
66 | }
67 | }
68 | ```
69 |
70 | You can either use `withLocalization(MyContextComponent)` to simply access the
71 | `localize` method on props aka `const { localize } = this.props;`, or you can
72 | use the `` component. Here's how that would like for the
73 | above component:
74 |
75 | ```js
76 | import { LocalizationConsumer } from 'react-localize';
77 |
78 | export class MyContextComponent extends React.Component {
79 | render() {
80 | return
81 | {({ localize }) => {
82 | return localize('a.context.key');
83 | }}
84 | ;
85 | }
86 | }
87 | ```
88 |
89 | ### Migrating ` ` Usage
90 | This component was removed from the library. It was essentially syntax sugar for
91 | adding context, childContextTypes, etc, to a provided component. You should be
92 | using the ` ` to wrap any portions
93 | of your tree that need to consume the `localize()` method on context.
94 |
95 | ### Migrating ` ` Usage
96 | The ` ` component is another one we removed from the API. While it can be
97 | useful in some cases, and can make your JSX a little easier to read, we wanted
98 | to move this to application land to help reduce bundle size for folks not using
99 | it. It's still really easy to build and consume in your apps. Here's an example
100 | of what that might look like if you wanted to leave your app code using this
101 | component unchanged:
102 |
103 | ```js
104 | import React, { Component } from 'react';
105 | import PropTypes from 'prop-types';
106 | import { LocalizationConsumer } from 'react-localize';
107 |
108 | class Text extends React.Component {
109 | render() {
110 | const { message, values, localize, ...rest } = this.props;
111 |
112 | return
113 | {({ localize, debug, xLocale }) => {
114 | if (debug) {
115 | rest['data-original-message'] = message;
116 |
117 | return {localize(message, values)} ;
118 | }
119 | }}
120 | ;
121 | }
122 | }
123 |
124 | export default withLocalization(Text);
125 | ```
126 |
127 | This also gives you more control over what element is rendered, what erorrs or
128 | warnings happen, and how you handle debug/xLocale. You would use the above
129 | component the same way as the old one, like so:
130 |
131 | ```js
132 | import Text from './text-localization.js';
133 | import utils from './utils.js';
134 |
135 | class MyApp extends React.Component {
136 | render() {
137 | return ;
141 | }
142 | }
143 | ```
144 |
--------------------------------------------------------------------------------
/docs/quick-start.md:
--------------------------------------------------------------------------------
1 | This quick start guide is designed to give you an _idea_ of how you can cover
2 | the basics of using this module in the quickest, most succinct way. Most likely,
3 | there will be More Too It™ than just this, but you can get a good idea of how
4 | to get started below:
5 |
6 | ### Install it from [npm, Inc.*](http://www.npmjs.org):
7 | `npm i react-localize`
8 |
9 | _*or via `yarn add react-localize`_
10 |
11 | ### Wire It Up to Your App:
12 |
13 | ```js
14 | import { LocalizationProvider, LocalizationConsumer } from 'react-localize';
15 | // this should come from your server or localization strings bundle source
16 | // for your application.
17 | const localizationBundle = {
18 | 'app.button.Submit': 'Submit',
19 | foo: {
20 | bar: 'Hey %s, you must be %d years old?'
21 | }
22 | };
23 |
24 |
25 |
26 |
27 | {({ localize }) => {
28 | return
29 |
{localize('prop.MissingValue')}
30 |
{localize('app.button.Submit')}
31 |
{localize('foo.bar', ['Stephen', 34])}
32 |
;
33 | }}
34 |
35 |
36 |
37 | ```
38 |
39 | When your React application renders and you load it up, you should see some
40 | Plain Old Html™ like this:
41 |
42 | ```html
43 |
44 |
prop.MissingValue
45 |
Submit
46 |
Hey Stephen, you must be 34 years old?
47 |
48 | ```
49 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-localize",
3 | "version": "5.1.1",
4 | "description": "A simple context wrapper and text localization component for localizing strings",
5 | "main": "lib/index.js",
6 | "module": "es/index.js",
7 | "files": [
8 | "dist",
9 | "lib",
10 | "es"
11 | ],
12 | "scripts": {
13 | "clean": "yarn rimraf dist lib es",
14 | "build": "yarn run clean && yarn run build:cjs && yarn run build:es && yarn run build:umd && yarn run build:umd:min",
15 | "build:cjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
16 | "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
17 | "build:umd": "cross-env NODE_ENV=development BABEL_ENV=build rollup -c -i src/index.js -o dist/react-localize.js",
18 | "build:umd:min": "cross-env NODE_ENV=production BABEL_ENV=buildProd rollup -c -i src/index.js -o dist/react-localize.min.js",
19 | "prepublish": "in-publish && yarn run test && yarn run build || not-in-publish",
20 | "test": "jest --coverage && cat ./coverage/lcov.info | node_modules/.bin/coveralls"
21 | },
22 | "repository": {
23 | "type": "git",
24 | "url": "git@github.com:stevey-p/react-localize.git"
25 | },
26 | "keywords": [
27 | "l10n",
28 | "localization",
29 | "localize",
30 | "react",
31 | "text",
32 | "utilities"
33 | ],
34 | "author": "Stephen Rivas Jr",
35 | "license": "ISC",
36 | "dependencies": {
37 | "create-react-context": "^0.2.1"
38 | },
39 | "peerDependencies": {
40 | "prop-types": "15.x",
41 | "react": ">=0.14.9"
42 | },
43 | "devDependencies": {
44 | "babel-cli": "^6.26.0",
45 | "babel-core": "^6.26.0",
46 | "babel-eslint": "^8.2.1",
47 | "babel-jest": "^22.1.0",
48 | "babel-plugin-external-helpers": "^6.22.0",
49 | "babel-plugin-transform-class-properties": "^6.24.1",
50 | "babel-plugin-transform-react-remove-prop-types": "^0.4.12",
51 | "babel-preset-env": "^1.6.1",
52 | "babel-preset-react": "^6.24.1",
53 | "babel-preset-stage-3": "^6.24.1",
54 | "coveralls": "3.1.0",
55 | "cross-env": "^5.2.0",
56 | "in-publish": "2.0.0",
57 | "jest": "^22.4.3",
58 | "jest-dom": "3.1.4",
59 | "prop-types": "~15.6.2",
60 | "react": "^16.3.0",
61 | "react-dom": "^16.3.0",
62 | "react-testing-library": "^4.0.0",
63 | "rollup": "^0.45.1",
64 | "rollup-plugin-babel": "^3.0.5",
65 | "rollup-plugin-commonjs": "^8.2.6",
66 | "rollup-plugin-node-resolve": "^3.0.0",
67 | "rollup-plugin-replace": "^1.2.1",
68 | "rollup-plugin-uglify": "^2.0.1"
69 | },
70 | "jest": {
71 | "testURL": "http://localhost/",
72 | "coverageDirectory": "./coverage/",
73 | "collectCoverage": true
74 | }
75 | }
76 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import nodeResolve from 'rollup-plugin-node-resolve';
2 | import commonjs from 'rollup-plugin-commonjs';
3 | import babel from 'rollup-plugin-babel';
4 | import uglify from 'rollup-plugin-uglify';
5 | import replace from 'rollup-plugin-replace';
6 |
7 | var env = process.env.NODE_ENV;
8 | var config = {
9 | format: 'umd',
10 | moduleName: 'ReactLocalize',
11 | external: ['react', 'prop-types'],
12 | globals: {
13 | react: 'React',
14 | 'prop-types': 'PropTypes',
15 | },
16 | context: 'this',
17 | plugins: [
18 | nodeResolve({
19 | jsnext: true
20 | }),
21 | commonjs({
22 | include: 'node_modules/**'
23 |
24 | // explicitly specify unresolvable named exports
25 | // (see below for more details)
26 | // namedExports: { './module.js': ['foo', 'bar' ] }, // Default: undefined
27 | }),
28 | babel({
29 | exclude: 'node_modules/**'
30 | }),
31 | replace({
32 | 'process.env.NODE_ENV': JSON.stringify(env)
33 | })
34 | ]
35 | };
36 |
37 | if (env === 'production') {
38 | config.plugins.push(
39 | uglify({
40 | compress: {
41 | pure_getters: true,
42 | unsafe: true,
43 | unsafe_comps: true,
44 | warnings: false
45 | }
46 | })
47 | );
48 | }
49 |
50 | export default config;
51 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | export {
2 | LocalizationProvider,
3 | LocalizationConsumer,
4 | Localize as LocalizationContext,
5 | useLocalize,
6 | } from './react-localize';
7 | import withLocalization from './withLocalization';
8 |
9 | export { withLocalization };
10 |
--------------------------------------------------------------------------------
/src/react-localize.js:
--------------------------------------------------------------------------------
1 | import React, { useContext } from 'react';
2 | import PropTypes from 'prop-types';
3 | import createReactContext from 'create-react-context';
4 | import format from './util.format';
5 |
6 | // by default we want our consumers to just safely return the key provided
7 | // to it, rather than exploding if not wrapped in a provider properly
8 | export const Localize = createReactContext({
9 | localize: key => key,
10 | debug: true,
11 | xLocale: false,
12 | });
13 |
14 | export const useLocalize = () => {
15 | if (!useContext) {
16 | console.warn('This feature is only available in React >= 16.8')
17 | return {};
18 | }
19 |
20 | return useContext(Localize);
21 | };
22 |
23 | export class LocalizationProvider extends React.Component {
24 | render() {
25 | const { _localize: localize } = this;
26 | const { xLocale, debug } = this.props;
27 |
28 | return
29 | {this.props.children}
30 | ;
31 | }
32 |
33 | _localize = (key, values) => {
34 | const { localize, xLocale, messages, debug } = this.props;
35 | const isLocalizeProvided = localize !== LocalizationProvider.defaultProps.localize;
36 |
37 | let localizeFn = localize;
38 | if (typeof localize !== 'function') {
39 | localizeFn = (messages, key) => {
40 | if (debug) console.warn(`Unable to localize ${key}, not connected to react-localize`);
41 | return key;
42 | };
43 | }
44 |
45 | if (isLocalizeProvided) {
46 | // doing sanity checks against the inputs, lookup, debug, xLocale are only
47 | // supported for the default behavior, when users provide their own override
48 | // method we can defer that to them
49 | return localizeFn(messages, key, values, xLocale, debug);
50 | }
51 |
52 | if (!messages || !key) {
53 | if (debug) console.warn('Unable to localize missing messages or key in arguments.');
54 | return null;
55 | }
56 |
57 | const lookup = messages[key];
58 | if (!lookup && typeof lookup !== 'string') {
59 | if (debug) console.warn(`Unable to localize missing messages or key in arguments for ${key}`);
60 | return key;
61 | }
62 |
63 | if (xLocale) {
64 | return 'XXXXXX';
65 | }
66 |
67 | return localizeFn(messages, key, values);
68 | }
69 |
70 | static propTypes = {
71 | children: PropTypes.node.isRequired,
72 | localize: PropTypes.func,
73 | messages: PropTypes.object.isRequired,
74 | xLocale: PropTypes.bool,
75 | }
76 |
77 | static defaultProps = {
78 | debug: false,
79 | localize(messages, key, values = null) {
80 | if (values) {
81 | return format(messages[key], values);
82 | }
83 |
84 | return format(messages[key]);
85 | },
86 | xLocale: false
87 | }
88 | }
89 |
90 | export const LocalizationConsumer = Localize.Consumer;
91 |
--------------------------------------------------------------------------------
/src/react-localize.test.js:
--------------------------------------------------------------------------------
1 | import React, { useContext } from 'react';
2 | import { render } from 'react-testing-library';
3 | import 'jest-dom/extend-expect';
4 | import { LocalizationConsumer, LocalizationProvider, withLocalization, useLocalize } from './index';
5 |
6 | const messages = {
7 | emptyString: '',
8 | foo: 'bar',
9 | fooValues: 'a baz %s',
10 | };
11 |
12 | beforeEach(() => {
13 | console._old = console.warn;
14 | console.warn = jest.fn();
15 | });
16 |
17 | afterEach(() => {
18 | console.warn = console._old;
19 | });
20 |
21 | test('provides a localize function that can be used to retrieve messages in a bundle', () => {
22 | const { queryByText, debug } = render(
23 |
24 | {({ localize }) => {
25 | return
26 | {localize('foo')}
27 | {localize('fooValues', ['bat'])}
28 | {localize('emptyString')}
29 | {localize('unexistingKey')}
30 |
;
31 | }}
32 |
33 | );
34 |
35 | expect(queryByText('bar')).not.toBeNull();
36 | expect(queryByText('a baz bat')).not.toBeNull();
37 | expect(queryByText('unexistingKey')).not.toBeNull();
38 | expect(queryByText('emptyString')).toBeNull();
39 | });
40 |
41 | test('calls a provided props.localize function with expected values', () => {
42 | const key = 'key';
43 | const values = ['values'];
44 | const messages = { key: 'key' };
45 | const xLocale = false;
46 | const debug = true;
47 | const customLocalize = jest.fn();
48 |
49 | render(
50 |
51 | {({ localize }) => {
52 | localize(key, values);
53 | return null;
54 | }}
55 |
56 | );
57 |
58 | expect(customLocalize).toBeCalled();
59 | expect(customLocalize).toBeCalledWith(messages, key, values, xLocale, debug);
60 | });
61 |
62 | test('warns in debug mode by default when messages are not provided', () => {
63 | render(
64 |
65 | {({ localize }) => {
66 | localize('foo');
67 | return null;
68 | }}
69 |
70 | );
71 |
72 | expect(console.warn).toBeCalled();
73 | });
74 |
75 | test('warns in debug mode by default when a key is not provided', () => {
76 | render(
77 |
78 | {({ localize }) => {
79 | localize();
80 | return null;
81 | }}
82 |
83 | );
84 |
85 | expect(console.warn).toBeCalled();
86 | });
87 |
88 | test('warns in debug mode by default when a key is not found in messages', () => {
89 | render(
90 |
91 | {({ localize }) => {
92 | localize('missssingKey');
93 | return null;
94 | }}
95 |
96 | );
97 |
98 | expect(console.warn).toBeCalled();
99 | });
100 |
101 | test('outputs correct XXXXXX by default when xLocale is true', () => {
102 | const { queryByText } = render(
103 |
104 | {({ localize }) => {
105 | return {localize('foo')} ;
106 | }}
107 |
108 | );
109 |
110 | expect(queryByText('XXXXXX')).toBeTruthy();
111 | });
112 |
113 | test('does not explode when provided props.localize is not a function', () => {
114 | const { queryByText } = render(
115 |
116 | {({ localize }) => {
117 | return {localize('foo')} ;
118 | }}
119 |
120 | );
121 |
122 | expect(queryByText('foo')).toBeTruthy();
123 | expect(console.warn).toBeCalledWith('Unable to localize foo, not connected to react-localize');
124 | });
125 |
126 | test('useLocalize hook', () => {
127 | const HookTester = ({hook, handleResult}) => {
128 | return handleResult(hook());
129 | }
130 |
131 | const { queryByText } = render(
132 | {
135 | const { localize = () => {} } = result;
136 | return {localize('foo')} ;
137 | }}
138 | />
139 | );
140 |
141 | // expects the localized text if useContext is available otherwise expects a console.warn
142 | if (!useContext) {
143 | expect(console.warn).toBeCalledWith('This feature is only available in React >= 16.8');
144 | return;
145 | } else {
146 | expect(queryByText('bar')).not.toBeNull();
147 | }
148 | });
149 |
--------------------------------------------------------------------------------
/src/util.format.js:
--------------------------------------------------------------------------------
1 | // I used to use `util.format()` which was massive, then I switched to
2 | // format-util, although when using rollup I discovered that the index.js
3 | // just exported `require('util').format`, and then had the below contents
4 | // in another file. at any rate all I want is this function:
5 |
6 | function format(fmt) {
7 | fmt = String(fmt); // this is closer to util.format() behavior
8 | var re = /(%?)(%([jds]))/g
9 | , args = Array.prototype.slice.call(arguments, 1);
10 | if(args.length) {
11 | if(Array.isArray(args[0]))
12 | args = args[0];
13 | fmt = fmt.replace(re, function(match, escaped, ptn, flag) {
14 | var arg = args.shift();
15 | switch(flag) {
16 | case 's':
17 | arg = '' + arg;
18 | break;
19 | case 'd':
20 | arg = Number(arg);
21 | break;
22 | case 'j':
23 | arg = JSON.stringify(arg);
24 | break;
25 | }
26 | if(!escaped) {
27 | return arg;
28 | }
29 | args.unshift(arg);
30 | return match;
31 | })
32 | }
33 |
34 | // arguments remain after formatting
35 | if(args.length) {
36 | fmt += ' ' + args.join(' ');
37 | }
38 |
39 | // update escaped %% values
40 | fmt = fmt.replace(/%{2,2}/g, '%');
41 |
42 | return '' + fmt;
43 | }
44 |
45 | export default format;
46 |
--------------------------------------------------------------------------------
/src/util.format.test.js:
--------------------------------------------------------------------------------
1 | import 'jest-dom/extend-expect';
2 | import format from './util.format';
3 |
4 | test('formats a string properly when no values are provided', () => {
5 | const formatted = format('Hello, %s');
6 | expect(formatted).toBe('Hello, %s');
7 | });
8 |
9 | test('formats a string properly when values are provided', () => {
10 | const formatted = format('Hello, %s', ['Stephen']);
11 | expect(formatted).toBe('Hello, Stephen');
12 |
13 | const numberFormatted = format('%d items in cart', [5]);
14 | expect(numberFormatted).toBe('5 items in cart');
15 |
16 | const jsonFormatted = format('Source Codez: %j', [ [{ source: 'code' }] ]);
17 | expect(jsonFormatted).toBe('Source Codez: [{\"source\":\"code\"}]');
18 | });
19 |
20 | test('also works with multiple values', () => {
21 | const formatted = format('Hello, %s %s', ['Stephen', 'Myers']);
22 | expect(formatted).toBe('Hello, Stephen Myers');
23 |
24 | const numberFormatted = format('%d of %d items in cart', [5, 10]);
25 | expect(numberFormatted).toBe('5 of 10 items in cart');
26 |
27 | const jsonFormatted = format('Source Codez: %j %j', [ [{ source: 'code' }], { id: 'object identifier' } ]);
28 | expect(jsonFormatted).toBe('Source Codez: [{\"source\":\"code\"}] {\"id\":\"object identifier\"}');
29 | });
30 |
31 | test('does not explode when a message is missing', () => {
32 | const formatted = format(undefined, ['Stephen']);
33 | expect(formatted).toBe('undefined Stephen');
34 | });
35 |
--------------------------------------------------------------------------------
/src/withLocalization.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { LocalizationConsumer } from '.';
3 |
4 | export default (Component) => {
5 | const withLocalization = (props) =>
6 | {({ localize }) => }
10 | ;
11 |
12 | withLocalization.displayName = `withLocalization(${Component.name})`;
13 | return withLocalization;
14 | };
15 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@7.0.0-beta.44":
6 | version "7.0.0-beta.44"
7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9"
8 | dependencies:
9 | "@babel/highlight" "7.0.0-beta.44"
10 |
11 | "@babel/code-frame@7.0.0-beta.49":
12 | version "7.0.0-beta.49"
13 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.49.tgz#becd805482734440c9d137e46d77340e64d7f51b"
14 | dependencies:
15 | "@babel/highlight" "7.0.0-beta.49"
16 |
17 | "@babel/code-frame@^7.0.0-beta.35":
18 | version "7.0.0-beta.51"
19 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c"
20 | dependencies:
21 | "@babel/highlight" "7.0.0-beta.51"
22 |
23 | "@babel/generator@7.0.0-beta.44":
24 | version "7.0.0-beta.44"
25 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42"
26 | dependencies:
27 | "@babel/types" "7.0.0-beta.44"
28 | jsesc "^2.5.1"
29 | lodash "^4.2.0"
30 | source-map "^0.5.0"
31 | trim-right "^1.0.1"
32 |
33 | "@babel/generator@7.0.0-beta.49":
34 | version "7.0.0-beta.49"
35 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.49.tgz#e9cffda913996accec793bbc25ab91bc19d0bf7a"
36 | dependencies:
37 | "@babel/types" "7.0.0-beta.49"
38 | jsesc "^2.5.1"
39 | lodash "^4.17.5"
40 | source-map "^0.5.0"
41 | trim-right "^1.0.1"
42 |
43 | "@babel/helper-function-name@7.0.0-beta.44":
44 | version "7.0.0-beta.44"
45 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd"
46 | dependencies:
47 | "@babel/helper-get-function-arity" "7.0.0-beta.44"
48 | "@babel/template" "7.0.0-beta.44"
49 | "@babel/types" "7.0.0-beta.44"
50 |
51 | "@babel/helper-function-name@7.0.0-beta.49":
52 | version "7.0.0-beta.49"
53 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.49.tgz#a25c1119b9f035278670126e0225c03041c8de32"
54 | dependencies:
55 | "@babel/helper-get-function-arity" "7.0.0-beta.49"
56 | "@babel/template" "7.0.0-beta.49"
57 | "@babel/types" "7.0.0-beta.49"
58 |
59 | "@babel/helper-get-function-arity@7.0.0-beta.44":
60 | version "7.0.0-beta.44"
61 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15"
62 | dependencies:
63 | "@babel/types" "7.0.0-beta.44"
64 |
65 | "@babel/helper-get-function-arity@7.0.0-beta.49":
66 | version "7.0.0-beta.49"
67 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.49.tgz#cf5023f32d2ad92d087374939cec0951bcb51441"
68 | dependencies:
69 | "@babel/types" "7.0.0-beta.49"
70 |
71 | "@babel/helper-split-export-declaration@7.0.0-beta.44":
72 | version "7.0.0-beta.44"
73 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc"
74 | dependencies:
75 | "@babel/types" "7.0.0-beta.44"
76 |
77 | "@babel/helper-split-export-declaration@7.0.0-beta.49":
78 | version "7.0.0-beta.49"
79 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.49.tgz#40d78eda0968d011b1c52866e5746cfb23e57548"
80 | dependencies:
81 | "@babel/types" "7.0.0-beta.49"
82 |
83 | "@babel/highlight@7.0.0-beta.44":
84 | version "7.0.0-beta.44"
85 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5"
86 | dependencies:
87 | chalk "^2.0.0"
88 | esutils "^2.0.2"
89 | js-tokens "^3.0.0"
90 |
91 | "@babel/highlight@7.0.0-beta.49":
92 | version "7.0.0-beta.49"
93 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.49.tgz#96bdc6b43e13482012ba6691b1018492d39622cc"
94 | dependencies:
95 | chalk "^2.0.0"
96 | esutils "^2.0.2"
97 | js-tokens "^3.0.0"
98 |
99 | "@babel/highlight@7.0.0-beta.51":
100 | version "7.0.0-beta.51"
101 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d"
102 | dependencies:
103 | chalk "^2.0.0"
104 | esutils "^2.0.2"
105 | js-tokens "^3.0.0"
106 |
107 | "@babel/parser@7.0.0-beta.49":
108 | version "7.0.0-beta.49"
109 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.0.0-beta.49.tgz#944d0c5ba2812bb159edbd226743afd265179bdc"
110 |
111 | "@babel/template@7.0.0-beta.44":
112 | version "7.0.0-beta.44"
113 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f"
114 | dependencies:
115 | "@babel/code-frame" "7.0.0-beta.44"
116 | "@babel/types" "7.0.0-beta.44"
117 | babylon "7.0.0-beta.44"
118 | lodash "^4.2.0"
119 |
120 | "@babel/template@7.0.0-beta.49":
121 | version "7.0.0-beta.49"
122 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.49.tgz#e38abe8217cb9793f461a5306d7ad745d83e1d27"
123 | dependencies:
124 | "@babel/code-frame" "7.0.0-beta.49"
125 | "@babel/parser" "7.0.0-beta.49"
126 | "@babel/types" "7.0.0-beta.49"
127 | lodash "^4.17.5"
128 |
129 | "@babel/traverse@7.0.0-beta.44":
130 | version "7.0.0-beta.44"
131 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966"
132 | dependencies:
133 | "@babel/code-frame" "7.0.0-beta.44"
134 | "@babel/generator" "7.0.0-beta.44"
135 | "@babel/helper-function-name" "7.0.0-beta.44"
136 | "@babel/helper-split-export-declaration" "7.0.0-beta.44"
137 | "@babel/types" "7.0.0-beta.44"
138 | babylon "7.0.0-beta.44"
139 | debug "^3.1.0"
140 | globals "^11.1.0"
141 | invariant "^2.2.0"
142 | lodash "^4.2.0"
143 |
144 | "@babel/traverse@7.0.0-beta.49":
145 | version "7.0.0-beta.49"
146 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.49.tgz#4f2a73682a18334ed6625d100a8d27319f7c2d68"
147 | dependencies:
148 | "@babel/code-frame" "7.0.0-beta.49"
149 | "@babel/generator" "7.0.0-beta.49"
150 | "@babel/helper-function-name" "7.0.0-beta.49"
151 | "@babel/helper-split-export-declaration" "7.0.0-beta.49"
152 | "@babel/parser" "7.0.0-beta.49"
153 | "@babel/types" "7.0.0-beta.49"
154 | debug "^3.1.0"
155 | globals "^11.1.0"
156 | invariant "^2.2.0"
157 | lodash "^4.17.5"
158 |
159 | "@babel/types@7.0.0-beta.44":
160 | version "7.0.0-beta.44"
161 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757"
162 | dependencies:
163 | esutils "^2.0.2"
164 | lodash "^4.2.0"
165 | to-fast-properties "^2.0.0"
166 |
167 | "@babel/types@7.0.0-beta.49":
168 | version "7.0.0-beta.49"
169 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.49.tgz#b7e3b1c3f4d4cfe11bdf8c89f1efd5e1617b87a6"
170 | dependencies:
171 | esutils "^2.0.2"
172 | lodash "^4.17.5"
173 | to-fast-properties "^2.0.0"
174 |
175 | "@jest/types@^24.8.0":
176 | version "24.8.0"
177 | resolved "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad"
178 | integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==
179 | dependencies:
180 | "@types/istanbul-lib-coverage" "^2.0.0"
181 | "@types/istanbul-reports" "^1.1.1"
182 | "@types/yargs" "^12.0.9"
183 |
184 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
185 | version "2.0.1"
186 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
187 | integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
188 |
189 | "@types/istanbul-lib-report@*":
190 | version "1.1.1"
191 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c"
192 | integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==
193 | dependencies:
194 | "@types/istanbul-lib-coverage" "*"
195 |
196 | "@types/istanbul-reports@^1.1.1":
197 | version "1.1.1"
198 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
199 | integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
200 | dependencies:
201 | "@types/istanbul-lib-coverage" "*"
202 | "@types/istanbul-lib-report" "*"
203 |
204 | "@types/yargs@^12.0.9":
205 | version "12.0.12"
206 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916"
207 | integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==
208 |
209 | abab@^1.0.4:
210 | version "1.0.4"
211 | resolved "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
212 |
213 | abbrev@1:
214 | version "1.1.1"
215 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
216 |
217 | acorn-globals@^4.1.0:
218 | version "4.1.0"
219 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538"
220 | dependencies:
221 | acorn "^5.0.0"
222 |
223 | acorn@^5.0.0, acorn@^5.2.1, acorn@^5.3.0:
224 | version "5.7.1"
225 | resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
226 |
227 | ajv@^5.1.0:
228 | version "5.5.2"
229 | resolved "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
230 | dependencies:
231 | co "^4.6.0"
232 | fast-deep-equal "^1.0.0"
233 | fast-json-stable-stringify "^2.0.0"
234 | json-schema-traverse "^0.3.0"
235 |
236 | ajv@^6.5.5:
237 | version "6.12.2"
238 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
239 | integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
240 | dependencies:
241 | fast-deep-equal "^3.1.1"
242 | fast-json-stable-stringify "^2.0.0"
243 | json-schema-traverse "^0.4.1"
244 | uri-js "^4.2.2"
245 |
246 | align-text@^0.1.1, align-text@^0.1.3:
247 | version "0.1.4"
248 | resolved "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
249 | dependencies:
250 | kind-of "^3.0.2"
251 | longest "^1.0.1"
252 | repeat-string "^1.5.2"
253 |
254 | amdefine@>=0.0.4:
255 | version "1.0.1"
256 | resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
257 |
258 | ansi-escapes@^3.0.0:
259 | version "3.1.0"
260 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
261 |
262 | ansi-regex@^2.0.0:
263 | version "2.1.1"
264 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
265 |
266 | ansi-regex@^3.0.0:
267 | version "3.0.0"
268 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
269 |
270 | ansi-regex@^4.0.0:
271 | version "4.1.0"
272 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
273 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
274 |
275 | ansi-styles@^2.2.1:
276 | version "2.2.1"
277 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
278 |
279 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
280 | version "3.2.1"
281 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
282 | dependencies:
283 | color-convert "^1.9.0"
284 |
285 | anymatch@^1.3.0:
286 | version "1.3.2"
287 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
288 | dependencies:
289 | micromatch "^2.1.5"
290 | normalize-path "^2.0.0"
291 |
292 | anymatch@^2.0.0:
293 | version "2.0.0"
294 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
295 | dependencies:
296 | micromatch "^3.1.4"
297 | normalize-path "^2.1.1"
298 |
299 | append-transform@^1.0.0:
300 | version "1.0.0"
301 | resolved "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
302 | dependencies:
303 | default-require-extensions "^2.0.0"
304 |
305 | aproba@^1.0.3:
306 | version "1.2.0"
307 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
308 |
309 | are-we-there-yet@~1.1.2:
310 | version "1.1.5"
311 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
312 | dependencies:
313 | delegates "^1.0.0"
314 | readable-stream "^2.0.6"
315 |
316 | argparse@^1.0.7:
317 | version "1.0.10"
318 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
319 | dependencies:
320 | sprintf-js "~1.0.2"
321 |
322 | arr-diff@^2.0.0:
323 | version "2.0.0"
324 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
325 | dependencies:
326 | arr-flatten "^1.0.1"
327 |
328 | arr-diff@^4.0.0:
329 | version "4.0.0"
330 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
331 |
332 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
333 | version "1.1.0"
334 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
335 |
336 | arr-union@^3.1.0:
337 | version "3.1.0"
338 | resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
339 |
340 | array-equal@^1.0.0:
341 | version "1.0.0"
342 | resolved "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
343 |
344 | array-unique@^0.2.1:
345 | version "0.2.1"
346 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
347 |
348 | array-unique@^0.3.2:
349 | version "0.3.2"
350 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
351 |
352 | arrify@^1.0.1:
353 | version "1.0.1"
354 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
355 |
356 | asap@~2.0.3:
357 | version "2.0.6"
358 | resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
359 |
360 | asn1@~0.2.3:
361 | version "0.2.3"
362 | resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
363 |
364 | assert-plus@1.0.0, assert-plus@^1.0.0:
365 | version "1.0.0"
366 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
367 |
368 | assign-symbols@^1.0.0:
369 | version "1.0.0"
370 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
371 |
372 | astral-regex@^1.0.0:
373 | version "1.0.0"
374 | resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
375 |
376 | async-each@^1.0.0:
377 | version "1.0.1"
378 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
379 |
380 | async-limiter@~1.0.0:
381 | version "1.0.0"
382 | resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
383 |
384 | async@^1.4.0:
385 | version "1.5.2"
386 | resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
387 |
388 | async@^2.1.4:
389 | version "2.6.1"
390 | resolved "https://registry.npmjs.org/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610"
391 | dependencies:
392 | lodash "^4.17.10"
393 |
394 | asynckit@^0.4.0:
395 | version "0.4.0"
396 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
397 |
398 | atob@^2.1.1:
399 | version "2.1.1"
400 | resolved "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a"
401 |
402 | aws-sign2@~0.7.0:
403 | version "0.7.0"
404 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
405 |
406 | aws4@^1.6.0:
407 | version "1.7.0"
408 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289"
409 |
410 | aws4@^1.8.0:
411 | version "1.10.0"
412 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2"
413 | integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==
414 |
415 | babel-cli@^6.26.0:
416 | version "6.26.0"
417 | resolved "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
418 | dependencies:
419 | babel-core "^6.26.0"
420 | babel-polyfill "^6.26.0"
421 | babel-register "^6.26.0"
422 | babel-runtime "^6.26.0"
423 | commander "^2.11.0"
424 | convert-source-map "^1.5.0"
425 | fs-readdir-recursive "^1.0.0"
426 | glob "^7.1.2"
427 | lodash "^4.17.4"
428 | output-file-sync "^1.1.2"
429 | path-is-absolute "^1.0.1"
430 | slash "^1.0.0"
431 | source-map "^0.5.6"
432 | v8flags "^2.1.1"
433 | optionalDependencies:
434 | chokidar "^1.6.1"
435 |
436 | babel-code-frame@^6.26.0:
437 | version "6.26.0"
438 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
439 | dependencies:
440 | chalk "^1.1.3"
441 | esutils "^2.0.2"
442 | js-tokens "^3.0.2"
443 |
444 | babel-core@^6.0.0, babel-core@^6.26.0:
445 | version "6.26.3"
446 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
447 | dependencies:
448 | babel-code-frame "^6.26.0"
449 | babel-generator "^6.26.0"
450 | babel-helpers "^6.24.1"
451 | babel-messages "^6.23.0"
452 | babel-register "^6.26.0"
453 | babel-runtime "^6.26.0"
454 | babel-template "^6.26.0"
455 | babel-traverse "^6.26.0"
456 | babel-types "^6.26.0"
457 | babylon "^6.18.0"
458 | convert-source-map "^1.5.1"
459 | debug "^2.6.9"
460 | json5 "^0.5.1"
461 | lodash "^4.17.4"
462 | minimatch "^3.0.4"
463 | path-is-absolute "^1.0.1"
464 | private "^0.1.8"
465 | slash "^1.0.0"
466 | source-map "^0.5.7"
467 |
468 | babel-eslint@^8.2.1:
469 | version "8.2.3"
470 | resolved "https://registry.npmjs.org/babel-eslint/-/babel-eslint-8.2.3.tgz#1a2e6681cc9bc4473c32899e59915e19cd6733cf"
471 | dependencies:
472 | "@babel/code-frame" "7.0.0-beta.44"
473 | "@babel/traverse" "7.0.0-beta.44"
474 | "@babel/types" "7.0.0-beta.44"
475 | babylon "7.0.0-beta.44"
476 | eslint-scope "~3.7.1"
477 | eslint-visitor-keys "^1.0.0"
478 |
479 | babel-generator@^6.18.0, babel-generator@^6.26.0:
480 | version "6.26.1"
481 | resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
482 | dependencies:
483 | babel-messages "^6.23.0"
484 | babel-runtime "^6.26.0"
485 | babel-types "^6.26.0"
486 | detect-indent "^4.0.0"
487 | jsesc "^1.3.0"
488 | lodash "^4.17.4"
489 | source-map "^0.5.7"
490 | trim-right "^1.0.1"
491 |
492 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
493 | version "6.24.1"
494 | resolved "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
495 | dependencies:
496 | babel-helper-explode-assignable-expression "^6.24.1"
497 | babel-runtime "^6.22.0"
498 | babel-types "^6.24.1"
499 |
500 | babel-helper-builder-react-jsx@^6.24.1:
501 | version "6.26.0"
502 | resolved "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
503 | dependencies:
504 | babel-runtime "^6.26.0"
505 | babel-types "^6.26.0"
506 | esutils "^2.0.2"
507 |
508 | babel-helper-call-delegate@^6.24.1:
509 | version "6.24.1"
510 | resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
511 | dependencies:
512 | babel-helper-hoist-variables "^6.24.1"
513 | babel-runtime "^6.22.0"
514 | babel-traverse "^6.24.1"
515 | babel-types "^6.24.1"
516 |
517 | babel-helper-define-map@^6.24.1:
518 | version "6.26.0"
519 | resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
520 | dependencies:
521 | babel-helper-function-name "^6.24.1"
522 | babel-runtime "^6.26.0"
523 | babel-types "^6.26.0"
524 | lodash "^4.17.4"
525 |
526 | babel-helper-explode-assignable-expression@^6.24.1:
527 | version "6.24.1"
528 | resolved "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
529 | dependencies:
530 | babel-runtime "^6.22.0"
531 | babel-traverse "^6.24.1"
532 | babel-types "^6.24.1"
533 |
534 | babel-helper-function-name@^6.24.1:
535 | version "6.24.1"
536 | resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
537 | dependencies:
538 | babel-helper-get-function-arity "^6.24.1"
539 | babel-runtime "^6.22.0"
540 | babel-template "^6.24.1"
541 | babel-traverse "^6.24.1"
542 | babel-types "^6.24.1"
543 |
544 | babel-helper-get-function-arity@^6.24.1:
545 | version "6.24.1"
546 | resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
547 | dependencies:
548 | babel-runtime "^6.22.0"
549 | babel-types "^6.24.1"
550 |
551 | babel-helper-hoist-variables@^6.24.1:
552 | version "6.24.1"
553 | resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
554 | dependencies:
555 | babel-runtime "^6.22.0"
556 | babel-types "^6.24.1"
557 |
558 | babel-helper-optimise-call-expression@^6.24.1:
559 | version "6.24.1"
560 | resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
561 | dependencies:
562 | babel-runtime "^6.22.0"
563 | babel-types "^6.24.1"
564 |
565 | babel-helper-regex@^6.24.1:
566 | version "6.26.0"
567 | resolved "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
568 | dependencies:
569 | babel-runtime "^6.26.0"
570 | babel-types "^6.26.0"
571 | lodash "^4.17.4"
572 |
573 | babel-helper-remap-async-to-generator@^6.24.1:
574 | version "6.24.1"
575 | resolved "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
576 | dependencies:
577 | babel-helper-function-name "^6.24.1"
578 | babel-runtime "^6.22.0"
579 | babel-template "^6.24.1"
580 | babel-traverse "^6.24.1"
581 | babel-types "^6.24.1"
582 |
583 | babel-helper-replace-supers@^6.24.1:
584 | version "6.24.1"
585 | resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
586 | dependencies:
587 | babel-helper-optimise-call-expression "^6.24.1"
588 | babel-messages "^6.23.0"
589 | babel-runtime "^6.22.0"
590 | babel-template "^6.24.1"
591 | babel-traverse "^6.24.1"
592 | babel-types "^6.24.1"
593 |
594 | babel-helpers@^6.24.1:
595 | version "6.24.1"
596 | resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
597 | dependencies:
598 | babel-runtime "^6.22.0"
599 | babel-template "^6.24.1"
600 |
601 | babel-jest@^22.1.0, babel-jest@^22.4.4:
602 | version "22.4.4"
603 | resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-22.4.4.tgz#977259240420e227444ebe49e226a61e49ea659d"
604 | dependencies:
605 | babel-plugin-istanbul "^4.1.5"
606 | babel-preset-jest "^22.4.4"
607 |
608 | babel-messages@^6.23.0:
609 | version "6.23.0"
610 | resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
611 | dependencies:
612 | babel-runtime "^6.22.0"
613 |
614 | babel-plugin-check-es2015-constants@^6.22.0:
615 | version "6.22.0"
616 | resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
617 | dependencies:
618 | babel-runtime "^6.22.0"
619 |
620 | babel-plugin-external-helpers@^6.22.0:
621 | version "6.22.0"
622 | resolved "https://registry.npmjs.org/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1"
623 | dependencies:
624 | babel-runtime "^6.22.0"
625 |
626 | babel-plugin-istanbul@^4.1.5:
627 | version "4.1.6"
628 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
629 | dependencies:
630 | babel-plugin-syntax-object-rest-spread "^6.13.0"
631 | find-up "^2.1.0"
632 | istanbul-lib-instrument "^1.10.1"
633 | test-exclude "^4.2.1"
634 |
635 | babel-plugin-jest-hoist@^22.4.4:
636 | version "22.4.4"
637 | resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.4.tgz#b9851906eab34c7bf6f8c895a2b08bea1a844c0b"
638 |
639 | babel-plugin-syntax-async-functions@^6.8.0:
640 | version "6.13.0"
641 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
642 |
643 | babel-plugin-syntax-async-generators@^6.5.0:
644 | version "6.13.0"
645 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
646 |
647 | babel-plugin-syntax-class-properties@^6.8.0:
648 | version "6.13.0"
649 | resolved "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
650 |
651 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
652 | version "6.13.0"
653 | resolved "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
654 |
655 | babel-plugin-syntax-flow@^6.18.0:
656 | version "6.18.0"
657 | resolved "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
658 |
659 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
660 | version "6.18.0"
661 | resolved "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
662 |
663 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0:
664 | version "6.13.0"
665 | resolved "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
666 |
667 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
668 | version "6.22.0"
669 | resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
670 |
671 | babel-plugin-transform-async-generator-functions@^6.24.1:
672 | version "6.24.1"
673 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
674 | dependencies:
675 | babel-helper-remap-async-to-generator "^6.24.1"
676 | babel-plugin-syntax-async-generators "^6.5.0"
677 | babel-runtime "^6.22.0"
678 |
679 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1:
680 | version "6.24.1"
681 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
682 | dependencies:
683 | babel-helper-remap-async-to-generator "^6.24.1"
684 | babel-plugin-syntax-async-functions "^6.8.0"
685 | babel-runtime "^6.22.0"
686 |
687 | babel-plugin-transform-class-properties@^6.24.1:
688 | version "6.24.1"
689 | resolved "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
690 | dependencies:
691 | babel-helper-function-name "^6.24.1"
692 | babel-plugin-syntax-class-properties "^6.8.0"
693 | babel-runtime "^6.22.0"
694 | babel-template "^6.24.1"
695 |
696 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
697 | version "6.22.0"
698 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
699 | dependencies:
700 | babel-runtime "^6.22.0"
701 |
702 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
703 | version "6.22.0"
704 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
705 | dependencies:
706 | babel-runtime "^6.22.0"
707 |
708 | babel-plugin-transform-es2015-block-scoping@^6.23.0:
709 | version "6.26.0"
710 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
711 | dependencies:
712 | babel-runtime "^6.26.0"
713 | babel-template "^6.26.0"
714 | babel-traverse "^6.26.0"
715 | babel-types "^6.26.0"
716 | lodash "^4.17.4"
717 |
718 | babel-plugin-transform-es2015-classes@^6.23.0:
719 | version "6.24.1"
720 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
721 | dependencies:
722 | babel-helper-define-map "^6.24.1"
723 | babel-helper-function-name "^6.24.1"
724 | babel-helper-optimise-call-expression "^6.24.1"
725 | babel-helper-replace-supers "^6.24.1"
726 | babel-messages "^6.23.0"
727 | babel-runtime "^6.22.0"
728 | babel-template "^6.24.1"
729 | babel-traverse "^6.24.1"
730 | babel-types "^6.24.1"
731 |
732 | babel-plugin-transform-es2015-computed-properties@^6.22.0:
733 | version "6.24.1"
734 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
735 | dependencies:
736 | babel-runtime "^6.22.0"
737 | babel-template "^6.24.1"
738 |
739 | babel-plugin-transform-es2015-destructuring@^6.23.0:
740 | version "6.23.0"
741 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
742 | dependencies:
743 | babel-runtime "^6.22.0"
744 |
745 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
746 | version "6.24.1"
747 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
748 | dependencies:
749 | babel-runtime "^6.22.0"
750 | babel-types "^6.24.1"
751 |
752 | babel-plugin-transform-es2015-for-of@^6.23.0:
753 | version "6.23.0"
754 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
755 | dependencies:
756 | babel-runtime "^6.22.0"
757 |
758 | babel-plugin-transform-es2015-function-name@^6.22.0:
759 | version "6.24.1"
760 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
761 | dependencies:
762 | babel-helper-function-name "^6.24.1"
763 | babel-runtime "^6.22.0"
764 | babel-types "^6.24.1"
765 |
766 | babel-plugin-transform-es2015-literals@^6.22.0:
767 | version "6.22.0"
768 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
769 | dependencies:
770 | babel-runtime "^6.22.0"
771 |
772 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
773 | version "6.24.1"
774 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
775 | dependencies:
776 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
777 | babel-runtime "^6.22.0"
778 | babel-template "^6.24.1"
779 |
780 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
781 | version "6.26.2"
782 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
783 | dependencies:
784 | babel-plugin-transform-strict-mode "^6.24.1"
785 | babel-runtime "^6.26.0"
786 | babel-template "^6.26.0"
787 | babel-types "^6.26.0"
788 |
789 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
790 | version "6.24.1"
791 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
792 | dependencies:
793 | babel-helper-hoist-variables "^6.24.1"
794 | babel-runtime "^6.22.0"
795 | babel-template "^6.24.1"
796 |
797 | babel-plugin-transform-es2015-modules-umd@^6.23.0:
798 | version "6.24.1"
799 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
800 | dependencies:
801 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
802 | babel-runtime "^6.22.0"
803 | babel-template "^6.24.1"
804 |
805 | babel-plugin-transform-es2015-object-super@^6.22.0:
806 | version "6.24.1"
807 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
808 | dependencies:
809 | babel-helper-replace-supers "^6.24.1"
810 | babel-runtime "^6.22.0"
811 |
812 | babel-plugin-transform-es2015-parameters@^6.23.0:
813 | version "6.24.1"
814 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
815 | dependencies:
816 | babel-helper-call-delegate "^6.24.1"
817 | babel-helper-get-function-arity "^6.24.1"
818 | babel-runtime "^6.22.0"
819 | babel-template "^6.24.1"
820 | babel-traverse "^6.24.1"
821 | babel-types "^6.24.1"
822 |
823 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
824 | version "6.24.1"
825 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
826 | dependencies:
827 | babel-runtime "^6.22.0"
828 | babel-types "^6.24.1"
829 |
830 | babel-plugin-transform-es2015-spread@^6.22.0:
831 | version "6.22.0"
832 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
833 | dependencies:
834 | babel-runtime "^6.22.0"
835 |
836 | babel-plugin-transform-es2015-sticky-regex@^6.22.0:
837 | version "6.24.1"
838 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
839 | dependencies:
840 | babel-helper-regex "^6.24.1"
841 | babel-runtime "^6.22.0"
842 | babel-types "^6.24.1"
843 |
844 | babel-plugin-transform-es2015-template-literals@^6.22.0:
845 | version "6.22.0"
846 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
847 | dependencies:
848 | babel-runtime "^6.22.0"
849 |
850 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
851 | version "6.23.0"
852 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
853 | dependencies:
854 | babel-runtime "^6.22.0"
855 |
856 | babel-plugin-transform-es2015-unicode-regex@^6.22.0:
857 | version "6.24.1"
858 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
859 | dependencies:
860 | babel-helper-regex "^6.24.1"
861 | babel-runtime "^6.22.0"
862 | regexpu-core "^2.0.0"
863 |
864 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1:
865 | version "6.24.1"
866 | resolved "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
867 | dependencies:
868 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
869 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
870 | babel-runtime "^6.22.0"
871 |
872 | babel-plugin-transform-flow-strip-types@^6.22.0:
873 | version "6.22.0"
874 | resolved "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
875 | dependencies:
876 | babel-plugin-syntax-flow "^6.18.0"
877 | babel-runtime "^6.22.0"
878 |
879 | babel-plugin-transform-object-rest-spread@^6.22.0:
880 | version "6.26.0"
881 | resolved "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
882 | dependencies:
883 | babel-plugin-syntax-object-rest-spread "^6.8.0"
884 | babel-runtime "^6.26.0"
885 |
886 | babel-plugin-transform-react-display-name@^6.23.0:
887 | version "6.25.0"
888 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
889 | dependencies:
890 | babel-runtime "^6.22.0"
891 |
892 | babel-plugin-transform-react-jsx-self@^6.22.0:
893 | version "6.22.0"
894 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
895 | dependencies:
896 | babel-plugin-syntax-jsx "^6.8.0"
897 | babel-runtime "^6.22.0"
898 |
899 | babel-plugin-transform-react-jsx-source@^6.22.0:
900 | version "6.22.0"
901 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
902 | dependencies:
903 | babel-plugin-syntax-jsx "^6.8.0"
904 | babel-runtime "^6.22.0"
905 |
906 | babel-plugin-transform-react-jsx@^6.24.1:
907 | version "6.24.1"
908 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
909 | dependencies:
910 | babel-helper-builder-react-jsx "^6.24.1"
911 | babel-plugin-syntax-jsx "^6.8.0"
912 | babel-runtime "^6.22.0"
913 |
914 | babel-plugin-transform-react-remove-prop-types@^0.4.12:
915 | version "0.4.13"
916 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.13.tgz#331cfc05099a808238311d78319c27460d481189"
917 |
918 | babel-plugin-transform-regenerator@^6.22.0:
919 | version "6.26.0"
920 | resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
921 | dependencies:
922 | regenerator-transform "^0.10.0"
923 |
924 | babel-plugin-transform-strict-mode@^6.24.1:
925 | version "6.24.1"
926 | resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
927 | dependencies:
928 | babel-runtime "^6.22.0"
929 | babel-types "^6.24.1"
930 |
931 | babel-polyfill@^6.26.0:
932 | version "6.26.0"
933 | resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
934 | dependencies:
935 | babel-runtime "^6.26.0"
936 | core-js "^2.5.0"
937 | regenerator-runtime "^0.10.5"
938 |
939 | babel-preset-env@^1.6.1:
940 | version "1.7.0"
941 | resolved "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
942 | dependencies:
943 | babel-plugin-check-es2015-constants "^6.22.0"
944 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
945 | babel-plugin-transform-async-to-generator "^6.22.0"
946 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
947 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
948 | babel-plugin-transform-es2015-block-scoping "^6.23.0"
949 | babel-plugin-transform-es2015-classes "^6.23.0"
950 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
951 | babel-plugin-transform-es2015-destructuring "^6.23.0"
952 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
953 | babel-plugin-transform-es2015-for-of "^6.23.0"
954 | babel-plugin-transform-es2015-function-name "^6.22.0"
955 | babel-plugin-transform-es2015-literals "^6.22.0"
956 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
957 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
958 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
959 | babel-plugin-transform-es2015-modules-umd "^6.23.0"
960 | babel-plugin-transform-es2015-object-super "^6.22.0"
961 | babel-plugin-transform-es2015-parameters "^6.23.0"
962 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
963 | babel-plugin-transform-es2015-spread "^6.22.0"
964 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
965 | babel-plugin-transform-es2015-template-literals "^6.22.0"
966 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
967 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
968 | babel-plugin-transform-exponentiation-operator "^6.22.0"
969 | babel-plugin-transform-regenerator "^6.22.0"
970 | browserslist "^3.2.6"
971 | invariant "^2.2.2"
972 | semver "^5.3.0"
973 |
974 | babel-preset-flow@^6.23.0:
975 | version "6.23.0"
976 | resolved "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
977 | dependencies:
978 | babel-plugin-transform-flow-strip-types "^6.22.0"
979 |
980 | babel-preset-jest@^22.4.4:
981 | version "22.4.4"
982 | resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-22.4.4.tgz#ec9fbd8bcd7dfd24b8b5320e0e688013235b7c39"
983 | dependencies:
984 | babel-plugin-jest-hoist "^22.4.4"
985 | babel-plugin-syntax-object-rest-spread "^6.13.0"
986 |
987 | babel-preset-react@^6.24.1:
988 | version "6.24.1"
989 | resolved "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
990 | dependencies:
991 | babel-plugin-syntax-jsx "^6.3.13"
992 | babel-plugin-transform-react-display-name "^6.23.0"
993 | babel-plugin-transform-react-jsx "^6.24.1"
994 | babel-plugin-transform-react-jsx-self "^6.22.0"
995 | babel-plugin-transform-react-jsx-source "^6.22.0"
996 | babel-preset-flow "^6.23.0"
997 |
998 | babel-preset-stage-3@^6.24.1:
999 | version "6.24.1"
1000 | resolved "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
1001 | dependencies:
1002 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
1003 | babel-plugin-transform-async-generator-functions "^6.24.1"
1004 | babel-plugin-transform-async-to-generator "^6.24.1"
1005 | babel-plugin-transform-exponentiation-operator "^6.24.1"
1006 | babel-plugin-transform-object-rest-spread "^6.22.0"
1007 |
1008 | babel-register@^6.26.0:
1009 | version "6.26.0"
1010 | resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
1011 | dependencies:
1012 | babel-core "^6.26.0"
1013 | babel-runtime "^6.26.0"
1014 | core-js "^2.5.0"
1015 | home-or-tmp "^2.0.0"
1016 | lodash "^4.17.4"
1017 | mkdirp "^0.5.1"
1018 | source-map-support "^0.4.15"
1019 |
1020 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
1021 | version "6.26.0"
1022 | resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
1023 | dependencies:
1024 | core-js "^2.4.0"
1025 | regenerator-runtime "^0.11.0"
1026 |
1027 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
1028 | version "6.26.0"
1029 | resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
1030 | dependencies:
1031 | babel-runtime "^6.26.0"
1032 | babel-traverse "^6.26.0"
1033 | babel-types "^6.26.0"
1034 | babylon "^6.18.0"
1035 | lodash "^4.17.4"
1036 |
1037 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
1038 | version "6.26.0"
1039 | resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
1040 | dependencies:
1041 | babel-code-frame "^6.26.0"
1042 | babel-messages "^6.23.0"
1043 | babel-runtime "^6.26.0"
1044 | babel-types "^6.26.0"
1045 | babylon "^6.18.0"
1046 | debug "^2.6.8"
1047 | globals "^9.18.0"
1048 | invariant "^2.2.2"
1049 | lodash "^4.17.4"
1050 |
1051 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
1052 | version "6.26.0"
1053 | resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
1054 | dependencies:
1055 | babel-runtime "^6.26.0"
1056 | esutils "^2.0.2"
1057 | lodash "^4.17.4"
1058 | to-fast-properties "^1.0.3"
1059 |
1060 | babylon@7.0.0-beta.44:
1061 | version "7.0.0-beta.44"
1062 | resolved "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d"
1063 |
1064 | babylon@^6.18.0:
1065 | version "6.18.0"
1066 | resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
1067 |
1068 | balanced-match@^1.0.0:
1069 | version "1.0.0"
1070 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
1071 |
1072 | base@^0.11.1:
1073 | version "0.11.2"
1074 | resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1075 | dependencies:
1076 | cache-base "^1.0.1"
1077 | class-utils "^0.3.5"
1078 | component-emitter "^1.2.1"
1079 | define-property "^1.0.0"
1080 | isobject "^3.0.1"
1081 | mixin-deep "^1.2.0"
1082 | pascalcase "^0.1.1"
1083 |
1084 | bcrypt-pbkdf@^1.0.0:
1085 | version "1.0.1"
1086 | resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
1087 | dependencies:
1088 | tweetnacl "^0.14.3"
1089 |
1090 | binary-extensions@^1.0.0:
1091 | version "1.11.0"
1092 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
1093 |
1094 | brace-expansion@^1.1.7:
1095 | version "1.1.11"
1096 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1097 | dependencies:
1098 | balanced-match "^1.0.0"
1099 | concat-map "0.0.1"
1100 |
1101 | braces@^1.8.2:
1102 | version "1.8.5"
1103 | resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1104 | dependencies:
1105 | expand-range "^1.8.1"
1106 | preserve "^0.2.0"
1107 | repeat-element "^1.1.2"
1108 |
1109 | braces@^2.3.1:
1110 | version "2.3.2"
1111 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
1112 | dependencies:
1113 | arr-flatten "^1.1.0"
1114 | array-unique "^0.3.2"
1115 | extend-shallow "^2.0.1"
1116 | fill-range "^4.0.0"
1117 | isobject "^3.0.1"
1118 | repeat-element "^1.1.2"
1119 | snapdragon "^0.8.1"
1120 | snapdragon-node "^2.0.1"
1121 | split-string "^3.0.2"
1122 | to-regex "^3.0.1"
1123 |
1124 | browser-process-hrtime@^0.1.2:
1125 | version "0.1.2"
1126 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e"
1127 |
1128 | browser-resolve@^1.11.2:
1129 | version "1.11.2"
1130 | resolved "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
1131 | dependencies:
1132 | resolve "1.1.7"
1133 |
1134 | browserslist@^3.2.6:
1135 | version "3.2.8"
1136 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
1137 | dependencies:
1138 | caniuse-lite "^1.0.30000844"
1139 | electron-to-chromium "^1.3.47"
1140 |
1141 | bser@^2.0.0:
1142 | version "2.0.0"
1143 | resolved "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
1144 | dependencies:
1145 | node-int64 "^0.4.0"
1146 |
1147 | buffer-from@^1.0.0:
1148 | version "1.1.0"
1149 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04"
1150 |
1151 | builtin-modules@^1.0.0:
1152 | version "1.1.1"
1153 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
1154 |
1155 | builtin-modules@^2.0.0:
1156 | version "2.0.0"
1157 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e"
1158 |
1159 | cache-base@^1.0.1:
1160 | version "1.0.1"
1161 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1162 | dependencies:
1163 | collection-visit "^1.0.0"
1164 | component-emitter "^1.2.1"
1165 | get-value "^2.0.6"
1166 | has-value "^1.0.0"
1167 | isobject "^3.0.1"
1168 | set-value "^2.0.0"
1169 | to-object-path "^0.3.0"
1170 | union-value "^1.0.0"
1171 | unset-value "^1.0.0"
1172 |
1173 | callsites@^2.0.0:
1174 | version "2.0.0"
1175 | resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
1176 |
1177 | camelcase@^1.0.2:
1178 | version "1.2.1"
1179 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
1180 |
1181 | camelcase@^4.1.0:
1182 | version "4.1.0"
1183 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
1184 |
1185 | caniuse-lite@^1.0.30000844:
1186 | version "1.0.30000856"
1187 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000856.tgz#ecc16978135a6f219b138991eb62009d25ee8daa"
1188 |
1189 | capture-exit@^1.2.0:
1190 | version "1.2.0"
1191 | resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
1192 | dependencies:
1193 | rsvp "^3.3.3"
1194 |
1195 | caseless@~0.12.0:
1196 | version "0.12.0"
1197 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1198 |
1199 | center-align@^0.1.1:
1200 | version "0.1.3"
1201 | resolved "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
1202 | dependencies:
1203 | align-text "^0.1.3"
1204 | lazy-cache "^1.0.3"
1205 |
1206 | chalk@^1.1.3:
1207 | version "1.1.3"
1208 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1209 | dependencies:
1210 | ansi-styles "^2.2.1"
1211 | escape-string-regexp "^1.0.2"
1212 | has-ansi "^2.0.0"
1213 | strip-ansi "^3.0.0"
1214 | supports-color "^2.0.0"
1215 |
1216 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1:
1217 | version "2.4.1"
1218 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
1219 | dependencies:
1220 | ansi-styles "^3.2.1"
1221 | escape-string-regexp "^1.0.5"
1222 | supports-color "^5.3.0"
1223 |
1224 | chokidar@^1.6.1:
1225 | version "1.7.0"
1226 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1227 | dependencies:
1228 | anymatch "^1.3.0"
1229 | async-each "^1.0.0"
1230 | glob-parent "^2.0.0"
1231 | inherits "^2.0.1"
1232 | is-binary-path "^1.0.0"
1233 | is-glob "^2.0.0"
1234 | path-is-absolute "^1.0.0"
1235 | readdirp "^2.0.0"
1236 | optionalDependencies:
1237 | fsevents "^1.0.0"
1238 |
1239 | chownr@^1.0.1:
1240 | version "1.0.1"
1241 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
1242 |
1243 | ci-info@^1.0.0:
1244 | version "1.1.3"
1245 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2"
1246 |
1247 | class-utils@^0.3.5:
1248 | version "0.3.6"
1249 | resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1250 | dependencies:
1251 | arr-union "^3.1.0"
1252 | define-property "^0.2.5"
1253 | isobject "^3.0.0"
1254 | static-extend "^0.1.1"
1255 |
1256 | cliui@^2.1.0:
1257 | version "2.1.0"
1258 | resolved "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1259 | dependencies:
1260 | center-align "^0.1.1"
1261 | right-align "^0.1.1"
1262 | wordwrap "0.0.2"
1263 |
1264 | cliui@^4.0.0:
1265 | version "4.1.0"
1266 | resolved "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
1267 | dependencies:
1268 | string-width "^2.1.1"
1269 | strip-ansi "^4.0.0"
1270 | wrap-ansi "^2.0.0"
1271 |
1272 | co@^4.6.0:
1273 | version "4.6.0"
1274 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1275 |
1276 | code-point-at@^1.0.0:
1277 | version "1.1.0"
1278 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1279 |
1280 | collection-visit@^1.0.0:
1281 | version "1.0.0"
1282 | resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1283 | dependencies:
1284 | map-visit "^1.0.0"
1285 | object-visit "^1.0.0"
1286 |
1287 | color-convert@^1.9.0:
1288 | version "1.9.2"
1289 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147"
1290 | dependencies:
1291 | color-name "1.1.1"
1292 |
1293 | color-name@1.1.1:
1294 | version "1.1.1"
1295 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
1296 |
1297 | combined-stream@1.0.6, combined-stream@~1.0.5:
1298 | version "1.0.6"
1299 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
1300 | dependencies:
1301 | delayed-stream "~1.0.0"
1302 |
1303 | combined-stream@^1.0.6, combined-stream@~1.0.6:
1304 | version "1.0.8"
1305 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
1306 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
1307 | dependencies:
1308 | delayed-stream "~1.0.0"
1309 |
1310 | commander@^2.11.0, commander@~2.15.0:
1311 | version "2.15.1"
1312 | resolved "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
1313 |
1314 | compare-versions@^3.1.0:
1315 | version "3.3.0"
1316 | resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3"
1317 |
1318 | component-emitter@^1.2.1:
1319 | version "1.2.1"
1320 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1321 |
1322 | concat-map@0.0.1:
1323 | version "0.0.1"
1324 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1325 |
1326 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1327 | version "1.1.0"
1328 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1329 |
1330 | convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1:
1331 | version "1.5.1"
1332 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
1333 |
1334 | copy-descriptor@^0.1.0:
1335 | version "0.1.1"
1336 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1337 |
1338 | core-js@^1.0.0:
1339 | version "1.2.7"
1340 | resolved "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1341 |
1342 | core-js@^2.4.0, core-js@^2.5.0:
1343 | version "2.5.7"
1344 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
1345 |
1346 | core-util-is@1.0.2, core-util-is@~1.0.0:
1347 | version "1.0.2"
1348 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1349 |
1350 | coveralls@3.1.0:
1351 | version "3.1.0"
1352 | resolved "https://registry.npmjs.org/coveralls/-/coveralls-3.1.0.tgz#13c754d5e7a2dd8b44fe5269e21ca394fb4d615b"
1353 | integrity sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==
1354 | dependencies:
1355 | js-yaml "^3.13.1"
1356 | lcov-parse "^1.0.0"
1357 | log-driver "^1.2.7"
1358 | minimist "^1.2.5"
1359 | request "^2.88.2"
1360 |
1361 | create-react-context@^0.2.1:
1362 | version "0.2.2"
1363 | resolved "https://registry.npmjs.org/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca"
1364 | dependencies:
1365 | fbjs "^0.8.0"
1366 | gud "^1.0.0"
1367 |
1368 | cross-env@^5.2.0:
1369 | version "5.2.0"
1370 | resolved "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2"
1371 | dependencies:
1372 | cross-spawn "^6.0.5"
1373 | is-windows "^1.0.0"
1374 |
1375 | cross-spawn@^5.0.1:
1376 | version "5.1.0"
1377 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1378 | dependencies:
1379 | lru-cache "^4.0.1"
1380 | shebang-command "^1.2.0"
1381 | which "^1.2.9"
1382 |
1383 | cross-spawn@^6.0.5:
1384 | version "6.0.5"
1385 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1386 | dependencies:
1387 | nice-try "^1.0.4"
1388 | path-key "^2.0.1"
1389 | semver "^5.5.0"
1390 | shebang-command "^1.2.0"
1391 | which "^1.2.9"
1392 |
1393 | css.escape@^1.5.1:
1394 | version "1.5.1"
1395 | resolved "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
1396 | integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
1397 |
1398 | css@^2.2.3:
1399 | version "2.2.3"
1400 | resolved "https://registry.npmjs.org/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be"
1401 | dependencies:
1402 | inherits "^2.0.1"
1403 | source-map "^0.1.38"
1404 | source-map-resolve "^0.5.1"
1405 | urix "^0.1.0"
1406 |
1407 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
1408 | version "0.3.2"
1409 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
1410 |
1411 | "cssstyle@>= 0.3.1 < 0.4.0":
1412 | version "0.3.1"
1413 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf"
1414 | dependencies:
1415 | cssom "0.3.x"
1416 |
1417 | dashdash@^1.12.0:
1418 | version "1.14.1"
1419 | resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1420 | dependencies:
1421 | assert-plus "^1.0.0"
1422 |
1423 | data-urls@^1.0.0:
1424 | version "1.0.0"
1425 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f"
1426 | dependencies:
1427 | abab "^1.0.4"
1428 | whatwg-mimetype "^2.0.0"
1429 | whatwg-url "^6.4.0"
1430 |
1431 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
1432 | version "2.6.9"
1433 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1434 | dependencies:
1435 | ms "2.0.0"
1436 |
1437 | debug@^3.1.0:
1438 | version "3.1.0"
1439 | resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1440 | dependencies:
1441 | ms "2.0.0"
1442 |
1443 | decamelize@^1.0.0, decamelize@^1.1.1:
1444 | version "1.2.0"
1445 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1446 |
1447 | decode-uri-component@^0.2.0:
1448 | version "0.2.0"
1449 | resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1450 |
1451 | deep-extend@^0.6.0:
1452 | version "0.6.0"
1453 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
1454 |
1455 | deep-is@~0.1.3:
1456 | version "0.1.3"
1457 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1458 |
1459 | default-require-extensions@^2.0.0:
1460 | version "2.0.0"
1461 | resolved "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
1462 | dependencies:
1463 | strip-bom "^3.0.0"
1464 |
1465 | define-properties@^1.1.2:
1466 | version "1.1.2"
1467 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1468 | dependencies:
1469 | foreach "^2.0.5"
1470 | object-keys "^1.0.8"
1471 |
1472 | define-property@^0.2.5:
1473 | version "0.2.5"
1474 | resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1475 | dependencies:
1476 | is-descriptor "^0.1.0"
1477 |
1478 | define-property@^1.0.0:
1479 | version "1.0.0"
1480 | resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1481 | dependencies:
1482 | is-descriptor "^1.0.0"
1483 |
1484 | define-property@^2.0.2:
1485 | version "2.0.2"
1486 | resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1487 | dependencies:
1488 | is-descriptor "^1.0.2"
1489 | isobject "^3.0.1"
1490 |
1491 | delayed-stream@~1.0.0:
1492 | version "1.0.0"
1493 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1494 |
1495 | delegates@^1.0.0:
1496 | version "1.0.0"
1497 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1498 |
1499 | detect-indent@^4.0.0:
1500 | version "4.0.0"
1501 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1502 | dependencies:
1503 | repeating "^2.0.0"
1504 |
1505 | detect-libc@^1.0.2:
1506 | version "1.0.3"
1507 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1508 |
1509 | detect-newline@^2.1.0:
1510 | version "2.1.0"
1511 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1512 |
1513 | diff-sequences@^24.3.0:
1514 | version "24.3.0"
1515 | resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
1516 | integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==
1517 |
1518 | diff@^3.2.0:
1519 | version "3.5.0"
1520 | resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1521 |
1522 | dom-testing-library@^2.6.0:
1523 | version "2.6.1"
1524 | resolved "https://registry.npmjs.org/dom-testing-library/-/dom-testing-library-2.6.1.tgz#ec97192d3ddbc026809d1377eafc22eabdc372d3"
1525 | dependencies:
1526 | jest-dom "^1.0.0"
1527 | mutationobserver-shim "^0.3.2"
1528 | pretty-format "^22.4.3"
1529 | wait-for-expect "^0.4.0"
1530 |
1531 | domexception@^1.0.0:
1532 | version "1.0.1"
1533 | resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
1534 | dependencies:
1535 | webidl-conversions "^4.0.2"
1536 |
1537 | ecc-jsbn@~0.1.1:
1538 | version "0.1.1"
1539 | resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1540 | dependencies:
1541 | jsbn "~0.1.0"
1542 |
1543 | electron-to-chromium@^1.3.47:
1544 | version "1.3.48"
1545 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900"
1546 |
1547 | encoding@^0.1.11:
1548 | version "0.1.12"
1549 | resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1550 | dependencies:
1551 | iconv-lite "~0.4.13"
1552 |
1553 | error-ex@^1.3.1:
1554 | version "1.3.1"
1555 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1556 | dependencies:
1557 | is-arrayish "^0.2.1"
1558 |
1559 | es-abstract@^1.5.1:
1560 | version "1.12.0"
1561 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165"
1562 | dependencies:
1563 | es-to-primitive "^1.1.1"
1564 | function-bind "^1.1.1"
1565 | has "^1.0.1"
1566 | is-callable "^1.1.3"
1567 | is-regex "^1.0.4"
1568 |
1569 | es-to-primitive@^1.1.1:
1570 | version "1.1.1"
1571 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1572 | dependencies:
1573 | is-callable "^1.1.1"
1574 | is-date-object "^1.0.1"
1575 | is-symbol "^1.0.1"
1576 |
1577 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1578 | version "1.0.5"
1579 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1580 |
1581 | escodegen@^1.9.0:
1582 | version "1.10.0"
1583 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e"
1584 | dependencies:
1585 | esprima "^3.1.3"
1586 | estraverse "^4.2.0"
1587 | esutils "^2.0.2"
1588 | optionator "^0.8.1"
1589 | optionalDependencies:
1590 | source-map "~0.6.1"
1591 |
1592 | eslint-scope@~3.7.1:
1593 | version "3.7.1"
1594 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1595 | dependencies:
1596 | esrecurse "^4.1.0"
1597 | estraverse "^4.1.1"
1598 |
1599 | eslint-visitor-keys@^1.0.0:
1600 | version "1.0.0"
1601 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1602 |
1603 | esprima@^3.1.3:
1604 | version "3.1.3"
1605 | resolved "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1606 |
1607 | esprima@^4.0.0:
1608 | version "4.0.0"
1609 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1610 |
1611 | esrecurse@^4.1.0:
1612 | version "4.2.1"
1613 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1614 | dependencies:
1615 | estraverse "^4.1.0"
1616 |
1617 | estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
1618 | version "4.2.0"
1619 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1620 |
1621 | estree-walker@^0.2.1:
1622 | version "0.2.1"
1623 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e"
1624 |
1625 | estree-walker@^0.5.0, estree-walker@^0.5.2:
1626 | version "0.5.2"
1627 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39"
1628 |
1629 | esutils@^2.0.2:
1630 | version "2.0.2"
1631 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1632 |
1633 | exec-sh@^0.2.0:
1634 | version "0.2.1"
1635 | resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
1636 | dependencies:
1637 | merge "^1.1.3"
1638 |
1639 | execa@^0.7.0:
1640 | version "0.7.0"
1641 | resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1642 | dependencies:
1643 | cross-spawn "^5.0.1"
1644 | get-stream "^3.0.0"
1645 | is-stream "^1.1.0"
1646 | npm-run-path "^2.0.0"
1647 | p-finally "^1.0.0"
1648 | signal-exit "^3.0.0"
1649 | strip-eof "^1.0.0"
1650 |
1651 | exit@^0.1.2:
1652 | version "0.1.2"
1653 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1654 |
1655 | expand-brackets@^0.1.4:
1656 | version "0.1.5"
1657 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1658 | dependencies:
1659 | is-posix-bracket "^0.1.0"
1660 |
1661 | expand-brackets@^2.1.4:
1662 | version "2.1.4"
1663 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1664 | dependencies:
1665 | debug "^2.3.3"
1666 | define-property "^0.2.5"
1667 | extend-shallow "^2.0.1"
1668 | posix-character-classes "^0.1.0"
1669 | regex-not "^1.0.0"
1670 | snapdragon "^0.8.1"
1671 | to-regex "^3.0.1"
1672 |
1673 | expand-range@^1.8.1:
1674 | version "1.8.2"
1675 | resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1676 | dependencies:
1677 | fill-range "^2.1.0"
1678 |
1679 | expect@^22.4.0:
1680 | version "22.4.3"
1681 | resolved "https://registry.npmjs.org/expect/-/expect-22.4.3.tgz#d5a29d0a0e1fb2153557caef2674d4547e914674"
1682 | dependencies:
1683 | ansi-styles "^3.2.0"
1684 | jest-diff "^22.4.3"
1685 | jest-get-type "^22.4.3"
1686 | jest-matcher-utils "^22.4.3"
1687 | jest-message-util "^22.4.3"
1688 | jest-regex-util "^22.4.3"
1689 |
1690 | extend-shallow@^2.0.1:
1691 | version "2.0.1"
1692 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1693 | dependencies:
1694 | is-extendable "^0.1.0"
1695 |
1696 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1697 | version "3.0.2"
1698 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1699 | dependencies:
1700 | assign-symbols "^1.0.0"
1701 | is-extendable "^1.0.1"
1702 |
1703 | extend@~3.0.1:
1704 | version "3.0.1"
1705 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1706 |
1707 | extend@~3.0.2:
1708 | version "3.0.2"
1709 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1710 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
1711 |
1712 | extglob@^0.3.1:
1713 | version "0.3.2"
1714 | resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1715 | dependencies:
1716 | is-extglob "^1.0.0"
1717 |
1718 | extglob@^2.0.4:
1719 | version "2.0.4"
1720 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1721 | dependencies:
1722 | array-unique "^0.3.2"
1723 | define-property "^1.0.0"
1724 | expand-brackets "^2.1.4"
1725 | extend-shallow "^2.0.1"
1726 | fragment-cache "^0.2.1"
1727 | regex-not "^1.0.0"
1728 | snapdragon "^0.8.1"
1729 | to-regex "^3.0.1"
1730 |
1731 | extsprintf@1.3.0:
1732 | version "1.3.0"
1733 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1734 |
1735 | extsprintf@^1.2.0:
1736 | version "1.4.0"
1737 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1738 |
1739 | fast-deep-equal@^1.0.0:
1740 | version "1.1.0"
1741 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1742 |
1743 | fast-deep-equal@^3.1.1:
1744 | version "3.1.3"
1745 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1746 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1747 |
1748 | fast-json-stable-stringify@^2.0.0:
1749 | version "2.0.0"
1750 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1751 |
1752 | fast-levenshtein@~2.0.4:
1753 | version "2.0.6"
1754 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1755 |
1756 | fb-watchman@^2.0.0:
1757 | version "2.0.0"
1758 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1759 | dependencies:
1760 | bser "^2.0.0"
1761 |
1762 | fbjs@^0.8.0, fbjs@^0.8.16:
1763 | version "0.8.17"
1764 | resolved "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
1765 | dependencies:
1766 | core-js "^1.0.0"
1767 | isomorphic-fetch "^2.1.1"
1768 | loose-envify "^1.0.0"
1769 | object-assign "^4.1.0"
1770 | promise "^7.1.1"
1771 | setimmediate "^1.0.5"
1772 | ua-parser-js "^0.7.18"
1773 |
1774 | filename-regex@^2.0.0:
1775 | version "2.0.1"
1776 | resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1777 |
1778 | fileset@^2.0.2:
1779 | version "2.0.3"
1780 | resolved "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1781 | dependencies:
1782 | glob "^7.0.3"
1783 | minimatch "^3.0.3"
1784 |
1785 | fill-range@^2.1.0:
1786 | version "2.2.4"
1787 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1788 | dependencies:
1789 | is-number "^2.1.0"
1790 | isobject "^2.0.0"
1791 | randomatic "^3.0.0"
1792 | repeat-element "^1.1.2"
1793 | repeat-string "^1.5.2"
1794 |
1795 | fill-range@^4.0.0:
1796 | version "4.0.0"
1797 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1798 | dependencies:
1799 | extend-shallow "^2.0.1"
1800 | is-number "^3.0.0"
1801 | repeat-string "^1.6.1"
1802 | to-regex-range "^2.1.0"
1803 |
1804 | find-up@^2.0.0, find-up@^2.1.0:
1805 | version "2.1.0"
1806 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1807 | dependencies:
1808 | locate-path "^2.0.0"
1809 |
1810 | for-in@^1.0.1, for-in@^1.0.2:
1811 | version "1.0.2"
1812 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1813 |
1814 | for-own@^0.1.4:
1815 | version "0.1.5"
1816 | resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1817 | dependencies:
1818 | for-in "^1.0.1"
1819 |
1820 | foreach@^2.0.5:
1821 | version "2.0.5"
1822 | resolved "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1823 |
1824 | forever-agent@~0.6.1:
1825 | version "0.6.1"
1826 | resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1827 |
1828 | form-data@~2.3.1:
1829 | version "2.3.2"
1830 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
1831 | dependencies:
1832 | asynckit "^0.4.0"
1833 | combined-stream "1.0.6"
1834 | mime-types "^2.1.12"
1835 |
1836 | form-data@~2.3.2:
1837 | version "2.3.3"
1838 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
1839 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
1840 | dependencies:
1841 | asynckit "^0.4.0"
1842 | combined-stream "^1.0.6"
1843 | mime-types "^2.1.12"
1844 |
1845 | fragment-cache@^0.2.1:
1846 | version "0.2.1"
1847 | resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1848 | dependencies:
1849 | map-cache "^0.2.2"
1850 |
1851 | fs-minipass@^1.2.5:
1852 | version "1.2.5"
1853 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1854 | dependencies:
1855 | minipass "^2.2.1"
1856 |
1857 | fs-readdir-recursive@^1.0.0:
1858 | version "1.1.0"
1859 | resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1860 |
1861 | fs.realpath@^1.0.0:
1862 | version "1.0.0"
1863 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1864 |
1865 | fsevents@^1.0.0, fsevents@^1.2.3:
1866 | version "1.2.4"
1867 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426"
1868 | dependencies:
1869 | nan "^2.9.2"
1870 | node-pre-gyp "^0.10.0"
1871 |
1872 | function-bind@^1.1.1:
1873 | version "1.1.1"
1874 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1875 |
1876 | gauge@~2.7.3:
1877 | version "2.7.4"
1878 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1879 | dependencies:
1880 | aproba "^1.0.3"
1881 | console-control-strings "^1.0.0"
1882 | has-unicode "^2.0.0"
1883 | object-assign "^4.1.0"
1884 | signal-exit "^3.0.0"
1885 | string-width "^1.0.1"
1886 | strip-ansi "^3.0.1"
1887 | wide-align "^1.1.0"
1888 |
1889 | get-caller-file@^1.0.1:
1890 | version "1.0.2"
1891 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1892 |
1893 | get-stream@^3.0.0:
1894 | version "3.0.0"
1895 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1896 |
1897 | get-value@^2.0.3, get-value@^2.0.6:
1898 | version "2.0.6"
1899 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1900 |
1901 | getpass@^0.1.1:
1902 | version "0.1.7"
1903 | resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1904 | dependencies:
1905 | assert-plus "^1.0.0"
1906 |
1907 | glob-base@^0.3.0:
1908 | version "0.3.0"
1909 | resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1910 | dependencies:
1911 | glob-parent "^2.0.0"
1912 | is-glob "^2.0.0"
1913 |
1914 | glob-parent@^2.0.0:
1915 | version "2.0.0"
1916 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1917 | dependencies:
1918 | is-glob "^2.0.0"
1919 |
1920 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
1921 | version "7.1.2"
1922 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1923 | dependencies:
1924 | fs.realpath "^1.0.0"
1925 | inflight "^1.0.4"
1926 | inherits "2"
1927 | minimatch "^3.0.4"
1928 | once "^1.3.0"
1929 | path-is-absolute "^1.0.0"
1930 |
1931 | globals@^11.1.0:
1932 | version "11.5.0"
1933 | resolved "https://registry.npmjs.org/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642"
1934 |
1935 | globals@^9.18.0:
1936 | version "9.18.0"
1937 | resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1938 |
1939 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1940 | version "4.1.11"
1941 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1942 |
1943 | growly@^1.3.0:
1944 | version "1.3.0"
1945 | resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1946 |
1947 | gud@^1.0.0:
1948 | version "1.0.0"
1949 | resolved "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
1950 |
1951 | handlebars@^4.0.11:
1952 | version "4.0.11"
1953 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1954 | dependencies:
1955 | async "^1.4.0"
1956 | optimist "^0.6.1"
1957 | source-map "^0.4.4"
1958 | optionalDependencies:
1959 | uglify-js "^2.6"
1960 |
1961 | har-schema@^2.0.0:
1962 | version "2.0.0"
1963 | resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1964 |
1965 | har-validator@~5.0.3:
1966 | version "5.0.3"
1967 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1968 | dependencies:
1969 | ajv "^5.1.0"
1970 | har-schema "^2.0.0"
1971 |
1972 | har-validator@~5.1.3:
1973 | version "5.1.3"
1974 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
1975 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
1976 | dependencies:
1977 | ajv "^6.5.5"
1978 | har-schema "^2.0.0"
1979 |
1980 | has-ansi@^2.0.0:
1981 | version "2.0.0"
1982 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1983 | dependencies:
1984 | ansi-regex "^2.0.0"
1985 |
1986 | has-flag@^1.0.0:
1987 | version "1.0.0"
1988 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1989 |
1990 | has-flag@^3.0.0:
1991 | version "3.0.0"
1992 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1993 |
1994 | has-unicode@^2.0.0:
1995 | version "2.0.1"
1996 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1997 |
1998 | has-value@^0.3.1:
1999 | version "0.3.1"
2000 | resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
2001 | dependencies:
2002 | get-value "^2.0.3"
2003 | has-values "^0.1.4"
2004 | isobject "^2.0.0"
2005 |
2006 | has-value@^1.0.0:
2007 | version "1.0.0"
2008 | resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
2009 | dependencies:
2010 | get-value "^2.0.6"
2011 | has-values "^1.0.0"
2012 | isobject "^3.0.0"
2013 |
2014 | has-values@^0.1.4:
2015 | version "0.1.4"
2016 | resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
2017 |
2018 | has-values@^1.0.0:
2019 | version "1.0.0"
2020 | resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
2021 | dependencies:
2022 | is-number "^3.0.0"
2023 | kind-of "^4.0.0"
2024 |
2025 | has@^1.0.1:
2026 | version "1.0.3"
2027 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
2028 | dependencies:
2029 | function-bind "^1.1.1"
2030 |
2031 | home-or-tmp@^2.0.0:
2032 | version "2.0.0"
2033 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
2034 | dependencies:
2035 | os-homedir "^1.0.0"
2036 | os-tmpdir "^1.0.1"
2037 |
2038 | hosted-git-info@^2.1.4:
2039 | version "2.6.0"
2040 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222"
2041 |
2042 | html-encoding-sniffer@^1.0.2:
2043 | version "1.0.2"
2044 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
2045 | dependencies:
2046 | whatwg-encoding "^1.0.1"
2047 |
2048 | http-signature@~1.2.0:
2049 | version "1.2.0"
2050 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
2051 | dependencies:
2052 | assert-plus "^1.0.0"
2053 | jsprim "^1.2.2"
2054 | sshpk "^1.7.0"
2055 |
2056 | iconv-lite@0.4.19:
2057 | version "0.4.19"
2058 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
2059 |
2060 | iconv-lite@^0.4.4, iconv-lite@~0.4.13:
2061 | version "0.4.23"
2062 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
2063 | dependencies:
2064 | safer-buffer ">= 2.1.2 < 3"
2065 |
2066 | ignore-walk@^3.0.1:
2067 | version "3.0.1"
2068 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
2069 | dependencies:
2070 | minimatch "^3.0.4"
2071 |
2072 | import-local@^1.0.0:
2073 | version "1.0.0"
2074 | resolved "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
2075 | dependencies:
2076 | pkg-dir "^2.0.0"
2077 | resolve-cwd "^2.0.0"
2078 |
2079 | imurmurhash@^0.1.4:
2080 | version "0.1.4"
2081 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2082 |
2083 | in-publish@2.0.0:
2084 | version "2.0.0"
2085 | resolved "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51"
2086 |
2087 | indent-string@^3.0.0:
2088 | version "3.2.0"
2089 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
2090 |
2091 | inflight@^1.0.4:
2092 | version "1.0.6"
2093 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2094 | dependencies:
2095 | once "^1.3.0"
2096 | wrappy "1"
2097 |
2098 | inherits@2, inherits@^2.0.1, inherits@~2.0.3:
2099 | version "2.0.3"
2100 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2101 |
2102 | ini@~1.3.0:
2103 | version "1.3.5"
2104 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
2105 |
2106 | invariant@^2.2.0, invariant@^2.2.2:
2107 | version "2.2.4"
2108 | resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
2109 | dependencies:
2110 | loose-envify "^1.0.0"
2111 |
2112 | invert-kv@^1.0.0:
2113 | version "1.0.0"
2114 | resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2115 |
2116 | is-accessor-descriptor@^0.1.6:
2117 | version "0.1.6"
2118 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2119 | dependencies:
2120 | kind-of "^3.0.2"
2121 |
2122 | is-accessor-descriptor@^1.0.0:
2123 | version "1.0.0"
2124 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
2125 | dependencies:
2126 | kind-of "^6.0.0"
2127 |
2128 | is-arrayish@^0.2.1:
2129 | version "0.2.1"
2130 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2131 |
2132 | is-binary-path@^1.0.0:
2133 | version "1.0.1"
2134 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2135 | dependencies:
2136 | binary-extensions "^1.0.0"
2137 |
2138 | is-buffer@^1.1.5:
2139 | version "1.1.6"
2140 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
2141 |
2142 | is-builtin-module@^1.0.0:
2143 | version "1.0.0"
2144 | resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2145 | dependencies:
2146 | builtin-modules "^1.0.0"
2147 |
2148 | is-callable@^1.1.1, is-callable@^1.1.3:
2149 | version "1.1.3"
2150 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
2151 |
2152 | is-ci@^1.0.10:
2153 | version "1.1.0"
2154 | resolved "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
2155 | dependencies:
2156 | ci-info "^1.0.0"
2157 |
2158 | is-data-descriptor@^0.1.4:
2159 | version "0.1.4"
2160 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
2161 | dependencies:
2162 | kind-of "^3.0.2"
2163 |
2164 | is-data-descriptor@^1.0.0:
2165 | version "1.0.0"
2166 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
2167 | dependencies:
2168 | kind-of "^6.0.0"
2169 |
2170 | is-date-object@^1.0.1:
2171 | version "1.0.1"
2172 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2173 |
2174 | is-descriptor@^0.1.0:
2175 | version "0.1.6"
2176 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
2177 | dependencies:
2178 | is-accessor-descriptor "^0.1.6"
2179 | is-data-descriptor "^0.1.4"
2180 | kind-of "^5.0.0"
2181 |
2182 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
2183 | version "1.0.2"
2184 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
2185 | dependencies:
2186 | is-accessor-descriptor "^1.0.0"
2187 | is-data-descriptor "^1.0.0"
2188 | kind-of "^6.0.2"
2189 |
2190 | is-dotfile@^1.0.0:
2191 | version "1.0.3"
2192 | resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2193 |
2194 | is-equal-shallow@^0.1.3:
2195 | version "0.1.3"
2196 | resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2197 | dependencies:
2198 | is-primitive "^2.0.0"
2199 |
2200 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2201 | version "0.1.1"
2202 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2203 |
2204 | is-extendable@^1.0.1:
2205 | version "1.0.1"
2206 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
2207 | dependencies:
2208 | is-plain-object "^2.0.4"
2209 |
2210 | is-extglob@^1.0.0:
2211 | version "1.0.0"
2212 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2213 |
2214 | is-finite@^1.0.0:
2215 | version "1.0.2"
2216 | resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2217 | dependencies:
2218 | number-is-nan "^1.0.0"
2219 |
2220 | is-fullwidth-code-point@^1.0.0:
2221 | version "1.0.0"
2222 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2223 | dependencies:
2224 | number-is-nan "^1.0.0"
2225 |
2226 | is-fullwidth-code-point@^2.0.0:
2227 | version "2.0.0"
2228 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2229 |
2230 | is-generator-fn@^1.0.0:
2231 | version "1.0.0"
2232 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
2233 |
2234 | is-glob@^2.0.0, is-glob@^2.0.1:
2235 | version "2.0.1"
2236 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2237 | dependencies:
2238 | is-extglob "^1.0.0"
2239 |
2240 | is-module@^1.0.0:
2241 | version "1.0.0"
2242 | resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
2243 |
2244 | is-number@^2.1.0:
2245 | version "2.1.0"
2246 | resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2247 | dependencies:
2248 | kind-of "^3.0.2"
2249 |
2250 | is-number@^3.0.0:
2251 | version "3.0.0"
2252 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2253 | dependencies:
2254 | kind-of "^3.0.2"
2255 |
2256 | is-number@^4.0.0:
2257 | version "4.0.0"
2258 | resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
2259 |
2260 | is-odd@^2.0.0:
2261 | version "2.0.0"
2262 | resolved "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24"
2263 | dependencies:
2264 | is-number "^4.0.0"
2265 |
2266 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
2267 | version "2.0.4"
2268 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2269 | dependencies:
2270 | isobject "^3.0.1"
2271 |
2272 | is-posix-bracket@^0.1.0:
2273 | version "0.1.1"
2274 | resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2275 |
2276 | is-primitive@^2.0.0:
2277 | version "2.0.0"
2278 | resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2279 |
2280 | is-regex@^1.0.4:
2281 | version "1.0.4"
2282 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2283 | dependencies:
2284 | has "^1.0.1"
2285 |
2286 | is-stream@^1.0.1, is-stream@^1.1.0:
2287 | version "1.1.0"
2288 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2289 |
2290 | is-symbol@^1.0.1:
2291 | version "1.0.1"
2292 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
2293 |
2294 | is-typedarray@~1.0.0:
2295 | version "1.0.0"
2296 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2297 |
2298 | is-windows@^1.0.0, is-windows@^1.0.2:
2299 | version "1.0.2"
2300 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
2301 |
2302 | isarray@1.0.0, isarray@~1.0.0:
2303 | version "1.0.0"
2304 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2305 |
2306 | isexe@^2.0.0:
2307 | version "2.0.0"
2308 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2309 |
2310 | isobject@^2.0.0:
2311 | version "2.1.0"
2312 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2313 | dependencies:
2314 | isarray "1.0.0"
2315 |
2316 | isobject@^3.0.0, isobject@^3.0.1:
2317 | version "3.0.1"
2318 | resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2319 |
2320 | isomorphic-fetch@^2.1.1:
2321 | version "2.2.1"
2322 | resolved "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
2323 | dependencies:
2324 | node-fetch "^1.0.1"
2325 | whatwg-fetch ">=0.10.0"
2326 |
2327 | isstream@~0.1.2:
2328 | version "0.1.2"
2329 | resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2330 |
2331 | istanbul-api@^1.1.14:
2332 | version "1.3.6"
2333 | resolved "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.6.tgz#0c695f17e533131de8c49e0657175dcfd8af8a8f"
2334 | dependencies:
2335 | async "^2.1.4"
2336 | compare-versions "^3.1.0"
2337 | fileset "^2.0.2"
2338 | istanbul-lib-coverage "^1.2.0"
2339 | istanbul-lib-hook "^1.2.0"
2340 | istanbul-lib-instrument "^2.1.0"
2341 | istanbul-lib-report "^1.1.4"
2342 | istanbul-lib-source-maps "^1.2.5"
2343 | istanbul-reports "^1.4.1"
2344 | js-yaml "^3.7.0"
2345 | mkdirp "^0.5.1"
2346 | once "^1.4.0"
2347 |
2348 | istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.2.0:
2349 | version "1.2.0"
2350 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341"
2351 |
2352 | istanbul-lib-coverage@^2.0.0:
2353 | version "2.0.0"
2354 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.0.tgz#905e71212052ffb34f2eb008102230bff03940b5"
2355 |
2356 | istanbul-lib-hook@^1.2.0:
2357 | version "1.2.1"
2358 | resolved "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805"
2359 | dependencies:
2360 | append-transform "^1.0.0"
2361 |
2362 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.8.0:
2363 | version "1.10.1"
2364 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b"
2365 | dependencies:
2366 | babel-generator "^6.18.0"
2367 | babel-template "^6.16.0"
2368 | babel-traverse "^6.18.0"
2369 | babel-types "^6.18.0"
2370 | babylon "^6.18.0"
2371 | istanbul-lib-coverage "^1.2.0"
2372 | semver "^5.3.0"
2373 |
2374 | istanbul-lib-instrument@^2.1.0:
2375 | version "2.2.0"
2376 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-2.2.0.tgz#08091ae49d0b330be2a839dc25c250324c4bedaa"
2377 | dependencies:
2378 | "@babel/generator" "7.0.0-beta.49"
2379 | "@babel/parser" "7.0.0-beta.49"
2380 | "@babel/template" "7.0.0-beta.49"
2381 | "@babel/traverse" "7.0.0-beta.49"
2382 | "@babel/types" "7.0.0-beta.49"
2383 | istanbul-lib-coverage "^2.0.0"
2384 | semver "^5.5.0"
2385 |
2386 | istanbul-lib-report@^1.1.4:
2387 | version "1.1.4"
2388 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5"
2389 | dependencies:
2390 | istanbul-lib-coverage "^1.2.0"
2391 | mkdirp "^0.5.1"
2392 | path-parse "^1.0.5"
2393 | supports-color "^3.1.2"
2394 |
2395 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.5:
2396 | version "1.2.5"
2397 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1"
2398 | dependencies:
2399 | debug "^3.1.0"
2400 | istanbul-lib-coverage "^1.2.0"
2401 | mkdirp "^0.5.1"
2402 | rimraf "^2.6.1"
2403 | source-map "^0.5.3"
2404 |
2405 | istanbul-reports@^1.4.1:
2406 | version "1.5.0"
2407 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.5.0.tgz#c6c2867fa65f59eb7dcedb7f845dfc76aaee70f9"
2408 | dependencies:
2409 | handlebars "^4.0.11"
2410 |
2411 | jest-changed-files@^22.2.0:
2412 | version "22.4.3"
2413 | resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2"
2414 | dependencies:
2415 | throat "^4.0.0"
2416 |
2417 | jest-cli@^22.4.4:
2418 | version "22.4.4"
2419 | resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-22.4.4.tgz#68cd2a2aae983adb1e6638248ca21082fd6d9e90"
2420 | dependencies:
2421 | ansi-escapes "^3.0.0"
2422 | chalk "^2.0.1"
2423 | exit "^0.1.2"
2424 | glob "^7.1.2"
2425 | graceful-fs "^4.1.11"
2426 | import-local "^1.0.0"
2427 | is-ci "^1.0.10"
2428 | istanbul-api "^1.1.14"
2429 | istanbul-lib-coverage "^1.1.1"
2430 | istanbul-lib-instrument "^1.8.0"
2431 | istanbul-lib-source-maps "^1.2.1"
2432 | jest-changed-files "^22.2.0"
2433 | jest-config "^22.4.4"
2434 | jest-environment-jsdom "^22.4.1"
2435 | jest-get-type "^22.1.0"
2436 | jest-haste-map "^22.4.2"
2437 | jest-message-util "^22.4.0"
2438 | jest-regex-util "^22.1.0"
2439 | jest-resolve-dependencies "^22.1.0"
2440 | jest-runner "^22.4.4"
2441 | jest-runtime "^22.4.4"
2442 | jest-snapshot "^22.4.0"
2443 | jest-util "^22.4.1"
2444 | jest-validate "^22.4.4"
2445 | jest-worker "^22.2.2"
2446 | micromatch "^2.3.11"
2447 | node-notifier "^5.2.1"
2448 | realpath-native "^1.0.0"
2449 | rimraf "^2.5.4"
2450 | slash "^1.0.0"
2451 | string-length "^2.0.0"
2452 | strip-ansi "^4.0.0"
2453 | which "^1.2.12"
2454 | yargs "^10.0.3"
2455 |
2456 | jest-config@^22.4.4:
2457 | version "22.4.4"
2458 | resolved "https://registry.npmjs.org/jest-config/-/jest-config-22.4.4.tgz#72a521188720597169cd8b4ff86934ef5752d86a"
2459 | dependencies:
2460 | chalk "^2.0.1"
2461 | glob "^7.1.1"
2462 | jest-environment-jsdom "^22.4.1"
2463 | jest-environment-node "^22.4.1"
2464 | jest-get-type "^22.1.0"
2465 | jest-jasmine2 "^22.4.4"
2466 | jest-regex-util "^22.1.0"
2467 | jest-resolve "^22.4.2"
2468 | jest-util "^22.4.1"
2469 | jest-validate "^22.4.4"
2470 | pretty-format "^22.4.0"
2471 |
2472 | jest-diff@^22.4.0, jest-diff@^22.4.3:
2473 | version "22.4.3"
2474 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030"
2475 | dependencies:
2476 | chalk "^2.0.1"
2477 | diff "^3.2.0"
2478 | jest-get-type "^22.4.3"
2479 | pretty-format "^22.4.3"
2480 |
2481 | jest-diff@^24.0.0, jest-diff@^24.8.0:
2482 | version "24.8.0"
2483 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172"
2484 | integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==
2485 | dependencies:
2486 | chalk "^2.0.1"
2487 | diff-sequences "^24.3.0"
2488 | jest-get-type "^24.8.0"
2489 | pretty-format "^24.8.0"
2490 |
2491 | jest-docblock@^22.4.0, jest-docblock@^22.4.3:
2492 | version "22.4.3"
2493 | resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19"
2494 | dependencies:
2495 | detect-newline "^2.1.0"
2496 |
2497 | jest-dom@3.1.4:
2498 | version "3.1.4"
2499 | resolved "https://registry.npmjs.org/jest-dom/-/jest-dom-3.1.4.tgz#914490e8baf997da16f71dc913ff0a77bd2a2ff7"
2500 | integrity sha512-ruIRHoRVnqPRt/HSS2aFukfhTpjEoq1I6PkYptKK5U2EeRm1eeOXG7BFiaMncTaGu4COSoCF84oLHj02+J5VDg==
2501 | dependencies:
2502 | chalk "^2.4.1"
2503 | css "^2.2.3"
2504 | css.escape "^1.5.1"
2505 | jest-diff "^24.0.0"
2506 | jest-matcher-utils "^24.0.0"
2507 | lodash "^4.17.11"
2508 | pretty-format "^24.0.0"
2509 | redent "^2.0.0"
2510 |
2511 | jest-dom@^1.0.0:
2512 | version "1.3.1"
2513 | resolved "https://registry.npmjs.org/jest-dom/-/jest-dom-1.3.1.tgz#4eba15d54059182ee0d3682a9fff0d957ad874c7"
2514 | dependencies:
2515 | chalk "^2.4.1"
2516 | css "^2.2.3"
2517 | jest-diff "^22.4.3"
2518 | jest-matcher-utils "^22.4.3"
2519 | pretty-format "^23.0.1"
2520 | redent "^2.0.0"
2521 |
2522 | jest-environment-jsdom@^22.4.1:
2523 | version "22.4.3"
2524 | resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
2525 | dependencies:
2526 | jest-mock "^22.4.3"
2527 | jest-util "^22.4.3"
2528 | jsdom "^11.5.1"
2529 |
2530 | jest-environment-node@^22.4.1:
2531 | version "22.4.3"
2532 | resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129"
2533 | dependencies:
2534 | jest-mock "^22.4.3"
2535 | jest-util "^22.4.3"
2536 |
2537 | jest-get-type@^22.1.0, jest-get-type@^22.4.3:
2538 | version "22.4.3"
2539 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
2540 |
2541 | jest-get-type@^24.8.0:
2542 | version "24.8.0"
2543 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc"
2544 | integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==
2545 |
2546 | jest-haste-map@^22.4.2:
2547 | version "22.4.3"
2548 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b"
2549 | dependencies:
2550 | fb-watchman "^2.0.0"
2551 | graceful-fs "^4.1.11"
2552 | jest-docblock "^22.4.3"
2553 | jest-serializer "^22.4.3"
2554 | jest-worker "^22.4.3"
2555 | micromatch "^2.3.11"
2556 | sane "^2.0.0"
2557 |
2558 | jest-jasmine2@^22.4.4:
2559 | version "22.4.4"
2560 | resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-22.4.4.tgz#c55f92c961a141f693f869f5f081a79a10d24e23"
2561 | dependencies:
2562 | chalk "^2.0.1"
2563 | co "^4.6.0"
2564 | expect "^22.4.0"
2565 | graceful-fs "^4.1.11"
2566 | is-generator-fn "^1.0.0"
2567 | jest-diff "^22.4.0"
2568 | jest-matcher-utils "^22.4.0"
2569 | jest-message-util "^22.4.0"
2570 | jest-snapshot "^22.4.0"
2571 | jest-util "^22.4.1"
2572 | source-map-support "^0.5.0"
2573 |
2574 | jest-leak-detector@^22.4.0:
2575 | version "22.4.3"
2576 | resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35"
2577 | dependencies:
2578 | pretty-format "^22.4.3"
2579 |
2580 | jest-matcher-utils@^22.4.0, jest-matcher-utils@^22.4.3:
2581 | version "22.4.3"
2582 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff"
2583 | dependencies:
2584 | chalk "^2.0.1"
2585 | jest-get-type "^22.4.3"
2586 | pretty-format "^22.4.3"
2587 |
2588 | jest-matcher-utils@^24.0.0:
2589 | version "24.8.0"
2590 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495"
2591 | integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==
2592 | dependencies:
2593 | chalk "^2.0.1"
2594 | jest-diff "^24.8.0"
2595 | jest-get-type "^24.8.0"
2596 | pretty-format "^24.8.0"
2597 |
2598 | jest-message-util@^22.4.0, jest-message-util@^22.4.3:
2599 | version "22.4.3"
2600 | resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7"
2601 | dependencies:
2602 | "@babel/code-frame" "^7.0.0-beta.35"
2603 | chalk "^2.0.1"
2604 | micromatch "^2.3.11"
2605 | slash "^1.0.0"
2606 | stack-utils "^1.0.1"
2607 |
2608 | jest-mock@^22.4.3:
2609 | version "22.4.3"
2610 | resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7"
2611 |
2612 | jest-regex-util@^22.1.0, jest-regex-util@^22.4.3:
2613 | version "22.4.3"
2614 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af"
2615 |
2616 | jest-resolve-dependencies@^22.1.0:
2617 | version "22.4.3"
2618 | resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e"
2619 | dependencies:
2620 | jest-regex-util "^22.4.3"
2621 |
2622 | jest-resolve@^22.4.2:
2623 | version "22.4.3"
2624 | resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-22.4.3.tgz#0ce9d438c8438229aa9b916968ec6b05c1abb4ea"
2625 | dependencies:
2626 | browser-resolve "^1.11.2"
2627 | chalk "^2.0.1"
2628 |
2629 | jest-runner@^22.4.4:
2630 | version "22.4.4"
2631 | resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-22.4.4.tgz#dfca7b7553e0fa617e7b1291aeb7ce83e540a907"
2632 | dependencies:
2633 | exit "^0.1.2"
2634 | jest-config "^22.4.4"
2635 | jest-docblock "^22.4.0"
2636 | jest-haste-map "^22.4.2"
2637 | jest-jasmine2 "^22.4.4"
2638 | jest-leak-detector "^22.4.0"
2639 | jest-message-util "^22.4.0"
2640 | jest-runtime "^22.4.4"
2641 | jest-util "^22.4.1"
2642 | jest-worker "^22.2.2"
2643 | throat "^4.0.0"
2644 |
2645 | jest-runtime@^22.4.4:
2646 | version "22.4.4"
2647 | resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-22.4.4.tgz#9ba7792fc75582a5be0f79af6f8fe8adea314048"
2648 | dependencies:
2649 | babel-core "^6.0.0"
2650 | babel-jest "^22.4.4"
2651 | babel-plugin-istanbul "^4.1.5"
2652 | chalk "^2.0.1"
2653 | convert-source-map "^1.4.0"
2654 | exit "^0.1.2"
2655 | graceful-fs "^4.1.11"
2656 | jest-config "^22.4.4"
2657 | jest-haste-map "^22.4.2"
2658 | jest-regex-util "^22.1.0"
2659 | jest-resolve "^22.4.2"
2660 | jest-util "^22.4.1"
2661 | jest-validate "^22.4.4"
2662 | json-stable-stringify "^1.0.1"
2663 | micromatch "^2.3.11"
2664 | realpath-native "^1.0.0"
2665 | slash "^1.0.0"
2666 | strip-bom "3.0.0"
2667 | write-file-atomic "^2.1.0"
2668 | yargs "^10.0.3"
2669 |
2670 | jest-serializer@^22.4.3:
2671 | version "22.4.3"
2672 | resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436"
2673 |
2674 | jest-snapshot@^22.4.0:
2675 | version "22.4.3"
2676 | resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-22.4.3.tgz#b5c9b42846ffb9faccb76b841315ba67887362d2"
2677 | dependencies:
2678 | chalk "^2.0.1"
2679 | jest-diff "^22.4.3"
2680 | jest-matcher-utils "^22.4.3"
2681 | mkdirp "^0.5.1"
2682 | natural-compare "^1.4.0"
2683 | pretty-format "^22.4.3"
2684 |
2685 | jest-util@^22.4.1, jest-util@^22.4.3:
2686 | version "22.4.3"
2687 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac"
2688 | dependencies:
2689 | callsites "^2.0.0"
2690 | chalk "^2.0.1"
2691 | graceful-fs "^4.1.11"
2692 | is-ci "^1.0.10"
2693 | jest-message-util "^22.4.3"
2694 | mkdirp "^0.5.1"
2695 | source-map "^0.6.0"
2696 |
2697 | jest-validate@^22.4.4:
2698 | version "22.4.4"
2699 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-22.4.4.tgz#1dd0b616ef46c995de61810d85f57119dbbcec4d"
2700 | dependencies:
2701 | chalk "^2.0.1"
2702 | jest-config "^22.4.4"
2703 | jest-get-type "^22.1.0"
2704 | leven "^2.1.0"
2705 | pretty-format "^22.4.0"
2706 |
2707 | jest-worker@^22.2.2, jest-worker@^22.4.3:
2708 | version "22.4.3"
2709 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b"
2710 | dependencies:
2711 | merge-stream "^1.0.1"
2712 |
2713 | jest@^22.4.3:
2714 | version "22.4.4"
2715 | resolved "https://registry.npmjs.org/jest/-/jest-22.4.4.tgz#ffb36c9654b339a13e10b3d4b338eb3e9d49f6eb"
2716 | dependencies:
2717 | import-local "^1.0.0"
2718 | jest-cli "^22.4.4"
2719 |
2720 | js-tokens@^3.0.0, js-tokens@^3.0.2:
2721 | version "3.0.2"
2722 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2723 |
2724 | js-yaml@^3.13.1:
2725 | version "3.14.0"
2726 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
2727 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
2728 | dependencies:
2729 | argparse "^1.0.7"
2730 | esprima "^4.0.0"
2731 |
2732 | js-yaml@^3.7.0:
2733 | version "3.12.0"
2734 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
2735 | dependencies:
2736 | argparse "^1.0.7"
2737 | esprima "^4.0.0"
2738 |
2739 | jsbn@~0.1.0:
2740 | version "0.1.1"
2741 | resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2742 |
2743 | jsdom@^11.5.1:
2744 | version "11.11.0"
2745 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e"
2746 | dependencies:
2747 | abab "^1.0.4"
2748 | acorn "^5.3.0"
2749 | acorn-globals "^4.1.0"
2750 | array-equal "^1.0.0"
2751 | cssom ">= 0.3.2 < 0.4.0"
2752 | cssstyle ">= 0.3.1 < 0.4.0"
2753 | data-urls "^1.0.0"
2754 | domexception "^1.0.0"
2755 | escodegen "^1.9.0"
2756 | html-encoding-sniffer "^1.0.2"
2757 | left-pad "^1.2.0"
2758 | nwsapi "^2.0.0"
2759 | parse5 "4.0.0"
2760 | pn "^1.1.0"
2761 | request "^2.83.0"
2762 | request-promise-native "^1.0.5"
2763 | sax "^1.2.4"
2764 | symbol-tree "^3.2.2"
2765 | tough-cookie "^2.3.3"
2766 | w3c-hr-time "^1.0.1"
2767 | webidl-conversions "^4.0.2"
2768 | whatwg-encoding "^1.0.3"
2769 | whatwg-mimetype "^2.1.0"
2770 | whatwg-url "^6.4.1"
2771 | ws "^4.0.0"
2772 | xml-name-validator "^3.0.0"
2773 |
2774 | jsesc@^1.3.0:
2775 | version "1.3.0"
2776 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2777 |
2778 | jsesc@^2.5.1:
2779 | version "2.5.1"
2780 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe"
2781 |
2782 | jsesc@~0.5.0:
2783 | version "0.5.0"
2784 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2785 |
2786 | json-parse-better-errors@^1.0.1:
2787 | version "1.0.2"
2788 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2789 |
2790 | json-schema-traverse@^0.3.0:
2791 | version "0.3.1"
2792 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2793 |
2794 | json-schema-traverse@^0.4.1:
2795 | version "0.4.1"
2796 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2797 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
2798 |
2799 | json-schema@0.2.3:
2800 | version "0.2.3"
2801 | resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2802 |
2803 | json-stable-stringify@^1.0.1:
2804 | version "1.0.1"
2805 | resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2806 | dependencies:
2807 | jsonify "~0.0.0"
2808 |
2809 | json-stringify-safe@~5.0.1:
2810 | version "5.0.1"
2811 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2812 |
2813 | json5@^0.5.1:
2814 | version "0.5.1"
2815 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2816 |
2817 | jsonify@~0.0.0:
2818 | version "0.0.0"
2819 | resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2820 |
2821 | jsprim@^1.2.2:
2822 | version "1.4.1"
2823 | resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2824 | dependencies:
2825 | assert-plus "1.0.0"
2826 | extsprintf "1.3.0"
2827 | json-schema "0.2.3"
2828 | verror "1.10.0"
2829 |
2830 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2831 | version "3.2.2"
2832 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2833 | dependencies:
2834 | is-buffer "^1.1.5"
2835 |
2836 | kind-of@^4.0.0:
2837 | version "4.0.0"
2838 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2839 | dependencies:
2840 | is-buffer "^1.1.5"
2841 |
2842 | kind-of@^5.0.0:
2843 | version "5.1.0"
2844 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2845 |
2846 | kind-of@^6.0.0, kind-of@^6.0.2:
2847 | version "6.0.2"
2848 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2849 |
2850 | lazy-cache@^1.0.3:
2851 | version "1.0.4"
2852 | resolved "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2853 |
2854 | lcid@^1.0.0:
2855 | version "1.0.0"
2856 | resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2857 | dependencies:
2858 | invert-kv "^1.0.0"
2859 |
2860 | lcov-parse@^1.0.0:
2861 | version "1.0.0"
2862 | resolved "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz#eb0d46b54111ebc561acb4c408ef9363bdc8f7e0"
2863 | integrity sha1-6w1GtUER68VhrLTECO+TY73I9+A=
2864 |
2865 | left-pad@^1.2.0:
2866 | version "1.3.0"
2867 | resolved "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
2868 |
2869 | leven@^2.1.0:
2870 | version "2.1.0"
2871 | resolved "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2872 |
2873 | levn@~0.3.0:
2874 | version "0.3.0"
2875 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2876 | dependencies:
2877 | prelude-ls "~1.1.2"
2878 | type-check "~0.3.2"
2879 |
2880 | load-json-file@^4.0.0:
2881 | version "4.0.0"
2882 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2883 | dependencies:
2884 | graceful-fs "^4.1.2"
2885 | parse-json "^4.0.0"
2886 | pify "^3.0.0"
2887 | strip-bom "^3.0.0"
2888 |
2889 | locate-path@^2.0.0:
2890 | version "2.0.0"
2891 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2892 | dependencies:
2893 | p-locate "^2.0.0"
2894 | path-exists "^3.0.0"
2895 |
2896 | lodash.sortby@^4.7.0:
2897 | version "4.7.0"
2898 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2899 |
2900 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0:
2901 | version "4.17.10"
2902 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
2903 |
2904 | lodash@^4.17.11:
2905 | version "4.17.14"
2906 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
2907 | integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
2908 |
2909 | log-driver@^1.2.7:
2910 | version "1.2.7"
2911 | resolved "https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
2912 | integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==
2913 |
2914 | longest@^1.0.1:
2915 | version "1.0.1"
2916 | resolved "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2917 |
2918 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
2919 | version "1.3.1"
2920 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2921 | dependencies:
2922 | js-tokens "^3.0.0"
2923 |
2924 | lru-cache@^4.0.1:
2925 | version "4.1.3"
2926 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
2927 | dependencies:
2928 | pseudomap "^1.0.2"
2929 | yallist "^2.1.2"
2930 |
2931 | magic-string@^0.22.4:
2932 | version "0.22.5"
2933 | resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
2934 | dependencies:
2935 | vlq "^0.2.2"
2936 |
2937 | makeerror@1.0.x:
2938 | version "1.0.11"
2939 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2940 | dependencies:
2941 | tmpl "1.0.x"
2942 |
2943 | map-cache@^0.2.2:
2944 | version "0.2.2"
2945 | resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2946 |
2947 | map-visit@^1.0.0:
2948 | version "1.0.0"
2949 | resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2950 | dependencies:
2951 | object-visit "^1.0.0"
2952 |
2953 | math-random@^1.0.1:
2954 | version "1.0.1"
2955 | resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
2956 |
2957 | mem@^1.1.0:
2958 | version "1.1.0"
2959 | resolved "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2960 | dependencies:
2961 | mimic-fn "^1.0.0"
2962 |
2963 | merge-stream@^1.0.1:
2964 | version "1.0.1"
2965 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2966 | dependencies:
2967 | readable-stream "^2.0.1"
2968 |
2969 | merge@^1.1.3:
2970 | version "1.2.0"
2971 | resolved "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2972 |
2973 | micromatch@^2.1.5, micromatch@^2.3.11:
2974 | version "2.3.11"
2975 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2976 | dependencies:
2977 | arr-diff "^2.0.0"
2978 | array-unique "^0.2.1"
2979 | braces "^1.8.2"
2980 | expand-brackets "^0.1.4"
2981 | extglob "^0.3.1"
2982 | filename-regex "^2.0.0"
2983 | is-extglob "^1.0.0"
2984 | is-glob "^2.0.1"
2985 | kind-of "^3.0.2"
2986 | normalize-path "^2.0.1"
2987 | object.omit "^2.0.0"
2988 | parse-glob "^3.0.4"
2989 | regex-cache "^0.4.2"
2990 |
2991 | micromatch@^3.1.4:
2992 | version "3.1.10"
2993 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2994 | dependencies:
2995 | arr-diff "^4.0.0"
2996 | array-unique "^0.3.2"
2997 | braces "^2.3.1"
2998 | define-property "^2.0.2"
2999 | extend-shallow "^3.0.2"
3000 | extglob "^2.0.4"
3001 | fragment-cache "^0.2.1"
3002 | kind-of "^6.0.2"
3003 | nanomatch "^1.2.9"
3004 | object.pick "^1.3.0"
3005 | regex-not "^1.0.0"
3006 | snapdragon "^0.8.1"
3007 | to-regex "^3.0.2"
3008 |
3009 | mime-db@1.44.0:
3010 | version "1.44.0"
3011 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
3012 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
3013 |
3014 | mime-db@~1.33.0:
3015 | version "1.33.0"
3016 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
3017 |
3018 | mime-types@^2.1.12, mime-types@~2.1.17:
3019 | version "2.1.18"
3020 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
3021 | dependencies:
3022 | mime-db "~1.33.0"
3023 |
3024 | mime-types@~2.1.19:
3025 | version "2.1.27"
3026 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
3027 | integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
3028 | dependencies:
3029 | mime-db "1.44.0"
3030 |
3031 | mimic-fn@^1.0.0:
3032 | version "1.2.0"
3033 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
3034 |
3035 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
3036 | version "3.0.4"
3037 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
3038 | dependencies:
3039 | brace-expansion "^1.1.7"
3040 |
3041 | minimist@0.0.8:
3042 | version "0.0.8"
3043 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
3044 |
3045 | minimist@^1.1.1, minimist@^1.2.0:
3046 | version "1.2.0"
3047 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
3048 |
3049 | minimist@^1.2.5:
3050 | version "1.2.5"
3051 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
3052 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
3053 |
3054 | minimist@~0.0.1:
3055 | version "0.0.10"
3056 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
3057 |
3058 | minipass@^2.2.1, minipass@^2.3.3:
3059 | version "2.3.3"
3060 | resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233"
3061 | dependencies:
3062 | safe-buffer "^5.1.2"
3063 | yallist "^3.0.0"
3064 |
3065 | minizlib@^1.1.0:
3066 | version "1.1.0"
3067 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
3068 | dependencies:
3069 | minipass "^2.2.1"
3070 |
3071 | mixin-deep@^1.2.0:
3072 | version "1.3.1"
3073 | resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
3074 | dependencies:
3075 | for-in "^1.0.2"
3076 | is-extendable "^1.0.1"
3077 |
3078 | mkdirp@^0.5.0, mkdirp@^0.5.1:
3079 | version "0.5.1"
3080 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
3081 | dependencies:
3082 | minimist "0.0.8"
3083 |
3084 | ms@2.0.0:
3085 | version "2.0.0"
3086 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
3087 |
3088 | mutationobserver-shim@^0.3.2:
3089 | version "0.3.2"
3090 | resolved "https://registry.npmjs.org/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#f4d5dae7a4971a2207914fb5a90ebd514b65acca"
3091 |
3092 | nan@^2.9.2:
3093 | version "2.10.0"
3094 | resolved "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
3095 |
3096 | nanomatch@^1.2.9:
3097 | version "1.2.9"
3098 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2"
3099 | dependencies:
3100 | arr-diff "^4.0.0"
3101 | array-unique "^0.3.2"
3102 | define-property "^2.0.2"
3103 | extend-shallow "^3.0.2"
3104 | fragment-cache "^0.2.1"
3105 | is-odd "^2.0.0"
3106 | is-windows "^1.0.2"
3107 | kind-of "^6.0.2"
3108 | object.pick "^1.3.0"
3109 | regex-not "^1.0.0"
3110 | snapdragon "^0.8.1"
3111 | to-regex "^3.0.1"
3112 |
3113 | natural-compare@^1.4.0:
3114 | version "1.4.0"
3115 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
3116 |
3117 | needle@^2.2.0:
3118 | version "2.2.1"
3119 | resolved "https://registry.npmjs.org/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d"
3120 | dependencies:
3121 | debug "^2.1.2"
3122 | iconv-lite "^0.4.4"
3123 | sax "^1.2.4"
3124 |
3125 | nice-try@^1.0.4:
3126 | version "1.0.4"
3127 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4"
3128 |
3129 | node-fetch@^1.0.1:
3130 | version "1.7.3"
3131 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
3132 | dependencies:
3133 | encoding "^0.1.11"
3134 | is-stream "^1.0.1"
3135 |
3136 | node-int64@^0.4.0:
3137 | version "0.4.0"
3138 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
3139 |
3140 | node-notifier@^5.2.1:
3141 | version "5.2.1"
3142 | resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea"
3143 | dependencies:
3144 | growly "^1.3.0"
3145 | semver "^5.4.1"
3146 | shellwords "^0.1.1"
3147 | which "^1.3.0"
3148 |
3149 | node-pre-gyp@^0.10.0:
3150 | version "0.10.0"
3151 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46"
3152 | dependencies:
3153 | detect-libc "^1.0.2"
3154 | mkdirp "^0.5.1"
3155 | needle "^2.2.0"
3156 | nopt "^4.0.1"
3157 | npm-packlist "^1.1.6"
3158 | npmlog "^4.0.2"
3159 | rc "^1.1.7"
3160 | rimraf "^2.6.1"
3161 | semver "^5.3.0"
3162 | tar "^4"
3163 |
3164 | nopt@^4.0.1:
3165 | version "4.0.1"
3166 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
3167 | dependencies:
3168 | abbrev "1"
3169 | osenv "^0.1.4"
3170 |
3171 | normalize-package-data@^2.3.2:
3172 | version "2.4.0"
3173 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
3174 | dependencies:
3175 | hosted-git-info "^2.1.4"
3176 | is-builtin-module "^1.0.0"
3177 | semver "2 || 3 || 4 || 5"
3178 | validate-npm-package-license "^3.0.1"
3179 |
3180 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
3181 | version "2.1.1"
3182 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
3183 | dependencies:
3184 | remove-trailing-separator "^1.0.1"
3185 |
3186 | npm-bundled@^1.0.1:
3187 | version "1.0.3"
3188 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
3189 |
3190 | npm-packlist@^1.1.6:
3191 | version "1.1.10"
3192 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a"
3193 | dependencies:
3194 | ignore-walk "^3.0.1"
3195 | npm-bundled "^1.0.1"
3196 |
3197 | npm-run-path@^2.0.0:
3198 | version "2.0.2"
3199 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
3200 | dependencies:
3201 | path-key "^2.0.0"
3202 |
3203 | npmlog@^4.0.2:
3204 | version "4.1.2"
3205 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
3206 | dependencies:
3207 | are-we-there-yet "~1.1.2"
3208 | console-control-strings "~1.1.0"
3209 | gauge "~2.7.3"
3210 | set-blocking "~2.0.0"
3211 |
3212 | number-is-nan@^1.0.0:
3213 | version "1.0.1"
3214 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
3215 |
3216 | nwsapi@^2.0.0:
3217 | version "2.0.3"
3218 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.3.tgz#3f4010d6c943f34018d3dfb5f2fbc0de90476959"
3219 |
3220 | oauth-sign@~0.8.2:
3221 | version "0.8.2"
3222 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
3223 |
3224 | oauth-sign@~0.9.0:
3225 | version "0.9.0"
3226 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
3227 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
3228 |
3229 | object-assign@^4.1.0, object-assign@^4.1.1:
3230 | version "4.1.1"
3231 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
3232 |
3233 | object-copy@^0.1.0:
3234 | version "0.1.0"
3235 | resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
3236 | dependencies:
3237 | copy-descriptor "^0.1.0"
3238 | define-property "^0.2.5"
3239 | kind-of "^3.0.3"
3240 |
3241 | object-keys@^1.0.8:
3242 | version "1.0.11"
3243 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
3244 |
3245 | object-visit@^1.0.0:
3246 | version "1.0.1"
3247 | resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
3248 | dependencies:
3249 | isobject "^3.0.0"
3250 |
3251 | object.getownpropertydescriptors@^2.0.3:
3252 | version "2.0.3"
3253 | resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
3254 | dependencies:
3255 | define-properties "^1.1.2"
3256 | es-abstract "^1.5.1"
3257 |
3258 | object.omit@^2.0.0:
3259 | version "2.0.1"
3260 | resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
3261 | dependencies:
3262 | for-own "^0.1.4"
3263 | is-extendable "^0.1.1"
3264 |
3265 | object.pick@^1.3.0:
3266 | version "1.3.0"
3267 | resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
3268 | dependencies:
3269 | isobject "^3.0.1"
3270 |
3271 | once@^1.3.0, once@^1.4.0:
3272 | version "1.4.0"
3273 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
3274 | dependencies:
3275 | wrappy "1"
3276 |
3277 | optimist@^0.6.1:
3278 | version "0.6.1"
3279 | resolved "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
3280 | dependencies:
3281 | minimist "~0.0.1"
3282 | wordwrap "~0.0.2"
3283 |
3284 | optionator@^0.8.1:
3285 | version "0.8.2"
3286 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
3287 | dependencies:
3288 | deep-is "~0.1.3"
3289 | fast-levenshtein "~2.0.4"
3290 | levn "~0.3.0"
3291 | prelude-ls "~1.1.2"
3292 | type-check "~0.3.2"
3293 | wordwrap "~1.0.0"
3294 |
3295 | os-homedir@^1.0.0:
3296 | version "1.0.2"
3297 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
3298 |
3299 | os-locale@^2.0.0:
3300 | version "2.1.0"
3301 | resolved "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
3302 | dependencies:
3303 | execa "^0.7.0"
3304 | lcid "^1.0.0"
3305 | mem "^1.1.0"
3306 |
3307 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
3308 | version "1.0.2"
3309 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
3310 |
3311 | osenv@^0.1.4:
3312 | version "0.1.5"
3313 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
3314 | dependencies:
3315 | os-homedir "^1.0.0"
3316 | os-tmpdir "^1.0.0"
3317 |
3318 | output-file-sync@^1.1.2:
3319 | version "1.1.2"
3320 | resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
3321 | dependencies:
3322 | graceful-fs "^4.1.4"
3323 | mkdirp "^0.5.1"
3324 | object-assign "^4.1.0"
3325 |
3326 | p-finally@^1.0.0:
3327 | version "1.0.0"
3328 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
3329 |
3330 | p-limit@^1.1.0:
3331 | version "1.3.0"
3332 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
3333 | dependencies:
3334 | p-try "^1.0.0"
3335 |
3336 | p-locate@^2.0.0:
3337 | version "2.0.0"
3338 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
3339 | dependencies:
3340 | p-limit "^1.1.0"
3341 |
3342 | p-try@^1.0.0:
3343 | version "1.0.0"
3344 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
3345 |
3346 | parse-glob@^3.0.4:
3347 | version "3.0.4"
3348 | resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3349 | dependencies:
3350 | glob-base "^0.3.0"
3351 | is-dotfile "^1.0.0"
3352 | is-extglob "^1.0.0"
3353 | is-glob "^2.0.0"
3354 |
3355 | parse-json@^4.0.0:
3356 | version "4.0.0"
3357 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
3358 | dependencies:
3359 | error-ex "^1.3.1"
3360 | json-parse-better-errors "^1.0.1"
3361 |
3362 | parse5@4.0.0:
3363 | version "4.0.0"
3364 | resolved "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
3365 |
3366 | pascalcase@^0.1.1:
3367 | version "0.1.1"
3368 | resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
3369 |
3370 | path-exists@^3.0.0:
3371 | version "3.0.0"
3372 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
3373 |
3374 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
3375 | version "1.0.1"
3376 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
3377 |
3378 | path-key@^2.0.0, path-key@^2.0.1:
3379 | version "2.0.1"
3380 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
3381 |
3382 | path-parse@^1.0.5:
3383 | version "1.0.5"
3384 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
3385 |
3386 | path-type@^3.0.0:
3387 | version "3.0.0"
3388 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
3389 | dependencies:
3390 | pify "^3.0.0"
3391 |
3392 | performance-now@^2.1.0:
3393 | version "2.1.0"
3394 | resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
3395 |
3396 | pify@^3.0.0:
3397 | version "3.0.0"
3398 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
3399 |
3400 | pkg-dir@^2.0.0:
3401 | version "2.0.0"
3402 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
3403 | dependencies:
3404 | find-up "^2.1.0"
3405 |
3406 | pn@^1.1.0:
3407 | version "1.1.0"
3408 | resolved "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
3409 |
3410 | posix-character-classes@^0.1.0:
3411 | version "0.1.1"
3412 | resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
3413 |
3414 | prelude-ls@~1.1.2:
3415 | version "1.1.2"
3416 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
3417 |
3418 | preserve@^0.2.0:
3419 | version "0.2.0"
3420 | resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3421 |
3422 | pretty-format@^22.4.0, pretty-format@^22.4.3:
3423 | version "22.4.3"
3424 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f"
3425 | dependencies:
3426 | ansi-regex "^3.0.0"
3427 | ansi-styles "^3.2.0"
3428 |
3429 | pretty-format@^23.0.1:
3430 | version "23.0.1"
3431 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4"
3432 | dependencies:
3433 | ansi-regex "^3.0.0"
3434 | ansi-styles "^3.2.0"
3435 |
3436 | pretty-format@^24.0.0, pretty-format@^24.8.0:
3437 | version "24.8.0"
3438 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2"
3439 | integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==
3440 | dependencies:
3441 | "@jest/types" "^24.8.0"
3442 | ansi-regex "^4.0.0"
3443 | ansi-styles "^3.2.0"
3444 | react-is "^16.8.4"
3445 |
3446 | private@^0.1.6, private@^0.1.8:
3447 | version "0.1.8"
3448 | resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
3449 |
3450 | process-nextick-args@~2.0.0:
3451 | version "2.0.0"
3452 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
3453 |
3454 | promise@^7.1.1:
3455 | version "7.3.1"
3456 | resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
3457 | dependencies:
3458 | asap "~2.0.3"
3459 |
3460 | prop-types@^15.6.0:
3461 | version "15.6.1"
3462 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca"
3463 | dependencies:
3464 | fbjs "^0.8.16"
3465 | loose-envify "^1.3.1"
3466 | object-assign "^4.1.1"
3467 |
3468 | prop-types@~15.6.2:
3469 | version "15.6.2"
3470 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102"
3471 | integrity sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==
3472 | dependencies:
3473 | loose-envify "^1.3.1"
3474 | object-assign "^4.1.1"
3475 |
3476 | pseudomap@^1.0.2:
3477 | version "1.0.2"
3478 | resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3479 |
3480 | psl@^1.1.24:
3481 | version "1.1.28"
3482 | resolved "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b"
3483 |
3484 | psl@^1.1.28:
3485 | version "1.8.0"
3486 | resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
3487 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
3488 |
3489 | punycode@^1.4.1:
3490 | version "1.4.1"
3491 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3492 |
3493 | punycode@^2.1.0, punycode@^2.1.1:
3494 | version "2.1.1"
3495 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
3496 |
3497 | qs@~6.5.1, qs@~6.5.2:
3498 | version "6.5.2"
3499 | resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
3500 |
3501 | randomatic@^3.0.0:
3502 | version "3.0.0"
3503 | resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923"
3504 | dependencies:
3505 | is-number "^4.0.0"
3506 | kind-of "^6.0.0"
3507 | math-random "^1.0.1"
3508 |
3509 | rc@^1.1.7:
3510 | version "1.2.8"
3511 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
3512 | dependencies:
3513 | deep-extend "^0.6.0"
3514 | ini "~1.3.0"
3515 | minimist "^1.2.0"
3516 | strip-json-comments "~2.0.1"
3517 |
3518 | react-dom@^16.3.0:
3519 | version "16.4.1"
3520 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-16.4.1.tgz#7f8b0223b3a5fbe205116c56deb85de32685dad6"
3521 | dependencies:
3522 | fbjs "^0.8.16"
3523 | loose-envify "^1.1.0"
3524 | object-assign "^4.1.1"
3525 | prop-types "^15.6.0"
3526 |
3527 | react-is@^16.8.4:
3528 | version "16.8.6"
3529 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
3530 | integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
3531 |
3532 | react-testing-library@^4.0.0:
3533 | version "4.0.1"
3534 | resolved "https://registry.npmjs.org/react-testing-library/-/react-testing-library-4.0.1.tgz#e92238ba811c5b2542acae88b6d42d7db0a95955"
3535 | dependencies:
3536 | dom-testing-library "^2.6.0"
3537 | wait-for-expect "^1.0.0"
3538 |
3539 | react@^16.3.0:
3540 | version "16.4.1"
3541 | resolved "https://registry.npmjs.org/react/-/react-16.4.1.tgz#de51ba5764b5dbcd1f9079037b862bd26b82fe32"
3542 | dependencies:
3543 | fbjs "^0.8.16"
3544 | loose-envify "^1.1.0"
3545 | object-assign "^4.1.1"
3546 | prop-types "^15.6.0"
3547 |
3548 | read-pkg-up@^3.0.0:
3549 | version "3.0.0"
3550 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
3551 | dependencies:
3552 | find-up "^2.0.0"
3553 | read-pkg "^3.0.0"
3554 |
3555 | read-pkg@^3.0.0:
3556 | version "3.0.0"
3557 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
3558 | dependencies:
3559 | load-json-file "^4.0.0"
3560 | normalize-package-data "^2.3.2"
3561 | path-type "^3.0.0"
3562 |
3563 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6:
3564 | version "2.3.6"
3565 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
3566 | dependencies:
3567 | core-util-is "~1.0.0"
3568 | inherits "~2.0.3"
3569 | isarray "~1.0.0"
3570 | process-nextick-args "~2.0.0"
3571 | safe-buffer "~5.1.1"
3572 | string_decoder "~1.1.1"
3573 | util-deprecate "~1.0.1"
3574 |
3575 | readdirp@^2.0.0:
3576 | version "2.1.0"
3577 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3578 | dependencies:
3579 | graceful-fs "^4.1.2"
3580 | minimatch "^3.0.2"
3581 | readable-stream "^2.0.2"
3582 | set-immediate-shim "^1.0.1"
3583 |
3584 | realpath-native@^1.0.0:
3585 | version "1.0.0"
3586 | resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0"
3587 | dependencies:
3588 | util.promisify "^1.0.0"
3589 |
3590 | redent@^2.0.0:
3591 | version "2.0.0"
3592 | resolved "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
3593 | dependencies:
3594 | indent-string "^3.0.0"
3595 | strip-indent "^2.0.0"
3596 |
3597 | regenerate@^1.2.1:
3598 | version "1.4.0"
3599 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
3600 |
3601 | regenerator-runtime@^0.10.5:
3602 | version "0.10.5"
3603 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3604 |
3605 | regenerator-runtime@^0.11.0:
3606 | version "0.11.1"
3607 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3608 |
3609 | regenerator-transform@^0.10.0:
3610 | version "0.10.1"
3611 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
3612 | dependencies:
3613 | babel-runtime "^6.18.0"
3614 | babel-types "^6.19.0"
3615 | private "^0.1.6"
3616 |
3617 | regex-cache@^0.4.2:
3618 | version "0.4.4"
3619 | resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3620 | dependencies:
3621 | is-equal-shallow "^0.1.3"
3622 |
3623 | regex-not@^1.0.0, regex-not@^1.0.2:
3624 | version "1.0.2"
3625 | resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
3626 | dependencies:
3627 | extend-shallow "^3.0.2"
3628 | safe-regex "^1.1.0"
3629 |
3630 | regexpu-core@^2.0.0:
3631 | version "2.0.0"
3632 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3633 | dependencies:
3634 | regenerate "^1.2.1"
3635 | regjsgen "^0.2.0"
3636 | regjsparser "^0.1.4"
3637 |
3638 | regjsgen@^0.2.0:
3639 | version "0.2.0"
3640 | resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3641 |
3642 | regjsparser@^0.1.4:
3643 | version "0.1.5"
3644 | resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3645 | dependencies:
3646 | jsesc "~0.5.0"
3647 |
3648 | remove-trailing-separator@^1.0.1:
3649 | version "1.1.0"
3650 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3651 |
3652 | repeat-element@^1.1.2:
3653 | version "1.1.2"
3654 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3655 |
3656 | repeat-string@^1.5.2, repeat-string@^1.6.1:
3657 | version "1.6.1"
3658 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3659 |
3660 | repeating@^2.0.0:
3661 | version "2.0.1"
3662 | resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3663 | dependencies:
3664 | is-finite "^1.0.0"
3665 |
3666 | request-promise-core@1.1.1:
3667 | version "1.1.1"
3668 | resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
3669 | dependencies:
3670 | lodash "^4.13.1"
3671 |
3672 | request-promise-native@^1.0.5:
3673 | version "1.0.5"
3674 | resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
3675 | dependencies:
3676 | request-promise-core "1.1.1"
3677 | stealthy-require "^1.1.0"
3678 | tough-cookie ">=2.3.3"
3679 |
3680 | request@^2.83.0:
3681 | version "2.87.0"
3682 | resolved "https://registry.npmjs.org/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e"
3683 | dependencies:
3684 | aws-sign2 "~0.7.0"
3685 | aws4 "^1.6.0"
3686 | caseless "~0.12.0"
3687 | combined-stream "~1.0.5"
3688 | extend "~3.0.1"
3689 | forever-agent "~0.6.1"
3690 | form-data "~2.3.1"
3691 | har-validator "~5.0.3"
3692 | http-signature "~1.2.0"
3693 | is-typedarray "~1.0.0"
3694 | isstream "~0.1.2"
3695 | json-stringify-safe "~5.0.1"
3696 | mime-types "~2.1.17"
3697 | oauth-sign "~0.8.2"
3698 | performance-now "^2.1.0"
3699 | qs "~6.5.1"
3700 | safe-buffer "^5.1.1"
3701 | tough-cookie "~2.3.3"
3702 | tunnel-agent "^0.6.0"
3703 | uuid "^3.1.0"
3704 |
3705 | request@^2.88.2:
3706 | version "2.88.2"
3707 | resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
3708 | integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
3709 | dependencies:
3710 | aws-sign2 "~0.7.0"
3711 | aws4 "^1.8.0"
3712 | caseless "~0.12.0"
3713 | combined-stream "~1.0.6"
3714 | extend "~3.0.2"
3715 | forever-agent "~0.6.1"
3716 | form-data "~2.3.2"
3717 | har-validator "~5.1.3"
3718 | http-signature "~1.2.0"
3719 | is-typedarray "~1.0.0"
3720 | isstream "~0.1.2"
3721 | json-stringify-safe "~5.0.1"
3722 | mime-types "~2.1.19"
3723 | oauth-sign "~0.9.0"
3724 | performance-now "^2.1.0"
3725 | qs "~6.5.2"
3726 | safe-buffer "^5.1.2"
3727 | tough-cookie "~2.5.0"
3728 | tunnel-agent "^0.6.0"
3729 | uuid "^3.3.2"
3730 |
3731 | require-directory@^2.1.1:
3732 | version "2.1.1"
3733 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3734 |
3735 | require-main-filename@^1.0.1:
3736 | version "1.0.1"
3737 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3738 |
3739 | resolve-cwd@^2.0.0:
3740 | version "2.0.0"
3741 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3742 | dependencies:
3743 | resolve-from "^3.0.0"
3744 |
3745 | resolve-from@^3.0.0:
3746 | version "3.0.0"
3747 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3748 |
3749 | resolve-url@^0.2.1:
3750 | version "0.2.1"
3751 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3752 |
3753 | resolve@1.1.7:
3754 | version "1.1.7"
3755 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
3756 |
3757 | resolve@^1.1.6, resolve@^1.4.0:
3758 | version "1.8.0"
3759 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.8.0.tgz#a7f2ac27b78480ecc09c83782741d9f26e4f0c3e"
3760 | dependencies:
3761 | path-parse "^1.0.5"
3762 |
3763 | ret@~0.1.10:
3764 | version "0.1.15"
3765 | resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3766 |
3767 | right-align@^0.1.1:
3768 | version "0.1.3"
3769 | resolved "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3770 | dependencies:
3771 | align-text "^0.1.1"
3772 |
3773 | rimraf@^2.5.4, rimraf@^2.6.1:
3774 | version "2.6.2"
3775 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3776 | dependencies:
3777 | glob "^7.0.5"
3778 |
3779 | rollup-plugin-babel@^3.0.5:
3780 | version "3.0.7"
3781 | resolved "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-3.0.7.tgz#5b13611f1ab8922497e9d15197ae5d8a23fe3b1e"
3782 | integrity sha512-bVe2y0z/V5Ax1qU8NX/0idmzIwJPdUGu8Xx3vXH73h0yGjxfv2gkFI82MBVg49SlsFlLTBadBHb67zy4TWM3hA==
3783 | dependencies:
3784 | rollup-pluginutils "^1.5.0"
3785 |
3786 | rollup-plugin-commonjs@^8.2.6:
3787 | version "8.4.1"
3788 | resolved "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.4.1.tgz#5c9cea2b2c3de322f5fbccd147e07ed5e502d7a0"
3789 | dependencies:
3790 | acorn "^5.2.1"
3791 | estree-walker "^0.5.0"
3792 | magic-string "^0.22.4"
3793 | resolve "^1.4.0"
3794 | rollup-pluginutils "^2.0.1"
3795 |
3796 | rollup-plugin-node-resolve@^3.0.0:
3797 | version "3.3.0"
3798 | resolved "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.3.0.tgz#c26d110a36812cbefa7ce117cadcd3439aa1c713"
3799 | dependencies:
3800 | builtin-modules "^2.0.0"
3801 | is-module "^1.0.0"
3802 | resolve "^1.1.6"
3803 |
3804 | rollup-plugin-replace@^1.2.1:
3805 | version "1.2.1"
3806 | resolved "https://registry.npmjs.org/rollup-plugin-replace/-/rollup-plugin-replace-1.2.1.tgz#6307ee15f223aa1fd3207cd3c08052468f180daf"
3807 | dependencies:
3808 | magic-string "^0.22.4"
3809 | minimatch "^3.0.2"
3810 | rollup-pluginutils "^2.0.1"
3811 |
3812 | rollup-plugin-uglify@^2.0.1:
3813 | version "2.0.1"
3814 | resolved "https://registry.npmjs.org/rollup-plugin-uglify/-/rollup-plugin-uglify-2.0.1.tgz#67b37ad1efdafbd83af4c36b40c189ee4866c969"
3815 | dependencies:
3816 | uglify-js "^3.0.9"
3817 |
3818 | rollup-pluginutils@^1.5.0:
3819 | version "1.5.2"
3820 | resolved "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408"
3821 | dependencies:
3822 | estree-walker "^0.2.1"
3823 | minimatch "^3.0.2"
3824 |
3825 | rollup-pluginutils@^2.0.1:
3826 | version "2.3.0"
3827 | resolved "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.3.0.tgz#478ace04bd7f6da2e724356ca798214884738fc4"
3828 | dependencies:
3829 | estree-walker "^0.5.2"
3830 | micromatch "^2.3.11"
3831 |
3832 | rollup@^0.45.1:
3833 | version "0.45.2"
3834 | resolved "https://registry.npmjs.org/rollup/-/rollup-0.45.2.tgz#63a284c2b31234656f24e9e9717fabb6a7f0fa43"
3835 | dependencies:
3836 | source-map-support "^0.4.0"
3837 |
3838 | rsvp@^3.3.3:
3839 | version "3.6.2"
3840 | resolved "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
3841 |
3842 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3843 | version "5.1.2"
3844 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3845 |
3846 | safe-regex@^1.1.0:
3847 | version "1.1.0"
3848 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3849 | dependencies:
3850 | ret "~0.1.10"
3851 |
3852 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2:
3853 | version "2.1.2"
3854 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3855 |
3856 | sane@^2.0.0:
3857 | version "2.5.2"
3858 | resolved "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"
3859 | dependencies:
3860 | anymatch "^2.0.0"
3861 | capture-exit "^1.2.0"
3862 | exec-sh "^0.2.0"
3863 | fb-watchman "^2.0.0"
3864 | micromatch "^3.1.4"
3865 | minimist "^1.1.1"
3866 | walker "~1.0.5"
3867 | watch "~0.18.0"
3868 | optionalDependencies:
3869 | fsevents "^1.2.3"
3870 |
3871 | sax@^1.2.4:
3872 | version "1.2.4"
3873 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3874 |
3875 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0:
3876 | version "5.5.0"
3877 | resolved "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3878 |
3879 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3880 | version "2.0.0"
3881 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3882 |
3883 | set-immediate-shim@^1.0.1:
3884 | version "1.0.1"
3885 | resolved "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3886 |
3887 | set-value@^0.4.3:
3888 | version "0.4.3"
3889 | resolved "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
3890 | dependencies:
3891 | extend-shallow "^2.0.1"
3892 | is-extendable "^0.1.1"
3893 | is-plain-object "^2.0.1"
3894 | to-object-path "^0.3.0"
3895 |
3896 | set-value@^2.0.0:
3897 | version "2.0.0"
3898 | resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
3899 | dependencies:
3900 | extend-shallow "^2.0.1"
3901 | is-extendable "^0.1.1"
3902 | is-plain-object "^2.0.3"
3903 | split-string "^3.0.1"
3904 |
3905 | setimmediate@^1.0.5:
3906 | version "1.0.5"
3907 | resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3908 |
3909 | shebang-command@^1.2.0:
3910 | version "1.2.0"
3911 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3912 | dependencies:
3913 | shebang-regex "^1.0.0"
3914 |
3915 | shebang-regex@^1.0.0:
3916 | version "1.0.0"
3917 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3918 |
3919 | shellwords@^0.1.1:
3920 | version "0.1.1"
3921 | resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
3922 |
3923 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3924 | version "3.0.2"
3925 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3926 |
3927 | slash@^1.0.0:
3928 | version "1.0.0"
3929 | resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3930 |
3931 | snapdragon-node@^2.0.1:
3932 | version "2.1.1"
3933 | resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3934 | dependencies:
3935 | define-property "^1.0.0"
3936 | isobject "^3.0.0"
3937 | snapdragon-util "^3.0.1"
3938 |
3939 | snapdragon-util@^3.0.1:
3940 | version "3.0.1"
3941 | resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3942 | dependencies:
3943 | kind-of "^3.2.0"
3944 |
3945 | snapdragon@^0.8.1:
3946 | version "0.8.2"
3947 | resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3948 | dependencies:
3949 | base "^0.11.1"
3950 | debug "^2.2.0"
3951 | define-property "^0.2.5"
3952 | extend-shallow "^2.0.1"
3953 | map-cache "^0.2.2"
3954 | source-map "^0.5.6"
3955 | source-map-resolve "^0.5.0"
3956 | use "^3.1.0"
3957 |
3958 | source-map-resolve@^0.5.0, source-map-resolve@^0.5.1:
3959 | version "0.5.2"
3960 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
3961 | dependencies:
3962 | atob "^2.1.1"
3963 | decode-uri-component "^0.2.0"
3964 | resolve-url "^0.2.1"
3965 | source-map-url "^0.4.0"
3966 | urix "^0.1.0"
3967 |
3968 | source-map-support@^0.4.0, source-map-support@^0.4.15:
3969 | version "0.4.18"
3970 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3971 | dependencies:
3972 | source-map "^0.5.6"
3973 |
3974 | source-map-support@^0.5.0:
3975 | version "0.5.6"
3976 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13"
3977 | dependencies:
3978 | buffer-from "^1.0.0"
3979 | source-map "^0.6.0"
3980 |
3981 | source-map-url@^0.4.0:
3982 | version "0.4.0"
3983 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3984 |
3985 | source-map@^0.1.38:
3986 | version "0.1.43"
3987 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
3988 | dependencies:
3989 | amdefine ">=0.0.4"
3990 |
3991 | source-map@^0.4.4:
3992 | version "0.4.4"
3993 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3994 | dependencies:
3995 | amdefine ">=0.0.4"
3996 |
3997 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
3998 | version "0.5.7"
3999 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
4000 |
4001 | source-map@^0.6.0, source-map@~0.6.1:
4002 | version "0.6.1"
4003 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
4004 |
4005 | spdx-correct@^3.0.0:
4006 | version "3.0.0"
4007 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
4008 | dependencies:
4009 | spdx-expression-parse "^3.0.0"
4010 | spdx-license-ids "^3.0.0"
4011 |
4012 | spdx-exceptions@^2.1.0:
4013 | version "2.1.0"
4014 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
4015 |
4016 | spdx-expression-parse@^3.0.0:
4017 | version "3.0.0"
4018 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
4019 | dependencies:
4020 | spdx-exceptions "^2.1.0"
4021 | spdx-license-ids "^3.0.0"
4022 |
4023 | spdx-license-ids@^3.0.0:
4024 | version "3.0.0"
4025 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
4026 |
4027 | split-string@^3.0.1, split-string@^3.0.2:
4028 | version "3.1.0"
4029 | resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
4030 | dependencies:
4031 | extend-shallow "^3.0.0"
4032 |
4033 | sprintf-js@~1.0.2:
4034 | version "1.0.3"
4035 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
4036 |
4037 | sshpk@^1.7.0:
4038 | version "1.14.2"
4039 | resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"
4040 | dependencies:
4041 | asn1 "~0.2.3"
4042 | assert-plus "^1.0.0"
4043 | dashdash "^1.12.0"
4044 | getpass "^0.1.1"
4045 | safer-buffer "^2.0.2"
4046 | optionalDependencies:
4047 | bcrypt-pbkdf "^1.0.0"
4048 | ecc-jsbn "~0.1.1"
4049 | jsbn "~0.1.0"
4050 | tweetnacl "~0.14.0"
4051 |
4052 | stack-utils@^1.0.1:
4053 | version "1.0.1"
4054 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
4055 |
4056 | static-extend@^0.1.1:
4057 | version "0.1.2"
4058 | resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
4059 | dependencies:
4060 | define-property "^0.2.5"
4061 | object-copy "^0.1.0"
4062 |
4063 | stealthy-require@^1.1.0:
4064 | version "1.1.1"
4065 | resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
4066 |
4067 | string-length@^2.0.0:
4068 | version "2.0.0"
4069 | resolved "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
4070 | dependencies:
4071 | astral-regex "^1.0.0"
4072 | strip-ansi "^4.0.0"
4073 |
4074 | string-width@^1.0.1:
4075 | version "1.0.2"
4076 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
4077 | dependencies:
4078 | code-point-at "^1.0.0"
4079 | is-fullwidth-code-point "^1.0.0"
4080 | strip-ansi "^3.0.0"
4081 |
4082 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1:
4083 | version "2.1.1"
4084 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
4085 | dependencies:
4086 | is-fullwidth-code-point "^2.0.0"
4087 | strip-ansi "^4.0.0"
4088 |
4089 | string_decoder@~1.1.1:
4090 | version "1.1.1"
4091 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
4092 | dependencies:
4093 | safe-buffer "~5.1.0"
4094 |
4095 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
4096 | version "3.0.1"
4097 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
4098 | dependencies:
4099 | ansi-regex "^2.0.0"
4100 |
4101 | strip-ansi@^4.0.0:
4102 | version "4.0.0"
4103 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
4104 | dependencies:
4105 | ansi-regex "^3.0.0"
4106 |
4107 | strip-bom@3.0.0, strip-bom@^3.0.0:
4108 | version "3.0.0"
4109 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
4110 |
4111 | strip-eof@^1.0.0:
4112 | version "1.0.0"
4113 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
4114 |
4115 | strip-indent@^2.0.0:
4116 | version "2.0.0"
4117 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
4118 |
4119 | strip-json-comments@~2.0.1:
4120 | version "2.0.1"
4121 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
4122 |
4123 | supports-color@^2.0.0:
4124 | version "2.0.0"
4125 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
4126 |
4127 | supports-color@^3.1.2:
4128 | version "3.2.3"
4129 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
4130 | dependencies:
4131 | has-flag "^1.0.0"
4132 |
4133 | supports-color@^5.3.0:
4134 | version "5.4.0"
4135 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
4136 | dependencies:
4137 | has-flag "^3.0.0"
4138 |
4139 | symbol-tree@^3.2.2:
4140 | version "3.2.2"
4141 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
4142 |
4143 | tar@^4:
4144 | version "4.4.4"
4145 | resolved "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd"
4146 | dependencies:
4147 | chownr "^1.0.1"
4148 | fs-minipass "^1.2.5"
4149 | minipass "^2.3.3"
4150 | minizlib "^1.1.0"
4151 | mkdirp "^0.5.0"
4152 | safe-buffer "^5.1.2"
4153 | yallist "^3.0.2"
4154 |
4155 | test-exclude@^4.2.1:
4156 | version "4.2.2"
4157 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.2.tgz#8b67aa8408f84afc225b06669e25c510f8582820"
4158 | dependencies:
4159 | arrify "^1.0.1"
4160 | minimatch "^3.0.4"
4161 | read-pkg-up "^3.0.0"
4162 | require-main-filename "^1.0.1"
4163 |
4164 | throat@^4.0.0:
4165 | version "4.1.0"
4166 | resolved "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
4167 |
4168 | tmpl@1.0.x:
4169 | version "1.0.4"
4170 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
4171 |
4172 | to-fast-properties@^1.0.3:
4173 | version "1.0.3"
4174 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
4175 |
4176 | to-fast-properties@^2.0.0:
4177 | version "2.0.0"
4178 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
4179 |
4180 | to-object-path@^0.3.0:
4181 | version "0.3.0"
4182 | resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
4183 | dependencies:
4184 | kind-of "^3.0.2"
4185 |
4186 | to-regex-range@^2.1.0:
4187 | version "2.1.1"
4188 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
4189 | dependencies:
4190 | is-number "^3.0.0"
4191 | repeat-string "^1.6.1"
4192 |
4193 | to-regex@^3.0.1, to-regex@^3.0.2:
4194 | version "3.0.2"
4195 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
4196 | dependencies:
4197 | define-property "^2.0.2"
4198 | extend-shallow "^3.0.2"
4199 | regex-not "^1.0.2"
4200 | safe-regex "^1.1.0"
4201 |
4202 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3:
4203 | version "2.4.2"
4204 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c"
4205 | dependencies:
4206 | psl "^1.1.24"
4207 | punycode "^1.4.1"
4208 |
4209 | tough-cookie@~2.3.3:
4210 | version "2.3.4"
4211 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
4212 | dependencies:
4213 | punycode "^1.4.1"
4214 |
4215 | tough-cookie@~2.5.0:
4216 | version "2.5.0"
4217 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
4218 | integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
4219 | dependencies:
4220 | psl "^1.1.28"
4221 | punycode "^2.1.1"
4222 |
4223 | tr46@^1.0.1:
4224 | version "1.0.1"
4225 | resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
4226 | dependencies:
4227 | punycode "^2.1.0"
4228 |
4229 | trim-right@^1.0.1:
4230 | version "1.0.1"
4231 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
4232 |
4233 | tunnel-agent@^0.6.0:
4234 | version "0.6.0"
4235 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
4236 | dependencies:
4237 | safe-buffer "^5.0.1"
4238 |
4239 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
4240 | version "0.14.5"
4241 | resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
4242 |
4243 | type-check@~0.3.2:
4244 | version "0.3.2"
4245 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
4246 | dependencies:
4247 | prelude-ls "~1.1.2"
4248 |
4249 | ua-parser-js@^0.7.18:
4250 | version "0.7.18"
4251 | resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed"
4252 |
4253 | uglify-js@^2.6:
4254 | version "2.8.29"
4255 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
4256 | dependencies:
4257 | source-map "~0.5.1"
4258 | yargs "~3.10.0"
4259 | optionalDependencies:
4260 | uglify-to-browserify "~1.0.0"
4261 |
4262 | uglify-js@^3.0.9:
4263 | version "3.4.0"
4264 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.0.tgz#796762282b5b5f0eafe7d5c8c708d1d7bd5ba11d"
4265 | dependencies:
4266 | commander "~2.15.0"
4267 | source-map "~0.6.1"
4268 |
4269 | uglify-to-browserify@~1.0.0:
4270 | version "1.0.2"
4271 | resolved "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
4272 |
4273 | union-value@^1.0.0:
4274 | version "1.0.0"
4275 | resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
4276 | dependencies:
4277 | arr-union "^3.1.0"
4278 | get-value "^2.0.6"
4279 | is-extendable "^0.1.1"
4280 | set-value "^0.4.3"
4281 |
4282 | unset-value@^1.0.0:
4283 | version "1.0.0"
4284 | resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
4285 | dependencies:
4286 | has-value "^0.3.1"
4287 | isobject "^3.0.0"
4288 |
4289 | uri-js@^4.2.2:
4290 | version "4.2.2"
4291 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
4292 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
4293 | dependencies:
4294 | punycode "^2.1.0"
4295 |
4296 | urix@^0.1.0:
4297 | version "0.1.0"
4298 | resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
4299 |
4300 | use@^3.1.0:
4301 | version "3.1.0"
4302 | resolved "https://registry.npmjs.org/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544"
4303 | dependencies:
4304 | kind-of "^6.0.2"
4305 |
4306 | user-home@^1.1.1:
4307 | version "1.1.1"
4308 | resolved "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
4309 |
4310 | util-deprecate@~1.0.1:
4311 | version "1.0.2"
4312 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4313 |
4314 | util.promisify@^1.0.0:
4315 | version "1.0.0"
4316 | resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
4317 | dependencies:
4318 | define-properties "^1.1.2"
4319 | object.getownpropertydescriptors "^2.0.3"
4320 |
4321 | uuid@^3.1.0:
4322 | version "3.2.1"
4323 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
4324 |
4325 | uuid@^3.3.2:
4326 | version "3.4.0"
4327 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
4328 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
4329 |
4330 | v8flags@^2.1.1:
4331 | version "2.1.1"
4332 | resolved "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
4333 | dependencies:
4334 | user-home "^1.1.1"
4335 |
4336 | validate-npm-package-license@^3.0.1:
4337 | version "3.0.3"
4338 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
4339 | dependencies:
4340 | spdx-correct "^3.0.0"
4341 | spdx-expression-parse "^3.0.0"
4342 |
4343 | verror@1.10.0:
4344 | version "1.10.0"
4345 | resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
4346 | dependencies:
4347 | assert-plus "^1.0.0"
4348 | core-util-is "1.0.2"
4349 | extsprintf "^1.2.0"
4350 |
4351 | vlq@^0.2.2:
4352 | version "0.2.3"
4353 | resolved "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
4354 |
4355 | w3c-hr-time@^1.0.1:
4356 | version "1.0.1"
4357 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
4358 | dependencies:
4359 | browser-process-hrtime "^0.1.2"
4360 |
4361 | wait-for-expect@^0.4.0:
4362 | version "0.4.0"
4363 | resolved "https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-0.4.0.tgz#341c96ab89d6102a0169a9be6cd0de354de92c17"
4364 |
4365 | wait-for-expect@^1.0.0:
4366 | version "1.0.0"
4367 | resolved "https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-1.0.0.tgz#edf2d5790c36dc67c4e21ac6ccedd7d4b79dc6ac"
4368 |
4369 | walker@~1.0.5:
4370 | version "1.0.7"
4371 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
4372 | dependencies:
4373 | makeerror "1.0.x"
4374 |
4375 | watch@~0.18.0:
4376 | version "0.18.0"
4377 | resolved "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
4378 | dependencies:
4379 | exec-sh "^0.2.0"
4380 | minimist "^1.2.0"
4381 |
4382 | webidl-conversions@^4.0.2:
4383 | version "4.0.2"
4384 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
4385 |
4386 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
4387 | version "1.0.3"
4388 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3"
4389 | dependencies:
4390 | iconv-lite "0.4.19"
4391 |
4392 | whatwg-fetch@>=0.10.0:
4393 | version "2.0.4"
4394 | resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f"
4395 |
4396 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0:
4397 | version "2.1.0"
4398 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4"
4399 |
4400 | whatwg-url@^6.4.0, whatwg-url@^6.4.1:
4401 | version "6.5.0"
4402 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
4403 | dependencies:
4404 | lodash.sortby "^4.7.0"
4405 | tr46 "^1.0.1"
4406 | webidl-conversions "^4.0.2"
4407 |
4408 | which-module@^2.0.0:
4409 | version "2.0.0"
4410 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
4411 |
4412 | which@^1.2.12, which@^1.2.9, which@^1.3.0:
4413 | version "1.3.1"
4414 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
4415 | dependencies:
4416 | isexe "^2.0.0"
4417 |
4418 | wide-align@^1.1.0:
4419 | version "1.1.3"
4420 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
4421 | dependencies:
4422 | string-width "^1.0.2 || 2"
4423 |
4424 | window-size@0.1.0:
4425 | version "0.1.0"
4426 | resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
4427 |
4428 | wordwrap@0.0.2:
4429 | version "0.0.2"
4430 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
4431 |
4432 | wordwrap@~0.0.2:
4433 | version "0.0.3"
4434 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
4435 |
4436 | wordwrap@~1.0.0:
4437 | version "1.0.0"
4438 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4439 |
4440 | wrap-ansi@^2.0.0:
4441 | version "2.1.0"
4442 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
4443 | dependencies:
4444 | string-width "^1.0.1"
4445 | strip-ansi "^3.0.1"
4446 |
4447 | wrappy@1:
4448 | version "1.0.2"
4449 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4450 |
4451 | write-file-atomic@^2.1.0:
4452 | version "2.3.0"
4453 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
4454 | dependencies:
4455 | graceful-fs "^4.1.11"
4456 | imurmurhash "^0.1.4"
4457 | signal-exit "^3.0.2"
4458 |
4459 | ws@^4.0.0:
4460 | version "4.1.0"
4461 | resolved "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289"
4462 | dependencies:
4463 | async-limiter "~1.0.0"
4464 | safe-buffer "~5.1.0"
4465 |
4466 | xml-name-validator@^3.0.0:
4467 | version "3.0.0"
4468 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
4469 |
4470 | y18n@^3.2.1:
4471 | version "3.2.1"
4472 | resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4473 |
4474 | yallist@^2.1.2:
4475 | version "2.1.2"
4476 | resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4477 |
4478 | yallist@^3.0.0, yallist@^3.0.2:
4479 | version "3.0.2"
4480 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
4481 |
4482 | yargs-parser@^8.1.0:
4483 | version "8.1.0"
4484 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
4485 | dependencies:
4486 | camelcase "^4.1.0"
4487 |
4488 | yargs@^10.0.3:
4489 | version "10.1.2"
4490 | resolved "https://registry.npmjs.org/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
4491 | dependencies:
4492 | cliui "^4.0.0"
4493 | decamelize "^1.1.1"
4494 | find-up "^2.1.0"
4495 | get-caller-file "^1.0.1"
4496 | os-locale "^2.0.0"
4497 | require-directory "^2.1.1"
4498 | require-main-filename "^1.0.1"
4499 | set-blocking "^2.0.0"
4500 | string-width "^2.0.0"
4501 | which-module "^2.0.0"
4502 | y18n "^3.2.1"
4503 | yargs-parser "^8.1.0"
4504 |
4505 | yargs@~3.10.0:
4506 | version "3.10.0"
4507 | resolved "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
4508 | dependencies:
4509 | camelcase "^1.0.2"
4510 | cliui "^2.1.0"
4511 | decamelize "^1.0.0"
4512 | window-size "0.1.0"
4513 |
--------------------------------------------------------------------------------