├── tests
├── requestAnimationFrame.js
├── textarea.test.js
├── utils.js
├── input.test.js
├── checkbox.test.js
└── select.test.js
├── .babelrc
├── rollup.config.js
├── LICENSE
├── .gitignore
├── package.json
├── dist
├── react-input-handler.esm.js
├── react-input-handler.js
├── react-input-handler.umd.js
├── react-input-handler.umd.js.map
├── react-input-handler.js.map
└── react-input-handler.esm.js.map
├── src
└── ReactInputHandler.js
├── CODE_OF_CONDUCT.md
├── README.md
└── yarn.lock
/tests/requestAnimationFrame.js:
--------------------------------------------------------------------------------
1 | global.requestAnimationFrame = (callback) => {
2 | setTimeout(callback, 0)
3 | }
4 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "test": {
4 | "presets": ["es2015", "react"],
5 | "plugins": ["syntax-object-rest-spread", "transform-object-rest-spread"]
6 | },
7 | "production": {
8 | "presets": ["es2015-rollup", "react"],
9 | "plugins": ["syntax-object-rest-spread", "transform-object-rest-spread"]
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/tests/textarea.test.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import './requestAnimationFrame'
4 |
5 | import React from 'react'
6 | import Enzyme from 'enzyme'
7 | import ReactSixteenAdapter from 'enzyme-adapter-react-16'
8 |
9 | import { createForm } from './utils'
10 |
11 | Enzyme.configure({ adapter: new ReactSixteenAdapter() })
12 |
13 | describe('react-input-handler', () => {
14 |
15 | it('persist changes into state', () => {
16 | const form = Enzyme.mount(createForm('textarea', {
17 | name: 'test',
18 | value: 'hello'
19 | }))
20 |
21 | form.find('textarea').simulate('change')
22 | expect(form.state('test')).toBe('hello')
23 | })
24 |
25 | })
26 |
--------------------------------------------------------------------------------
/tests/utils.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import InputHandler from '../src/ReactInputHandler'
4 |
5 | function createForm(element, props, children) {
6 |
7 | class Form extends React.Component {
8 |
9 | constructor(props) {
10 | super(props)
11 | this.inputHandler = InputHandler.bind(this)
12 | this.state = {}
13 | }
14 |
15 | render() {
16 | return (
17 |
23 | )
24 | }
25 | }
26 |
27 | return
28 | }
29 |
30 | export {
31 | createForm
32 | }
33 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import babel from 'rollup-plugin-babel'
2 | import uglify from 'rollup-plugin-uglify'
3 | import filesize from 'rollup-plugin-filesize'
4 | import { minify } from 'uglify-es'
5 | import pkg from './package.json';
6 |
7 | export default [
8 |
9 | // browser-friendly UMD build
10 | {
11 | input: 'src/ReactInputHandler.js',
12 | output: {
13 | file: pkg.browser,
14 | format: 'umd',
15 | sourcemap: true,
16 | },
17 | name: 'ReactInputHandler',
18 | plugins: [
19 | babel(),
20 | uglify({}, minify),
21 | filesize(),
22 | ]
23 | },
24 |
25 | // CommonJS (for Node) and ES module (for bundlers) build.
26 | {
27 | input: 'src/ReactInputHandler.js',
28 | external: ['ms'],
29 | output: [
30 | { file: pkg.main, format: 'cjs', sourcemap: true },
31 | { file: pkg.module, format: 'es', sourcemap: true },
32 | ],
33 | plugins: [
34 | babel(),
35 | uglify({}, minify),
36 | filesize(),
37 | ]
38 | }
39 | ];
40 |
--------------------------------------------------------------------------------
/tests/input.test.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import './requestAnimationFrame'
4 |
5 | import React from 'react'
6 | import Enzyme from 'enzyme'
7 | import ReactSixteenAdapter from 'enzyme-adapter-react-16'
8 |
9 | import { createForm } from './utils'
10 |
11 | Enzyme.configure({ adapter: new ReactSixteenAdapter() })
12 |
13 | describe('react-input-handler', () => {
14 |
15 | it('persist changes into state', () => {
16 | const form = Enzyme.mount(createForm('input', {
17 | type: 'text',
18 | name: 'test',
19 | value: 'hello'
20 | }))
21 |
22 | form.find('input').simulate('change')
23 | expect(form.state('test')).toBe('hello')
24 | })
25 |
26 | it('persist changes into state using deep object traversal', () => {
27 | const form = Enzyme.mount(createForm('input', {
28 | type: 'text',
29 | name: 'a.b.c',
30 | value: 'hello'
31 | }))
32 |
33 | form.find('input').simulate('change')
34 | expect(form.state().a.b.c).toBe('hello')
35 | })
36 |
37 | })
38 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Rubens Mariuzzo
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 |
8 | # Runtime data
9 | pids
10 | *.pid
11 | *.seed
12 | *.pid.lock
13 |
14 | # Directory for instrumented libs generated by jscoverage/JSCover
15 | lib-cov
16 |
17 | # Coverage directory used by tools like istanbul
18 | coverage
19 |
20 | # nyc test coverage
21 | .nyc_output
22 |
23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24 | .grunt
25 |
26 | # Bower dependency directory (https://bower.io/)
27 | bower_components
28 |
29 | # node-waf configuration
30 | .lock-wscript
31 |
32 | # Compiled binary addons (http://nodejs.org/api/addons.html)
33 | build/Release
34 |
35 | # Dependency directories
36 | node_modules/
37 | jspm_packages/
38 |
39 | # Typescript v1 declaration files
40 | typings/
41 |
42 | # Optional npm cache directory
43 | .npm
44 |
45 | # Optional eslint cache
46 | .eslintcache
47 |
48 | # Optional REPL history
49 | .node_repl_history
50 |
51 | # Output of 'npm pack'
52 | *.tgz
53 |
54 | # Yarn Integrity file
55 | .yarn-integrity
56 |
57 | # dotenv environment variables file
58 | .env
59 |
60 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-input-handler",
3 | "version": "1.0.3",
4 | "description": "Utility function to handle input changes in React.",
5 | "main": "dist/react-input-handler.js",
6 | "module": "dist/react-input-handler.esm.js",
7 | "browser": "dist/react-input-handler.umd.js",
8 | "repository": "git@github.com:rmariuzzo/react-input-handler.git",
9 | "author": "Rubens Mariuzzo ",
10 | "license": "MIT",
11 | "files": [
12 | "LICENSE",
13 | "dist",
14 | "README.md",
15 | "yarn.lock"
16 | ],
17 | "devDependencies": {
18 | "babel-core": "^6.26.0",
19 | "babel-jest": "^22.4.1",
20 | "babel-plugin-transform-object-rest-spread": "^6.26.0",
21 | "babel-preset-es2015": "^6.24.1",
22 | "babel-preset-es2015-rollup": "^3.0.0",
23 | "babel-preset-react": "^6.24.1",
24 | "cross-env": "^5.1.3",
25 | "enzyme": "^3.3.0",
26 | "enzyme-adapter-react-16": "^1.1.1",
27 | "jest": "^22.4.2",
28 | "react": "^16.2.0",
29 | "react-dom": "^16.2.0",
30 | "rollup": "^0.56.5",
31 | "rollup-plugin-babel": "^3.0.3",
32 | "rollup-plugin-filesize": "^1.5.0",
33 | "rollup-plugin-uglify": "^3.0.0",
34 | "uglify-es": "^3.3.9"
35 | },
36 | "scripts": {
37 | "build": "cross-env NODE_ENV=production rollup -c",
38 | "test": "jest"
39 | },
40 | "dependencies": {
41 | "lodash.set": "^4.3.2"
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/dist/react-input-handler.esm.js:
--------------------------------------------------------------------------------
1 | import set from"lodash.set";var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},defineProperty=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},toConsumableArray=function(e){if(Array.isArray(e)){for(var t=0,r=Array(e.length);t-1&&a.splice(f,1),this.setState(function(e){return set(e,o,a)},t)}}else this.setState(function(e){return set(e,n,getValue(r))},t)}function getValue(e){switch(e.type){case"checkbox":return e.checked;case"select-multiple":return[].concat(toConsumableArray(e.querySelectorAll(":checked"))).map(function(e){return e.value});default:return e.value}}export default handler;
2 | //# sourceMappingURL=react-input-handler.esm.js.map
3 |
--------------------------------------------------------------------------------
/dist/react-input-handler.js:
--------------------------------------------------------------------------------
1 | "use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var set=_interopDefault(require("lodash.set")),_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},defineProperty=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},toConsumableArray=function(e){if(Array.isArray(e)){for(var t=0,r=Array(e.length);t-1&&a.splice(f,1),this.setState(function(e){return set(e,o,a)},t)}}else this.setState(function(e){return set(e,n,getValue(r))},t)}function getValue(e){switch(e.type){case"checkbox":return e.checked;case"select-multiple":return[].concat(toConsumableArray(e.querySelectorAll(":checked"))).map(function(e){return e.value});default:return e.value}}module.exports=handler;
2 | //# sourceMappingURL=react-input-handler.js.map
3 |
--------------------------------------------------------------------------------
/dist/react-input-handler.umd.js:
--------------------------------------------------------------------------------
1 | !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("lodash.set")):"function"==typeof define&&define.amd?define(["lodash.set"],t):e.ReactInputHandler=t(e.set)}(this,function(e){"use strict";e=e&&e.hasOwnProperty("default")?e.default:e;var t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},r=function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t-1&&s.splice(d,1),this.setState(function(t){return e(t,a,s)},u)}}else this.setState(function(t){return e(t,f,o(i))},u)}});
2 | //# sourceMappingURL=react-input-handler.umd.js.map
3 |
--------------------------------------------------------------------------------
/tests/checkbox.test.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import './requestAnimationFrame'
4 |
5 | import React from 'react'
6 | import Enzyme from 'enzyme'
7 | import ReactSixteenAdapter from 'enzyme-adapter-react-16'
8 |
9 | import InputHandler from '../src/ReactInputHandler'
10 | import { createForm } from './utils'
11 |
12 | Enzyme.configure({ adapter: new ReactSixteenAdapter() })
13 |
14 | describe('react-input-handler', () => {
15 |
16 | it('persist changes into state', () => {
17 | const form = Enzyme.mount(createForm('div', {}, function() {
18 | return [
19 | ,
20 | ,
21 | ,
22 | ]
23 | }))
24 |
25 | form.find('input').first().simulate('change')
26 | expect(form.state('one')).toBe(true)
27 | })
28 |
29 | it('persist changes into state when using array notation', () => {
30 | const form = Enzyme.mount(createForm('div', {}, function() {
31 | return [
32 | ,
33 | ,
34 | ,
35 | ]
36 | }))
37 |
38 | form.find('input').first().simulate('change')
39 | form.find('input').last().simulate('change')
40 |
41 | expect(form.state('numbers')).toEqual(['1', '3'])
42 | })
43 |
44 | })
45 |
--------------------------------------------------------------------------------
/tests/select.test.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import './requestAnimationFrame'
4 |
5 | import React from 'react'
6 | import Enzyme from 'enzyme'
7 | import ReactSixteenAdapter from 'enzyme-adapter-react-16'
8 |
9 | import { createForm } from './utils'
10 |
11 | Enzyme.configure({ adapter: new ReactSixteenAdapter() })
12 |
13 | describe('react-input-handler', () => {
14 |
15 | it('persist changes into state when no option selected', () => {
16 | const form = Enzyme.mount(createForm('select', { name: 'number' }, (
17 | [
18 | ,
19 | ,
20 | ,
21 | ,
22 | ]
23 | )))
24 |
25 | form.find('select').simulate('change')
26 | expect(form.state('number')).toBe('none')
27 | })
28 |
29 | it('persist changes into state when a option is selected', () => {
30 | const form = Enzyme.mount(createForm('select', { name: 'test', defaultValue: 'one' }, (
31 | [
32 | ,
33 | ,
34 | ,
35 | ,
36 | ]
37 | )))
38 |
39 | form.find('select').simulate('change')
40 | expect(form.state('test')).toBe('one')
41 | })
42 |
43 | it('persist changes into state when multiple options are selected', () => {
44 | const form = Enzyme.mount(createForm('select', { name: 'test', multiple: true, defaultValue: ['one', 'two'] }, (
45 | [
46 | ,
47 | ,
48 | ,
49 | ,
50 | ]
51 | )))
52 |
53 | form.find('select').simulate('change')
54 | expect(form.state('test')).toEqual(['one', 'two'])
55 | })
56 |
57 | })
58 |
--------------------------------------------------------------------------------
/src/ReactInputHandler.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import set from 'lodash.set'
4 |
5 | /**
6 | * Export React Input Handler.
7 | */
8 |
9 | export default handler
10 |
11 | /**
12 | * The React Input Handler function.
13 | * @param {Object} event The event.
14 | * @param {Function} callback The callback function.
15 | */
16 | function handler(event, callback) {
17 |
18 | if (!event) {
19 | throw new Error('event must be defined')
20 | }
21 |
22 | if (typeof event !== 'object') {
23 | throw new Error('event must be an object')
24 | }
25 |
26 | if (typeof this.setState !== 'function') {
27 | throw new Error('react-input-handler must be bound to the component instance')
28 | }
29 |
30 | if (typeof callback !== 'undefined' && typeof callback !== 'function') {
31 | throw new Error('the 2nd argument of react-input-handler must be a function')
32 | }
33 |
34 | const target = event.target
35 | const name = target.name
36 |
37 | if (!name) {
38 | throw new Error('all input must have a name prop')
39 | }
40 |
41 | // If the name prop ends with `[]` then the prop is an array.
42 | const usingArrayNotation = name.substr(-2) === '[]'
43 |
44 | if (usingArrayNotation) {
45 | const arrayNotationName = name.substr(0, name.length - 2)
46 | const adding = getValue(target)
47 | const array = this.state[arrayNotationName] || []
48 | const value = target.value
49 |
50 | // Add the target value to the array.
51 | if (adding) {
52 |
53 | // Add the new value to the array and persist into the state.
54 | if (array.indexOf(value) === -1) {
55 | this.setState((prevState) => ({
56 | [arrayNotationName]: array.concat(value)
57 | }))
58 | }
59 | } else {
60 |
61 | // Remove the target value from the array.
62 | const indexToRemove = array.indexOf(value)
63 | if (indexToRemove > -1) {
64 | array.splice(indexToRemove, 1)
65 | }
66 |
67 | // Persist the changed array into the state.
68 | this.setState(prevState => (
69 | set(prevState, arrayNotationName, array)
70 | ), callback)
71 | }
72 | } else {
73 |
74 | // Modify the state.
75 | this.setState(prevState => (
76 | set(prevState, name, getValue(target))
77 | ), callback)
78 | }
79 | }
80 |
81 | /**
82 | * Utility functions.
83 | */
84 |
85 | /**
86 | * Return the value of a DOM element.
87 | * @param {Object} element The element.
88 | * @param {Boolean|String} The DOM element value.
89 | */
90 | function getValue(element) {
91 | switch(element.type) {
92 | case 'checkbox':
93 | return element.checked
94 | case 'select-multiple':
95 | return [ ...element.querySelectorAll(':checked') ]
96 | .map((checked) => checked.value)
97 | default:
98 | return element.value
99 | }
100 | }
101 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6 |
7 | ## Our Standards
8 |
9 | Examples of behavior that contributes to creating a positive environment include:
10 |
11 | * Using welcoming and inclusive language
12 | * Being respectful of differing viewpoints and experiences
13 | * Gracefully accepting constructive criticism
14 | * Focusing on what is best for the community
15 | * Showing empathy towards other community members
16 |
17 | Examples of unacceptable behavior by participants include:
18 |
19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances
20 | * Trolling, insulting/derogatory comments, and personal or political attacks
21 | * Public or private harassment
22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission
23 | * Other conduct which could reasonably be considered inappropriate in a professional setting
24 |
25 | ## Our Responsibilities
26 |
27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28 |
29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30 |
31 | ## Scope
32 |
33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34 |
35 | ## Enforcement
36 |
37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at rubens@mariuzzo.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38 |
39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40 |
41 | ## Attribution
42 |
43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: http://contributor-covenant.org
46 | [version]: http://contributor-covenant.org/version/1/4/
47 |
--------------------------------------------------------------------------------
/dist/react-input-handler.umd.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"react-input-handler.umd.js","sources":["../src/ReactInputHandler.js"],"sourcesContent":["'use strict'\n\nimport set from 'lodash.set'\n\n/**\n * Export React Input Handler.\n */\n\nexport default handler\n\n/**\n * The React Input Handler function.\n * @param {Object} event The event.\n * @param {Function} callback The callback function.\n */\nfunction handler(event, callback) {\n\n if (!event) {\n throw new Error('event must be defined')\n }\n\n if (typeof event !== 'object') {\n throw new Error('event must be an object')\n }\n\n if (typeof this.setState !== 'function') {\n throw new Error('react-input-handler must be bound to the component instance')\n }\n\n if (typeof callback !== 'undefined' && typeof callback !== 'function') {\n throw new Error('the 2nd argument of react-input-handler must be a function')\n }\n\n const target = event.target\n const name = target.name\n\n if (!name) {\n throw new Error('all input must have a name prop')\n }\n\n // If the name prop ends with `[]` then the prop is an array.\n const usingArrayNotation = name.substr(-2) === '[]'\n\n if (usingArrayNotation) {\n const arrayNotationName = name.substr(0, name.length - 2)\n const adding = getValue(target)\n const array = this.state[arrayNotationName] || []\n const value = target.value\n\n // Add the target value to the array.\n if (adding) {\n\n // Add the new value to the array and persist into the state.\n if (array.indexOf(value) === -1) {\n this.setState((prevState) => ({\n [arrayNotationName]: array.concat(value)\n }))\n }\n } else {\n\n // Remove the target value from the array.\n const indexToRemove = array.indexOf(value)\n if (indexToRemove > -1) {\n array.splice(indexToRemove, 1)\n }\n\n // Persist the changed array into the state.\n this.setState(prevState => (\n set(prevState, arrayNotationName, array)\n ), callback)\n }\n } else {\n\n // Modify the state.\n this.setState(prevState => (\n set(prevState, name, getValue(target))\n ), callback)\n }\n}\n\n/**\n * Utility functions.\n */\n\n/**\n * Return the value of a DOM element.\n * @param {Object} element The element.\n * @param {Boolean|String} The DOM element value.\n */\nfunction getValue(element) {\n switch(element.type) {\n case 'checkbox':\n return element.checked\n case 'select-multiple':\n return [ ...element.querySelectorAll(':checked') ]\n .map((checked) => checked.value)\n default:\n return element.value\n }\n}\n"],"names":["getValue","element","type","checked","querySelectorAll","map","value","event","callback","Error","this","setState","target","name","substr","arrayNotationName","length","adding","array","state","indexOf","prevState","concat","indexToRemove","splice","set"],"mappings":"stBAyFA,SAASA,EAASC,UACTA,EAAQC,UACR,kBACID,EAAQE,YACZ,oCACSF,EAAQG,iBAAiB,cAClCC,IAAI,SAACF,UAAYA,EAAQG,uBAErBL,EAAQK,cAlFrB,SAAiBC,EAAOC,OAEjBD,QACG,IAAIE,MAAM,4BAGG,qBAAVF,gBAAAA,UACH,IAAIE,MAAM,8BAGW,mBAAlBC,KAAKC,eACR,IAAIF,MAAM,uEAGM,IAAbD,GAAgD,mBAAbA,QACtC,IAAIC,MAAM,kEAGZG,EAASL,EAAMK,OACfC,EAAOD,EAAOC,SAEfA,QACG,IAAIJ,MAAM,sCAI6B,OAApBI,EAAKC,QAAQ,GAEhB,KAChBC,EAAoBF,EAAKC,OAAO,EAAGD,EAAKG,OAAS,GACjDC,EAASjB,EAASY,GAClBM,EAAQR,KAAKS,MAAMJ,OACnBT,EAAQM,EAAON,SAGjBW,GAG4B,IAA1BC,EAAME,QAAQd,SACXK,SAAS,SAACU,eACZN,EAAoBG,EAAMI,OAAOhB,UAGjC,KAGCiB,EAAgBL,EAAME,QAAQd,GAChCiB,GAAiB,KACbC,OAAOD,EAAe,QAIzBZ,SAAS,mBACZc,EAAIJ,EAAWN,EAAmBG,IACjCV,cAKAG,SAAS,mBACZc,EAAIJ,EAAWR,EAAMb,EAASY,KAC7BJ"}
--------------------------------------------------------------------------------
/dist/react-input-handler.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"react-input-handler.js","sources":["../src/ReactInputHandler.js"],"sourcesContent":["'use strict'\n\nimport set from 'lodash.set'\n\n/**\n * Export React Input Handler.\n */\n\nexport default handler\n\n/**\n * The React Input Handler function.\n * @param {Object} event The event.\n * @param {Function} callback The callback function.\n */\nfunction handler(event, callback) {\n\n if (!event) {\n throw new Error('event must be defined')\n }\n\n if (typeof event !== 'object') {\n throw new Error('event must be an object')\n }\n\n if (typeof this.setState !== 'function') {\n throw new Error('react-input-handler must be bound to the component instance')\n }\n\n if (typeof callback !== 'undefined' && typeof callback !== 'function') {\n throw new Error('the 2nd argument of react-input-handler must be a function')\n }\n\n const target = event.target\n const name = target.name\n\n if (!name) {\n throw new Error('all input must have a name prop')\n }\n\n // If the name prop ends with `[]` then the prop is an array.\n const usingArrayNotation = name.substr(-2) === '[]'\n\n if (usingArrayNotation) {\n const arrayNotationName = name.substr(0, name.length - 2)\n const adding = getValue(target)\n const array = this.state[arrayNotationName] || []\n const value = target.value\n\n // Add the target value to the array.\n if (adding) {\n\n // Add the new value to the array and persist into the state.\n if (array.indexOf(value) === -1) {\n this.setState((prevState) => ({\n [arrayNotationName]: array.concat(value)\n }))\n }\n } else {\n\n // Remove the target value from the array.\n const indexToRemove = array.indexOf(value)\n if (indexToRemove > -1) {\n array.splice(indexToRemove, 1)\n }\n\n // Persist the changed array into the state.\n this.setState(prevState => (\n set(prevState, arrayNotationName, array)\n ), callback)\n }\n } else {\n\n // Modify the state.\n this.setState(prevState => (\n set(prevState, name, getValue(target))\n ), callback)\n }\n}\n\n/**\n * Utility functions.\n */\n\n/**\n * Return the value of a DOM element.\n * @param {Object} element The element.\n * @param {Boolean|String} The DOM element value.\n */\nfunction getValue(element) {\n switch(element.type) {\n case 'checkbox':\n return element.checked\n case 'select-multiple':\n return [ ...element.querySelectorAll(':checked') ]\n .map((checked) => checked.value)\n default:\n return element.value\n }\n}\n"],"names":["handler","event","callback","Error","this","setState","target","name","substr","arrayNotationName","length","adding","getValue","array","state","value","indexOf","prevState","concat","indexToRemove","splice","set","element","type","checked","querySelectorAll","map"],"mappings":"inBAeA,SAASA,QAAQC,EAAOC,OAEjBD,QACG,IAAIE,MAAM,4BAGG,qBAAVF,sBAAAA,UACH,IAAIE,MAAM,8BAGW,mBAAlBC,KAAKC,eACR,IAAIF,MAAM,uEAGM,IAAbD,GAAgD,mBAAbA,QACtC,IAAIC,MAAM,kEAGZG,EAASL,EAAMK,OACfC,EAAOD,EAAOC,SAEfA,QACG,IAAIJ,MAAM,sCAI6B,OAApBI,EAAKC,QAAQ,GAEhB,KAChBC,EAAoBF,EAAKC,OAAO,EAAGD,EAAKG,OAAS,GACjDC,EAASC,SAASN,GAClBO,EAAQT,KAAKU,MAAML,OACnBM,EAAQT,EAAOS,SAGjBJ,GAG4B,IAA1BE,EAAMG,QAAQD,SACXV,SAAS,SAACY,4BACZR,EAAoBI,EAAMK,OAAOH,UAGjC,KAGCI,EAAgBN,EAAMG,QAAQD,GAChCI,GAAiB,KACbC,OAAOD,EAAe,QAIzBd,SAAS,mBACZgB,IAAIJ,EAAWR,EAAmBI,IACjCX,cAKAG,SAAS,mBACZgB,IAAIJ,EAAWV,EAAMK,SAASN,KAC7BJ,GAaP,SAASU,SAASU,UACTA,EAAQC,UACR,kBACID,EAAQE,YACZ,oDACSF,EAAQG,iBAAiB,cAClCC,IAAI,SAACF,UAAYA,EAAQT,uBAErBO,EAAQP"}
--------------------------------------------------------------------------------
/dist/react-input-handler.esm.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"react-input-handler.esm.js","sources":["../src/ReactInputHandler.js"],"sourcesContent":["'use strict'\n\nimport set from 'lodash.set'\n\n/**\n * Export React Input Handler.\n */\n\nexport default handler\n\n/**\n * The React Input Handler function.\n * @param {Object} event The event.\n * @param {Function} callback The callback function.\n */\nfunction handler(event, callback) {\n\n if (!event) {\n throw new Error('event must be defined')\n }\n\n if (typeof event !== 'object') {\n throw new Error('event must be an object')\n }\n\n if (typeof this.setState !== 'function') {\n throw new Error('react-input-handler must be bound to the component instance')\n }\n\n if (typeof callback !== 'undefined' && typeof callback !== 'function') {\n throw new Error('the 2nd argument of react-input-handler must be a function')\n }\n\n const target = event.target\n const name = target.name\n\n if (!name) {\n throw new Error('all input must have a name prop')\n }\n\n // If the name prop ends with `[]` then the prop is an array.\n const usingArrayNotation = name.substr(-2) === '[]'\n\n if (usingArrayNotation) {\n const arrayNotationName = name.substr(0, name.length - 2)\n const adding = getValue(target)\n const array = this.state[arrayNotationName] || []\n const value = target.value\n\n // Add the target value to the array.\n if (adding) {\n\n // Add the new value to the array and persist into the state.\n if (array.indexOf(value) === -1) {\n this.setState((prevState) => ({\n [arrayNotationName]: array.concat(value)\n }))\n }\n } else {\n\n // Remove the target value from the array.\n const indexToRemove = array.indexOf(value)\n if (indexToRemove > -1) {\n array.splice(indexToRemove, 1)\n }\n\n // Persist the changed array into the state.\n this.setState(prevState => (\n set(prevState, arrayNotationName, array)\n ), callback)\n }\n } else {\n\n // Modify the state.\n this.setState(prevState => (\n set(prevState, name, getValue(target))\n ), callback)\n }\n}\n\n/**\n * Utility functions.\n */\n\n/**\n * Return the value of a DOM element.\n * @param {Object} element The element.\n * @param {Boolean|String} The DOM element value.\n */\nfunction getValue(element) {\n switch(element.type) {\n case 'checkbox':\n return element.checked\n case 'select-multiple':\n return [ ...element.querySelectorAll(':checked') ]\n .map((checked) => checked.value)\n default:\n return element.value\n }\n}\n"],"names":["handler","event","callback","Error","this","setState","target","name","substr","arrayNotationName","length","adding","getValue","array","state","value","indexOf","prevState","concat","indexToRemove","splice","set","element","type","checked","querySelectorAll","map"],"mappings":"igBAeA,SAASA,QAAQC,EAAOC,OAEjBD,QACG,IAAIE,MAAM,4BAGG,qBAAVF,sBAAAA,UACH,IAAIE,MAAM,8BAGW,mBAAlBC,KAAKC,eACR,IAAIF,MAAM,uEAGM,IAAbD,GAAgD,mBAAbA,QACtC,IAAIC,MAAM,kEAGZG,EAASL,EAAMK,OACfC,EAAOD,EAAOC,SAEfA,QACG,IAAIJ,MAAM,sCAI6B,OAApBI,EAAKC,QAAQ,GAEhB,KAChBC,EAAoBF,EAAKC,OAAO,EAAGD,EAAKG,OAAS,GACjDC,EAASC,SAASN,GAClBO,EAAQT,KAAKU,MAAML,OACnBM,EAAQT,EAAOS,SAGjBJ,GAG4B,IAA1BE,EAAMG,QAAQD,SACXV,SAAS,SAACY,4BACZR,EAAoBI,EAAMK,OAAOH,UAGjC,KAGCI,EAAgBN,EAAMG,QAAQD,GAChCI,GAAiB,KACbC,OAAOD,EAAe,QAIzBd,SAAS,mBACZgB,IAAIJ,EAAWR,EAAmBI,IACjCX,cAKAG,SAAS,mBACZgB,IAAIJ,EAAWV,EAAMK,SAASN,KAC7BJ,GAaP,SAASU,SAASU,UACTA,EAAQC,UACR,kBACID,EAAQE,YACZ,oDACSF,EAAQG,iBAAiB,cAClCC,IAAI,SAACF,UAAYA,EAAQT,uBAErBO,EAAQP"}
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | # react-input-handler
6 |
7 | ⚡️ Utility function to handle input changes in React based on [React's handling multiple input docs](https://reactjs.org/docs/forms.html#handling-multiple-inputs).
8 |
9 |
10 |
11 |
12 |
13 | ## Features
14 |
15 | - Package size is: **1.66KB** (0.8KB gzipped!).
16 | - Supports all ``s, `` and `` elements.
17 | - Supports ``.
18 | - Supports checkboxes with same name via [array notation](#array-notation).
19 | - Play well with deep state traversal using [lodash's set method](https://lodash.com/docs/#set).
20 | - Multiple bundles: [CJS, ESM and UMD](dist).
21 |
22 | ## Installation
23 |
24 | ```shell
25 | yarn add react-input-handler
26 | ```
27 |
28 | or
29 |
30 | ```shell
31 | npm install react-input-handler --save
32 | ```
33 |
34 | ## Usage
35 |
36 | Two things needs to be done to use **react-input-handler**:
37 |
38 | 1. Create a bound function (see 2nd line in constructor).
39 | 2. Attach the bound function to `onChange` events.
40 |
41 | ### Example
42 |
43 | ```js
44 | import React from 'react'
45 | import ReactInputHandler from 'react-input-handler'
46 |
47 | export default class Form extends React.Component {
48 |
49 | constructor(props) {
50 | super(props)
51 |
52 | this.state = {}
53 |
54 | this.handleChange = ReactInputHandler.bind(this)
55 | this.handleSubmit = this.handleSubmit.bind(this)
56 | }
57 |
58 | render() {
59 | return (
60 |
72 | )
73 | }
74 |
75 | handleSubmit(event) {
76 | event.preventDefault()
77 | console.log(this.state)
78 | // Output: { user: { fullanme: "string", bio: "string", developer: true|false } }
79 | }
80 | }
81 | ```
82 |
83 | ## Documentation
84 |
85 | **React-input-handler** is a single function which accept two argument: an event and a optional callback function that will be passed to the `setState` method.
86 |
87 | The objective is simple: handle input changes and persist them into the component's state.
88 |
89 | ### Array notation
90 |
91 | By default, **react-input-handler** handles checkbox as boolean value. Sometimes, we may want two or more checkboxes to be handled as an array sharing the same `name` attribute. To achieve this we have to suffix the `name` attribute with `[]`. For example:
92 |
93 | **Before:**
94 |
95 | ```js
96 |
97 |
98 |
99 | // state: { one: true, two: false, three: true }
100 | ```
101 |
102 | **After:**
103 |
104 | ```js
105 |
106 |
107 |
108 | // state: { numbers: ["1", "3"] }
109 | ```
110 |
111 | ## Development
112 |
113 | 1. Clone and fork this repo.
114 | 2. Install dependencies running: `yarn` or `npm install`.
115 | 3. [Run tests](#test).
116 | 4. Prepare a pull request.
117 |
118 | ### Test
119 |
120 | - `yarn test` - to run all tests.
121 | - `yarn test -- --watch` to run all tests in watch mode.
122 |
123 | ### Publish
124 |
125 | 1. Bump version: `npm version x.x.x -m 'Version %s.'`.
126 | 2. Publish to NPM registry: `npm publish`.
127 | 3. Publish the new created tag: `git push origin --tags`.
128 |
129 |
130 | ---
131 |
132 |
133 |
134 | Made with :heart: by [Rubens Mariuzzo](https://github.com/rmariuzzo).
135 |
136 | [MIT license](LICENSE)
137 |
138 |
139 |
--------------------------------------------------------------------------------
/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.35":
6 | version "7.0.0-beta.40"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.40.tgz#37e2b0cf7c56026b4b21d3927cadf81adec32ac6"
8 | dependencies:
9 | "@babel/highlight" "7.0.0-beta.40"
10 |
11 | "@babel/highlight@7.0.0-beta.40":
12 | version "7.0.0-beta.40"
13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.40.tgz#b43d67d76bf46e1d10d227f68cddcd263786b255"
14 | dependencies:
15 | chalk "^2.0.0"
16 | esutils "^2.0.2"
17 | js-tokens "^3.0.0"
18 |
19 | "@types/node@*":
20 | version "9.4.7"
21 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.7.tgz#57d81cd98719df2c9de118f2d5f3b1120dcd7275"
22 |
23 | abab@^1.0.4:
24 | version "1.0.4"
25 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
26 |
27 | abbrev@1:
28 | version "1.1.1"
29 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
30 |
31 | acorn-globals@^4.1.0:
32 | version "4.1.0"
33 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538"
34 | dependencies:
35 | acorn "^5.0.0"
36 |
37 | acorn@^5.0.0, acorn@^5.3.0:
38 | version "5.5.3"
39 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9"
40 |
41 | ajv@^4.9.1:
42 | version "4.11.8"
43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
44 | dependencies:
45 | co "^4.6.0"
46 | json-stable-stringify "^1.0.1"
47 |
48 | ajv@^5.1.0:
49 | version "5.5.2"
50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
51 | dependencies:
52 | co "^4.6.0"
53 | fast-deep-equal "^1.0.0"
54 | fast-json-stable-stringify "^2.0.0"
55 | json-schema-traverse "^0.3.0"
56 |
57 | align-text@^0.1.1, align-text@^0.1.3:
58 | version "0.1.4"
59 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
60 | dependencies:
61 | kind-of "^3.0.2"
62 | longest "^1.0.1"
63 | repeat-string "^1.5.2"
64 |
65 | amdefine@>=0.0.4:
66 | version "1.0.1"
67 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
68 |
69 | ansi-align@^2.0.0:
70 | version "2.0.0"
71 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
72 | dependencies:
73 | string-width "^2.0.0"
74 |
75 | ansi-escapes@^3.0.0:
76 | version "3.0.0"
77 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
78 |
79 | ansi-regex@^2.0.0:
80 | version "2.1.1"
81 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
82 |
83 | ansi-regex@^3.0.0:
84 | version "3.0.0"
85 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
86 |
87 | ansi-styles@^2.2.1:
88 | version "2.2.1"
89 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
90 |
91 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
92 | version "3.2.1"
93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
94 | dependencies:
95 | color-convert "^1.9.0"
96 |
97 | anymatch@^1.3.0:
98 | version "1.3.2"
99 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
100 | dependencies:
101 | micromatch "^2.1.5"
102 | normalize-path "^2.0.0"
103 |
104 | append-transform@^0.4.0:
105 | version "0.4.0"
106 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
107 | dependencies:
108 | default-require-extensions "^1.0.0"
109 |
110 | aproba@^1.0.3:
111 | version "1.2.0"
112 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
113 |
114 | are-we-there-yet@~1.1.2:
115 | version "1.1.4"
116 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
117 | dependencies:
118 | delegates "^1.0.0"
119 | readable-stream "^2.0.6"
120 |
121 | argparse@^1.0.7:
122 | version "1.0.10"
123 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
124 | dependencies:
125 | sprintf-js "~1.0.2"
126 |
127 | arr-diff@^2.0.0:
128 | version "2.0.0"
129 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
130 | dependencies:
131 | arr-flatten "^1.0.1"
132 |
133 | arr-flatten@^1.0.1:
134 | version "1.1.0"
135 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
136 |
137 | array-equal@^1.0.0:
138 | version "1.0.0"
139 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
140 |
141 | array-unique@^0.2.1:
142 | version "0.2.1"
143 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
144 |
145 | arrify@^1.0.1:
146 | version "1.0.1"
147 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
148 |
149 | asap@~2.0.3:
150 | version "2.0.6"
151 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
152 |
153 | asn1@~0.2.3:
154 | version "0.2.3"
155 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
156 |
157 | assert-plus@1.0.0, assert-plus@^1.0.0:
158 | version "1.0.0"
159 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
160 |
161 | assert-plus@^0.2.0:
162 | version "0.2.0"
163 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
164 |
165 | astral-regex@^1.0.0:
166 | version "1.0.0"
167 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
168 |
169 | async-limiter@~1.0.0:
170 | version "1.0.0"
171 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
172 |
173 | async@^1.4.0:
174 | version "1.5.2"
175 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
176 |
177 | async@^2.1.4:
178 | version "2.6.0"
179 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
180 | dependencies:
181 | lodash "^4.14.0"
182 |
183 | asynckit@^0.4.0:
184 | version "0.4.0"
185 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
186 |
187 | aws-sign2@~0.6.0:
188 | version "0.6.0"
189 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
190 |
191 | aws-sign2@~0.7.0:
192 | version "0.7.0"
193 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
194 |
195 | aws4@^1.2.1, aws4@^1.6.0:
196 | version "1.6.0"
197 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
198 |
199 | babel-code-frame@^6.26.0:
200 | version "6.26.0"
201 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
202 | dependencies:
203 | chalk "^1.1.3"
204 | esutils "^2.0.2"
205 | js-tokens "^3.0.2"
206 |
207 | babel-core@^6.0.0, babel-core@^6.26.0:
208 | version "6.26.0"
209 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
210 | dependencies:
211 | babel-code-frame "^6.26.0"
212 | babel-generator "^6.26.0"
213 | babel-helpers "^6.24.1"
214 | babel-messages "^6.23.0"
215 | babel-register "^6.26.0"
216 | babel-runtime "^6.26.0"
217 | babel-template "^6.26.0"
218 | babel-traverse "^6.26.0"
219 | babel-types "^6.26.0"
220 | babylon "^6.18.0"
221 | convert-source-map "^1.5.0"
222 | debug "^2.6.8"
223 | json5 "^0.5.1"
224 | lodash "^4.17.4"
225 | minimatch "^3.0.4"
226 | path-is-absolute "^1.0.1"
227 | private "^0.1.7"
228 | slash "^1.0.0"
229 | source-map "^0.5.6"
230 |
231 | babel-generator@^6.18.0, babel-generator@^6.26.0:
232 | version "6.26.1"
233 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
234 | dependencies:
235 | babel-messages "^6.23.0"
236 | babel-runtime "^6.26.0"
237 | babel-types "^6.26.0"
238 | detect-indent "^4.0.0"
239 | jsesc "^1.3.0"
240 | lodash "^4.17.4"
241 | source-map "^0.5.7"
242 | trim-right "^1.0.1"
243 |
244 | babel-helper-builder-react-jsx@^6.24.1:
245 | version "6.26.0"
246 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
247 | dependencies:
248 | babel-runtime "^6.26.0"
249 | babel-types "^6.26.0"
250 | esutils "^2.0.2"
251 |
252 | babel-helper-call-delegate@^6.24.1:
253 | version "6.24.1"
254 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
255 | dependencies:
256 | babel-helper-hoist-variables "^6.24.1"
257 | babel-runtime "^6.22.0"
258 | babel-traverse "^6.24.1"
259 | babel-types "^6.24.1"
260 |
261 | babel-helper-define-map@^6.24.1:
262 | version "6.26.0"
263 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
264 | dependencies:
265 | babel-helper-function-name "^6.24.1"
266 | babel-runtime "^6.26.0"
267 | babel-types "^6.26.0"
268 | lodash "^4.17.4"
269 |
270 | babel-helper-function-name@^6.24.1:
271 | version "6.24.1"
272 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
273 | dependencies:
274 | babel-helper-get-function-arity "^6.24.1"
275 | babel-runtime "^6.22.0"
276 | babel-template "^6.24.1"
277 | babel-traverse "^6.24.1"
278 | babel-types "^6.24.1"
279 |
280 | babel-helper-get-function-arity@^6.24.1:
281 | version "6.24.1"
282 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
283 | dependencies:
284 | babel-runtime "^6.22.0"
285 | babel-types "^6.24.1"
286 |
287 | babel-helper-hoist-variables@^6.24.1:
288 | version "6.24.1"
289 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
290 | dependencies:
291 | babel-runtime "^6.22.0"
292 | babel-types "^6.24.1"
293 |
294 | babel-helper-optimise-call-expression@^6.24.1:
295 | version "6.24.1"
296 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
297 | dependencies:
298 | babel-runtime "^6.22.0"
299 | babel-types "^6.24.1"
300 |
301 | babel-helper-regex@^6.24.1:
302 | version "6.26.0"
303 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
304 | dependencies:
305 | babel-runtime "^6.26.0"
306 | babel-types "^6.26.0"
307 | lodash "^4.17.4"
308 |
309 | babel-helper-replace-supers@^6.24.1:
310 | version "6.24.1"
311 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
312 | dependencies:
313 | babel-helper-optimise-call-expression "^6.24.1"
314 | babel-messages "^6.23.0"
315 | babel-runtime "^6.22.0"
316 | babel-template "^6.24.1"
317 | babel-traverse "^6.24.1"
318 | babel-types "^6.24.1"
319 |
320 | babel-helpers@^6.24.1:
321 | version "6.24.1"
322 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
323 | dependencies:
324 | babel-runtime "^6.22.0"
325 | babel-template "^6.24.1"
326 |
327 | babel-jest@^22.4.1:
328 | version "22.4.1"
329 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.1.tgz#ff53ebca45957347f27ff4666a31499fbb4c4ddd"
330 | dependencies:
331 | babel-plugin-istanbul "^4.1.5"
332 | babel-preset-jest "^22.4.1"
333 |
334 | babel-messages@^6.23.0:
335 | version "6.23.0"
336 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
337 | dependencies:
338 | babel-runtime "^6.22.0"
339 |
340 | babel-plugin-check-es2015-constants@^6.22.0:
341 | version "6.22.0"
342 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
343 | dependencies:
344 | babel-runtime "^6.22.0"
345 |
346 | babel-plugin-external-helpers@^6.18.0:
347 | version "6.22.0"
348 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1"
349 | dependencies:
350 | babel-runtime "^6.22.0"
351 |
352 | babel-plugin-istanbul@^4.1.5:
353 | version "4.1.5"
354 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
355 | dependencies:
356 | find-up "^2.1.0"
357 | istanbul-lib-instrument "^1.7.5"
358 | test-exclude "^4.1.1"
359 |
360 | babel-plugin-jest-hoist@^22.4.1:
361 | version "22.4.1"
362 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.1.tgz#d712fe5da8b6965f3191dacddbefdbdf4fb66d63"
363 |
364 | babel-plugin-syntax-flow@^6.18.0:
365 | version "6.18.0"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
367 |
368 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
369 | version "6.18.0"
370 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
371 |
372 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0:
373 | version "6.13.0"
374 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
375 |
376 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
377 | version "6.22.0"
378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
379 | dependencies:
380 | babel-runtime "^6.22.0"
381 |
382 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
383 | version "6.22.0"
384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
385 | dependencies:
386 | babel-runtime "^6.22.0"
387 |
388 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
389 | version "6.26.0"
390 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
391 | dependencies:
392 | babel-runtime "^6.26.0"
393 | babel-template "^6.26.0"
394 | babel-traverse "^6.26.0"
395 | babel-types "^6.26.0"
396 | lodash "^4.17.4"
397 |
398 | babel-plugin-transform-es2015-classes@^6.24.1:
399 | version "6.24.1"
400 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
401 | dependencies:
402 | babel-helper-define-map "^6.24.1"
403 | babel-helper-function-name "^6.24.1"
404 | babel-helper-optimise-call-expression "^6.24.1"
405 | babel-helper-replace-supers "^6.24.1"
406 | babel-messages "^6.23.0"
407 | babel-runtime "^6.22.0"
408 | babel-template "^6.24.1"
409 | babel-traverse "^6.24.1"
410 | babel-types "^6.24.1"
411 |
412 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
413 | version "6.24.1"
414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
415 | dependencies:
416 | babel-runtime "^6.22.0"
417 | babel-template "^6.24.1"
418 |
419 | babel-plugin-transform-es2015-destructuring@^6.22.0:
420 | version "6.23.0"
421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
422 | dependencies:
423 | babel-runtime "^6.22.0"
424 |
425 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
426 | version "6.24.1"
427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
428 | dependencies:
429 | babel-runtime "^6.22.0"
430 | babel-types "^6.24.1"
431 |
432 | babel-plugin-transform-es2015-for-of@^6.22.0:
433 | version "6.23.0"
434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
435 | dependencies:
436 | babel-runtime "^6.22.0"
437 |
438 | babel-plugin-transform-es2015-function-name@^6.24.1:
439 | version "6.24.1"
440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
441 | dependencies:
442 | babel-helper-function-name "^6.24.1"
443 | babel-runtime "^6.22.0"
444 | babel-types "^6.24.1"
445 |
446 | babel-plugin-transform-es2015-literals@^6.22.0:
447 | version "6.22.0"
448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
449 | dependencies:
450 | babel-runtime "^6.22.0"
451 |
452 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
453 | version "6.24.1"
454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
455 | dependencies:
456 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
457 | babel-runtime "^6.22.0"
458 | babel-template "^6.24.1"
459 |
460 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
461 | version "6.26.0"
462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
463 | dependencies:
464 | babel-plugin-transform-strict-mode "^6.24.1"
465 | babel-runtime "^6.26.0"
466 | babel-template "^6.26.0"
467 | babel-types "^6.26.0"
468 |
469 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
470 | version "6.24.1"
471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
472 | dependencies:
473 | babel-helper-hoist-variables "^6.24.1"
474 | babel-runtime "^6.22.0"
475 | babel-template "^6.24.1"
476 |
477 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
478 | version "6.24.1"
479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
480 | dependencies:
481 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
482 | babel-runtime "^6.22.0"
483 | babel-template "^6.24.1"
484 |
485 | babel-plugin-transform-es2015-object-super@^6.24.1:
486 | version "6.24.1"
487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
488 | dependencies:
489 | babel-helper-replace-supers "^6.24.1"
490 | babel-runtime "^6.22.0"
491 |
492 | babel-plugin-transform-es2015-parameters@^6.24.1:
493 | version "6.24.1"
494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
495 | dependencies:
496 | babel-helper-call-delegate "^6.24.1"
497 | babel-helper-get-function-arity "^6.24.1"
498 | babel-runtime "^6.22.0"
499 | babel-template "^6.24.1"
500 | babel-traverse "^6.24.1"
501 | babel-types "^6.24.1"
502 |
503 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
504 | version "6.24.1"
505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
506 | dependencies:
507 | babel-runtime "^6.22.0"
508 | babel-types "^6.24.1"
509 |
510 | babel-plugin-transform-es2015-spread@^6.22.0:
511 | version "6.22.0"
512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
513 | dependencies:
514 | babel-runtime "^6.22.0"
515 |
516 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
517 | version "6.24.1"
518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
519 | dependencies:
520 | babel-helper-regex "^6.24.1"
521 | babel-runtime "^6.22.0"
522 | babel-types "^6.24.1"
523 |
524 | babel-plugin-transform-es2015-template-literals@^6.22.0:
525 | version "6.22.0"
526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
527 | dependencies:
528 | babel-runtime "^6.22.0"
529 |
530 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
531 | version "6.23.0"
532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
533 | dependencies:
534 | babel-runtime "^6.22.0"
535 |
536 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
537 | version "6.24.1"
538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
539 | dependencies:
540 | babel-helper-regex "^6.24.1"
541 | babel-runtime "^6.22.0"
542 | regexpu-core "^2.0.0"
543 |
544 | babel-plugin-transform-flow-strip-types@^6.22.0:
545 | version "6.22.0"
546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
547 | dependencies:
548 | babel-plugin-syntax-flow "^6.18.0"
549 | babel-runtime "^6.22.0"
550 |
551 | babel-plugin-transform-object-rest-spread@^6.26.0:
552 | version "6.26.0"
553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
554 | dependencies:
555 | babel-plugin-syntax-object-rest-spread "^6.8.0"
556 | babel-runtime "^6.26.0"
557 |
558 | babel-plugin-transform-react-display-name@^6.23.0:
559 | version "6.25.0"
560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
561 | dependencies:
562 | babel-runtime "^6.22.0"
563 |
564 | babel-plugin-transform-react-jsx-self@^6.22.0:
565 | version "6.22.0"
566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
567 | dependencies:
568 | babel-plugin-syntax-jsx "^6.8.0"
569 | babel-runtime "^6.22.0"
570 |
571 | babel-plugin-transform-react-jsx-source@^6.22.0:
572 | version "6.22.0"
573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
574 | dependencies:
575 | babel-plugin-syntax-jsx "^6.8.0"
576 | babel-runtime "^6.22.0"
577 |
578 | babel-plugin-transform-react-jsx@^6.24.1:
579 | version "6.24.1"
580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
581 | dependencies:
582 | babel-helper-builder-react-jsx "^6.24.1"
583 | babel-plugin-syntax-jsx "^6.8.0"
584 | babel-runtime "^6.22.0"
585 |
586 | babel-plugin-transform-regenerator@^6.24.1:
587 | version "6.26.0"
588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
589 | dependencies:
590 | regenerator-transform "^0.10.0"
591 |
592 | babel-plugin-transform-strict-mode@^6.24.1:
593 | version "6.24.1"
594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
595 | dependencies:
596 | babel-runtime "^6.22.0"
597 | babel-types "^6.24.1"
598 |
599 | babel-preset-es2015-rollup@^3.0.0:
600 | version "3.0.0"
601 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-rollup/-/babel-preset-es2015-rollup-3.0.0.tgz#854b63ecde2ee98cac40e882f67bfcf185b1f24a"
602 | dependencies:
603 | babel-plugin-external-helpers "^6.18.0"
604 | babel-preset-es2015 "^6.3.13"
605 | require-relative "^0.8.7"
606 |
607 | babel-preset-es2015@^6.24.1, babel-preset-es2015@^6.3.13:
608 | version "6.24.1"
609 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
610 | dependencies:
611 | babel-plugin-check-es2015-constants "^6.22.0"
612 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
613 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
614 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
615 | babel-plugin-transform-es2015-classes "^6.24.1"
616 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
617 | babel-plugin-transform-es2015-destructuring "^6.22.0"
618 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
619 | babel-plugin-transform-es2015-for-of "^6.22.0"
620 | babel-plugin-transform-es2015-function-name "^6.24.1"
621 | babel-plugin-transform-es2015-literals "^6.22.0"
622 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
623 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
624 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
625 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
626 | babel-plugin-transform-es2015-object-super "^6.24.1"
627 | babel-plugin-transform-es2015-parameters "^6.24.1"
628 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
629 | babel-plugin-transform-es2015-spread "^6.22.0"
630 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
631 | babel-plugin-transform-es2015-template-literals "^6.22.0"
632 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
633 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
634 | babel-plugin-transform-regenerator "^6.24.1"
635 |
636 | babel-preset-flow@^6.23.0:
637 | version "6.23.0"
638 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
639 | dependencies:
640 | babel-plugin-transform-flow-strip-types "^6.22.0"
641 |
642 | babel-preset-jest@^22.4.1:
643 | version "22.4.1"
644 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.1.tgz#efa2e5f5334242a9457a068452d7d09735db172a"
645 | dependencies:
646 | babel-plugin-jest-hoist "^22.4.1"
647 | babel-plugin-syntax-object-rest-spread "^6.13.0"
648 |
649 | babel-preset-react@^6.24.1:
650 | version "6.24.1"
651 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
652 | dependencies:
653 | babel-plugin-syntax-jsx "^6.3.13"
654 | babel-plugin-transform-react-display-name "^6.23.0"
655 | babel-plugin-transform-react-jsx "^6.24.1"
656 | babel-plugin-transform-react-jsx-self "^6.22.0"
657 | babel-plugin-transform-react-jsx-source "^6.22.0"
658 | babel-preset-flow "^6.23.0"
659 |
660 | babel-register@^6.26.0:
661 | version "6.26.0"
662 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
663 | dependencies:
664 | babel-core "^6.26.0"
665 | babel-runtime "^6.26.0"
666 | core-js "^2.5.0"
667 | home-or-tmp "^2.0.0"
668 | lodash "^4.17.4"
669 | mkdirp "^0.5.1"
670 | source-map-support "^0.4.15"
671 |
672 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
673 | version "6.26.0"
674 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
675 | dependencies:
676 | core-js "^2.4.0"
677 | regenerator-runtime "^0.11.0"
678 |
679 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
680 | version "6.26.0"
681 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
682 | dependencies:
683 | babel-runtime "^6.26.0"
684 | babel-traverse "^6.26.0"
685 | babel-types "^6.26.0"
686 | babylon "^6.18.0"
687 | lodash "^4.17.4"
688 |
689 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
690 | version "6.26.0"
691 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
692 | dependencies:
693 | babel-code-frame "^6.26.0"
694 | babel-messages "^6.23.0"
695 | babel-runtime "^6.26.0"
696 | babel-types "^6.26.0"
697 | babylon "^6.18.0"
698 | debug "^2.6.8"
699 | globals "^9.18.0"
700 | invariant "^2.2.2"
701 | lodash "^4.17.4"
702 |
703 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
704 | version "6.26.0"
705 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
706 | dependencies:
707 | babel-runtime "^6.26.0"
708 | esutils "^2.0.2"
709 | lodash "^4.17.4"
710 | to-fast-properties "^1.0.3"
711 |
712 | babylon@^6.18.0:
713 | version "6.18.0"
714 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
715 |
716 | balanced-match@^1.0.0:
717 | version "1.0.0"
718 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
719 |
720 | bcrypt-pbkdf@^1.0.0:
721 | version "1.0.1"
722 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
723 | dependencies:
724 | tweetnacl "^0.14.3"
725 |
726 | block-stream@*:
727 | version "0.0.9"
728 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
729 | dependencies:
730 | inherits "~2.0.0"
731 |
732 | boolbase@~1.0.0:
733 | version "1.0.0"
734 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
735 |
736 | boom@2.x.x:
737 | version "2.10.1"
738 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
739 | dependencies:
740 | hoek "2.x.x"
741 |
742 | boom@4.x.x:
743 | version "4.3.1"
744 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
745 | dependencies:
746 | hoek "4.x.x"
747 |
748 | boom@5.x.x:
749 | version "5.2.0"
750 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
751 | dependencies:
752 | hoek "4.x.x"
753 |
754 | boxen@^1.1.0:
755 | version "1.3.0"
756 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
757 | dependencies:
758 | ansi-align "^2.0.0"
759 | camelcase "^4.0.0"
760 | chalk "^2.0.1"
761 | cli-boxes "^1.0.0"
762 | string-width "^2.0.0"
763 | term-size "^1.2.0"
764 | widest-line "^2.0.0"
765 |
766 | brace-expansion@^1.1.7:
767 | version "1.1.11"
768 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
769 | dependencies:
770 | balanced-match "^1.0.0"
771 | concat-map "0.0.1"
772 |
773 | braces@^1.8.2:
774 | version "1.8.5"
775 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
776 | dependencies:
777 | expand-range "^1.8.1"
778 | preserve "^0.2.0"
779 | repeat-element "^1.1.2"
780 |
781 | browser-process-hrtime@^0.1.2:
782 | version "0.1.2"
783 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e"
784 |
785 | browser-resolve@^1.11.2:
786 | version "1.11.2"
787 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
788 | dependencies:
789 | resolve "1.1.7"
790 |
791 | bser@^2.0.0:
792 | version "2.0.0"
793 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
794 | dependencies:
795 | node-int64 "^0.4.0"
796 |
797 | builtin-modules@^1.0.0:
798 | version "1.1.1"
799 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
800 |
801 | callsites@^2.0.0:
802 | version "2.0.0"
803 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
804 |
805 | camelcase@^1.0.2:
806 | version "1.2.1"
807 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
808 |
809 | camelcase@^4.0.0, camelcase@^4.1.0:
810 | version "4.1.0"
811 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
812 |
813 | caseless@~0.12.0:
814 | version "0.12.0"
815 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
816 |
817 | center-align@^0.1.1:
818 | version "0.1.3"
819 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
820 | dependencies:
821 | align-text "^0.1.3"
822 | lazy-cache "^1.0.3"
823 |
824 | chalk@^1.1.3:
825 | version "1.1.3"
826 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
827 | dependencies:
828 | ansi-styles "^2.2.1"
829 | escape-string-regexp "^1.0.2"
830 | has-ansi "^2.0.0"
831 | strip-ansi "^3.0.0"
832 | supports-color "^2.0.0"
833 |
834 | chalk@^2.0.0, chalk@^2.0.1:
835 | version "2.3.2"
836 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65"
837 | dependencies:
838 | ansi-styles "^3.2.1"
839 | escape-string-regexp "^1.0.5"
840 | supports-color "^5.3.0"
841 |
842 | cheerio@^1.0.0-rc.2:
843 | version "1.0.0-rc.2"
844 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db"
845 | dependencies:
846 | css-select "~1.2.0"
847 | dom-serializer "~0.1.0"
848 | entities "~1.1.1"
849 | htmlparser2 "^3.9.1"
850 | lodash "^4.15.0"
851 | parse5 "^3.0.1"
852 |
853 | ci-info@^1.0.0:
854 | version "1.1.2"
855 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4"
856 |
857 | cli-boxes@^1.0.0:
858 | version "1.0.0"
859 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
860 |
861 | cliui@^2.1.0:
862 | version "2.1.0"
863 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
864 | dependencies:
865 | center-align "^0.1.1"
866 | right-align "^0.1.1"
867 | wordwrap "0.0.2"
868 |
869 | cliui@^4.0.0:
870 | version "4.0.0"
871 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc"
872 | dependencies:
873 | string-width "^2.1.1"
874 | strip-ansi "^4.0.0"
875 | wrap-ansi "^2.0.0"
876 |
877 | co@^4.6.0:
878 | version "4.6.0"
879 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
880 |
881 | code-point-at@^1.0.0:
882 | version "1.1.0"
883 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
884 |
885 | color-convert@^1.9.0:
886 | version "1.9.1"
887 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
888 | dependencies:
889 | color-name "^1.1.1"
890 |
891 | color-name@^1.1.1:
892 | version "1.1.3"
893 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
894 |
895 | colors@0.5.x:
896 | version "0.5.1"
897 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.5.1.tgz#7d0023eaeb154e8ee9fce75dcb923d0ed1667774"
898 |
899 | colors@^1.1.2:
900 | version "1.1.2"
901 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
902 |
903 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5:
904 | version "1.0.6"
905 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
906 | dependencies:
907 | delayed-stream "~1.0.0"
908 |
909 | commander@~2.13.0:
910 | version "2.13.0"
911 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
912 |
913 | concat-map@0.0.1:
914 | version "0.0.1"
915 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
916 |
917 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
918 | version "1.1.0"
919 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
920 |
921 | content-type-parser@^1.0.2:
922 | version "1.0.2"
923 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
924 |
925 | convert-source-map@^1.4.0, convert-source-map@^1.5.0:
926 | version "1.5.1"
927 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
928 |
929 | core-js@^1.0.0:
930 | version "1.2.7"
931 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
932 |
933 | core-js@^2.4.0, core-js@^2.5.0:
934 | version "2.5.3"
935 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
936 |
937 | core-util-is@1.0.2, core-util-is@~1.0.0:
938 | version "1.0.2"
939 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
940 |
941 | cross-env@^5.1.3:
942 | version "5.1.3"
943 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.3.tgz#f8ae18faac87692b0a8b4d2f7000d4ec3a85dfd7"
944 | dependencies:
945 | cross-spawn "^5.1.0"
946 | is-windows "^1.0.0"
947 |
948 | cross-spawn@^5.0.1, cross-spawn@^5.1.0:
949 | version "5.1.0"
950 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
951 | dependencies:
952 | lru-cache "^4.0.1"
953 | shebang-command "^1.2.0"
954 | which "^1.2.9"
955 |
956 | cryptiles@2.x.x:
957 | version "2.0.5"
958 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
959 | dependencies:
960 | boom "2.x.x"
961 |
962 | cryptiles@3.x.x:
963 | version "3.1.2"
964 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
965 | dependencies:
966 | boom "5.x.x"
967 |
968 | css-select@~1.2.0:
969 | version "1.2.0"
970 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
971 | dependencies:
972 | boolbase "~1.0.0"
973 | css-what "2.1"
974 | domutils "1.5.1"
975 | nth-check "~1.0.1"
976 |
977 | css-what@2.1:
978 | version "2.1.0"
979 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
980 |
981 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
982 | version "0.3.2"
983 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
984 |
985 | "cssstyle@>= 0.2.37 < 0.3.0":
986 | version "0.2.37"
987 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
988 | dependencies:
989 | cssom "0.3.x"
990 |
991 | dashdash@^1.12.0:
992 | version "1.14.1"
993 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
994 | dependencies:
995 | assert-plus "^1.0.0"
996 |
997 | debug@^2.2.0, debug@^2.6.8:
998 | version "2.6.9"
999 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1000 | dependencies:
1001 | ms "2.0.0"
1002 |
1003 | debug@^3.1.0:
1004 | version "3.1.0"
1005 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1006 | dependencies:
1007 | ms "2.0.0"
1008 |
1009 | decamelize@^1.0.0, decamelize@^1.1.1:
1010 | version "1.2.0"
1011 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1012 |
1013 | deep-assign@^2.0.0:
1014 | version "2.0.0"
1015 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-2.0.0.tgz#ebe06b1f07f08dae597620e3dd1622f371a1c572"
1016 | dependencies:
1017 | is-obj "^1.0.0"
1018 |
1019 | deep-extend@~0.4.0:
1020 | version "0.4.2"
1021 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1022 |
1023 | deep-is@~0.1.3:
1024 | version "0.1.3"
1025 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1026 |
1027 | default-require-extensions@^1.0.0:
1028 | version "1.0.0"
1029 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
1030 | dependencies:
1031 | strip-bom "^2.0.0"
1032 |
1033 | define-properties@^1.1.2:
1034 | version "1.1.2"
1035 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1036 | dependencies:
1037 | foreach "^2.0.5"
1038 | object-keys "^1.0.8"
1039 |
1040 | delayed-stream@~1.0.0:
1041 | version "1.0.0"
1042 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1043 |
1044 | delegates@^1.0.0:
1045 | version "1.0.0"
1046 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1047 |
1048 | detect-indent@^4.0.0:
1049 | version "4.0.0"
1050 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1051 | dependencies:
1052 | repeating "^2.0.0"
1053 |
1054 | detect-libc@^1.0.2:
1055 | version "1.0.3"
1056 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1057 |
1058 | detect-newline@^2.1.0:
1059 | version "2.1.0"
1060 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1061 |
1062 | diff@^3.2.0:
1063 | version "3.5.0"
1064 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1065 |
1066 | discontinuous-range@1.0.0:
1067 | version "1.0.0"
1068 | resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
1069 |
1070 | dom-serializer@0, dom-serializer@~0.1.0:
1071 | version "0.1.0"
1072 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
1073 | dependencies:
1074 | domelementtype "~1.1.1"
1075 | entities "~1.1.1"
1076 |
1077 | domelementtype@1, domelementtype@^1.3.0:
1078 | version "1.3.0"
1079 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
1080 |
1081 | domelementtype@~1.1.1:
1082 | version "1.1.3"
1083 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
1084 |
1085 | domexception@^1.0.0:
1086 | version "1.0.1"
1087 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
1088 | dependencies:
1089 | webidl-conversions "^4.0.2"
1090 |
1091 | domhandler@^2.3.0:
1092 | version "2.4.1"
1093 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259"
1094 | dependencies:
1095 | domelementtype "1"
1096 |
1097 | domutils@1.5.1:
1098 | version "1.5.1"
1099 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
1100 | dependencies:
1101 | dom-serializer "0"
1102 | domelementtype "1"
1103 |
1104 | domutils@^1.5.1:
1105 | version "1.7.0"
1106 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
1107 | dependencies:
1108 | dom-serializer "0"
1109 | domelementtype "1"
1110 |
1111 | duplexer@^0.1.1:
1112 | version "0.1.1"
1113 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
1114 |
1115 | ecc-jsbn@~0.1.1:
1116 | version "0.1.1"
1117 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1118 | dependencies:
1119 | jsbn "~0.1.0"
1120 |
1121 | encoding@^0.1.11:
1122 | version "0.1.12"
1123 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1124 | dependencies:
1125 | iconv-lite "~0.4.13"
1126 |
1127 | entities@^1.1.1, entities@~1.1.1:
1128 | version "1.1.1"
1129 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1130 |
1131 | enzyme-adapter-react-16@^1.1.1:
1132 | version "1.1.1"
1133 | resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.1.1.tgz#a8f4278b47e082fbca14f5bfb1ee50ee650717b4"
1134 | dependencies:
1135 | enzyme-adapter-utils "^1.3.0"
1136 | lodash "^4.17.4"
1137 | object.assign "^4.0.4"
1138 | object.values "^1.0.4"
1139 | prop-types "^15.6.0"
1140 | react-reconciler "^0.7.0"
1141 | react-test-renderer "^16.0.0-0"
1142 |
1143 | enzyme-adapter-utils@^1.3.0:
1144 | version "1.3.0"
1145 | resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.3.0.tgz#d6c85756826c257a8544d362cc7a67e97ea698c7"
1146 | dependencies:
1147 | lodash "^4.17.4"
1148 | object.assign "^4.0.4"
1149 | prop-types "^15.6.0"
1150 |
1151 | enzyme@^3.3.0:
1152 | version "3.3.0"
1153 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.3.0.tgz#0971abd167f2d4bf3f5bd508229e1c4b6dc50479"
1154 | dependencies:
1155 | cheerio "^1.0.0-rc.2"
1156 | function.prototype.name "^1.0.3"
1157 | has "^1.0.1"
1158 | is-boolean-object "^1.0.0"
1159 | is-callable "^1.1.3"
1160 | is-number-object "^1.0.3"
1161 | is-string "^1.0.4"
1162 | is-subset "^0.1.1"
1163 | lodash "^4.17.4"
1164 | object-inspect "^1.5.0"
1165 | object-is "^1.0.1"
1166 | object.assign "^4.1.0"
1167 | object.entries "^1.0.4"
1168 | object.values "^1.0.4"
1169 | raf "^3.4.0"
1170 | rst-selector-parser "^2.2.3"
1171 |
1172 | error-ex@^1.2.0:
1173 | version "1.3.1"
1174 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1175 | dependencies:
1176 | is-arrayish "^0.2.1"
1177 |
1178 | es-abstract@^1.5.1, es-abstract@^1.6.1:
1179 | version "1.10.0"
1180 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
1181 | dependencies:
1182 | es-to-primitive "^1.1.1"
1183 | function-bind "^1.1.1"
1184 | has "^1.0.1"
1185 | is-callable "^1.1.3"
1186 | is-regex "^1.0.4"
1187 |
1188 | es-to-primitive@^1.1.1:
1189 | version "1.1.1"
1190 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1191 | dependencies:
1192 | is-callable "^1.1.1"
1193 | is-date-object "^1.0.1"
1194 | is-symbol "^1.0.1"
1195 |
1196 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1197 | version "1.0.5"
1198 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1199 |
1200 | escodegen@^1.9.0:
1201 | version "1.9.1"
1202 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2"
1203 | dependencies:
1204 | esprima "^3.1.3"
1205 | estraverse "^4.2.0"
1206 | esutils "^2.0.2"
1207 | optionator "^0.8.1"
1208 | optionalDependencies:
1209 | source-map "~0.6.1"
1210 |
1211 | esprima@^3.1.3:
1212 | version "3.1.3"
1213 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1214 |
1215 | esprima@^4.0.0:
1216 | version "4.0.0"
1217 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1218 |
1219 | estraverse@^4.2.0:
1220 | version "4.2.0"
1221 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1222 |
1223 | estree-walker@^0.2.1:
1224 | version "0.2.1"
1225 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e"
1226 |
1227 | esutils@^2.0.2:
1228 | version "2.0.2"
1229 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1230 |
1231 | exec-sh@^0.2.0:
1232 | version "0.2.1"
1233 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
1234 | dependencies:
1235 | merge "^1.1.3"
1236 |
1237 | execa@^0.7.0:
1238 | version "0.7.0"
1239 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1240 | dependencies:
1241 | cross-spawn "^5.0.1"
1242 | get-stream "^3.0.0"
1243 | is-stream "^1.1.0"
1244 | npm-run-path "^2.0.0"
1245 | p-finally "^1.0.0"
1246 | signal-exit "^3.0.0"
1247 | strip-eof "^1.0.0"
1248 |
1249 | exit@^0.1.2:
1250 | version "0.1.2"
1251 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1252 |
1253 | expand-brackets@^0.1.4:
1254 | version "0.1.5"
1255 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1256 | dependencies:
1257 | is-posix-bracket "^0.1.0"
1258 |
1259 | expand-range@^1.8.1:
1260 | version "1.8.2"
1261 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1262 | dependencies:
1263 | fill-range "^2.1.0"
1264 |
1265 | expect@^22.4.0:
1266 | version "22.4.0"
1267 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.0.tgz#371edf1ae15b83b5bf5ec34b42f1584660a36c16"
1268 | dependencies:
1269 | ansi-styles "^3.2.0"
1270 | jest-diff "^22.4.0"
1271 | jest-get-type "^22.1.0"
1272 | jest-matcher-utils "^22.4.0"
1273 | jest-message-util "^22.4.0"
1274 | jest-regex-util "^22.1.0"
1275 |
1276 | extend@~3.0.0, extend@~3.0.1:
1277 | version "3.0.1"
1278 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1279 |
1280 | extglob@^0.3.1:
1281 | version "0.3.2"
1282 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1283 | dependencies:
1284 | is-extglob "^1.0.0"
1285 |
1286 | extsprintf@1.3.0:
1287 | version "1.3.0"
1288 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1289 |
1290 | extsprintf@^1.2.0:
1291 | version "1.4.0"
1292 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1293 |
1294 | fast-deep-equal@^1.0.0:
1295 | version "1.1.0"
1296 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1297 |
1298 | fast-json-stable-stringify@^2.0.0:
1299 | version "2.0.0"
1300 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1301 |
1302 | fast-levenshtein@~2.0.4:
1303 | version "2.0.6"
1304 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1305 |
1306 | fb-watchman@^2.0.0:
1307 | version "2.0.0"
1308 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1309 | dependencies:
1310 | bser "^2.0.0"
1311 |
1312 | fbjs@^0.8.16:
1313 | version "0.8.16"
1314 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db"
1315 | dependencies:
1316 | core-js "^1.0.0"
1317 | isomorphic-fetch "^2.1.1"
1318 | loose-envify "^1.0.0"
1319 | object-assign "^4.1.0"
1320 | promise "^7.1.1"
1321 | setimmediate "^1.0.5"
1322 | ua-parser-js "^0.7.9"
1323 |
1324 | filename-regex@^2.0.0:
1325 | version "2.0.1"
1326 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1327 |
1328 | fileset@^2.0.2:
1329 | version "2.0.3"
1330 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1331 | dependencies:
1332 | glob "^7.0.3"
1333 | minimatch "^3.0.3"
1334 |
1335 | filesize@^3.5.6:
1336 | version "3.6.0"
1337 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.0.tgz#22d079615624bb6fd3c04026120628a41b3f4efa"
1338 |
1339 | fill-range@^2.1.0:
1340 | version "2.2.3"
1341 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1342 | dependencies:
1343 | is-number "^2.1.0"
1344 | isobject "^2.0.0"
1345 | randomatic "^1.1.3"
1346 | repeat-element "^1.1.2"
1347 | repeat-string "^1.5.2"
1348 |
1349 | find-up@^1.0.0:
1350 | version "1.1.2"
1351 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1352 | dependencies:
1353 | path-exists "^2.0.0"
1354 | pinkie-promise "^2.0.0"
1355 |
1356 | find-up@^2.1.0:
1357 | version "2.1.0"
1358 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1359 | dependencies:
1360 | locate-path "^2.0.0"
1361 |
1362 | for-in@^1.0.1:
1363 | version "1.0.2"
1364 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1365 |
1366 | for-own@^0.1.4:
1367 | version "0.1.5"
1368 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1369 | dependencies:
1370 | for-in "^1.0.1"
1371 |
1372 | foreach@^2.0.5:
1373 | version "2.0.5"
1374 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1375 |
1376 | forever-agent@~0.6.1:
1377 | version "0.6.1"
1378 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1379 |
1380 | form-data@~2.1.1:
1381 | version "2.1.4"
1382 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1383 | dependencies:
1384 | asynckit "^0.4.0"
1385 | combined-stream "^1.0.5"
1386 | mime-types "^2.1.12"
1387 |
1388 | form-data@~2.3.1:
1389 | version "2.3.2"
1390 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
1391 | dependencies:
1392 | asynckit "^0.4.0"
1393 | combined-stream "1.0.6"
1394 | mime-types "^2.1.12"
1395 |
1396 | fs.realpath@^1.0.0:
1397 | version "1.0.0"
1398 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1399 |
1400 | fsevents@^1.1.1:
1401 | version "1.1.3"
1402 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
1403 | dependencies:
1404 | nan "^2.3.0"
1405 | node-pre-gyp "^0.6.39"
1406 |
1407 | fstream-ignore@^1.0.5:
1408 | version "1.0.5"
1409 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1410 | dependencies:
1411 | fstream "^1.0.0"
1412 | inherits "2"
1413 | minimatch "^3.0.0"
1414 |
1415 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1416 | version "1.0.11"
1417 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1418 | dependencies:
1419 | graceful-fs "^4.1.2"
1420 | inherits "~2.0.0"
1421 | mkdirp ">=0.5 0"
1422 | rimraf "2"
1423 |
1424 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1:
1425 | version "1.1.1"
1426 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1427 |
1428 | function.prototype.name@^1.0.3:
1429 | version "1.1.0"
1430 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.0.tgz#8bd763cc0af860a859cc5d49384d74b932cd2327"
1431 | dependencies:
1432 | define-properties "^1.1.2"
1433 | function-bind "^1.1.1"
1434 | is-callable "^1.1.3"
1435 |
1436 | gauge@~2.7.3:
1437 | version "2.7.4"
1438 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1439 | dependencies:
1440 | aproba "^1.0.3"
1441 | console-control-strings "^1.0.0"
1442 | has-unicode "^2.0.0"
1443 | object-assign "^4.1.0"
1444 | signal-exit "^3.0.0"
1445 | string-width "^1.0.1"
1446 | strip-ansi "^3.0.1"
1447 | wide-align "^1.1.0"
1448 |
1449 | get-caller-file@^1.0.1:
1450 | version "1.0.2"
1451 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1452 |
1453 | get-stream@^3.0.0:
1454 | version "3.0.0"
1455 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1456 |
1457 | getpass@^0.1.1:
1458 | version "0.1.7"
1459 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1460 | dependencies:
1461 | assert-plus "^1.0.0"
1462 |
1463 | glob-base@^0.3.0:
1464 | version "0.3.0"
1465 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1466 | dependencies:
1467 | glob-parent "^2.0.0"
1468 | is-glob "^2.0.0"
1469 |
1470 | glob-parent@^2.0.0:
1471 | version "2.0.0"
1472 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1473 | dependencies:
1474 | is-glob "^2.0.0"
1475 |
1476 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
1477 | version "7.1.2"
1478 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1479 | dependencies:
1480 | fs.realpath "^1.0.0"
1481 | inflight "^1.0.4"
1482 | inherits "2"
1483 | minimatch "^3.0.4"
1484 | once "^1.3.0"
1485 | path-is-absolute "^1.0.0"
1486 |
1487 | globals@^9.18.0:
1488 | version "9.18.0"
1489 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1490 |
1491 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1492 | version "4.1.11"
1493 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1494 |
1495 | growly@^1.3.0:
1496 | version "1.3.0"
1497 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1498 |
1499 | gzip-size@^3.0.0:
1500 | version "3.0.0"
1501 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
1502 | dependencies:
1503 | duplexer "^0.1.1"
1504 |
1505 | handlebars@^4.0.3:
1506 | version "4.0.11"
1507 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1508 | dependencies:
1509 | async "^1.4.0"
1510 | optimist "^0.6.1"
1511 | source-map "^0.4.4"
1512 | optionalDependencies:
1513 | uglify-js "^2.6"
1514 |
1515 | har-schema@^1.0.5:
1516 | version "1.0.5"
1517 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1518 |
1519 | har-schema@^2.0.0:
1520 | version "2.0.0"
1521 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1522 |
1523 | har-validator@~4.2.1:
1524 | version "4.2.1"
1525 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1526 | dependencies:
1527 | ajv "^4.9.1"
1528 | har-schema "^1.0.5"
1529 |
1530 | har-validator@~5.0.3:
1531 | version "5.0.3"
1532 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1533 | dependencies:
1534 | ajv "^5.1.0"
1535 | har-schema "^2.0.0"
1536 |
1537 | has-ansi@^2.0.0:
1538 | version "2.0.0"
1539 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1540 | dependencies:
1541 | ansi-regex "^2.0.0"
1542 |
1543 | has-flag@^1.0.0:
1544 | version "1.0.0"
1545 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1546 |
1547 | has-flag@^3.0.0:
1548 | version "3.0.0"
1549 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1550 |
1551 | has-symbols@^1.0.0:
1552 | version "1.0.0"
1553 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
1554 |
1555 | has-unicode@^2.0.0:
1556 | version "2.0.1"
1557 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1558 |
1559 | has@^1.0.1:
1560 | version "1.0.1"
1561 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1562 | dependencies:
1563 | function-bind "^1.0.2"
1564 |
1565 | hawk@3.1.3, hawk@~3.1.3:
1566 | version "3.1.3"
1567 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1568 | dependencies:
1569 | boom "2.x.x"
1570 | cryptiles "2.x.x"
1571 | hoek "2.x.x"
1572 | sntp "1.x.x"
1573 |
1574 | hawk@~6.0.2:
1575 | version "6.0.2"
1576 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
1577 | dependencies:
1578 | boom "4.x.x"
1579 | cryptiles "3.x.x"
1580 | hoek "4.x.x"
1581 | sntp "2.x.x"
1582 |
1583 | hoek@2.x.x:
1584 | version "2.16.3"
1585 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1586 |
1587 | hoek@4.x.x:
1588 | version "4.2.1"
1589 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb"
1590 |
1591 | home-or-tmp@^2.0.0:
1592 | version "2.0.0"
1593 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1594 | dependencies:
1595 | os-homedir "^1.0.0"
1596 | os-tmpdir "^1.0.1"
1597 |
1598 | hosted-git-info@^2.1.4:
1599 | version "2.6.0"
1600 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222"
1601 |
1602 | html-encoding-sniffer@^1.0.2:
1603 | version "1.0.2"
1604 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1605 | dependencies:
1606 | whatwg-encoding "^1.0.1"
1607 |
1608 | htmlparser2@^3.9.1:
1609 | version "3.9.2"
1610 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"
1611 | dependencies:
1612 | domelementtype "^1.3.0"
1613 | domhandler "^2.3.0"
1614 | domutils "^1.5.1"
1615 | entities "^1.1.1"
1616 | inherits "^2.0.1"
1617 | readable-stream "^2.0.2"
1618 |
1619 | http-signature@~1.1.0:
1620 | version "1.1.1"
1621 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1622 | dependencies:
1623 | assert-plus "^0.2.0"
1624 | jsprim "^1.2.2"
1625 | sshpk "^1.7.0"
1626 |
1627 | http-signature@~1.2.0:
1628 | version "1.2.0"
1629 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1630 | dependencies:
1631 | assert-plus "^1.0.0"
1632 | jsprim "^1.2.2"
1633 | sshpk "^1.7.0"
1634 |
1635 | iconv-lite@0.4.19, iconv-lite@~0.4.13:
1636 | version "0.4.19"
1637 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1638 |
1639 | import-local@^1.0.0:
1640 | version "1.0.0"
1641 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
1642 | dependencies:
1643 | pkg-dir "^2.0.0"
1644 | resolve-cwd "^2.0.0"
1645 |
1646 | imurmurhash@^0.1.4:
1647 | version "0.1.4"
1648 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1649 |
1650 | inflight@^1.0.4:
1651 | version "1.0.6"
1652 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1653 | dependencies:
1654 | once "^1.3.0"
1655 | wrappy "1"
1656 |
1657 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3:
1658 | version "2.0.3"
1659 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1660 |
1661 | ini@~1.3.0:
1662 | version "1.3.5"
1663 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1664 |
1665 | invariant@^2.2.2:
1666 | version "2.2.3"
1667 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688"
1668 | dependencies:
1669 | loose-envify "^1.0.0"
1670 |
1671 | invert-kv@^1.0.0:
1672 | version "1.0.0"
1673 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1674 |
1675 | is-arrayish@^0.2.1:
1676 | version "0.2.1"
1677 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1678 |
1679 | is-boolean-object@^1.0.0:
1680 | version "1.0.0"
1681 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93"
1682 |
1683 | is-buffer@^1.1.5:
1684 | version "1.1.6"
1685 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1686 |
1687 | is-builtin-module@^1.0.0:
1688 | version "1.0.0"
1689 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1690 | dependencies:
1691 | builtin-modules "^1.0.0"
1692 |
1693 | is-callable@^1.1.1, is-callable@^1.1.3:
1694 | version "1.1.3"
1695 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1696 |
1697 | is-ci@^1.0.10:
1698 | version "1.1.0"
1699 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
1700 | dependencies:
1701 | ci-info "^1.0.0"
1702 |
1703 | is-date-object@^1.0.1:
1704 | version "1.0.1"
1705 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1706 |
1707 | is-dotfile@^1.0.0:
1708 | version "1.0.3"
1709 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1710 |
1711 | is-equal-shallow@^0.1.3:
1712 | version "0.1.3"
1713 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1714 | dependencies:
1715 | is-primitive "^2.0.0"
1716 |
1717 | is-extendable@^0.1.1:
1718 | version "0.1.1"
1719 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1720 |
1721 | is-extglob@^1.0.0:
1722 | version "1.0.0"
1723 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1724 |
1725 | is-finite@^1.0.0:
1726 | version "1.0.2"
1727 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1728 | dependencies:
1729 | number-is-nan "^1.0.0"
1730 |
1731 | is-fullwidth-code-point@^1.0.0:
1732 | version "1.0.0"
1733 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1734 | dependencies:
1735 | number-is-nan "^1.0.0"
1736 |
1737 | is-fullwidth-code-point@^2.0.0:
1738 | version "2.0.0"
1739 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1740 |
1741 | is-generator-fn@^1.0.0:
1742 | version "1.0.0"
1743 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
1744 |
1745 | is-glob@^2.0.0, is-glob@^2.0.1:
1746 | version "2.0.1"
1747 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1748 | dependencies:
1749 | is-extglob "^1.0.0"
1750 |
1751 | is-number-object@^1.0.3:
1752 | version "1.0.3"
1753 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799"
1754 |
1755 | is-number@^2.1.0:
1756 | version "2.1.0"
1757 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1758 | dependencies:
1759 | kind-of "^3.0.2"
1760 |
1761 | is-number@^3.0.0:
1762 | version "3.0.0"
1763 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1764 | dependencies:
1765 | kind-of "^3.0.2"
1766 |
1767 | is-obj@^1.0.0:
1768 | version "1.0.1"
1769 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
1770 |
1771 | is-posix-bracket@^0.1.0:
1772 | version "0.1.1"
1773 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1774 |
1775 | is-primitive@^2.0.0:
1776 | version "2.0.0"
1777 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1778 |
1779 | is-regex@^1.0.4:
1780 | version "1.0.4"
1781 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1782 | dependencies:
1783 | has "^1.0.1"
1784 |
1785 | is-stream@^1.0.1, is-stream@^1.1.0:
1786 | version "1.1.0"
1787 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1788 |
1789 | is-string@^1.0.4:
1790 | version "1.0.4"
1791 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64"
1792 |
1793 | is-subset@^0.1.1:
1794 | version "0.1.1"
1795 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
1796 |
1797 | is-symbol@^1.0.1:
1798 | version "1.0.1"
1799 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1800 |
1801 | is-typedarray@~1.0.0:
1802 | version "1.0.0"
1803 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1804 |
1805 | is-utf8@^0.2.0:
1806 | version "0.2.1"
1807 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1808 |
1809 | is-windows@^1.0.0:
1810 | version "1.0.2"
1811 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1812 |
1813 | isarray@1.0.0, isarray@~1.0.0:
1814 | version "1.0.0"
1815 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1816 |
1817 | isexe@^2.0.0:
1818 | version "2.0.0"
1819 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1820 |
1821 | isobject@^2.0.0:
1822 | version "2.1.0"
1823 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1824 | dependencies:
1825 | isarray "1.0.0"
1826 |
1827 | isomorphic-fetch@^2.1.1:
1828 | version "2.2.1"
1829 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
1830 | dependencies:
1831 | node-fetch "^1.0.1"
1832 | whatwg-fetch ">=0.10.0"
1833 |
1834 | isstream@~0.1.2:
1835 | version "0.1.2"
1836 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1837 |
1838 | istanbul-api@^1.1.14:
1839 | version "1.2.2"
1840 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.2.tgz#e17cd519dd5ec4141197f246fdf380b75487f3b1"
1841 | dependencies:
1842 | async "^2.1.4"
1843 | fileset "^2.0.2"
1844 | istanbul-lib-coverage "^1.1.2"
1845 | istanbul-lib-hook "^1.1.0"
1846 | istanbul-lib-instrument "^1.9.2"
1847 | istanbul-lib-report "^1.1.3"
1848 | istanbul-lib-source-maps "^1.2.3"
1849 | istanbul-reports "^1.1.4"
1850 | js-yaml "^3.7.0"
1851 | mkdirp "^0.5.1"
1852 | once "^1.4.0"
1853 |
1854 | istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.1.2:
1855 | version "1.1.2"
1856 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.2.tgz#4113c8ff6b7a40a1ef7350b01016331f63afde14"
1857 |
1858 | istanbul-lib-hook@^1.1.0:
1859 | version "1.1.0"
1860 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
1861 | dependencies:
1862 | append-transform "^0.4.0"
1863 |
1864 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.2:
1865 | version "1.9.2"
1866 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.2.tgz#84905bf47f7e0b401d6b840da7bad67086b4aab6"
1867 | dependencies:
1868 | babel-generator "^6.18.0"
1869 | babel-template "^6.16.0"
1870 | babel-traverse "^6.18.0"
1871 | babel-types "^6.18.0"
1872 | babylon "^6.18.0"
1873 | istanbul-lib-coverage "^1.1.2"
1874 | semver "^5.3.0"
1875 |
1876 | istanbul-lib-report@^1.1.3:
1877 | version "1.1.3"
1878 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.3.tgz#2df12188c0fa77990c0d2176d2d0ba3394188259"
1879 | dependencies:
1880 | istanbul-lib-coverage "^1.1.2"
1881 | mkdirp "^0.5.1"
1882 | path-parse "^1.0.5"
1883 | supports-color "^3.1.2"
1884 |
1885 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.3:
1886 | version "1.2.3"
1887 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6"
1888 | dependencies:
1889 | debug "^3.1.0"
1890 | istanbul-lib-coverage "^1.1.2"
1891 | mkdirp "^0.5.1"
1892 | rimraf "^2.6.1"
1893 | source-map "^0.5.3"
1894 |
1895 | istanbul-reports@^1.1.4:
1896 | version "1.1.4"
1897 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.4.tgz#5ccba5e22b7b5a5d91d5e0a830f89be334bf97bd"
1898 | dependencies:
1899 | handlebars "^4.0.3"
1900 |
1901 | jest-changed-files@^22.2.0:
1902 | version "22.2.0"
1903 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.2.0.tgz#517610c4a8ca0925bdc88b0ca53bd678aa8d019e"
1904 | dependencies:
1905 | throat "^4.0.0"
1906 |
1907 | jest-cli@^22.4.2:
1908 | version "22.4.2"
1909 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.2.tgz#e6546dc651e13d164481aa3e76e53ac4f4edab06"
1910 | dependencies:
1911 | ansi-escapes "^3.0.0"
1912 | chalk "^2.0.1"
1913 | exit "^0.1.2"
1914 | glob "^7.1.2"
1915 | graceful-fs "^4.1.11"
1916 | import-local "^1.0.0"
1917 | is-ci "^1.0.10"
1918 | istanbul-api "^1.1.14"
1919 | istanbul-lib-coverage "^1.1.1"
1920 | istanbul-lib-instrument "^1.8.0"
1921 | istanbul-lib-source-maps "^1.2.1"
1922 | jest-changed-files "^22.2.0"
1923 | jest-config "^22.4.2"
1924 | jest-environment-jsdom "^22.4.1"
1925 | jest-get-type "^22.1.0"
1926 | jest-haste-map "^22.4.2"
1927 | jest-message-util "^22.4.0"
1928 | jest-regex-util "^22.1.0"
1929 | jest-resolve-dependencies "^22.1.0"
1930 | jest-runner "^22.4.2"
1931 | jest-runtime "^22.4.2"
1932 | jest-snapshot "^22.4.0"
1933 | jest-util "^22.4.1"
1934 | jest-validate "^22.4.2"
1935 | jest-worker "^22.2.2"
1936 | micromatch "^2.3.11"
1937 | node-notifier "^5.2.1"
1938 | realpath-native "^1.0.0"
1939 | rimraf "^2.5.4"
1940 | slash "^1.0.0"
1941 | string-length "^2.0.0"
1942 | strip-ansi "^4.0.0"
1943 | which "^1.2.12"
1944 | yargs "^10.0.3"
1945 |
1946 | jest-config@^22.4.2:
1947 | version "22.4.2"
1948 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.2.tgz#580ba5819bf81a5e48f4fd470e8b81834f45c855"
1949 | dependencies:
1950 | chalk "^2.0.1"
1951 | glob "^7.1.1"
1952 | jest-environment-jsdom "^22.4.1"
1953 | jest-environment-node "^22.4.1"
1954 | jest-get-type "^22.1.0"
1955 | jest-jasmine2 "^22.4.2"
1956 | jest-regex-util "^22.1.0"
1957 | jest-resolve "^22.4.2"
1958 | jest-util "^22.4.1"
1959 | jest-validate "^22.4.2"
1960 | pretty-format "^22.4.0"
1961 |
1962 | jest-diff@^22.4.0:
1963 | version "22.4.0"
1964 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.0.tgz#384c2b78519ca44ca126382df53f134289232525"
1965 | dependencies:
1966 | chalk "^2.0.1"
1967 | diff "^3.2.0"
1968 | jest-get-type "^22.1.0"
1969 | pretty-format "^22.4.0"
1970 |
1971 | jest-docblock@^22.4.0:
1972 | version "22.4.0"
1973 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.0.tgz#dbf1877e2550070cfc4d9b07a55775a0483159b8"
1974 | dependencies:
1975 | detect-newline "^2.1.0"
1976 |
1977 | jest-environment-jsdom@^22.4.1:
1978 | version "22.4.1"
1979 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.1.tgz#754f408872441740100d3917e5ec40c74de6447f"
1980 | dependencies:
1981 | jest-mock "^22.2.0"
1982 | jest-util "^22.4.1"
1983 | jsdom "^11.5.1"
1984 |
1985 | jest-environment-node@^22.4.1:
1986 | version "22.4.1"
1987 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.1.tgz#418850eb654596b8d6e36c2021cbedbc23df8e16"
1988 | dependencies:
1989 | jest-mock "^22.2.0"
1990 | jest-util "^22.4.1"
1991 |
1992 | jest-get-type@^22.1.0:
1993 | version "22.1.0"
1994 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.1.0.tgz#4e90af298ed6181edc85d2da500dbd2753e0d5a9"
1995 |
1996 | jest-haste-map@^22.4.2:
1997 | version "22.4.2"
1998 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.2.tgz#a90178e66146d4378bb076345a949071f3b015b4"
1999 | dependencies:
2000 | fb-watchman "^2.0.0"
2001 | graceful-fs "^4.1.11"
2002 | jest-docblock "^22.4.0"
2003 | jest-serializer "^22.4.0"
2004 | jest-worker "^22.2.2"
2005 | micromatch "^2.3.11"
2006 | sane "^2.0.0"
2007 |
2008 | jest-jasmine2@^22.4.2:
2009 | version "22.4.2"
2010 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.2.tgz#dfd3d259579ed6f52510d8f1ab692808f0d40691"
2011 | dependencies:
2012 | chalk "^2.0.1"
2013 | co "^4.6.0"
2014 | expect "^22.4.0"
2015 | graceful-fs "^4.1.11"
2016 | is-generator-fn "^1.0.0"
2017 | jest-diff "^22.4.0"
2018 | jest-matcher-utils "^22.4.0"
2019 | jest-message-util "^22.4.0"
2020 | jest-snapshot "^22.4.0"
2021 | jest-util "^22.4.1"
2022 | source-map-support "^0.5.0"
2023 |
2024 | jest-leak-detector@^22.4.0:
2025 | version "22.4.0"
2026 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.0.tgz#64da77f05b001c96d2062226e079f89989c4aa2f"
2027 | dependencies:
2028 | pretty-format "^22.4.0"
2029 |
2030 | jest-matcher-utils@^22.4.0:
2031 | version "22.4.0"
2032 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.0.tgz#d55f5faf2270462736bdf7c7485ee931c9d4b6a1"
2033 | dependencies:
2034 | chalk "^2.0.1"
2035 | jest-get-type "^22.1.0"
2036 | pretty-format "^22.4.0"
2037 |
2038 | jest-message-util@^22.4.0:
2039 | version "22.4.0"
2040 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.0.tgz#e3d861df16d2fee60cb2bc8feac2188a42579642"
2041 | dependencies:
2042 | "@babel/code-frame" "^7.0.0-beta.35"
2043 | chalk "^2.0.1"
2044 | micromatch "^2.3.11"
2045 | slash "^1.0.0"
2046 | stack-utils "^1.0.1"
2047 |
2048 | jest-mock@^22.2.0:
2049 | version "22.2.0"
2050 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.2.0.tgz#444b3f9488a7473adae09bc8a77294afded397a7"
2051 |
2052 | jest-regex-util@^22.1.0:
2053 | version "22.1.0"
2054 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.1.0.tgz#5daf2fe270074b6da63e5d85f1c9acc866768f53"
2055 |
2056 | jest-resolve-dependencies@^22.1.0:
2057 | version "22.1.0"
2058 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.1.0.tgz#340e4139fb13315cd43abc054e6c06136be51e31"
2059 | dependencies:
2060 | jest-regex-util "^22.1.0"
2061 |
2062 | jest-resolve@^22.4.2:
2063 | version "22.4.2"
2064 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.2.tgz#25d88aa4147462c9c1c6a1ba16250d3794c24d00"
2065 | dependencies:
2066 | browser-resolve "^1.11.2"
2067 | chalk "^2.0.1"
2068 |
2069 | jest-runner@^22.4.2:
2070 | version "22.4.2"
2071 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.2.tgz#19390ea9d99f768973e16f95a1efa351c0017e87"
2072 | dependencies:
2073 | exit "^0.1.2"
2074 | jest-config "^22.4.2"
2075 | jest-docblock "^22.4.0"
2076 | jest-haste-map "^22.4.2"
2077 | jest-jasmine2 "^22.4.2"
2078 | jest-leak-detector "^22.4.0"
2079 | jest-message-util "^22.4.0"
2080 | jest-runtime "^22.4.2"
2081 | jest-util "^22.4.1"
2082 | jest-worker "^22.2.2"
2083 | throat "^4.0.0"
2084 |
2085 | jest-runtime@^22.4.2:
2086 | version "22.4.2"
2087 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.2.tgz#0de0444f65ce15ee4f2e0055133fc7c17b9168f3"
2088 | dependencies:
2089 | babel-core "^6.0.0"
2090 | babel-jest "^22.4.1"
2091 | babel-plugin-istanbul "^4.1.5"
2092 | chalk "^2.0.1"
2093 | convert-source-map "^1.4.0"
2094 | exit "^0.1.2"
2095 | graceful-fs "^4.1.11"
2096 | jest-config "^22.4.2"
2097 | jest-haste-map "^22.4.2"
2098 | jest-regex-util "^22.1.0"
2099 | jest-resolve "^22.4.2"
2100 | jest-util "^22.4.1"
2101 | jest-validate "^22.4.2"
2102 | json-stable-stringify "^1.0.1"
2103 | micromatch "^2.3.11"
2104 | realpath-native "^1.0.0"
2105 | slash "^1.0.0"
2106 | strip-bom "3.0.0"
2107 | write-file-atomic "^2.1.0"
2108 | yargs "^10.0.3"
2109 |
2110 | jest-serializer@^22.4.0:
2111 | version "22.4.0"
2112 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.0.tgz#b5d145b98c4b0d2c20ab686609adbb81fe23b566"
2113 |
2114 | jest-snapshot@^22.4.0:
2115 | version "22.4.0"
2116 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.0.tgz#03d3ce63f8fa7352388afc6a3c8b5ccc3a180ed7"
2117 | dependencies:
2118 | chalk "^2.0.1"
2119 | jest-diff "^22.4.0"
2120 | jest-matcher-utils "^22.4.0"
2121 | mkdirp "^0.5.1"
2122 | natural-compare "^1.4.0"
2123 | pretty-format "^22.4.0"
2124 |
2125 | jest-util@^22.4.1:
2126 | version "22.4.1"
2127 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.1.tgz#dd17c3bdb067f8e90591563ec0c42bf847dc249f"
2128 | dependencies:
2129 | callsites "^2.0.0"
2130 | chalk "^2.0.1"
2131 | graceful-fs "^4.1.11"
2132 | is-ci "^1.0.10"
2133 | jest-message-util "^22.4.0"
2134 | mkdirp "^0.5.1"
2135 | source-map "^0.6.0"
2136 |
2137 | jest-validate@^22.4.2:
2138 | version "22.4.2"
2139 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.2.tgz#e789a4e056173bf97fe797a2df2d52105c57d4f4"
2140 | dependencies:
2141 | chalk "^2.0.1"
2142 | jest-config "^22.4.2"
2143 | jest-get-type "^22.1.0"
2144 | leven "^2.1.0"
2145 | pretty-format "^22.4.0"
2146 |
2147 | jest-worker@^22.2.2:
2148 | version "22.2.2"
2149 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390"
2150 | dependencies:
2151 | merge-stream "^1.0.1"
2152 |
2153 | jest@^22.4.2:
2154 | version "22.4.2"
2155 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.2.tgz#34012834a49bf1bdd3bc783850ab44e4499afc20"
2156 | dependencies:
2157 | import-local "^1.0.0"
2158 | jest-cli "^22.4.2"
2159 |
2160 | js-tokens@^3.0.0, js-tokens@^3.0.2:
2161 | version "3.0.2"
2162 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2163 |
2164 | js-yaml@^3.7.0:
2165 | version "3.11.0"
2166 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef"
2167 | dependencies:
2168 | argparse "^1.0.7"
2169 | esprima "^4.0.0"
2170 |
2171 | jsbn@~0.1.0:
2172 | version "0.1.1"
2173 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2174 |
2175 | jsdom@^11.5.1:
2176 | version "11.6.2"
2177 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb"
2178 | dependencies:
2179 | abab "^1.0.4"
2180 | acorn "^5.3.0"
2181 | acorn-globals "^4.1.0"
2182 | array-equal "^1.0.0"
2183 | browser-process-hrtime "^0.1.2"
2184 | content-type-parser "^1.0.2"
2185 | cssom ">= 0.3.2 < 0.4.0"
2186 | cssstyle ">= 0.2.37 < 0.3.0"
2187 | domexception "^1.0.0"
2188 | escodegen "^1.9.0"
2189 | html-encoding-sniffer "^1.0.2"
2190 | left-pad "^1.2.0"
2191 | nwmatcher "^1.4.3"
2192 | parse5 "4.0.0"
2193 | pn "^1.1.0"
2194 | request "^2.83.0"
2195 | request-promise-native "^1.0.5"
2196 | sax "^1.2.4"
2197 | symbol-tree "^3.2.2"
2198 | tough-cookie "^2.3.3"
2199 | w3c-hr-time "^1.0.1"
2200 | webidl-conversions "^4.0.2"
2201 | whatwg-encoding "^1.0.3"
2202 | whatwg-url "^6.4.0"
2203 | ws "^4.0.0"
2204 | xml-name-validator "^3.0.0"
2205 |
2206 | jsesc@^1.3.0:
2207 | version "1.3.0"
2208 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2209 |
2210 | jsesc@~0.5.0:
2211 | version "0.5.0"
2212 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2213 |
2214 | json-schema-traverse@^0.3.0:
2215 | version "0.3.1"
2216 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2217 |
2218 | json-schema@0.2.3:
2219 | version "0.2.3"
2220 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2221 |
2222 | json-stable-stringify@^1.0.1:
2223 | version "1.0.1"
2224 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2225 | dependencies:
2226 | jsonify "~0.0.0"
2227 |
2228 | json-stringify-safe@~5.0.1:
2229 | version "5.0.1"
2230 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2231 |
2232 | json5@^0.5.1:
2233 | version "0.5.1"
2234 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2235 |
2236 | jsonify@~0.0.0:
2237 | version "0.0.0"
2238 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2239 |
2240 | jsprim@^1.2.2:
2241 | version "1.4.1"
2242 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2243 | dependencies:
2244 | assert-plus "1.0.0"
2245 | extsprintf "1.3.0"
2246 | json-schema "0.2.3"
2247 | verror "1.10.0"
2248 |
2249 | kind-of@^3.0.2:
2250 | version "3.2.2"
2251 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2252 | dependencies:
2253 | is-buffer "^1.1.5"
2254 |
2255 | kind-of@^4.0.0:
2256 | version "4.0.0"
2257 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2258 | dependencies:
2259 | is-buffer "^1.1.5"
2260 |
2261 | lazy-cache@^1.0.3:
2262 | version "1.0.4"
2263 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2264 |
2265 | lcid@^1.0.0:
2266 | version "1.0.0"
2267 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2268 | dependencies:
2269 | invert-kv "^1.0.0"
2270 |
2271 | left-pad@^1.2.0:
2272 | version "1.2.0"
2273 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee"
2274 |
2275 | leven@^2.1.0:
2276 | version "2.1.0"
2277 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2278 |
2279 | levn@~0.3.0:
2280 | version "0.3.0"
2281 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2282 | dependencies:
2283 | prelude-ls "~1.1.2"
2284 | type-check "~0.3.2"
2285 |
2286 | load-json-file@^1.0.0:
2287 | version "1.1.0"
2288 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2289 | dependencies:
2290 | graceful-fs "^4.1.2"
2291 | parse-json "^2.2.0"
2292 | pify "^2.0.0"
2293 | pinkie-promise "^2.0.0"
2294 | strip-bom "^2.0.0"
2295 |
2296 | locate-path@^2.0.0:
2297 | version "2.0.0"
2298 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2299 | dependencies:
2300 | p-locate "^2.0.0"
2301 | path-exists "^3.0.0"
2302 |
2303 | lodash.flattendeep@^4.4.0:
2304 | version "4.4.0"
2305 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
2306 |
2307 | lodash.set@^4.3.2:
2308 | version "4.3.2"
2309 | resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
2310 |
2311 | lodash.sortby@^4.7.0:
2312 | version "4.7.0"
2313 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2314 |
2315 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4:
2316 | version "4.17.5"
2317 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
2318 |
2319 | longest@^1.0.1:
2320 | version "1.0.1"
2321 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2322 |
2323 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
2324 | version "1.3.1"
2325 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2326 | dependencies:
2327 | js-tokens "^3.0.0"
2328 |
2329 | lru-cache@^4.0.1:
2330 | version "4.1.2"
2331 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f"
2332 | dependencies:
2333 | pseudomap "^1.0.2"
2334 | yallist "^2.1.2"
2335 |
2336 | makeerror@1.0.x:
2337 | version "1.0.11"
2338 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2339 | dependencies:
2340 | tmpl "1.0.x"
2341 |
2342 | mem@^1.1.0:
2343 | version "1.1.0"
2344 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2345 | dependencies:
2346 | mimic-fn "^1.0.0"
2347 |
2348 | merge-stream@^1.0.1:
2349 | version "1.0.1"
2350 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2351 | dependencies:
2352 | readable-stream "^2.0.1"
2353 |
2354 | merge@^1.1.3:
2355 | version "1.2.0"
2356 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2357 |
2358 | micromatch@^2.1.5, micromatch@^2.3.11:
2359 | version "2.3.11"
2360 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2361 | dependencies:
2362 | arr-diff "^2.0.0"
2363 | array-unique "^0.2.1"
2364 | braces "^1.8.2"
2365 | expand-brackets "^0.1.4"
2366 | extglob "^0.3.1"
2367 | filename-regex "^2.0.0"
2368 | is-extglob "^1.0.0"
2369 | is-glob "^2.0.1"
2370 | kind-of "^3.0.2"
2371 | normalize-path "^2.0.1"
2372 | object.omit "^2.0.0"
2373 | parse-glob "^3.0.4"
2374 | regex-cache "^0.4.2"
2375 |
2376 | mime-db@~1.33.0:
2377 | version "1.33.0"
2378 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
2379 |
2380 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7:
2381 | version "2.1.18"
2382 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
2383 | dependencies:
2384 | mime-db "~1.33.0"
2385 |
2386 | mimic-fn@^1.0.0:
2387 | version "1.2.0"
2388 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2389 |
2390 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2391 | version "3.0.4"
2392 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2393 | dependencies:
2394 | brace-expansion "^1.1.7"
2395 |
2396 | minimist@0.0.8:
2397 | version "0.0.8"
2398 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2399 |
2400 | minimist@^1.1.1, minimist@^1.2.0:
2401 | version "1.2.0"
2402 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2403 |
2404 | minimist@~0.0.1:
2405 | version "0.0.10"
2406 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2407 |
2408 | "mkdirp@>=0.5 0", mkdirp@^0.5.1:
2409 | version "0.5.1"
2410 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2411 | dependencies:
2412 | minimist "0.0.8"
2413 |
2414 | ms@2.0.0:
2415 | version "2.0.0"
2416 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2417 |
2418 | nan@^2.3.0:
2419 | version "2.9.2"
2420 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866"
2421 |
2422 | natural-compare@^1.4.0:
2423 | version "1.4.0"
2424 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2425 |
2426 | nearley@^2.7.10:
2427 | version "2.13.0"
2428 | resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.13.0.tgz#6e7b0f4e68bfc3e74c99eaef2eda39e513143439"
2429 | dependencies:
2430 | nomnom "~1.6.2"
2431 | railroad-diagrams "^1.0.0"
2432 | randexp "0.4.6"
2433 | semver "^5.4.1"
2434 |
2435 | node-fetch@^1.0.1:
2436 | version "1.7.3"
2437 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
2438 | dependencies:
2439 | encoding "^0.1.11"
2440 | is-stream "^1.0.1"
2441 |
2442 | node-int64@^0.4.0:
2443 | version "0.4.0"
2444 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2445 |
2446 | node-notifier@^5.2.1:
2447 | version "5.2.1"
2448 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea"
2449 | dependencies:
2450 | growly "^1.3.0"
2451 | semver "^5.4.1"
2452 | shellwords "^0.1.1"
2453 | which "^1.3.0"
2454 |
2455 | node-pre-gyp@^0.6.39:
2456 | version "0.6.39"
2457 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
2458 | dependencies:
2459 | detect-libc "^1.0.2"
2460 | hawk "3.1.3"
2461 | mkdirp "^0.5.1"
2462 | nopt "^4.0.1"
2463 | npmlog "^4.0.2"
2464 | rc "^1.1.7"
2465 | request "2.81.0"
2466 | rimraf "^2.6.1"
2467 | semver "^5.3.0"
2468 | tar "^2.2.1"
2469 | tar-pack "^3.4.0"
2470 |
2471 | nomnom@~1.6.2:
2472 | version "1.6.2"
2473 | resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.6.2.tgz#84a66a260174408fc5b77a18f888eccc44fb6971"
2474 | dependencies:
2475 | colors "0.5.x"
2476 | underscore "~1.4.4"
2477 |
2478 | nopt@^4.0.1:
2479 | version "4.0.1"
2480 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2481 | dependencies:
2482 | abbrev "1"
2483 | osenv "^0.1.4"
2484 |
2485 | normalize-package-data@^2.3.2:
2486 | version "2.4.0"
2487 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2488 | dependencies:
2489 | hosted-git-info "^2.1.4"
2490 | is-builtin-module "^1.0.0"
2491 | semver "2 || 3 || 4 || 5"
2492 | validate-npm-package-license "^3.0.1"
2493 |
2494 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2495 | version "2.1.1"
2496 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2497 | dependencies:
2498 | remove-trailing-separator "^1.0.1"
2499 |
2500 | npm-run-path@^2.0.0:
2501 | version "2.0.2"
2502 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2503 | dependencies:
2504 | path-key "^2.0.0"
2505 |
2506 | npmlog@^4.0.2:
2507 | version "4.1.2"
2508 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2509 | dependencies:
2510 | are-we-there-yet "~1.1.2"
2511 | console-control-strings "~1.1.0"
2512 | gauge "~2.7.3"
2513 | set-blocking "~2.0.0"
2514 |
2515 | nth-check@~1.0.1:
2516 | version "1.0.1"
2517 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
2518 | dependencies:
2519 | boolbase "~1.0.0"
2520 |
2521 | number-is-nan@^1.0.0:
2522 | version "1.0.1"
2523 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2524 |
2525 | nwmatcher@^1.4.3:
2526 | version "1.4.3"
2527 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
2528 |
2529 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2530 | version "0.8.2"
2531 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2532 |
2533 | object-assign@^4.1.0, object-assign@^4.1.1:
2534 | version "4.1.1"
2535 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2536 |
2537 | object-inspect@^1.5.0:
2538 | version "1.5.0"
2539 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.5.0.tgz#9d876c11e40f485c79215670281b767488f9bfe3"
2540 |
2541 | object-is@^1.0.1:
2542 | version "1.0.1"
2543 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6"
2544 |
2545 | object-keys@^1.0.11, object-keys@^1.0.8:
2546 | version "1.0.11"
2547 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2548 |
2549 | object.assign@^4.0.4, object.assign@^4.1.0:
2550 | version "4.1.0"
2551 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
2552 | dependencies:
2553 | define-properties "^1.1.2"
2554 | function-bind "^1.1.1"
2555 | has-symbols "^1.0.0"
2556 | object-keys "^1.0.11"
2557 |
2558 | object.entries@^1.0.4:
2559 | version "1.0.4"
2560 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f"
2561 | dependencies:
2562 | define-properties "^1.1.2"
2563 | es-abstract "^1.6.1"
2564 | function-bind "^1.1.0"
2565 | has "^1.0.1"
2566 |
2567 | object.getownpropertydescriptors@^2.0.3:
2568 | version "2.0.3"
2569 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2570 | dependencies:
2571 | define-properties "^1.1.2"
2572 | es-abstract "^1.5.1"
2573 |
2574 | object.omit@^2.0.0:
2575 | version "2.0.1"
2576 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2577 | dependencies:
2578 | for-own "^0.1.4"
2579 | is-extendable "^0.1.1"
2580 |
2581 | object.values@^1.0.4:
2582 | version "1.0.4"
2583 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a"
2584 | dependencies:
2585 | define-properties "^1.1.2"
2586 | es-abstract "^1.6.1"
2587 | function-bind "^1.1.0"
2588 | has "^1.0.1"
2589 |
2590 | once@^1.3.0, once@^1.3.3, once@^1.4.0:
2591 | version "1.4.0"
2592 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2593 | dependencies:
2594 | wrappy "1"
2595 |
2596 | optimist@^0.6.1:
2597 | version "0.6.1"
2598 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2599 | dependencies:
2600 | minimist "~0.0.1"
2601 | wordwrap "~0.0.2"
2602 |
2603 | optionator@^0.8.1:
2604 | version "0.8.2"
2605 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2606 | dependencies:
2607 | deep-is "~0.1.3"
2608 | fast-levenshtein "~2.0.4"
2609 | levn "~0.3.0"
2610 | prelude-ls "~1.1.2"
2611 | type-check "~0.3.2"
2612 | wordwrap "~1.0.0"
2613 |
2614 | os-homedir@^1.0.0:
2615 | version "1.0.2"
2616 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2617 |
2618 | os-locale@^2.0.0:
2619 | version "2.1.0"
2620 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2621 | dependencies:
2622 | execa "^0.7.0"
2623 | lcid "^1.0.0"
2624 | mem "^1.1.0"
2625 |
2626 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
2627 | version "1.0.2"
2628 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2629 |
2630 | osenv@^0.1.4:
2631 | version "0.1.5"
2632 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
2633 | dependencies:
2634 | os-homedir "^1.0.0"
2635 | os-tmpdir "^1.0.0"
2636 |
2637 | p-finally@^1.0.0:
2638 | version "1.0.0"
2639 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2640 |
2641 | p-limit@^1.1.0:
2642 | version "1.2.0"
2643 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
2644 | dependencies:
2645 | p-try "^1.0.0"
2646 |
2647 | p-locate@^2.0.0:
2648 | version "2.0.0"
2649 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2650 | dependencies:
2651 | p-limit "^1.1.0"
2652 |
2653 | p-try@^1.0.0:
2654 | version "1.0.0"
2655 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2656 |
2657 | parse-glob@^3.0.4:
2658 | version "3.0.4"
2659 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2660 | dependencies:
2661 | glob-base "^0.3.0"
2662 | is-dotfile "^1.0.0"
2663 | is-extglob "^1.0.0"
2664 | is-glob "^2.0.0"
2665 |
2666 | parse-json@^2.2.0:
2667 | version "2.2.0"
2668 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2669 | dependencies:
2670 | error-ex "^1.2.0"
2671 |
2672 | parse5@4.0.0:
2673 | version "4.0.0"
2674 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
2675 |
2676 | parse5@^3.0.1:
2677 | version "3.0.3"
2678 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c"
2679 | dependencies:
2680 | "@types/node" "*"
2681 |
2682 | path-exists@^2.0.0:
2683 | version "2.1.0"
2684 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2685 | dependencies:
2686 | pinkie-promise "^2.0.0"
2687 |
2688 | path-exists@^3.0.0:
2689 | version "3.0.0"
2690 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2691 |
2692 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2693 | version "1.0.1"
2694 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2695 |
2696 | path-key@^2.0.0:
2697 | version "2.0.1"
2698 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2699 |
2700 | path-parse@^1.0.5:
2701 | version "1.0.5"
2702 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2703 |
2704 | path-type@^1.0.0:
2705 | version "1.1.0"
2706 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2707 | dependencies:
2708 | graceful-fs "^4.1.2"
2709 | pify "^2.0.0"
2710 | pinkie-promise "^2.0.0"
2711 |
2712 | performance-now@^0.2.0:
2713 | version "0.2.0"
2714 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2715 |
2716 | performance-now@^2.1.0:
2717 | version "2.1.0"
2718 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2719 |
2720 | pify@^2.0.0:
2721 | version "2.3.0"
2722 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2723 |
2724 | pinkie-promise@^2.0.0:
2725 | version "2.0.1"
2726 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2727 | dependencies:
2728 | pinkie "^2.0.0"
2729 |
2730 | pinkie@^2.0.0:
2731 | version "2.0.4"
2732 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2733 |
2734 | pkg-dir@^2.0.0:
2735 | version "2.0.0"
2736 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2737 | dependencies:
2738 | find-up "^2.1.0"
2739 |
2740 | pn@^1.1.0:
2741 | version "1.1.0"
2742 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
2743 |
2744 | prelude-ls@~1.1.2:
2745 | version "1.1.2"
2746 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2747 |
2748 | preserve@^0.2.0:
2749 | version "0.2.0"
2750 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2751 |
2752 | pretty-format@^22.4.0:
2753 | version "22.4.0"
2754 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.0.tgz#237b1f7e1c50ed03bc65c03ccc29d7c8bb7beb94"
2755 | dependencies:
2756 | ansi-regex "^3.0.0"
2757 | ansi-styles "^3.2.0"
2758 |
2759 | private@^0.1.6, private@^0.1.7:
2760 | version "0.1.8"
2761 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2762 |
2763 | process-nextick-args@~2.0.0:
2764 | version "2.0.0"
2765 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
2766 |
2767 | promise@^7.1.1:
2768 | version "7.3.1"
2769 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
2770 | dependencies:
2771 | asap "~2.0.3"
2772 |
2773 | prop-types@^15.6.0:
2774 | version "15.6.1"
2775 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca"
2776 | dependencies:
2777 | fbjs "^0.8.16"
2778 | loose-envify "^1.3.1"
2779 | object-assign "^4.1.1"
2780 |
2781 | pseudomap@^1.0.2:
2782 | version "1.0.2"
2783 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2784 |
2785 | punycode@^1.4.1:
2786 | version "1.4.1"
2787 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2788 |
2789 | punycode@^2.1.0:
2790 | version "2.1.0"
2791 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
2792 |
2793 | qs@~6.4.0:
2794 | version "6.4.0"
2795 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2796 |
2797 | qs@~6.5.1:
2798 | version "6.5.1"
2799 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2800 |
2801 | raf@^3.4.0:
2802 | version "3.4.0"
2803 | resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575"
2804 | dependencies:
2805 | performance-now "^2.1.0"
2806 |
2807 | railroad-diagrams@^1.0.0:
2808 | version "1.0.0"
2809 | resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
2810 |
2811 | randexp@0.4.6:
2812 | version "0.4.6"
2813 | resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
2814 | dependencies:
2815 | discontinuous-range "1.0.0"
2816 | ret "~0.1.10"
2817 |
2818 | randomatic@^1.1.3:
2819 | version "1.1.7"
2820 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2821 | dependencies:
2822 | is-number "^3.0.0"
2823 | kind-of "^4.0.0"
2824 |
2825 | rc@^1.1.7:
2826 | version "1.2.5"
2827 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd"
2828 | dependencies:
2829 | deep-extend "~0.4.0"
2830 | ini "~1.3.0"
2831 | minimist "^1.2.0"
2832 | strip-json-comments "~2.0.1"
2833 |
2834 | react-dom@^16.2.0:
2835 | version "16.2.0"
2836 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.2.0.tgz#69003178601c0ca19b709b33a83369fe6124c044"
2837 | dependencies:
2838 | fbjs "^0.8.16"
2839 | loose-envify "^1.1.0"
2840 | object-assign "^4.1.1"
2841 | prop-types "^15.6.0"
2842 |
2843 | react-reconciler@^0.7.0:
2844 | version "0.7.0"
2845 | resolved "https://registry.yarnpkg.com/react-reconciler/-/react-reconciler-0.7.0.tgz#9614894103e5f138deeeb5eabaf3ee80eb1d026d"
2846 | dependencies:
2847 | fbjs "^0.8.16"
2848 | loose-envify "^1.1.0"
2849 | object-assign "^4.1.1"
2850 | prop-types "^15.6.0"
2851 |
2852 | react-test-renderer@^16.0.0-0:
2853 | version "16.2.0"
2854 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.2.0.tgz#bddf259a6b8fcd8555f012afc8eacc238872a211"
2855 | dependencies:
2856 | fbjs "^0.8.16"
2857 | object-assign "^4.1.1"
2858 | prop-types "^15.6.0"
2859 |
2860 | react@^16.2.0:
2861 | version "16.2.0"
2862 | resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba"
2863 | dependencies:
2864 | fbjs "^0.8.16"
2865 | loose-envify "^1.1.0"
2866 | object-assign "^4.1.1"
2867 | prop-types "^15.6.0"
2868 |
2869 | read-pkg-up@^1.0.1:
2870 | version "1.0.1"
2871 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2872 | dependencies:
2873 | find-up "^1.0.0"
2874 | read-pkg "^1.0.0"
2875 |
2876 | read-pkg@^1.0.0:
2877 | version "1.1.0"
2878 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2879 | dependencies:
2880 | load-json-file "^1.0.0"
2881 | normalize-package-data "^2.3.2"
2882 | path-type "^1.0.0"
2883 |
2884 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4:
2885 | version "2.3.5"
2886 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d"
2887 | dependencies:
2888 | core-util-is "~1.0.0"
2889 | inherits "~2.0.3"
2890 | isarray "~1.0.0"
2891 | process-nextick-args "~2.0.0"
2892 | safe-buffer "~5.1.1"
2893 | string_decoder "~1.0.3"
2894 | util-deprecate "~1.0.1"
2895 |
2896 | realpath-native@^1.0.0:
2897 | version "1.0.0"
2898 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0"
2899 | dependencies:
2900 | util.promisify "^1.0.0"
2901 |
2902 | regenerate@^1.2.1:
2903 | version "1.3.3"
2904 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
2905 |
2906 | regenerator-runtime@^0.11.0:
2907 | version "0.11.1"
2908 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
2909 |
2910 | regenerator-transform@^0.10.0:
2911 | version "0.10.1"
2912 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2913 | dependencies:
2914 | babel-runtime "^6.18.0"
2915 | babel-types "^6.19.0"
2916 | private "^0.1.6"
2917 |
2918 | regex-cache@^0.4.2:
2919 | version "0.4.4"
2920 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2921 | dependencies:
2922 | is-equal-shallow "^0.1.3"
2923 |
2924 | regexpu-core@^2.0.0:
2925 | version "2.0.0"
2926 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2927 | dependencies:
2928 | regenerate "^1.2.1"
2929 | regjsgen "^0.2.0"
2930 | regjsparser "^0.1.4"
2931 |
2932 | regjsgen@^0.2.0:
2933 | version "0.2.0"
2934 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2935 |
2936 | regjsparser@^0.1.4:
2937 | version "0.1.5"
2938 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2939 | dependencies:
2940 | jsesc "~0.5.0"
2941 |
2942 | remove-trailing-separator@^1.0.1:
2943 | version "1.1.0"
2944 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2945 |
2946 | repeat-element@^1.1.2:
2947 | version "1.1.2"
2948 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2949 |
2950 | repeat-string@^1.5.2:
2951 | version "1.6.1"
2952 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2953 |
2954 | repeating@^2.0.0:
2955 | version "2.0.1"
2956 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2957 | dependencies:
2958 | is-finite "^1.0.0"
2959 |
2960 | request-promise-core@1.1.1:
2961 | version "1.1.1"
2962 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
2963 | dependencies:
2964 | lodash "^4.13.1"
2965 |
2966 | request-promise-native@^1.0.5:
2967 | version "1.0.5"
2968 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
2969 | dependencies:
2970 | request-promise-core "1.1.1"
2971 | stealthy-require "^1.1.0"
2972 | tough-cookie ">=2.3.3"
2973 |
2974 | request@2.81.0:
2975 | version "2.81.0"
2976 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2977 | dependencies:
2978 | aws-sign2 "~0.6.0"
2979 | aws4 "^1.2.1"
2980 | caseless "~0.12.0"
2981 | combined-stream "~1.0.5"
2982 | extend "~3.0.0"
2983 | forever-agent "~0.6.1"
2984 | form-data "~2.1.1"
2985 | har-validator "~4.2.1"
2986 | hawk "~3.1.3"
2987 | http-signature "~1.1.0"
2988 | is-typedarray "~1.0.0"
2989 | isstream "~0.1.2"
2990 | json-stringify-safe "~5.0.1"
2991 | mime-types "~2.1.7"
2992 | oauth-sign "~0.8.1"
2993 | performance-now "^0.2.0"
2994 | qs "~6.4.0"
2995 | safe-buffer "^5.0.1"
2996 | stringstream "~0.0.4"
2997 | tough-cookie "~2.3.0"
2998 | tunnel-agent "^0.6.0"
2999 | uuid "^3.0.0"
3000 |
3001 | request@^2.83.0:
3002 | version "2.83.0"
3003 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
3004 | dependencies:
3005 | aws-sign2 "~0.7.0"
3006 | aws4 "^1.6.0"
3007 | caseless "~0.12.0"
3008 | combined-stream "~1.0.5"
3009 | extend "~3.0.1"
3010 | forever-agent "~0.6.1"
3011 | form-data "~2.3.1"
3012 | har-validator "~5.0.3"
3013 | hawk "~6.0.2"
3014 | http-signature "~1.2.0"
3015 | is-typedarray "~1.0.0"
3016 | isstream "~0.1.2"
3017 | json-stringify-safe "~5.0.1"
3018 | mime-types "~2.1.17"
3019 | oauth-sign "~0.8.2"
3020 | performance-now "^2.1.0"
3021 | qs "~6.5.1"
3022 | safe-buffer "^5.1.1"
3023 | stringstream "~0.0.5"
3024 | tough-cookie "~2.3.3"
3025 | tunnel-agent "^0.6.0"
3026 | uuid "^3.1.0"
3027 |
3028 | require-directory@^2.1.1:
3029 | version "2.1.1"
3030 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3031 |
3032 | require-main-filename@^1.0.1:
3033 | version "1.0.1"
3034 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3035 |
3036 | require-relative@^0.8.7:
3037 | version "0.8.7"
3038 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de"
3039 |
3040 | resolve-cwd@^2.0.0:
3041 | version "2.0.0"
3042 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3043 | dependencies:
3044 | resolve-from "^3.0.0"
3045 |
3046 | resolve-from@^3.0.0:
3047 | version "3.0.0"
3048 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3049 |
3050 | resolve@1.1.7:
3051 | version "1.1.7"
3052 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
3053 |
3054 | ret@~0.1.10:
3055 | version "0.1.15"
3056 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3057 |
3058 | right-align@^0.1.1:
3059 | version "0.1.3"
3060 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3061 | dependencies:
3062 | align-text "^0.1.1"
3063 |
3064 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1:
3065 | version "2.6.2"
3066 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3067 | dependencies:
3068 | glob "^7.0.5"
3069 |
3070 | rollup-plugin-babel@^3.0.3:
3071 | version "3.0.3"
3072 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-3.0.3.tgz#63adedc863130327512a4a9006efc2241c5b7c15"
3073 | dependencies:
3074 | rollup-pluginutils "^1.5.0"
3075 |
3076 | rollup-plugin-filesize@^1.5.0:
3077 | version "1.5.0"
3078 | resolved "https://registry.yarnpkg.com/rollup-plugin-filesize/-/rollup-plugin-filesize-1.5.0.tgz#bb5841242d88be57f231c9e8a3a541925392178b"
3079 | dependencies:
3080 | boxen "^1.1.0"
3081 | colors "^1.1.2"
3082 | deep-assign "^2.0.0"
3083 | filesize "^3.5.6"
3084 | gzip-size "^3.0.0"
3085 |
3086 | rollup-plugin-uglify@^3.0.0:
3087 | version "3.0.0"
3088 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-3.0.0.tgz#a34eca24617709c6bf1778e9653baafa06099b86"
3089 | dependencies:
3090 | uglify-es "^3.3.7"
3091 |
3092 | rollup-pluginutils@^1.5.0:
3093 | version "1.5.2"
3094 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408"
3095 | dependencies:
3096 | estree-walker "^0.2.1"
3097 | minimatch "^3.0.2"
3098 |
3099 | rollup@^0.56.5:
3100 | version "0.56.5"
3101 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.56.5.tgz#40fe3cf0cd1659d469baad11f4d5b6336c14ce84"
3102 |
3103 | rst-selector-parser@^2.2.3:
3104 | version "2.2.3"
3105 | resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91"
3106 | dependencies:
3107 | lodash.flattendeep "^4.4.0"
3108 | nearley "^2.7.10"
3109 |
3110 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3111 | version "5.1.1"
3112 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
3113 |
3114 | sane@^2.0.0:
3115 | version "2.4.1"
3116 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.4.1.tgz#29f991208cf28636720efdc584293e7fd66663a5"
3117 | dependencies:
3118 | anymatch "^1.3.0"
3119 | exec-sh "^0.2.0"
3120 | fb-watchman "^2.0.0"
3121 | minimatch "^3.0.2"
3122 | minimist "^1.1.1"
3123 | walker "~1.0.5"
3124 | watch "~0.18.0"
3125 | optionalDependencies:
3126 | fsevents "^1.1.1"
3127 |
3128 | sax@^1.2.4:
3129 | version "1.2.4"
3130 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3131 |
3132 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1:
3133 | version "5.5.0"
3134 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3135 |
3136 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3137 | version "2.0.0"
3138 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3139 |
3140 | setimmediate@^1.0.5:
3141 | version "1.0.5"
3142 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3143 |
3144 | shebang-command@^1.2.0:
3145 | version "1.2.0"
3146 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3147 | dependencies:
3148 | shebang-regex "^1.0.0"
3149 |
3150 | shebang-regex@^1.0.0:
3151 | version "1.0.0"
3152 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3153 |
3154 | shellwords@^0.1.1:
3155 | version "0.1.1"
3156 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
3157 |
3158 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3159 | version "3.0.2"
3160 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3161 |
3162 | slash@^1.0.0:
3163 | version "1.0.0"
3164 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3165 |
3166 | sntp@1.x.x:
3167 | version "1.0.9"
3168 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3169 | dependencies:
3170 | hoek "2.x.x"
3171 |
3172 | sntp@2.x.x:
3173 | version "2.1.0"
3174 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
3175 | dependencies:
3176 | hoek "4.x.x"
3177 |
3178 | source-map-support@^0.4.15:
3179 | version "0.4.18"
3180 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3181 | dependencies:
3182 | source-map "^0.5.6"
3183 |
3184 | source-map-support@^0.5.0:
3185 | version "0.5.3"
3186 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76"
3187 | dependencies:
3188 | source-map "^0.6.0"
3189 |
3190 | source-map@^0.4.4:
3191 | version "0.4.4"
3192 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3193 | dependencies:
3194 | amdefine ">=0.0.4"
3195 |
3196 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
3197 | version "0.5.7"
3198 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3199 |
3200 | source-map@^0.6.0, source-map@~0.6.1:
3201 | version "0.6.1"
3202 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3203 |
3204 | spdx-correct@^3.0.0:
3205 | version "3.0.0"
3206 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
3207 | dependencies:
3208 | spdx-expression-parse "^3.0.0"
3209 | spdx-license-ids "^3.0.0"
3210 |
3211 | spdx-exceptions@^2.1.0:
3212 | version "2.1.0"
3213 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
3214 |
3215 | spdx-expression-parse@^3.0.0:
3216 | version "3.0.0"
3217 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3218 | dependencies:
3219 | spdx-exceptions "^2.1.0"
3220 | spdx-license-ids "^3.0.0"
3221 |
3222 | spdx-license-ids@^3.0.0:
3223 | version "3.0.0"
3224 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
3225 |
3226 | sprintf-js@~1.0.2:
3227 | version "1.0.3"
3228 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3229 |
3230 | sshpk@^1.7.0:
3231 | version "1.13.1"
3232 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
3233 | dependencies:
3234 | asn1 "~0.2.3"
3235 | assert-plus "^1.0.0"
3236 | dashdash "^1.12.0"
3237 | getpass "^0.1.1"
3238 | optionalDependencies:
3239 | bcrypt-pbkdf "^1.0.0"
3240 | ecc-jsbn "~0.1.1"
3241 | jsbn "~0.1.0"
3242 | tweetnacl "~0.14.0"
3243 |
3244 | stack-utils@^1.0.1:
3245 | version "1.0.1"
3246 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
3247 |
3248 | stealthy-require@^1.1.0:
3249 | version "1.1.1"
3250 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
3251 |
3252 | string-length@^2.0.0:
3253 | version "2.0.0"
3254 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
3255 | dependencies:
3256 | astral-regex "^1.0.0"
3257 | strip-ansi "^4.0.0"
3258 |
3259 | string-width@^1.0.1, string-width@^1.0.2:
3260 | version "1.0.2"
3261 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3262 | dependencies:
3263 | code-point-at "^1.0.0"
3264 | is-fullwidth-code-point "^1.0.0"
3265 | strip-ansi "^3.0.0"
3266 |
3267 | string-width@^2.0.0, string-width@^2.1.1:
3268 | version "2.1.1"
3269 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3270 | dependencies:
3271 | is-fullwidth-code-point "^2.0.0"
3272 | strip-ansi "^4.0.0"
3273 |
3274 | string_decoder@~1.0.3:
3275 | version "1.0.3"
3276 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3277 | dependencies:
3278 | safe-buffer "~5.1.0"
3279 |
3280 | stringstream@~0.0.4, stringstream@~0.0.5:
3281 | version "0.0.5"
3282 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3283 |
3284 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3285 | version "3.0.1"
3286 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3287 | dependencies:
3288 | ansi-regex "^2.0.0"
3289 |
3290 | strip-ansi@^4.0.0:
3291 | version "4.0.0"
3292 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3293 | dependencies:
3294 | ansi-regex "^3.0.0"
3295 |
3296 | strip-bom@3.0.0:
3297 | version "3.0.0"
3298 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3299 |
3300 | strip-bom@^2.0.0:
3301 | version "2.0.0"
3302 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3303 | dependencies:
3304 | is-utf8 "^0.2.0"
3305 |
3306 | strip-eof@^1.0.0:
3307 | version "1.0.0"
3308 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3309 |
3310 | strip-json-comments@~2.0.1:
3311 | version "2.0.1"
3312 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3313 |
3314 | supports-color@^2.0.0:
3315 | version "2.0.0"
3316 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3317 |
3318 | supports-color@^3.1.2:
3319 | version "3.2.3"
3320 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3321 | dependencies:
3322 | has-flag "^1.0.0"
3323 |
3324 | supports-color@^5.3.0:
3325 | version "5.3.0"
3326 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0"
3327 | dependencies:
3328 | has-flag "^3.0.0"
3329 |
3330 | symbol-tree@^3.2.2:
3331 | version "3.2.2"
3332 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3333 |
3334 | tar-pack@^3.4.0:
3335 | version "3.4.1"
3336 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
3337 | dependencies:
3338 | debug "^2.2.0"
3339 | fstream "^1.0.10"
3340 | fstream-ignore "^1.0.5"
3341 | once "^1.3.3"
3342 | readable-stream "^2.1.4"
3343 | rimraf "^2.5.1"
3344 | tar "^2.2.1"
3345 | uid-number "^0.0.6"
3346 |
3347 | tar@^2.2.1:
3348 | version "2.2.1"
3349 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3350 | dependencies:
3351 | block-stream "*"
3352 | fstream "^1.0.2"
3353 | inherits "2"
3354 |
3355 | term-size@^1.2.0:
3356 | version "1.2.0"
3357 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
3358 | dependencies:
3359 | execa "^0.7.0"
3360 |
3361 | test-exclude@^4.1.1:
3362 | version "4.2.0"
3363 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.0.tgz#07e3613609a362c74516a717515e13322ab45b3c"
3364 | dependencies:
3365 | arrify "^1.0.1"
3366 | micromatch "^2.3.11"
3367 | object-assign "^4.1.0"
3368 | read-pkg-up "^1.0.1"
3369 | require-main-filename "^1.0.1"
3370 |
3371 | throat@^4.0.0:
3372 | version "4.1.0"
3373 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3374 |
3375 | tmpl@1.0.x:
3376 | version "1.0.4"
3377 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3378 |
3379 | to-fast-properties@^1.0.3:
3380 | version "1.0.3"
3381 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3382 |
3383 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
3384 | version "2.3.4"
3385 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
3386 | dependencies:
3387 | punycode "^1.4.1"
3388 |
3389 | tr46@^1.0.0:
3390 | version "1.0.1"
3391 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
3392 | dependencies:
3393 | punycode "^2.1.0"
3394 |
3395 | trim-right@^1.0.1:
3396 | version "1.0.1"
3397 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3398 |
3399 | tunnel-agent@^0.6.0:
3400 | version "0.6.0"
3401 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3402 | dependencies:
3403 | safe-buffer "^5.0.1"
3404 |
3405 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3406 | version "0.14.5"
3407 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3408 |
3409 | type-check@~0.3.2:
3410 | version "0.3.2"
3411 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3412 | dependencies:
3413 | prelude-ls "~1.1.2"
3414 |
3415 | ua-parser-js@^0.7.9:
3416 | version "0.7.17"
3417 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac"
3418 |
3419 | uglify-es@^3.3.7, uglify-es@^3.3.9:
3420 | version "3.3.9"
3421 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
3422 | dependencies:
3423 | commander "~2.13.0"
3424 | source-map "~0.6.1"
3425 |
3426 | uglify-js@^2.6:
3427 | version "2.8.29"
3428 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3429 | dependencies:
3430 | source-map "~0.5.1"
3431 | yargs "~3.10.0"
3432 | optionalDependencies:
3433 | uglify-to-browserify "~1.0.0"
3434 |
3435 | uglify-to-browserify@~1.0.0:
3436 | version "1.0.2"
3437 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3438 |
3439 | uid-number@^0.0.6:
3440 | version "0.0.6"
3441 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3442 |
3443 | underscore@~1.4.4:
3444 | version "1.4.4"
3445 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604"
3446 |
3447 | util-deprecate@~1.0.1:
3448 | version "1.0.2"
3449 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3450 |
3451 | util.promisify@^1.0.0:
3452 | version "1.0.0"
3453 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
3454 | dependencies:
3455 | define-properties "^1.1.2"
3456 | object.getownpropertydescriptors "^2.0.3"
3457 |
3458 | uuid@^3.0.0, uuid@^3.1.0:
3459 | version "3.2.1"
3460 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
3461 |
3462 | validate-npm-package-license@^3.0.1:
3463 | version "3.0.3"
3464 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
3465 | dependencies:
3466 | spdx-correct "^3.0.0"
3467 | spdx-expression-parse "^3.0.0"
3468 |
3469 | verror@1.10.0:
3470 | version "1.10.0"
3471 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3472 | dependencies:
3473 | assert-plus "^1.0.0"
3474 | core-util-is "1.0.2"
3475 | extsprintf "^1.2.0"
3476 |
3477 | w3c-hr-time@^1.0.1:
3478 | version "1.0.1"
3479 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
3480 | dependencies:
3481 | browser-process-hrtime "^0.1.2"
3482 |
3483 | walker@~1.0.5:
3484 | version "1.0.7"
3485 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3486 | dependencies:
3487 | makeerror "1.0.x"
3488 |
3489 | watch@~0.18.0:
3490 | version "0.18.0"
3491 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
3492 | dependencies:
3493 | exec-sh "^0.2.0"
3494 | minimist "^1.2.0"
3495 |
3496 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2:
3497 | version "4.0.2"
3498 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
3499 |
3500 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
3501 | version "1.0.3"
3502 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3"
3503 | dependencies:
3504 | iconv-lite "0.4.19"
3505 |
3506 | whatwg-fetch@>=0.10.0:
3507 | version "2.0.3"
3508 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
3509 |
3510 | whatwg-url@^6.4.0:
3511 | version "6.4.0"
3512 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08"
3513 | dependencies:
3514 | lodash.sortby "^4.7.0"
3515 | tr46 "^1.0.0"
3516 | webidl-conversions "^4.0.1"
3517 |
3518 | which-module@^2.0.0:
3519 | version "2.0.0"
3520 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3521 |
3522 | which@^1.2.12, which@^1.2.9, which@^1.3.0:
3523 | version "1.3.0"
3524 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3525 | dependencies:
3526 | isexe "^2.0.0"
3527 |
3528 | wide-align@^1.1.0:
3529 | version "1.1.2"
3530 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3531 | dependencies:
3532 | string-width "^1.0.2"
3533 |
3534 | widest-line@^2.0.0:
3535 | version "2.0.0"
3536 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273"
3537 | dependencies:
3538 | string-width "^2.1.1"
3539 |
3540 | window-size@0.1.0:
3541 | version "0.1.0"
3542 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3543 |
3544 | wordwrap@0.0.2:
3545 | version "0.0.2"
3546 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3547 |
3548 | wordwrap@~0.0.2:
3549 | version "0.0.3"
3550 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3551 |
3552 | wordwrap@~1.0.0:
3553 | version "1.0.0"
3554 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3555 |
3556 | wrap-ansi@^2.0.0:
3557 | version "2.1.0"
3558 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3559 | dependencies:
3560 | string-width "^1.0.1"
3561 | strip-ansi "^3.0.1"
3562 |
3563 | wrappy@1:
3564 | version "1.0.2"
3565 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3566 |
3567 | write-file-atomic@^2.1.0:
3568 | version "2.3.0"
3569 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
3570 | dependencies:
3571 | graceful-fs "^4.1.11"
3572 | imurmurhash "^0.1.4"
3573 | signal-exit "^3.0.2"
3574 |
3575 | ws@^4.0.0:
3576 | version "4.1.0"
3577 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289"
3578 | dependencies:
3579 | async-limiter "~1.0.0"
3580 | safe-buffer "~5.1.0"
3581 |
3582 | xml-name-validator@^3.0.0:
3583 | version "3.0.0"
3584 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
3585 |
3586 | y18n@^3.2.1:
3587 | version "3.2.1"
3588 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3589 |
3590 | yallist@^2.1.2:
3591 | version "2.1.2"
3592 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3593 |
3594 | yargs-parser@^8.1.0:
3595 | version "8.1.0"
3596 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
3597 | dependencies:
3598 | camelcase "^4.1.0"
3599 |
3600 | yargs@^10.0.3:
3601 | version "10.1.2"
3602 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
3603 | dependencies:
3604 | cliui "^4.0.0"
3605 | decamelize "^1.1.1"
3606 | find-up "^2.1.0"
3607 | get-caller-file "^1.0.1"
3608 | os-locale "^2.0.0"
3609 | require-directory "^2.1.1"
3610 | require-main-filename "^1.0.1"
3611 | set-blocking "^2.0.0"
3612 | string-width "^2.0.0"
3613 | which-module "^2.0.0"
3614 | y18n "^3.2.1"
3615 | yargs-parser "^8.1.0"
3616 |
3617 | yargs@~3.10.0:
3618 | version "3.10.0"
3619 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3620 | dependencies:
3621 | camelcase "^1.0.2"
3622 | cliui "^2.1.0"
3623 | decamelize "^1.0.0"
3624 | window-size "0.1.0"
3625 |
--------------------------------------------------------------------------------