├── .npmignore ├── .gitignore ├── CONTRIBUTING.md ├── examples └── basic │ ├── src.js │ └── index.html ├── .travis.yml ├── LICENSE.md ├── karma.conf.js ├── bundle.js ├── CODE_OF_CONDUCT.md ├── README.md ├── package.json ├── tests └── index.js ├── src └── index.js └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .travis.yml 3 | bundle.js 4 | coverage/ 5 | src/ 6 | tests/ 7 | yarn.lock 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | cjs/ 3 | dist/ 4 | examples/*/dist.js 5 | modules/ 6 | node_modules/ 7 | yarn-error.log 8 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contribution guidelines will be added as this project develops. 4 | 5 | For now there are two rules: 6 | 7 | 1. Follow the [code of conduct](./CODE_OF_CONDUCT.md) 8 | 2. Open an issue for discussion before submitting a pull request 9 | 10 | Thanks! 11 | -------------------------------------------------------------------------------- /examples/basic/src.js: -------------------------------------------------------------------------------- 1 | import { frameShape, node } from '../../src' 2 | 3 | const svg = document.querySelector('svg') 4 | const rect = svg.querySelector('rect') 5 | const shape = frameShape(rect) 6 | 7 | setTimeout(() => { 8 | svg.removeChild(rect) 9 | }, 2500) 10 | 11 | setTimeout(() => { 12 | shape.attributes.stroke = 'red' 13 | svg.appendChild(node(shape)) 14 | }, 5000) 15 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: 3 | directories: 4 | - node_modules 5 | notifications: 6 | email: false 7 | node_js: 8 | - '10' 9 | - '8' 10 | - '6' 11 | dist: trusty 12 | sudo: required 13 | addons: 14 | chrome: stable 15 | install: 16 | - yarn install --ignore-engines 17 | before_script: 18 | - npm prune 19 | script: 20 | - npm run lint 21 | - npm test 22 | after_success: 23 | - npm run coveralls 24 | - npm run semantic-release 25 | branches: 26 | except: 27 | - /^v\d+\.\d+\.\d+$/ 28 | -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Basic example 4 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright © 2017 Colin Meinke 5 | 6 | Permission is hereby granted, free of charge, to any person 7 | obtaining a copy of this software and associated documentation 8 | files (the “Software”), to deal in the Software without 9 | restriction, including without limitation the rights to use, 10 | copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the 12 | Software is furnished to do so, subject to the following 13 | conditions: 14 | 15 | The above copyright notice and this permission notice shall be 16 | included in all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 20 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 22 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 23 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 24 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 | OTHER DEALINGS IN THE SOFTWARE. 26 | -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- 1 | const babel = require('rollup-plugin-babel') 2 | const commonJs = require('rollup-plugin-commonjs') 3 | const replace = require('rollup-plugin-replace') 4 | const resolve = require('rollup-plugin-node-resolve') 5 | 6 | module.exports = config => { 7 | config.set({ 8 | autoWatch: false, 9 | browsers: [ 'ChromeHeadless' ], 10 | colors: true, 11 | concurrency: Infinity, 12 | coverageReporter: { 13 | reporters: [ 14 | { type: 'lcov' }, 15 | { type: 'json' }, 16 | { type: 'clover' }, 17 | { type: 'text-summary' } 18 | ], 19 | subdir: '.' 20 | }, 21 | files: [ 22 | { pattern: 'src/**/*.js', included: false }, 23 | 'tests/**/*.js' 24 | ], 25 | frameworks: [ 'mocha', 'chai' ], 26 | logLevel: config.LOG_INFO, 27 | mochaReporter: { 28 | showDiff: true 29 | }, 30 | port: 9876, 31 | preprocessors: { 32 | 'src/**/*.js': [ 'rollup' ], 33 | 'tests/**/*.js': [ 'rollup' ] 34 | }, 35 | reporters: [ 'mocha', 'coverage' ], 36 | rollupPreprocessor: { 37 | exports: 'named', 38 | format: 'iife', 39 | moduleName: 'wilderness', 40 | plugins: [ 41 | babel({ 42 | exclude: 'node_modules/**', 43 | plugins: [ 44 | 'transform-object-rest-spread', 45 | 'external-helpers', 46 | [ 'istanbul', { 'exclude': [ 'node_modules/**', 'tests/**/*.js' ] } ] 47 | ], 48 | presets: [[ 'es2015', { 'modules': false } ]] 49 | }), 50 | commonJs(), 51 | resolve({ module: true }), 52 | replace({ '__DEV__': true }) 53 | ], 54 | sourceMap: 'inline' 55 | } 56 | }) 57 | } 58 | -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- 1 | const babel = require('rollup-plugin-babel') 2 | const commonJs = require('rollup-plugin-commonjs') 3 | const fs = require('fs') 4 | const Promise = require('bluebird') 5 | const replace = require('rollup-plugin-replace') 6 | const resolve = require('rollup-plugin-node-resolve') 7 | const rollup = require('rollup').rollup 8 | const uglify = require('rollup-plugin-uglify') 9 | 10 | Promise.promisifyAll(fs) 11 | 12 | const build = ({ dest, entry, format, plugins }) => new Promise((resolve, reject) => { 13 | rollup({ entry, plugins }) 14 | .then(bundle => bundle.write({ dest, format, moduleName: 'WildernessDomNode' }) 15 | .then(resolve)) 16 | .catch(reject) 17 | }) 18 | 19 | Promise.resolve(console.log('Creating UMD development bundle ...')) 20 | .then(() => build({ 21 | dest: 'dist/wilderness-dom-node.development.js', 22 | entry: 'src/index.js', 23 | format: 'umd', 24 | plugins: [ 25 | babel({ 26 | exclude: 'node_modules/**', 27 | plugins: [ 'transform-object-rest-spread', 'external-helpers' ], 28 | presets: [[ 'es2015', { 'modules': false } ]] 29 | }), 30 | commonJs(), 31 | resolve({ module: true }), 32 | replace({ '__DEV__': true }) 33 | ] 34 | })) 35 | .then(() => Promise.resolve(console.log('UMD development bundle complete'))) 36 | .then(() => Promise.resolve(console.log('Creating UMD production bundle ...'))) 37 | .then(() => build({ 38 | dest: 'dist/wilderness-dom-node.production.js', 39 | entry: 'src/index.js', 40 | format: 'umd', 41 | plugins: [ 42 | babel({ 43 | exclude: 'node_modules/**', 44 | plugins: [ 'transform-object-rest-spread' ], 45 | presets: [[ 'es2015', { 'modules': false } ]] 46 | }), 47 | commonJs(), 48 | resolve({ module: true }), 49 | replace({ '__DEV__': false }), 50 | uglify() 51 | ] 52 | })) 53 | .then(() => Promise.resolve(console.log('UMD production bundle complete'))) 54 | .then(() => Promise.resolve(console.log('Creating example bundles ...'))) 55 | .then(() => fs.readdirAsync('examples') 56 | .then(files => Promise.filter(files, f => fs.lstatAsync(`examples/${f}`).then(x => Promise.resolve(x.isDirectory())))) 57 | .then(directories => Promise.all(directories.map(dir => ( 58 | build({ 59 | dest: `examples/${dir}/dist.js`, 60 | entry: `examples/${dir}/src.js`, 61 | format: 'iife', 62 | plugins: [ 63 | babel({ 64 | exclude: 'node_modules/**', 65 | plugins: [ 'transform-object-rest-spread' ], 66 | presets: [[ 'es2015', { 'modules': false } ]] 67 | }), 68 | commonJs(), 69 | resolve({ module: true }), 70 | replace({ '__DEV__': true }) 71 | ] 72 | }) 73 | )))) 74 | .then(() => Promise.resolve(console.log('Example bundles complete'))) 75 | .catch(e => console.error(e))) 76 | -------------------------------------------------------------------------------- /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 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at hello@colinmeinke.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wilderness DOM node · [![gzip size](http://img.badgesize.io/https://unpkg.com/wilderness-dom-node/dist/wilderness-dom-node.production.js?compression=gzip&label=gzip%20size&style=flat)](https://unpkg.com/wilderness-dom-node/dist/wilderness-dom-node.production.js) [![test coverage](https://img.shields.io/coveralls/colinmeinke/wilderness-dom-node/master.svg?style=flat)](https://coveralls.io/github/colinmeinke/wilderness-dom-node) [![travisci](https://img.shields.io/travis/colinmeinke/wilderness-dom-node.svg?style=flat)](https://travis-ci.org/colinmeinke/wilderness-dom-node) [![npm version](https://img.shields.io/npm/v/wilderness-dom-node.svg?style=flat)](https://www.npmjs.com/package/wilderness-dom-node) 2 | 3 | A set of functions to convert between SVG DOM nodes, 4 | Plain Shape Objects and Frame Shapes. 5 | 6 | ## Definitions 7 | 8 | ### Plain Shape Object 9 | 10 | A Plain Shape Object is the most basic way of defining shapes within 11 | [Wilderness](https://github.com/colinmeinke/wilderness). 12 | The core properties of a Plain Shape Object can be found in the 13 | [SVG Points spec](https://github.com/colinmeinke/svg-points#readme). 14 | 15 | ### Frame Shape 16 | 17 | A Frame Shape is an object commonly used internally within Wilderness. 18 | A Frame Shape has two properties, `attributes` and a `points` 19 | ([see the points spec](https://github.com/colinmeinke/points)). 20 | 21 | ## Functions 22 | 23 | ### plainShapeObject 24 | 25 | The `plainShapeObject` function converts a SVG DOM node to a Plain 26 | Shape Object. It will also add all of the node's HTML attributes as 27 | properties of the Plain Shape Object. 28 | 29 | ```js 30 | import { plainShapeObject } from 'wilderness-dom-node' 31 | 32 | console.log( 33 | plainShapeObject(document.querySelector('rect')) 34 | ) 35 | 36 | // { 37 | // type: 'rect', 38 | // x: 20, 39 | // y: 20, 40 | // width: 60, 41 | // height: 60, 42 | // fill: 'yellow' 43 | // } 44 | ``` 45 | 46 | ### frameShape 47 | 48 | The `frameShape` function converts a SVG DOM node to a Frame Shape. 49 | 50 | ```js 51 | import { frameShape } from 'wilderness-dom-node' 52 | 53 | console.log( 54 | frameShape(document.querySelector('rect')) 55 | ) 56 | 57 | // { 58 | // attributes: { 59 | // fill: 'yellow' 60 | // }, 61 | // points: [ 62 | // { x: 20, y: 20, moveTo: true } 63 | // { x: 80, y: 20 }, 64 | // { x: 80, y: 80 }, 65 | // { x: 20, y: 80 }, 66 | // { x: 20, y: 20 } 67 | // ] 68 | // } 69 | ``` 70 | 71 | ### node 72 | 73 | The `node` function converts a Frame Shape to a SVG DOM node. 74 | 75 | ```js 76 | import { node } from 'wilderness-dom-node' 77 | 78 | const frameShape = { 79 | attributes: { 80 | fill: 'yellow' 81 | }, 82 | points: [ 83 | { x: 20, y: 20, moveTo: true } 84 | { x: 80, y: 20 }, 85 | { x: 80, y: 80 }, 86 | { x: 20, y: 80 }, 87 | { x: 20, y: 20 } 88 | ] 89 | } 90 | 91 | document.querySelector('svg').appendChild( 92 | node(frameShape) 93 | ) 94 | ``` 95 | 96 | ### updateNode 97 | 98 | The `updateNode` function updates the attributes of a SVG DOM node given 99 | a Frame Shape. 100 | 101 | ```js 102 | import { updateNode } from 'wilderness-dom-node' 103 | 104 | const frameShape = { 105 | attributes: { 106 | fill: 'yellow' 107 | }, 108 | points: [ 109 | { x: 20, y: 20, moveTo: true } 110 | { x: 80, y: 20 }, 111 | { x: 80, y: 80 }, 112 | { x: 20, y: 80 }, 113 | { x: 20, y: 20 } 114 | ] 115 | } 116 | 117 | updateNode(document.querySelector('.blue-square'), frameShape) 118 | ``` 119 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": { 3 | "name": "Colin Meinke", 4 | "email": "hello@colinmeinke.com", 5 | "url": "https://colinmeinke.com" 6 | }, 7 | "babel": { 8 | "env": { 9 | "cjs": { 10 | "plugins": [ 11 | [ 12 | "replace-identifiers", 13 | { 14 | "__DEV__": "process.env.NODE_ENV !== 'production'" 15 | } 16 | ], 17 | "transform-object-rest-spread" 18 | ], 19 | "presets": [ 20 | "es2015" 21 | ] 22 | }, 23 | "modules": { 24 | "plugins": [ 25 | [ 26 | "replace-identifiers", 27 | { 28 | "__DEV__": "process.env.NODE_ENV !== 'production'" 29 | } 30 | ], 31 | "transform-object-rest-spread" 32 | ], 33 | "presets": [ 34 | [ 35 | "es2015", 36 | { 37 | "modules": false 38 | } 39 | ] 40 | ] 41 | } 42 | } 43 | }, 44 | "bugs": { 45 | "url": "https://github.com/colinmeinke/wilderness-dom-node/issues" 46 | }, 47 | "config": { 48 | "commitizen": { 49 | "path": "node_modules/cz-conventional-changelog" 50 | } 51 | }, 52 | "dependencies": { 53 | "svg-points": "^6.0.0" 54 | }, 55 | "description": "A set of functions to convert between SVG DOM nodes, Plain Shape Objects and Frame Shapes", 56 | "devDependencies": { 57 | "babel-cli": "^6.24.1", 58 | "babel-plugin-external-helpers": "^6.22.0", 59 | "babel-plugin-inline-replace-variables": "^1.3.1", 60 | "babel-plugin-istanbul": "^4.1.4", 61 | "babel-plugin-replace-identifiers": "^0.1.1", 62 | "babel-plugin-transform-object-rest-spread": "^6.23.0", 63 | "babel-preset-env": "^1.6.0", 64 | "babel-preset-es2015": "^6.24.1", 65 | "bluebird": "^3.5.0", 66 | "chai": "^4.1.0", 67 | "commitizen": "^2.9.6", 68 | "coveralls": "^2.13.1", 69 | "cz-conventional-changelog": "^2.0.0", 70 | "karma": "^1.7.0", 71 | "karma-chai": "^0.1.0", 72 | "karma-chrome-launcher": "^2.2.0", 73 | "karma-coverage": "^1.1.1", 74 | "karma-mocha": "^1.3.0", 75 | "karma-mocha-reporter": "^2.2.3", 76 | "karma-rollup-preprocessor": "^4.0.1", 77 | "mocha": "^3.4.2", 78 | "rimraf": "^2.6.1", 79 | "rollup": "^0.45.2", 80 | "rollup-plugin-babel": "^2.7.1", 81 | "rollup-plugin-commonjs": "^8.0.2", 82 | "rollup-plugin-node-resolve": "^3.0.0", 83 | "rollup-plugin-replace": "^1.1.1", 84 | "rollup-plugin-uglify": "^2.0.1", 85 | "semantic-release": "^15.9.9", 86 | "snazzy": "^7.0.0", 87 | "standard": "^10.0.2", 88 | "travis-deploy-once": "^5.0.2" 89 | }, 90 | "homepage": "https://github.com/colinmeinke/wilderness-dom-node#readme", 91 | "license": "MIT", 92 | "name": "wilderness-dom-node", 93 | "main": "cjs/index.js", 94 | "module": "modules/index.js", 95 | "repository": { 96 | "type": "git", 97 | "url": "https://github.com/colinmeinke/wilderness-dom-node.git" 98 | }, 99 | "scripts": { 100 | "build": "yarn build:bundles && yarn build:cjs && yarn build:modules", 101 | "build:bundles": "node bundle.js", 102 | "build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel src --out-dir cjs", 103 | "build:modules": "NODE_ENV=production BABEL_ENV=modules babel src --out-dir modules", 104 | "commit": "git-cz", 105 | "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", 106 | "fix": "standard --fix", 107 | "lint": "standard --verbose | snazzy", 108 | "prepublish": "npm run tidy && npm run build", 109 | "semantic-release": "semantic-release", 110 | "test": "karma start --single-run --browsers ChromeHeadless karma.conf.js", 111 | "tidy": "rimraf modules cjs dist", 112 | "travis-deploy-once": "travis-deploy-once" 113 | }, 114 | "version": "0.0.0-development" 115 | } 116 | -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- 1 | /* globals describe it expect */ 2 | 3 | import { frameShape, node, plainShapeObject, updateNode } from '../src' 4 | 5 | const createGroup = () => { 6 | const g = document.createElementNS('http://www.w3.org/2000/svg', 'g') 7 | g.appendChild(createPath()) 8 | g.appendChild(createPath()) 9 | return g 10 | } 11 | 12 | const createPath = () => { 13 | const path = document.createElementNS('http://www.w3.org/2000/svg', 'path') 14 | path.setAttribute('d', 'M0,0H10') 15 | return path 16 | } 17 | 18 | describe('frameShape', () => { 19 | it('should throw if not passed a Node', () => { 20 | expect(() => frameShape('potato')).to.throw('el must be a DOM node') 21 | }) 22 | 23 | it('should throw if not passed a valid Node', () => { 24 | const el = document.createElement('div') 25 | expect(() => frameShape(el)).to.throw('el must be an SVG basic shape or group element') 26 | }) 27 | 28 | it('should return a FrameShape with correct attributes', () => { 29 | const el = createPath() 30 | 31 | el.setAttribute('fill', 'yellow') 32 | el.classList.add('potato') 33 | 34 | const { attributes } = frameShape(el) 35 | 36 | expect(attributes).to.have.property('fill') 37 | expect(attributes).to.have.property('class') 38 | expect(attributes.fill).to.equal('yellow') 39 | expect(attributes.class).to.equal('potato') 40 | }) 41 | 42 | it('should return a FrameShape with correct points', () => { 43 | const el = createPath() 44 | const { points } = frameShape(el) 45 | const expectedPoints = [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 46 | expect(points).to.eql(expectedPoints) 47 | }) 48 | 49 | it('should return a group FrameShape with correct attributes', () => { 50 | const el = createGroup() 51 | 52 | el.setAttribute('fill', 'yellow') 53 | el.classList.add('potato') 54 | 55 | const { attributes } = frameShape(el) 56 | 57 | expect(attributes).to.have.property('fill') 58 | expect(attributes).to.have.property('class') 59 | expect(attributes.fill).to.equal('yellow') 60 | expect(attributes.class).to.equal('potato') 61 | }) 62 | 63 | it('should return a group FrameShape without a points property', () => { 64 | const el = createGroup() 65 | expect(frameShape(el)).to.not.have.property('points') 66 | }) 67 | 68 | it('should return a group FrameShape with correct childFrameShapes', () => { 69 | const el = createGroup() 70 | 71 | el.childNodes[ 0 ].setAttribute('fill', 'yellow') 72 | el.childNodes[ 1 ].setAttribute('fill', 'red') 73 | 74 | const { childFrameShapes } = frameShape(el) 75 | 76 | const expectedPoints = [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 77 | 78 | expect(childFrameShapes[ 0 ]).to.have.property('attributes') 79 | expect(childFrameShapes[ 0 ]).to.have.property('points') 80 | expect(childFrameShapes[ 1 ]).to.have.property('attributes') 81 | expect(childFrameShapes[ 1 ]).to.have.property('points') 82 | expect(childFrameShapes[ 0 ].attributes).to.have.property('fill') 83 | expect(childFrameShapes[ 0 ].attributes.fill).to.equal('yellow') 84 | expect(childFrameShapes[ 1 ].attributes).to.have.property('fill') 85 | expect(childFrameShapes[ 1 ].attributes.fill).to.equal('red') 86 | expect(childFrameShapes[ 0 ].points).to.eql(expectedPoints) 87 | expect(childFrameShapes[ 1 ].points).to.eql(expectedPoints) 88 | }) 89 | }) 90 | 91 | describe('node', () => { 92 | it('should throw if FrameShape is not an object', () => { 93 | expect(() => node('potato')).to.throw('frameShape must be of type object') 94 | }) 95 | 96 | it('should throw if FrameShape does not have attributes property', () => { 97 | const frameShp = { points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 98 | expect(() => node(frameShp)).to.throw('frameShape must include an attributes property') 99 | }) 100 | 101 | it('should throw if FrameShape attributes property is invalid', () => { 102 | const frameShp = { attributes: 'potato', points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 103 | expect(() => node(frameShp)).to.throw('frameShape attributes property must be of type object') 104 | }) 105 | 106 | it('should throw if FrameShape does not have a points or childFrameShapes property', () => { 107 | const frameShp = { attributes: {} } 108 | expect(() => node(frameShp)).to.throw('frameShape must have either a points or childFrameShapes property') 109 | }) 110 | 111 | it('should throw if FrameShape points property is invalid', () => { 112 | const frameShp = { attributes: {}, points: 'potato' } 113 | expect(() => node(frameShp)).to.throw('frameShape points property must be of type array') 114 | }) 115 | 116 | it('should throw if childFrameShapes points property is invalid', () => { 117 | expect(() => node({ attributes: {}, childFrameShapes: 'potato' })) 118 | .to.throw('frameShape childFrameShapes property must be of type array') 119 | 120 | expect(() => node({ attributes: {}, childFrameShapes: [ 'potato' ] })) 121 | .to.throw('frameShape childFrameShapes property must be array of frameShapes') 122 | }) 123 | 124 | it('should return a Node with the correct structure', () => { 125 | const el = node({ 126 | attributes: {}, 127 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 128 | }) 129 | 130 | expect(el.nodeName).to.equal('path') 131 | }) 132 | 133 | it('should return a Node with the correct attributes', () => { 134 | const el = node({ 135 | attributes: { fill: 'yellow', 'class': 'potato' }, 136 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 137 | }) 138 | 139 | expect(el.getAttribute('d')).to.equal('M0,0H10') 140 | expect(el.getAttribute('fill')).to.equal('yellow') 141 | expect(el.classList.contains('potato')).to.equal(true) 142 | }) 143 | 144 | it('should return a group Node with the correct structure', () => { 145 | const el = node({ 146 | attributes: {}, 147 | childFrameShapes: [ 148 | { 149 | attributes: {}, 150 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 151 | }, 152 | { 153 | attributes: {}, 154 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 155 | } 156 | ] 157 | }) 158 | 159 | expect(el.nodeName).to.equal('g') 160 | expect(el.childNodes[ 0 ].nodeName).to.equal('path') 161 | expect(el.childNodes[ 1 ].nodeName).to.equal('path') 162 | }) 163 | 164 | it('should return a group Node with the correct attributes', () => { 165 | const el = node({ 166 | attributes: { fill: 'yellow' }, 167 | childFrameShapes: [ 168 | { 169 | attributes: { fill: 'red' }, 170 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 171 | }, 172 | { 173 | attributes: { fill: 'green' }, 174 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 175 | } 176 | ] 177 | }) 178 | 179 | expect(el.getAttribute('fill')).to.equal('yellow') 180 | expect(el.childNodes[ 0 ].getAttribute('fill')).to.equal('red') 181 | expect(el.childNodes[ 0 ].getAttribute('d')).to.equal('M0,0H10') 182 | expect(el.childNodes[ 1 ].getAttribute('fill')).to.equal('green') 183 | expect(el.childNodes[ 1 ].getAttribute('d')).to.equal('M0,0H10') 184 | }) 185 | }) 186 | 187 | describe('plainShapeObject', () => { 188 | it('should throw if not passed a Node', () => { 189 | expect(() => plainShapeObject('potato')).to.throw('el must be a DOM node') 190 | }) 191 | 192 | it('should throw if not passed a valid Node', () => { 193 | const el = document.createElement('div') 194 | expect(() => plainShapeObject(el)).to.throw('el must be an SVG basic shape or group element') 195 | }) 196 | 197 | it('should return the correct PlainShapeObject', () => { 198 | const el = createPath() 199 | 200 | el.setAttribute('fill', 'yellow') 201 | el.classList.add('potato') 202 | 203 | const expectedPlainShapeObject = { 204 | type: 'path', 205 | d: 'M0,0H10', 206 | fill: 'yellow', 207 | 'class': 'potato' 208 | } 209 | 210 | expect(plainShapeObject(el)).to.eql(expectedPlainShapeObject) 211 | }) 212 | 213 | it('should return the correct group PlainShapeObject', () => { 214 | const el = createGroup() 215 | 216 | el.setAttribute('fill', 'yellow') 217 | el.childNodes[ 0 ].setAttribute('fill', 'red') 218 | el.childNodes[ 1 ].setAttribute('fill', 'green') 219 | 220 | const expectedPlainShapeObject = { 221 | type: 'g', 222 | shapes: [ 223 | { 224 | type: 'path', 225 | d: 'M0,0H10', 226 | fill: 'red' 227 | }, 228 | { 229 | type: 'path', 230 | d: 'M0,0H10', 231 | fill: 'green' 232 | } 233 | ], 234 | fill: 'yellow' 235 | } 236 | 237 | expect(plainShapeObject(el)).to.eql(expectedPlainShapeObject) 238 | }) 239 | 240 | it('should ignore blacklisted attributes', () => { 241 | const el = createPath() 242 | 243 | el.setAttribute('fill', 'yellow') 244 | el.setAttribute('data-jsx-ext', 10) 245 | 246 | const expectedPlainShapeObject = { 247 | type: 'path', 248 | d: 'M0,0H10', 249 | fill: 'yellow' 250 | } 251 | 252 | expect(plainShapeObject(el)).to.eql(expectedPlainShapeObject) 253 | }) 254 | }) 255 | 256 | describe('updateNode', () => { 257 | it('should throw if not passed a Node as the first argument', () => { 258 | const frameShp = { attributes: {}, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 259 | expect(() => updateNode('potato', frameShp)).to.throw('el must be a DOM node') 260 | }) 261 | 262 | it('should throw if not passed a valid Node as the first argument', () => { 263 | const el = document.createElement('div') 264 | const frameShp = { attributes: {}, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 265 | expect(() => updateNode(el, frameShp)).to.throw('el must be an SVG basic shape or group element') 266 | }) 267 | 268 | it('should throw if not passed a FrameShape as the second argument', () => { 269 | const el = createPath() 270 | expect(() => updateNode(el, 'potato')).to.throw('frameShape must be of type object') 271 | }) 272 | 273 | it('should correctly update d attribute of the Node', () => { 274 | const el = createPath() 275 | 276 | const frameShp = { 277 | attributes: {}, 278 | points: [{ x: 10, y: 10, moveTo: true }, { x: 20, y: 10 }] 279 | } 280 | 281 | updateNode(el, frameShp) 282 | 283 | expect(el.getAttribute('d')).to.equal('M10,10H20') 284 | }) 285 | 286 | it('should correctly update other attributes of the Node', () => { 287 | const el = createPath() 288 | 289 | const frameShp = { 290 | attributes: { fill: 'red', 'class': 'potato' }, 291 | points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] 292 | } 293 | 294 | updateNode(el, frameShp) 295 | 296 | expect(el.getAttribute('fill')).to.equal('red') 297 | expect(el.classList.contains('potato')).to.equal(true) 298 | }) 299 | 300 | it('should correctly update other attributes of the group Node', () => { 301 | const el = createGroup() 302 | 303 | const frameShp = { 304 | attributes: { fill: 'red' }, 305 | childFrameShapes: [ 306 | { attributes: {}, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] }, 307 | { attributes: {}, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 308 | ] 309 | } 310 | 311 | updateNode(el, frameShp) 312 | 313 | expect(el.getAttribute('fill')).to.equal('red') 314 | }) 315 | 316 | it('should correctly update d attributes of the group Node children', () => { 317 | const el = createGroup() 318 | 319 | const frameShp = { 320 | attributes: {}, 321 | childFrameShapes: [ 322 | { attributes: {}, points: [{ x: 10, y: 10, moveTo: true }, { x: 20, y: 10 }] }, 323 | { attributes: {}, points: [{ x: 20, y: 20, moveTo: true }, { x: 30, y: 20 }] } 324 | ] 325 | } 326 | 327 | updateNode(el, frameShp) 328 | 329 | expect(el.childNodes[ 0 ].getAttribute('d')).to.equal('M10,10H20') 330 | expect(el.childNodes[ 1 ].getAttribute('d')).to.equal('M20,20H30') 331 | }) 332 | 333 | it('should correctly update other attributes of the group Node childred', () => { 334 | const el = createGroup() 335 | 336 | const frameShp = { 337 | attributes: {}, 338 | childFrameShapes: [ 339 | { attributes: { fill: 'black' }, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] }, 340 | { attributes: { fill: 'white' }, points: [{ x: 0, y: 0, moveTo: true }, { x: 10, y: 0 }] } 341 | ] 342 | } 343 | 344 | updateNode(el, frameShp) 345 | 346 | expect(el.childNodes[ 0 ].getAttribute('fill')).to.equal('black') 347 | expect(el.childNodes[ 1 ].getAttribute('fill')).to.equal('white') 348 | }) 349 | }) 350 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* globals __DEV__ */ 2 | 3 | import { toPath, toPoints } from 'svg-points' 4 | 5 | /** 6 | * A DOM node. 7 | * 8 | * @typedef {Object} Node 9 | */ 10 | 11 | /** 12 | * The data from a Node that is useful in FrameShape and PlainShapeObject creation. 13 | * 14 | * @typedef {Object} NodeData 15 | * 16 | * @property {Object} attributes - All HTML attributes of the Node (excluding blacklist). 17 | * @property {Object[]} childNodes 18 | * @property {string} type - The nodeName of the Node. 19 | */ 20 | 21 | /** 22 | * Attributes to ignore. 23 | */ 24 | const attributeBlacklist = [ 25 | 'data-jsx-ext', 26 | 'data-reactid' 27 | ] 28 | 29 | /** 30 | * Wilderness' accepted node types core props. 31 | */ 32 | const nodeCoreProps = [ 33 | { 34 | type: 'circle', 35 | coreProps: [ 'cx', 'cy', 'r' ] 36 | }, 37 | { 38 | type: 'ellipse', 39 | coreProps: [ 'cx', 'cy', 'rx', 'ry' ] 40 | }, 41 | { 42 | type: 'g', 43 | coreProps: [] 44 | }, 45 | { 46 | type: 'line', 47 | coreProps: [ 'x1', 'x2', 'y1', 'y2' ] 48 | }, 49 | { 50 | type: 'path', 51 | coreProps: [ 'd' ] 52 | }, 53 | { 54 | type: 'polygon', 55 | coreProps: [ 'points' ] 56 | }, 57 | { 58 | type: 'polyline', 59 | coreProps: [ 'points' ] 60 | }, 61 | { 62 | type: 'rect', 63 | coreProps: [ 'height', 'rx', 'ry', 'width', 'x', 'y' ] 64 | } 65 | ] 66 | 67 | /** 68 | * Generates Wilderness' accepted node types from core props object. 69 | * 70 | * @returns {string[]} 71 | * 72 | * @example 73 | * getNodeTypes() 74 | */ 75 | const getNodeTypes = () => { 76 | const types = [] 77 | 78 | for (let i = 0, l = nodeCoreProps.length; i < l; i++) { 79 | types.push(nodeCoreProps[ i ].type) 80 | } 81 | 82 | return types 83 | } 84 | 85 | /** 86 | * Wilderness' accepted node types. 87 | */ 88 | const nodeTypes = getNodeTypes() 89 | 90 | /** 91 | * Core props for the defined node type. 92 | * 93 | * @param {string} type 94 | * 95 | * @returns {Object} 96 | * 97 | * @example 98 | * coreProps('rect') 99 | */ 100 | const coreProps = type => { 101 | for (let i = 0, l = nodeCoreProps.length; i < l; i++) { 102 | if (nodeCoreProps[ i ].type === type) { 103 | return nodeCoreProps[ i ].coreProps 104 | } 105 | } 106 | 107 | return [] 108 | } 109 | 110 | /** 111 | * Creates a FrameShape from a Node. 112 | * 113 | * @param {Node} node 114 | * 115 | * @returns {FrameShape} 116 | * 117 | * @example 118 | * frameShapeFromNode(node) 119 | */ 120 | const frameShape = el => { 121 | if (validNode(el)) { 122 | const data = nodeData(el) 123 | const attributes = data.attributes 124 | const type = data.type 125 | 126 | if (type === 'g') { 127 | const childNodes = data.childNodes 128 | const childFrameShapes = [] 129 | 130 | for (let i = 0, l = childNodes.length; i < l; i++) { 131 | const n = childNodes[ i ] 132 | 133 | if (validNodeType(childNodes[ i ].nodeName)) { 134 | childFrameShapes.push(frameShape(n)) 135 | } 136 | } 137 | 138 | return { attributes, childFrameShapes } 139 | } 140 | 141 | return { 142 | attributes: removeCoreProps(type, attributes), 143 | points: toPoints(plainShapeObjectFromAttrs(type, attributes)) 144 | } 145 | } 146 | } 147 | 148 | /** 149 | * Creates a group Node from a FrameShape array. 150 | * 151 | * @param {FrameShape[]} childFrameShapes 152 | * 153 | * @returns {Node} 154 | * 155 | * @example 156 | * groupNode(childFrameShapes) 157 | */ 158 | const groupNode = childFrameShapes => { 159 | const nodes = [] 160 | 161 | for (let i = 0, l = childFrameShapes.length; i < l; i++) { 162 | nodes.push(node(childFrameShapes[ i ])) 163 | } 164 | 165 | const group = document.createElementNS('http://www.w3.org/2000/svg', 'g') 166 | 167 | for (let i = 0, l = nodes.length; i < l; i++) { 168 | group.appendChild(nodes[ i ]) 169 | } 170 | 171 | return group 172 | } 173 | 174 | /** 175 | * Creates a Node from a FrameShape. 176 | * 177 | * @param {FrameShape} frameShape 178 | * 179 | * @returns {Node} 180 | * 181 | * @example 182 | * node(frameShape) 183 | */ 184 | const node = frameShp => { 185 | if (validFrameShape(frameShp)) { 186 | const attributes = frameShp.attributes 187 | 188 | const el = frameShp.childFrameShapes 189 | ? groupNode(frameShp.childFrameShapes) 190 | : pathNode(frameShp.points) 191 | 192 | for (let attr in attributes) { 193 | el.setAttribute(attr, attributes[ attr ]) 194 | } 195 | 196 | return el 197 | } 198 | } 199 | 200 | /** 201 | * Creates NodeData given a Node. 202 | * 203 | * @param {Node} el 204 | * 205 | * @returns {NodeData} 206 | * 207 | * @example 208 | * nodeData(el) 209 | */ 210 | const nodeData = el => { 211 | const attributes = {} 212 | 213 | if (el.hasAttributes()) { 214 | const attrs = [ ...el.attributes ] 215 | 216 | for (let i = 0, l = attrs.length; i < l; i++) { 217 | const attr = attrs[ i ] 218 | const name = attr.name 219 | 220 | if (attributeBlacklist.indexOf(name) === -1) { 221 | attributes[ name ] = attr.value 222 | } 223 | } 224 | } 225 | 226 | return { attributes, childNodes: [ ...el.childNodes ], type: el.nodeName } 227 | } 228 | 229 | /** 230 | * Creates a path Node from Points. 231 | * 232 | * @param {Points} points 233 | * 234 | * @returns {Node} 235 | * 236 | * @example 237 | * pathNode(points) 238 | */ 239 | const pathNode = points => { 240 | const path = document.createElementNS('http://www.w3.org/2000/svg', 'path') 241 | 242 | path.setAttribute('d', toPath(points)) 243 | 244 | return path 245 | } 246 | 247 | /** 248 | * Creates a PlainShapeObject from a Node. 249 | * 250 | * @param {Node} el 251 | * 252 | * @returns {PlainShapeObject} 253 | * 254 | * @example 255 | * plainShapeObject(el) 256 | */ 257 | const plainShapeObject = el => { 258 | if (validNode(el)) { 259 | const data = nodeData(el) 260 | const attributes = data.attributes 261 | const type = data.type 262 | 263 | if (type === 'g') { 264 | const childNodes = data.childNodes 265 | const shapes = [] 266 | 267 | for (var i = 0, l = childNodes.length; i < l; i++) { 268 | const n = childNodes[ i ] 269 | 270 | if (validNodeType(n.nodeName)) { 271 | shapes.push(plainShapeObject(n)) 272 | } 273 | } 274 | 275 | return { ...attributes, type, shapes } 276 | } 277 | 278 | return { 279 | ...attributes, 280 | ...plainShapeObjectFromAttrs(type, attributes) 281 | } 282 | } 283 | } 284 | 285 | /** 286 | * Creates a PlainShapeObject from type and an attribute object. 287 | * 288 | * @param {string} type 289 | * @param {Object} attributes 290 | * 291 | * @returns {PlainShapeObject} 292 | * 293 | * @example 294 | * plainShapeObjectFromAttrs('rect', attributes) 295 | */ 296 | const plainShapeObjectFromAttrs = (type, attributes) => { 297 | const props = coreProps(type) 298 | const result = { type } 299 | 300 | for (let k in attributes) { 301 | if (props.indexOf(k) !== -1) { 302 | const v = attributes[ k ] 303 | const n = Number(v) 304 | result[ k ] = Number.isNaN(n) ? v : n 305 | } 306 | } 307 | 308 | return result 309 | } 310 | 311 | /** 312 | * Removes type's core props from attributes object. 313 | * 314 | * @param {string} type 315 | * @param {Object} attributes 316 | * 317 | * @returns {Object} 318 | * 319 | * @example 320 | * removeCoreProps('rect', attributes) 321 | */ 322 | const removeCoreProps = (type, attributes) => { 323 | const props = coreProps(type) 324 | const result = {} 325 | 326 | for (let k in attributes) { 327 | if (props.indexOf(k) === -1) { 328 | result[ k ] = attributes[ k ] 329 | } 330 | } 331 | 332 | return result 333 | } 334 | 335 | /** 336 | * Updates a Node from a FrameShape. 337 | * 338 | * @param {Node} el 339 | * @param {FrameShape} frameShape 340 | * 341 | * @returns {Node} 342 | * 343 | * @example 344 | * updateNode(el, frameShape) 345 | */ 346 | const updateNode = (el, frameShp, changes = []) => { 347 | if (__DEV__) { 348 | if (!validNode(el)) { 349 | throw new TypeError(`The first argument of the updateNode function must be a valid DOM node`) 350 | } 351 | 352 | if (!validFrameShape(frameShp)) { 353 | throw new TypeError(`The second argument of the updateNode function must be a valid frameShape`) 354 | } 355 | } 356 | 357 | const shouldApplyChanges = changes.length === 0 358 | const currentAttributes = el.attributes 359 | const nextAttributes = frameShp.attributes 360 | const childFrameShapes = frameShp.childFrameShapes 361 | const changesKey = changes.push({ el, remove: [], update: {} }) - 1 362 | 363 | for (let k in currentAttributes) { 364 | if (typeof nextAttributes[ k ] === 'undefined') { 365 | changes[ changesKey ].remove.push(k) 366 | } 367 | } 368 | 369 | for (let k in nextAttributes) { 370 | const c = currentAttributes[ k ] 371 | const n = nextAttributes[ k ] 372 | 373 | if (typeof c === 'undefined' || c !== n) { 374 | changes[ changesKey ].update[ k ] = n 375 | } 376 | } 377 | 378 | if (!childFrameShapes) { 379 | const nextPath = toPath(frameShp.points) 380 | 381 | if (nextPath !== el.getAttribute('d')) { 382 | changes[ changesKey ].update.d = nextPath 383 | } 384 | } else { 385 | const allChildNodes = [ ...el.childNodes ] 386 | const childNodes = [] 387 | 388 | for (let i = 0, l = allChildNodes.length; i < l; i++) { 389 | const n = allChildNodes[ i ] 390 | 391 | if (validNodeType(n.nodeName)) { 392 | childNodes.push(n) 393 | } 394 | } 395 | 396 | for (let i = 0, l = childFrameShapes.length; i < l; i++) { 397 | updateNode(childNodes[ i ], childFrameShapes[ i ], changes) 398 | } 399 | } 400 | 401 | if (shouldApplyChanges) { 402 | for (let i = 0, l = changes.length; i < l; i++) { 403 | const change = changes[ i ] 404 | const _el = change.el 405 | const remove = change.remove 406 | const update = change.update 407 | 408 | for (let _i = 0, _l = remove.length; _i < _l; _i++) { 409 | _el.removeAttribute(remove[ _i ]) 410 | } 411 | 412 | for (let k in update) { 413 | _el.setAttribute(k, update[ k ]) 414 | } 415 | } 416 | } 417 | 418 | return el 419 | } 420 | 421 | /** 422 | * Is a FrameShape valid? 423 | * 424 | * @param {FrameShape} frameShp 425 | * 426 | * @throws {TypeError} Throws if not valid 427 | * 428 | * @returns {true} 429 | * 430 | * @example 431 | * validFrameShape(frameShape) 432 | */ 433 | const validFrameShape = frameShp => { 434 | if (__DEV__) { 435 | if (typeof frameShp !== 'object' || Array.isArray(frameShp)) { 436 | throw new TypeError(`frameShape must be of type object`) 437 | } 438 | 439 | const attributes = frameShp.attributes 440 | const childFrameShapes = frameShp.childFrameShapes 441 | const points = frameShp.points 442 | 443 | if (typeof attributes === 'undefined') { 444 | throw new TypeError(`frameShape must include an attributes property`) 445 | } 446 | 447 | if (typeof attributes !== 'object' || Array.isArray(attributes)) { 448 | throw new TypeError(`frameShape attributes property must be of type object`) 449 | } 450 | 451 | if (typeof childFrameShapes === 'undefined' && typeof points === 'undefined') { 452 | throw new TypeError(`frameShape must have either a points or childFrameShapes property`) 453 | } 454 | 455 | if (points && (!Array.isArray(points))) { 456 | throw new TypeError(`frameShape points property must be of type array`) 457 | } 458 | 459 | if (childFrameShapes) { 460 | if (!Array.isArray(childFrameShapes)) { 461 | throw new TypeError(`frameShape childFrameShapes property must be of type array`) 462 | } 463 | 464 | for (let i = 0, l = childFrameShapes.length; i < l; i++) { 465 | const childFrameShape = childFrameShapes[ i ] 466 | 467 | if (typeof childFrameShape !== 'object' || typeof childFrameShape.attributes !== 'object') { 468 | throw new TypeError(`frameShape childFrameShapes property must be array of frameShapes`) 469 | } 470 | } 471 | } 472 | } 473 | 474 | return true 475 | } 476 | 477 | /** 478 | * Is a Node valid? 479 | * 480 | * @param {Node} el 481 | * 482 | * @throws {TypeError} Throws if not valid 483 | * 484 | * @returns {true} 485 | * 486 | * @example 487 | * validNode(el) 488 | */ 489 | const validNode = el => { 490 | if (__DEV__) { 491 | if (typeof el !== 'object' || !el.nodeName) { 492 | throw new TypeError(`el must be a DOM node`) 493 | } 494 | 495 | if (!validNodeType(el.nodeName)) { 496 | throw new TypeError(`el must be an SVG basic shape or group element`) 497 | } 498 | } 499 | 500 | return true 501 | } 502 | 503 | /** 504 | * Is a node name one of the accepted node types? 505 | * 506 | * @param {string} nodeName 507 | * 508 | * @returns {boolean} 509 | * 510 | * @example 511 | * validNodeType(nodeName) 512 | */ 513 | const validNodeType = nodeName => nodeTypes.indexOf(nodeName) !== -1 514 | 515 | export { frameShape, node, plainShapeObject, updateNode } 516 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@semantic-release/commit-analyzer@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-2.0.0.tgz#924d1e2c30167c6a472bed9f66ee8f8e077489b2" 8 | dependencies: 9 | conventional-changelog "0.0.17" 10 | 11 | "@semantic-release/condition-travis@^5.0.2": 12 | version "5.0.2" 13 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-5.0.2.tgz#f4bb777a6c6db5565d70754a9b629233bd4a6597" 14 | dependencies: 15 | "@semantic-release/error" "^1.0.0" 16 | semver "^5.0.3" 17 | travis-deploy-once "1.0.0-node-0.10-support" 18 | 19 | "@semantic-release/error@^1.0.0": 20 | version "1.0.0" 21 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-1.0.0.tgz#bb8f8eeedd5c7f8c46f96b37ef39e1b8c376c1cc" 22 | 23 | "@semantic-release/last-release-npm@^1.2.1": 24 | version "1.2.1" 25 | resolved "https://registry.yarnpkg.com/@semantic-release/last-release-npm/-/last-release-npm-1.2.1.tgz#ff748142ecf15354b833a86ba18205f7fce594ee" 26 | dependencies: 27 | "@semantic-release/error" "^1.0.0" 28 | npm-registry-client "^7.0.1" 29 | npmlog "^1.2.1" 30 | 31 | "@semantic-release/release-notes-generator@^2.0.0": 32 | version "2.0.0" 33 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-2.0.0.tgz#7c5da65689466d536a53fdfa9f4d62a3bd13c16e" 34 | dependencies: 35 | conventional-changelog "0.0.17" 36 | github-url-from-git "^1.4.0" 37 | 38 | abbrev@1: 39 | version "1.1.0" 40 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 41 | 42 | abbrev@1.0.x: 43 | version "1.0.9" 44 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 45 | 46 | accepts@1.3.3: 47 | version "1.3.3" 48 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 49 | dependencies: 50 | mime-types "~2.1.11" 51 | negotiator "0.6.1" 52 | 53 | acorn-jsx@^3.0.0: 54 | version "3.0.1" 55 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 56 | dependencies: 57 | acorn "^3.0.4" 58 | 59 | acorn@^3.0.4: 60 | version "3.3.0" 61 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 62 | 63 | acorn@^4.0.1: 64 | version "4.0.13" 65 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 66 | 67 | acorn@^5.0.1: 68 | version "5.1.1" 69 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 70 | 71 | after@0.8.2: 72 | version "0.8.2" 73 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 74 | 75 | agent-base@2: 76 | version "2.1.1" 77 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" 78 | dependencies: 79 | extend "~3.0.0" 80 | semver "~5.0.1" 81 | 82 | ajv-keywords@^1.0.0: 83 | version "1.5.1" 84 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 85 | 86 | ajv@^4.7.0, ajv@^4.9.1: 87 | version "4.11.8" 88 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 89 | dependencies: 90 | co "^4.6.0" 91 | json-stable-stringify "^1.0.1" 92 | 93 | align-text@^0.1.1, align-text@^0.1.3: 94 | version "0.1.4" 95 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 96 | dependencies: 97 | kind-of "^3.0.2" 98 | longest "^1.0.1" 99 | repeat-string "^1.5.2" 100 | 101 | amdefine@>=0.0.4: 102 | version "1.0.1" 103 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 104 | 105 | ansi-escapes@^1.1.0: 106 | version "1.4.0" 107 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 108 | 109 | ansi-regex@^2.0.0: 110 | version "2.1.1" 111 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 112 | 113 | ansi-regex@^3.0.0: 114 | version "3.0.0" 115 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 116 | 117 | ansi-styles@^2.2.1: 118 | version "2.2.1" 119 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 120 | 121 | ansi@^0.3.0, ansi@~0.3.0: 122 | version "0.3.1" 123 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 124 | 125 | anymatch@^1.3.0: 126 | version "1.3.0" 127 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 128 | dependencies: 129 | arrify "^1.0.0" 130 | micromatch "^2.1.5" 131 | 132 | aproba@^1.0.3: 133 | version "1.1.2" 134 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 135 | 136 | are-we-there-yet@~1.0.0: 137 | version "1.0.6" 138 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz#a2d28c93102aa6cc96245a26cb954de06ec53f0c" 139 | dependencies: 140 | delegates "^1.0.0" 141 | readable-stream "^2.0.0 || ^1.1.13" 142 | 143 | are-we-there-yet@~1.1.2: 144 | version "1.1.4" 145 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 146 | dependencies: 147 | delegates "^1.0.0" 148 | readable-stream "^2.0.6" 149 | 150 | argparse@^1.0.7: 151 | version "1.0.9" 152 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 153 | dependencies: 154 | sprintf-js "~1.0.2" 155 | 156 | arr-diff@^2.0.0: 157 | version "2.0.0" 158 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 159 | dependencies: 160 | arr-flatten "^1.0.1" 161 | 162 | arr-flatten@^1.0.1: 163 | version "1.1.0" 164 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 165 | 166 | array-find-index@^1.0.1: 167 | version "1.0.2" 168 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 169 | 170 | array-slice@^0.2.3: 171 | version "0.2.3" 172 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 173 | 174 | array-union@^1.0.1: 175 | version "1.0.2" 176 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 177 | dependencies: 178 | array-uniq "^1.0.1" 179 | 180 | array-uniq@^1.0.1: 181 | version "1.0.3" 182 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 183 | 184 | array-unique@^0.2.1: 185 | version "0.2.1" 186 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 187 | 188 | array.prototype.find@^2.0.1: 189 | version "2.0.4" 190 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 191 | dependencies: 192 | define-properties "^1.1.2" 193 | es-abstract "^1.7.0" 194 | 195 | arraybuffer.slice@0.0.6: 196 | version "0.0.6" 197 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 198 | 199 | arrify@^1.0.0, arrify@^1.0.1: 200 | version "1.0.1" 201 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 202 | 203 | asap@^2.0.0: 204 | version "2.0.6" 205 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 206 | 207 | asn1@~0.2.3: 208 | version "0.2.3" 209 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 210 | 211 | assert-plus@1.0.0, assert-plus@^1.0.0: 212 | version "1.0.0" 213 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 214 | 215 | assert-plus@^0.2.0: 216 | version "0.2.0" 217 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 218 | 219 | assertion-error@^1.0.1: 220 | version "1.0.2" 221 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 222 | 223 | async-each@^1.0.0: 224 | version "1.0.1" 225 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 226 | 227 | async@1.x, async@^1.4.0: 228 | version "1.5.2" 229 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 230 | 231 | async@^2.0.1: 232 | version "2.5.0" 233 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 234 | dependencies: 235 | lodash "^4.14.0" 236 | 237 | asynckit@^0.4.0: 238 | version "0.4.0" 239 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 240 | 241 | aws-sign2@~0.6.0: 242 | version "0.6.0" 243 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 244 | 245 | aws4@^1.2.1: 246 | version "1.6.0" 247 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 248 | 249 | babel-cli@^6.24.1: 250 | version "6.24.1" 251 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 252 | dependencies: 253 | babel-core "^6.24.1" 254 | babel-polyfill "^6.23.0" 255 | babel-register "^6.24.1" 256 | babel-runtime "^6.22.0" 257 | commander "^2.8.1" 258 | convert-source-map "^1.1.0" 259 | fs-readdir-recursive "^1.0.0" 260 | glob "^7.0.0" 261 | lodash "^4.2.0" 262 | output-file-sync "^1.1.0" 263 | path-is-absolute "^1.0.0" 264 | slash "^1.0.0" 265 | source-map "^0.5.0" 266 | v8flags "^2.0.10" 267 | optionalDependencies: 268 | chokidar "^1.6.1" 269 | 270 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 271 | version "6.22.0" 272 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 273 | dependencies: 274 | chalk "^1.1.0" 275 | esutils "^2.0.2" 276 | js-tokens "^3.0.0" 277 | 278 | babel-core@6, babel-core@^6.24.1: 279 | version "6.25.0" 280 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 281 | dependencies: 282 | babel-code-frame "^6.22.0" 283 | babel-generator "^6.25.0" 284 | babel-helpers "^6.24.1" 285 | babel-messages "^6.23.0" 286 | babel-register "^6.24.1" 287 | babel-runtime "^6.22.0" 288 | babel-template "^6.25.0" 289 | babel-traverse "^6.25.0" 290 | babel-types "^6.25.0" 291 | babylon "^6.17.2" 292 | convert-source-map "^1.1.0" 293 | debug "^2.1.1" 294 | json5 "^0.5.0" 295 | lodash "^4.2.0" 296 | minimatch "^3.0.2" 297 | path-is-absolute "^1.0.0" 298 | private "^0.1.6" 299 | slash "^1.0.0" 300 | source-map "^0.5.0" 301 | 302 | babel-generator@^6.18.0, babel-generator@^6.25.0: 303 | version "6.25.0" 304 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 305 | dependencies: 306 | babel-messages "^6.23.0" 307 | babel-runtime "^6.22.0" 308 | babel-types "^6.25.0" 309 | detect-indent "^4.0.0" 310 | jsesc "^1.3.0" 311 | lodash "^4.2.0" 312 | source-map "^0.5.0" 313 | trim-right "^1.0.1" 314 | 315 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 318 | dependencies: 319 | babel-helper-explode-assignable-expression "^6.24.1" 320 | babel-runtime "^6.22.0" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-call-delegate@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 326 | dependencies: 327 | babel-helper-hoist-variables "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-traverse "^6.24.1" 330 | babel-types "^6.24.1" 331 | 332 | babel-helper-define-map@^6.24.1: 333 | version "6.24.1" 334 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 335 | dependencies: 336 | babel-helper-function-name "^6.24.1" 337 | babel-runtime "^6.22.0" 338 | babel-types "^6.24.1" 339 | lodash "^4.2.0" 340 | 341 | babel-helper-explode-assignable-expression@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-helper-function-name@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 352 | dependencies: 353 | babel-helper-get-function-arity "^6.24.1" 354 | babel-runtime "^6.22.0" 355 | babel-template "^6.24.1" 356 | babel-traverse "^6.24.1" 357 | babel-types "^6.24.1" 358 | 359 | babel-helper-get-function-arity@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 362 | dependencies: 363 | babel-runtime "^6.22.0" 364 | babel-types "^6.24.1" 365 | 366 | babel-helper-hoist-variables@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 369 | dependencies: 370 | babel-runtime "^6.22.0" 371 | babel-types "^6.24.1" 372 | 373 | babel-helper-optimise-call-expression@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | babel-types "^6.24.1" 379 | 380 | babel-helper-regex@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-types "^6.24.1" 386 | lodash "^4.2.0" 387 | 388 | babel-helper-remap-async-to-generator@^6.24.1: 389 | version "6.24.1" 390 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 391 | dependencies: 392 | babel-helper-function-name "^6.24.1" 393 | babel-runtime "^6.22.0" 394 | babel-template "^6.24.1" 395 | babel-traverse "^6.24.1" 396 | babel-types "^6.24.1" 397 | 398 | babel-helper-replace-supers@^6.24.1: 399 | version "6.24.1" 400 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 401 | dependencies: 402 | babel-helper-optimise-call-expression "^6.24.1" 403 | babel-messages "^6.23.0" 404 | babel-runtime "^6.22.0" 405 | babel-template "^6.24.1" 406 | babel-traverse "^6.24.1" 407 | babel-types "^6.24.1" 408 | 409 | babel-helpers@^6.24.1: 410 | version "6.24.1" 411 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 412 | dependencies: 413 | babel-runtime "^6.22.0" 414 | babel-template "^6.24.1" 415 | 416 | babel-messages@^6.23.0: 417 | version "6.23.0" 418 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 419 | dependencies: 420 | babel-runtime "^6.22.0" 421 | 422 | babel-plugin-check-es2015-constants@^6.22.0: 423 | version "6.22.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | 428 | babel-plugin-external-helpers@^6.22.0: 429 | version "6.22.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 431 | dependencies: 432 | babel-runtime "^6.22.0" 433 | 434 | babel-plugin-inline-replace-variables@^1.3.1: 435 | version "1.3.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-replace-variables/-/babel-plugin-inline-replace-variables-1.3.1.tgz#9fbb8dd43229c777695e14ea0d3d781f048fdc0f" 437 | dependencies: 438 | babylon "^6.17.0" 439 | 440 | babel-plugin-istanbul@^4.1.4: 441 | version "4.1.4" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 443 | dependencies: 444 | find-up "^2.1.0" 445 | istanbul-lib-instrument "^1.7.2" 446 | test-exclude "^4.1.1" 447 | 448 | babel-plugin-replace-identifiers@^0.1.1: 449 | version "0.1.1" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-replace-identifiers/-/babel-plugin-replace-identifiers-0.1.1.tgz#38819617d814ab0e4b35cfa373e40758b359f68f" 451 | 452 | babel-plugin-syntax-async-functions@^6.8.0: 453 | version "6.13.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 455 | 456 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 457 | version "6.13.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 459 | 460 | babel-plugin-syntax-object-rest-spread@^6.8.0: 461 | version "6.13.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 463 | 464 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 465 | version "6.22.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 467 | 468 | babel-plugin-transform-async-to-generator@^6.22.0: 469 | version "6.24.1" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 471 | dependencies: 472 | babel-helper-remap-async-to-generator "^6.24.1" 473 | babel-plugin-syntax-async-functions "^6.8.0" 474 | babel-runtime "^6.22.0" 475 | 476 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 477 | version "6.22.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 479 | dependencies: 480 | babel-runtime "^6.22.0" 481 | 482 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | babel-template "^6.24.1" 494 | babel-traverse "^6.24.1" 495 | babel-types "^6.24.1" 496 | lodash "^4.2.0" 497 | 498 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.9.0: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 501 | dependencies: 502 | babel-helper-define-map "^6.24.1" 503 | babel-helper-function-name "^6.24.1" 504 | babel-helper-optimise-call-expression "^6.24.1" 505 | babel-helper-replace-supers "^6.24.1" 506 | babel-messages "^6.23.0" 507 | babel-runtime "^6.22.0" 508 | babel-template "^6.24.1" 509 | babel-traverse "^6.24.1" 510 | babel-types "^6.24.1" 511 | 512 | babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 515 | dependencies: 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | 519 | babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0: 520 | version "6.23.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 522 | dependencies: 523 | babel-runtime "^6.22.0" 524 | 525 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 528 | dependencies: 529 | babel-runtime "^6.22.0" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0: 533 | version "6.23.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 541 | dependencies: 542 | babel-helper-function-name "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | babel-types "^6.24.1" 545 | 546 | babel-plugin-transform-es2015-literals@^6.22.0: 547 | version "6.22.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | 552 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 555 | dependencies: 556 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 557 | babel-runtime "^6.22.0" 558 | babel-template "^6.24.1" 559 | 560 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 561 | version "6.24.1" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 563 | dependencies: 564 | babel-plugin-transform-strict-mode "^6.24.1" 565 | babel-runtime "^6.22.0" 566 | babel-template "^6.24.1" 567 | babel-types "^6.24.1" 568 | 569 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 572 | dependencies: 573 | babel-helper-hoist-variables "^6.24.1" 574 | babel-runtime "^6.22.0" 575 | babel-template "^6.24.1" 576 | 577 | babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 580 | dependencies: 581 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 582 | babel-runtime "^6.22.0" 583 | babel-template "^6.24.1" 584 | 585 | babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 588 | dependencies: 589 | babel-helper-replace-supers "^6.24.1" 590 | babel-runtime "^6.22.0" 591 | 592 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1: 593 | version "6.24.1" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 595 | dependencies: 596 | babel-helper-call-delegate "^6.24.1" 597 | babel-helper-get-function-arity "^6.24.1" 598 | babel-runtime "^6.22.0" 599 | babel-template "^6.24.1" 600 | babel-traverse "^6.24.1" 601 | babel-types "^6.24.1" 602 | 603 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 604 | version "6.24.1" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 606 | dependencies: 607 | babel-runtime "^6.22.0" 608 | babel-types "^6.24.1" 609 | 610 | babel-plugin-transform-es2015-spread@^6.22.0: 611 | version "6.22.0" 612 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 613 | dependencies: 614 | babel-runtime "^6.22.0" 615 | 616 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1: 617 | version "6.24.1" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 619 | dependencies: 620 | babel-helper-regex "^6.24.1" 621 | babel-runtime "^6.22.0" 622 | babel-types "^6.24.1" 623 | 624 | babel-plugin-transform-es2015-template-literals@^6.22.0: 625 | version "6.22.0" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 627 | dependencies: 628 | babel-runtime "^6.22.0" 629 | 630 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 631 | version "6.23.0" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 633 | dependencies: 634 | babel-runtime "^6.22.0" 635 | 636 | babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1: 637 | version "6.24.1" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 639 | dependencies: 640 | babel-helper-regex "^6.24.1" 641 | babel-runtime "^6.22.0" 642 | regexpu-core "^2.0.0" 643 | 644 | babel-plugin-transform-exponentiation-operator@^6.22.0: 645 | version "6.24.1" 646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 647 | dependencies: 648 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 649 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 650 | babel-runtime "^6.22.0" 651 | 652 | babel-plugin-transform-object-rest-spread@^6.23.0: 653 | version "6.23.0" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 655 | dependencies: 656 | babel-plugin-syntax-object-rest-spread "^6.8.0" 657 | babel-runtime "^6.22.0" 658 | 659 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1: 660 | version "6.24.1" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 662 | dependencies: 663 | regenerator-transform "0.9.11" 664 | 665 | babel-plugin-transform-strict-mode@^6.24.1: 666 | version "6.24.1" 667 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 668 | dependencies: 669 | babel-runtime "^6.22.0" 670 | babel-types "^6.24.1" 671 | 672 | babel-polyfill@^6.16.0, babel-polyfill@^6.23.0: 673 | version "6.23.0" 674 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 675 | dependencies: 676 | babel-runtime "^6.22.0" 677 | core-js "^2.4.0" 678 | regenerator-runtime "^0.10.0" 679 | 680 | babel-preset-env@^1.6.0: 681 | version "1.6.0" 682 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 683 | dependencies: 684 | babel-plugin-check-es2015-constants "^6.22.0" 685 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 686 | babel-plugin-transform-async-to-generator "^6.22.0" 687 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 688 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 689 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 690 | babel-plugin-transform-es2015-classes "^6.23.0" 691 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 692 | babel-plugin-transform-es2015-destructuring "^6.23.0" 693 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 694 | babel-plugin-transform-es2015-for-of "^6.23.0" 695 | babel-plugin-transform-es2015-function-name "^6.22.0" 696 | babel-plugin-transform-es2015-literals "^6.22.0" 697 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 698 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 699 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 700 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 701 | babel-plugin-transform-es2015-object-super "^6.22.0" 702 | babel-plugin-transform-es2015-parameters "^6.23.0" 703 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 704 | babel-plugin-transform-es2015-spread "^6.22.0" 705 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 706 | babel-plugin-transform-es2015-template-literals "^6.22.0" 707 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 708 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 709 | babel-plugin-transform-exponentiation-operator "^6.22.0" 710 | babel-plugin-transform-regenerator "^6.22.0" 711 | browserslist "^2.1.2" 712 | invariant "^2.2.2" 713 | semver "^5.3.0" 714 | 715 | babel-preset-es2015@^6.24.1: 716 | version "6.24.1" 717 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 718 | dependencies: 719 | babel-plugin-check-es2015-constants "^6.22.0" 720 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 721 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 722 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 723 | babel-plugin-transform-es2015-classes "^6.24.1" 724 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 725 | babel-plugin-transform-es2015-destructuring "^6.22.0" 726 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 727 | babel-plugin-transform-es2015-for-of "^6.22.0" 728 | babel-plugin-transform-es2015-function-name "^6.24.1" 729 | babel-plugin-transform-es2015-literals "^6.22.0" 730 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 731 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 732 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 733 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 734 | babel-plugin-transform-es2015-object-super "^6.24.1" 735 | babel-plugin-transform-es2015-parameters "^6.24.1" 736 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 737 | babel-plugin-transform-es2015-spread "^6.22.0" 738 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 739 | babel-plugin-transform-es2015-template-literals "^6.22.0" 740 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 741 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 742 | babel-plugin-transform-regenerator "^6.24.1" 743 | 744 | babel-register@^6.24.1: 745 | version "6.24.1" 746 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 747 | dependencies: 748 | babel-core "^6.24.1" 749 | babel-runtime "^6.22.0" 750 | core-js "^2.4.0" 751 | home-or-tmp "^2.0.0" 752 | lodash "^4.2.0" 753 | mkdirp "^0.5.1" 754 | source-map-support "^0.4.2" 755 | 756 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 757 | version "6.23.0" 758 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 759 | dependencies: 760 | core-js "^2.4.0" 761 | regenerator-runtime "^0.10.0" 762 | 763 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 764 | version "6.25.0" 765 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 766 | dependencies: 767 | babel-runtime "^6.22.0" 768 | babel-traverse "^6.25.0" 769 | babel-types "^6.25.0" 770 | babylon "^6.17.2" 771 | lodash "^4.2.0" 772 | 773 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 774 | version "6.25.0" 775 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 776 | dependencies: 777 | babel-code-frame "^6.22.0" 778 | babel-messages "^6.23.0" 779 | babel-runtime "^6.22.0" 780 | babel-types "^6.25.0" 781 | babylon "^6.17.2" 782 | debug "^2.2.0" 783 | globals "^9.0.0" 784 | invariant "^2.2.0" 785 | lodash "^4.2.0" 786 | 787 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: 788 | version "6.25.0" 789 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 790 | dependencies: 791 | babel-runtime "^6.22.0" 792 | esutils "^2.0.2" 793 | lodash "^4.2.0" 794 | to-fast-properties "^1.0.1" 795 | 796 | babylon@^6.17.0, babylon@^6.17.2, babylon@^6.17.4: 797 | version "6.17.4" 798 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 799 | 800 | backo2@1.0.2: 801 | version "1.0.2" 802 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 803 | 804 | balanced-match@^1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 807 | 808 | base64-arraybuffer@0.1.5: 809 | version "0.1.5" 810 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 811 | 812 | base64id@1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 815 | 816 | bcrypt-pbkdf@^1.0.0: 817 | version "1.0.1" 818 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 819 | dependencies: 820 | tweetnacl "^0.14.3" 821 | 822 | better-assert@~1.0.0: 823 | version "1.0.2" 824 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 825 | dependencies: 826 | callsite "1.0.0" 827 | 828 | binary-extensions@^1.0.0: 829 | version "1.8.0" 830 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 831 | 832 | bl@~1.1.2: 833 | version "1.1.2" 834 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 835 | dependencies: 836 | readable-stream "~2.0.5" 837 | 838 | blob@0.0.4: 839 | version "0.0.4" 840 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 841 | 842 | block-stream@*: 843 | version "0.0.9" 844 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 845 | dependencies: 846 | inherits "~2.0.0" 847 | 848 | bluebird@^3.3.0, bluebird@^3.4.6, bluebird@^3.5.0: 849 | version "3.5.0" 850 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 851 | 852 | body-parser@^1.16.1: 853 | version "1.17.2" 854 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.17.2.tgz#f8892abc8f9e627d42aedafbca66bf5ab99104ee" 855 | dependencies: 856 | bytes "2.4.0" 857 | content-type "~1.0.2" 858 | debug "2.6.7" 859 | depd "~1.1.0" 860 | http-errors "~1.6.1" 861 | iconv-lite "0.4.15" 862 | on-finished "~2.3.0" 863 | qs "6.4.0" 864 | raw-body "~2.2.0" 865 | type-is "~1.6.15" 866 | 867 | boom@2.x.x: 868 | version "2.10.1" 869 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 870 | dependencies: 871 | hoek "2.x.x" 872 | 873 | brace-expansion@^1.1.7: 874 | version "1.1.8" 875 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 876 | dependencies: 877 | balanced-match "^1.0.0" 878 | concat-map "0.0.1" 879 | 880 | braces@^0.1.2: 881 | version "0.1.5" 882 | resolved "https://registry.yarnpkg.com/braces/-/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" 883 | dependencies: 884 | expand-range "^0.1.0" 885 | 886 | braces@^1.8.2: 887 | version "1.8.5" 888 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 889 | dependencies: 890 | expand-range "^1.8.1" 891 | preserve "^0.2.0" 892 | repeat-element "^1.1.2" 893 | 894 | browser-resolve@^1.11.0: 895 | version "1.11.2" 896 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 897 | dependencies: 898 | resolve "1.1.7" 899 | 900 | browser-stdout@1.3.0: 901 | version "1.3.0" 902 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 903 | 904 | browserslist@^2.1.2: 905 | version "2.2.0" 906 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.2.0.tgz#5e35ec993e467c6464b8cb708447386891de9f50" 907 | dependencies: 908 | caniuse-lite "^1.0.30000701" 909 | electron-to-chromium "^1.3.15" 910 | 911 | builtin-modules@^1.0.0, builtin-modules@^1.1.0, builtin-modules@^1.1.1: 912 | version "1.1.1" 913 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 914 | 915 | bytes@2.4.0: 916 | version "2.4.0" 917 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 918 | 919 | cachedir@^1.1.0: 920 | version "1.1.1" 921 | resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-1.1.1.tgz#e1363075ea206a12767d92bb711c8a2f76a10f62" 922 | dependencies: 923 | os-homedir "^1.0.1" 924 | 925 | caller-path@^0.1.0: 926 | version "0.1.0" 927 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 928 | dependencies: 929 | callsites "^0.2.0" 930 | 931 | callsite@1.0.0: 932 | version "1.0.0" 933 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 934 | 935 | callsites@^0.2.0: 936 | version "0.2.0" 937 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 938 | 939 | camelcase-keys@^2.0.0: 940 | version "2.1.0" 941 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 942 | dependencies: 943 | camelcase "^2.0.0" 944 | map-obj "^1.0.0" 945 | 946 | camelcase@^1.0.2: 947 | version "1.2.1" 948 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 949 | 950 | camelcase@^2.0.0: 951 | version "2.1.1" 952 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 953 | 954 | caniuse-lite@^1.0.30000701: 955 | version "1.0.30000702" 956 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000702.tgz#bd66e40345528fe0c001917d1d3f55454df634f1" 957 | 958 | caseless@~0.11.0: 959 | version "0.11.0" 960 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 961 | 962 | caseless@~0.12.0: 963 | version "0.12.0" 964 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 965 | 966 | center-align@^0.1.1: 967 | version "0.1.3" 968 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 969 | dependencies: 970 | align-text "^0.1.3" 971 | lazy-cache "^1.0.3" 972 | 973 | chai@^4.1.0: 974 | version "4.1.0" 975 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.0.tgz#331a0391b55c3af8740ae9c3b7458bc1c3805e6d" 976 | dependencies: 977 | assertion-error "^1.0.1" 978 | check-error "^1.0.1" 979 | deep-eql "^2.0.1" 980 | get-func-name "^2.0.0" 981 | pathval "^1.0.0" 982 | type-detect "^4.0.0" 983 | 984 | chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 985 | version "1.1.3" 986 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 987 | dependencies: 988 | ansi-styles "^2.2.1" 989 | escape-string-regexp "^1.0.2" 990 | has-ansi "^2.0.0" 991 | strip-ansi "^3.0.0" 992 | supports-color "^2.0.0" 993 | 994 | check-error@^1.0.1: 995 | version "1.0.2" 996 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 997 | 998 | chokidar@^1.4.1, chokidar@^1.6.1: 999 | version "1.7.0" 1000 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1001 | dependencies: 1002 | anymatch "^1.3.0" 1003 | async-each "^1.0.0" 1004 | glob-parent "^2.0.0" 1005 | inherits "^2.0.1" 1006 | is-binary-path "^1.0.0" 1007 | is-glob "^2.0.0" 1008 | path-is-absolute "^1.0.0" 1009 | readdirp "^2.0.0" 1010 | optionalDependencies: 1011 | fsevents "^1.0.0" 1012 | 1013 | circular-json@^0.3.1: 1014 | version "0.3.1" 1015 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1016 | 1017 | cli-cursor@^1.0.1: 1018 | version "1.0.2" 1019 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1020 | dependencies: 1021 | restore-cursor "^1.0.1" 1022 | 1023 | cli-width@^2.0.0: 1024 | version "2.1.0" 1025 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1026 | 1027 | cliui@^2.1.0: 1028 | version "2.1.0" 1029 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1030 | dependencies: 1031 | center-align "^0.1.1" 1032 | right-align "^0.1.1" 1033 | wordwrap "0.0.2" 1034 | 1035 | co@^4.6.0: 1036 | version "4.6.0" 1037 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1038 | 1039 | code-point-at@^1.0.0: 1040 | version "1.1.0" 1041 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1042 | 1043 | colors@^1.1.0: 1044 | version "1.1.2" 1045 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1046 | 1047 | combine-lists@^1.0.0: 1048 | version "1.0.1" 1049 | resolved "https://registry.yarnpkg.com/combine-lists/-/combine-lists-1.0.1.tgz#458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6" 1050 | dependencies: 1051 | lodash "^4.5.0" 1052 | 1053 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1054 | version "1.0.5" 1055 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1056 | dependencies: 1057 | delayed-stream "~1.0.0" 1058 | 1059 | commander@2.9.0, commander@~2.9.0: 1060 | version "2.9.0" 1061 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1062 | dependencies: 1063 | graceful-readlink ">= 1.0.0" 1064 | 1065 | commander@^2.8.1, commander@^2.9.0: 1066 | version "2.11.0" 1067 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1068 | 1069 | commitizen@^2.9.6: 1070 | version "2.9.6" 1071 | resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-2.9.6.tgz#c0d00535ef264da7f63737edfda4228983fa2291" 1072 | dependencies: 1073 | cachedir "^1.1.0" 1074 | chalk "1.1.3" 1075 | cz-conventional-changelog "1.2.0" 1076 | dedent "0.6.0" 1077 | detect-indent "4.0.0" 1078 | find-node-modules "1.0.4" 1079 | find-root "1.0.0" 1080 | fs-extra "^1.0.0" 1081 | glob "7.1.1" 1082 | inquirer "1.2.3" 1083 | lodash "4.17.2" 1084 | minimist "1.2.0" 1085 | path-exists "2.1.0" 1086 | shelljs "0.7.6" 1087 | strip-json-comments "2.0.1" 1088 | 1089 | component-bind@1.0.0: 1090 | version "1.0.0" 1091 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 1092 | 1093 | component-emitter@1.1.2: 1094 | version "1.1.2" 1095 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 1096 | 1097 | component-emitter@1.2.1: 1098 | version "1.2.1" 1099 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1100 | 1101 | component-inherit@0.0.3: 1102 | version "0.0.3" 1103 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 1104 | 1105 | concat-map@0.0.1: 1106 | version "0.0.1" 1107 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1108 | 1109 | concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.2: 1110 | version "1.6.0" 1111 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1112 | dependencies: 1113 | inherits "^2.0.3" 1114 | readable-stream "^2.2.2" 1115 | typedarray "^0.0.6" 1116 | 1117 | config-chain@~1.1.8: 1118 | version "1.1.11" 1119 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 1120 | dependencies: 1121 | ini "^1.3.4" 1122 | proto-list "~1.2.1" 1123 | 1124 | connect@^3.6.0: 1125 | version "3.6.2" 1126 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.2.tgz#694e8d20681bfe490282c8ab886be98f09f42fe7" 1127 | dependencies: 1128 | debug "2.6.7" 1129 | finalhandler "1.0.3" 1130 | parseurl "~1.3.1" 1131 | utils-merge "1.0.0" 1132 | 1133 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1134 | version "1.1.0" 1135 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1136 | 1137 | contains-path@^0.1.0: 1138 | version "0.1.0" 1139 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1140 | 1141 | content-type@~1.0.2: 1142 | version "1.0.2" 1143 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1144 | 1145 | conventional-changelog@0.0.17: 1146 | version "0.0.17" 1147 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-0.0.17.tgz#5e0216600f4686190f0c82efbb0b3dd11b49ce34" 1148 | dependencies: 1149 | dateformat "^1.0.11" 1150 | event-stream "^3.3.0" 1151 | github-url-from-git "^1.4.0" 1152 | lodash "^3.6.0" 1153 | normalize-package-data "^1.0.3" 1154 | 1155 | conventional-commit-types@^2.0.0: 1156 | version "2.2.0" 1157 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.2.0.tgz#5db95739d6c212acbe7b6f656a11b940baa68946" 1158 | 1159 | convert-source-map@^1.1.0: 1160 | version "1.5.0" 1161 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1162 | 1163 | cookie@0.3.1: 1164 | version "0.3.1" 1165 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1166 | 1167 | core-js@^2.2.0, core-js@^2.4.0: 1168 | version "2.4.1" 1169 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1170 | 1171 | core-util-is@^1.0.1, core-util-is@~1.0.0: 1172 | version "1.0.2" 1173 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1174 | 1175 | coveralls@^2.13.1: 1176 | version "2.13.1" 1177 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 1178 | dependencies: 1179 | js-yaml "3.6.1" 1180 | lcov-parse "0.0.10" 1181 | log-driver "1.2.5" 1182 | minimist "1.2.0" 1183 | request "2.79.0" 1184 | 1185 | cryptiles@2.x.x: 1186 | version "2.0.5" 1187 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1188 | dependencies: 1189 | boom "2.x.x" 1190 | 1191 | currently-unhandled@^0.4.1: 1192 | version "0.4.1" 1193 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1194 | dependencies: 1195 | array-find-index "^1.0.1" 1196 | 1197 | custom-event@~1.0.0: 1198 | version "1.0.1" 1199 | resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" 1200 | 1201 | cz-conventional-changelog@1.2.0: 1202 | version "1.2.0" 1203 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-1.2.0.tgz#2bca04964c8919b23f3fd6a89ef5e6008b31b3f8" 1204 | dependencies: 1205 | conventional-commit-types "^2.0.0" 1206 | lodash.map "^4.5.1" 1207 | longest "^1.0.1" 1208 | pad-right "^0.2.2" 1209 | right-pad "^1.0.1" 1210 | word-wrap "^1.0.3" 1211 | 1212 | cz-conventional-changelog@^2.0.0: 1213 | version "2.0.0" 1214 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz#55a979afdfe95e7024879d2a0f5924630170b533" 1215 | dependencies: 1216 | conventional-commit-types "^2.0.0" 1217 | lodash.map "^4.5.1" 1218 | longest "^1.0.1" 1219 | pad-right "^0.2.2" 1220 | right-pad "^1.0.1" 1221 | word-wrap "^1.0.3" 1222 | 1223 | d@1: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1226 | dependencies: 1227 | es5-ext "^0.10.9" 1228 | 1229 | dashdash@^1.12.0: 1230 | version "1.14.1" 1231 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1232 | dependencies: 1233 | assert-plus "^1.0.0" 1234 | 1235 | dateformat@^1.0.11, dateformat@^1.0.6: 1236 | version "1.0.12" 1237 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1238 | dependencies: 1239 | get-stdin "^4.0.1" 1240 | meow "^3.3.0" 1241 | 1242 | debug-log@^1.0.0: 1243 | version "1.0.1" 1244 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1245 | 1246 | debug@2, debug@^2.1.1, debug@^2.2.0, debug@^2.6.8: 1247 | version "2.6.8" 1248 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1249 | dependencies: 1250 | ms "2.0.0" 1251 | 1252 | debug@2.2.0: 1253 | version "2.2.0" 1254 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1255 | dependencies: 1256 | ms "0.7.1" 1257 | 1258 | debug@2.3.3: 1259 | version "2.3.3" 1260 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 1261 | dependencies: 1262 | ms "0.7.2" 1263 | 1264 | debug@2.6.0: 1265 | version "2.6.0" 1266 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 1267 | dependencies: 1268 | ms "0.7.2" 1269 | 1270 | debug@2.6.7: 1271 | version "2.6.7" 1272 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" 1273 | dependencies: 1274 | ms "2.0.0" 1275 | 1276 | decamelize@^1.0.0, decamelize@^1.1.2: 1277 | version "1.2.0" 1278 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1279 | 1280 | dedent@0.6.0: 1281 | version "0.6.0" 1282 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 1283 | 1284 | deep-eql@^2.0.1: 1285 | version "2.0.2" 1286 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-2.0.2.tgz#b1bac06e56f0a76777686d50c9feb75c2ed7679a" 1287 | dependencies: 1288 | type-detect "^3.0.0" 1289 | 1290 | deep-extend@~0.4.0: 1291 | version "0.4.2" 1292 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1293 | 1294 | deep-is@~0.1.3: 1295 | version "0.1.3" 1296 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1297 | 1298 | define-properties@^1.1.2: 1299 | version "1.1.2" 1300 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1301 | dependencies: 1302 | foreach "^2.0.5" 1303 | object-keys "^1.0.8" 1304 | 1305 | deglob@^2.1.0: 1306 | version "2.1.0" 1307 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 1308 | dependencies: 1309 | find-root "^1.0.0" 1310 | glob "^7.0.5" 1311 | ignore "^3.0.9" 1312 | pkg-config "^1.1.0" 1313 | run-parallel "^1.1.2" 1314 | uniq "^1.0.1" 1315 | 1316 | del@^2.0.2: 1317 | version "2.2.2" 1318 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1319 | dependencies: 1320 | globby "^5.0.0" 1321 | is-path-cwd "^1.0.0" 1322 | is-path-in-cwd "^1.0.0" 1323 | object-assign "^4.0.1" 1324 | pify "^2.0.0" 1325 | pinkie-promise "^2.0.0" 1326 | rimraf "^2.2.8" 1327 | 1328 | delayed-stream@~1.0.0: 1329 | version "1.0.0" 1330 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1331 | 1332 | delegates@^1.0.0: 1333 | version "1.0.0" 1334 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1335 | 1336 | depd@1.1.0, depd@~1.1.0: 1337 | version "1.1.0" 1338 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1339 | 1340 | detect-file@^0.1.0: 1341 | version "0.1.0" 1342 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 1343 | dependencies: 1344 | fs-exists-sync "^0.1.0" 1345 | 1346 | detect-indent@4.0.0, detect-indent@^4.0.0: 1347 | version "4.0.0" 1348 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1349 | dependencies: 1350 | repeating "^2.0.0" 1351 | 1352 | dezalgo@^1.0.1: 1353 | version "1.0.3" 1354 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 1355 | dependencies: 1356 | asap "^2.0.0" 1357 | wrappy "1" 1358 | 1359 | di@^0.0.1: 1360 | version "0.0.1" 1361 | resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" 1362 | 1363 | diff@3.2.0: 1364 | version "3.2.0" 1365 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1366 | 1367 | doctrine@1.5.0, doctrine@^1.2.2: 1368 | version "1.5.0" 1369 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1370 | dependencies: 1371 | esutils "^2.0.2" 1372 | isarray "^1.0.0" 1373 | 1374 | doctrine@^2.0.0: 1375 | version "2.0.0" 1376 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1377 | dependencies: 1378 | esutils "^2.0.2" 1379 | isarray "^1.0.0" 1380 | 1381 | dom-serialize@^2.2.0: 1382 | version "2.2.1" 1383 | resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" 1384 | dependencies: 1385 | custom-event "~1.0.0" 1386 | ent "~2.2.0" 1387 | extend "^3.0.0" 1388 | void-elements "^2.0.0" 1389 | 1390 | duplexer@~0.1.1: 1391 | version "0.1.1" 1392 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1393 | 1394 | ecc-jsbn@~0.1.1: 1395 | version "0.1.1" 1396 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1397 | dependencies: 1398 | jsbn "~0.1.0" 1399 | 1400 | ee-first@1.1.1: 1401 | version "1.1.1" 1402 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1403 | 1404 | electron-to-chromium@^1.3.15: 1405 | version "1.3.16" 1406 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz#d0e026735754770901ae301a21664cba45d92f7d" 1407 | 1408 | encodeurl@~1.0.1: 1409 | version "1.0.1" 1410 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1411 | 1412 | engine.io-client@1.8.3: 1413 | version "1.8.3" 1414 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.3.tgz#1798ed93451246453d4c6f635d7a201fe940d5ab" 1415 | dependencies: 1416 | component-emitter "1.2.1" 1417 | component-inherit "0.0.3" 1418 | debug "2.3.3" 1419 | engine.io-parser "1.3.2" 1420 | has-cors "1.1.0" 1421 | indexof "0.0.1" 1422 | parsejson "0.0.3" 1423 | parseqs "0.0.5" 1424 | parseuri "0.0.5" 1425 | ws "1.1.2" 1426 | xmlhttprequest-ssl "1.5.3" 1427 | yeast "0.1.2" 1428 | 1429 | engine.io-parser@1.3.2: 1430 | version "1.3.2" 1431 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" 1432 | dependencies: 1433 | after "0.8.2" 1434 | arraybuffer.slice "0.0.6" 1435 | base64-arraybuffer "0.1.5" 1436 | blob "0.0.4" 1437 | has-binary "0.1.7" 1438 | wtf-8 "1.0.0" 1439 | 1440 | engine.io@1.8.3: 1441 | version "1.8.3" 1442 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.3.tgz#8de7f97895d20d39b85f88eeee777b2bd42b13d4" 1443 | dependencies: 1444 | accepts "1.3.3" 1445 | base64id "1.0.0" 1446 | cookie "0.3.1" 1447 | debug "2.3.3" 1448 | engine.io-parser "1.3.2" 1449 | ws "1.1.2" 1450 | 1451 | ent@~2.2.0: 1452 | version "2.2.0" 1453 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 1454 | 1455 | error-ex@^1.2.0: 1456 | version "1.3.1" 1457 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1458 | dependencies: 1459 | is-arrayish "^0.2.1" 1460 | 1461 | es-abstract@^1.7.0: 1462 | version "1.7.0" 1463 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1464 | dependencies: 1465 | es-to-primitive "^1.1.1" 1466 | function-bind "^1.1.0" 1467 | is-callable "^1.1.3" 1468 | is-regex "^1.0.3" 1469 | 1470 | es-to-primitive@^1.1.1: 1471 | version "1.1.1" 1472 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1473 | dependencies: 1474 | is-callable "^1.1.1" 1475 | is-date-object "^1.0.1" 1476 | is-symbol "^1.0.1" 1477 | 1478 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1479 | version "0.10.24" 1480 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.24.tgz#a55877c9924bc0c8d9bd3c2cbe17495ac1709b14" 1481 | dependencies: 1482 | es6-iterator "2" 1483 | es6-symbol "~3.1" 1484 | 1485 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1486 | version "2.0.1" 1487 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1488 | dependencies: 1489 | d "1" 1490 | es5-ext "^0.10.14" 1491 | es6-symbol "^3.1" 1492 | 1493 | es6-map@^0.1.3: 1494 | version "0.1.5" 1495 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1496 | dependencies: 1497 | d "1" 1498 | es5-ext "~0.10.14" 1499 | es6-iterator "~2.0.1" 1500 | es6-set "~0.1.5" 1501 | es6-symbol "~3.1.1" 1502 | event-emitter "~0.3.5" 1503 | 1504 | es6-set@~0.1.5: 1505 | version "0.1.5" 1506 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1507 | dependencies: 1508 | d "1" 1509 | es5-ext "~0.10.14" 1510 | es6-iterator "~2.0.1" 1511 | es6-symbol "3.1.1" 1512 | event-emitter "~0.3.5" 1513 | 1514 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1515 | version "3.1.1" 1516 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1517 | dependencies: 1518 | d "1" 1519 | es5-ext "~0.10.14" 1520 | 1521 | es6-weak-map@^2.0.1: 1522 | version "2.0.2" 1523 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1524 | dependencies: 1525 | d "1" 1526 | es5-ext "^0.10.14" 1527 | es6-iterator "^2.0.1" 1528 | es6-symbol "^3.1.1" 1529 | 1530 | escape-html@~1.0.3: 1531 | version "1.0.3" 1532 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1533 | 1534 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1535 | version "1.0.5" 1536 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1537 | 1538 | escodegen@1.8.x: 1539 | version "1.8.1" 1540 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1541 | dependencies: 1542 | esprima "^2.7.1" 1543 | estraverse "^1.9.1" 1544 | esutils "^2.0.2" 1545 | optionator "^0.8.1" 1546 | optionalDependencies: 1547 | source-map "~0.2.0" 1548 | 1549 | escope@^3.6.0: 1550 | version "3.6.0" 1551 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1552 | dependencies: 1553 | es6-map "^0.1.3" 1554 | es6-weak-map "^2.0.1" 1555 | esrecurse "^4.1.0" 1556 | estraverse "^4.1.1" 1557 | 1558 | eslint-config-standard-jsx@4.0.1: 1559 | version "4.0.1" 1560 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642" 1561 | 1562 | eslint-config-standard@10.2.1: 1563 | version "10.2.1" 1564 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 1565 | 1566 | eslint-import-resolver-node@^0.2.0: 1567 | version "0.2.3" 1568 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1569 | dependencies: 1570 | debug "^2.2.0" 1571 | object-assign "^4.0.1" 1572 | resolve "^1.1.6" 1573 | 1574 | eslint-module-utils@^2.0.0: 1575 | version "2.1.1" 1576 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1577 | dependencies: 1578 | debug "^2.6.8" 1579 | pkg-dir "^1.0.0" 1580 | 1581 | eslint-plugin-import@~2.2.0: 1582 | version "2.2.0" 1583 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1584 | dependencies: 1585 | builtin-modules "^1.1.1" 1586 | contains-path "^0.1.0" 1587 | debug "^2.2.0" 1588 | doctrine "1.5.0" 1589 | eslint-import-resolver-node "^0.2.0" 1590 | eslint-module-utils "^2.0.0" 1591 | has "^1.0.1" 1592 | lodash.cond "^4.3.0" 1593 | minimatch "^3.0.3" 1594 | pkg-up "^1.0.0" 1595 | 1596 | eslint-plugin-node@~4.2.2: 1597 | version "4.2.2" 1598 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 1599 | dependencies: 1600 | ignore "^3.0.11" 1601 | minimatch "^3.0.2" 1602 | object-assign "^4.0.1" 1603 | resolve "^1.1.7" 1604 | semver "5.3.0" 1605 | 1606 | eslint-plugin-promise@~3.5.0: 1607 | version "3.5.0" 1608 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1609 | 1610 | eslint-plugin-react@~6.10.0: 1611 | version "6.10.3" 1612 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 1613 | dependencies: 1614 | array.prototype.find "^2.0.1" 1615 | doctrine "^1.2.2" 1616 | has "^1.0.1" 1617 | jsx-ast-utils "^1.3.4" 1618 | object.assign "^4.0.4" 1619 | 1620 | eslint-plugin-standard@~3.0.1: 1621 | version "3.0.1" 1622 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1623 | 1624 | eslint@~3.19.0: 1625 | version "3.19.0" 1626 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1627 | dependencies: 1628 | babel-code-frame "^6.16.0" 1629 | chalk "^1.1.3" 1630 | concat-stream "^1.5.2" 1631 | debug "^2.1.1" 1632 | doctrine "^2.0.0" 1633 | escope "^3.6.0" 1634 | espree "^3.4.0" 1635 | esquery "^1.0.0" 1636 | estraverse "^4.2.0" 1637 | esutils "^2.0.2" 1638 | file-entry-cache "^2.0.0" 1639 | glob "^7.0.3" 1640 | globals "^9.14.0" 1641 | ignore "^3.2.0" 1642 | imurmurhash "^0.1.4" 1643 | inquirer "^0.12.0" 1644 | is-my-json-valid "^2.10.0" 1645 | is-resolvable "^1.0.0" 1646 | js-yaml "^3.5.1" 1647 | json-stable-stringify "^1.0.0" 1648 | levn "^0.3.0" 1649 | lodash "^4.0.0" 1650 | mkdirp "^0.5.0" 1651 | natural-compare "^1.4.0" 1652 | optionator "^0.8.2" 1653 | path-is-inside "^1.0.1" 1654 | pluralize "^1.2.1" 1655 | progress "^1.1.8" 1656 | require-uncached "^1.0.2" 1657 | shelljs "^0.7.5" 1658 | strip-bom "^3.0.0" 1659 | strip-json-comments "~2.0.1" 1660 | table "^3.7.8" 1661 | text-table "~0.2.0" 1662 | user-home "^2.0.0" 1663 | 1664 | espree@^3.4.0: 1665 | version "3.4.3" 1666 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1667 | dependencies: 1668 | acorn "^5.0.1" 1669 | acorn-jsx "^3.0.0" 1670 | 1671 | esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1: 1672 | version "2.7.3" 1673 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1674 | 1675 | esprima@^4.0.0: 1676 | version "4.0.0" 1677 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1678 | 1679 | esquery@^1.0.0: 1680 | version "1.0.0" 1681 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1682 | dependencies: 1683 | estraverse "^4.0.0" 1684 | 1685 | esrecurse@^4.1.0: 1686 | version "4.2.0" 1687 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1688 | dependencies: 1689 | estraverse "^4.1.0" 1690 | object-assign "^4.0.1" 1691 | 1692 | estraverse@^1.9.1: 1693 | version "1.9.3" 1694 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1695 | 1696 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1697 | version "4.2.0" 1698 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1699 | 1700 | estree-walker@^0.2.1: 1701 | version "0.2.1" 1702 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1703 | 1704 | estree-walker@^0.3.0: 1705 | version "0.3.1" 1706 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa" 1707 | 1708 | esutils@^2.0.2: 1709 | version "2.0.2" 1710 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1711 | 1712 | event-emitter@~0.3.5: 1713 | version "0.3.5" 1714 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1715 | dependencies: 1716 | d "1" 1717 | es5-ext "~0.10.14" 1718 | 1719 | event-stream@^3.3.0: 1720 | version "3.3.4" 1721 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1722 | dependencies: 1723 | duplexer "~0.1.1" 1724 | from "~0" 1725 | map-stream "~0.1.0" 1726 | pause-stream "0.0.11" 1727 | split "0.3" 1728 | stream-combiner "~0.0.4" 1729 | through "~2.3.1" 1730 | 1731 | eventemitter3@1.x.x: 1732 | version "1.2.0" 1733 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1734 | 1735 | exit-hook@^1.0.0: 1736 | version "1.1.1" 1737 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1738 | 1739 | expand-braces@^0.1.1: 1740 | version "0.1.2" 1741 | resolved "https://registry.yarnpkg.com/expand-braces/-/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" 1742 | dependencies: 1743 | array-slice "^0.2.3" 1744 | array-unique "^0.2.1" 1745 | braces "^0.1.2" 1746 | 1747 | expand-brackets@^0.1.4: 1748 | version "0.1.5" 1749 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1750 | dependencies: 1751 | is-posix-bracket "^0.1.0" 1752 | 1753 | expand-range@^0.1.0: 1754 | version "0.1.1" 1755 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" 1756 | dependencies: 1757 | is-number "^0.1.1" 1758 | repeat-string "^0.2.2" 1759 | 1760 | expand-range@^1.8.1: 1761 | version "1.8.2" 1762 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1763 | dependencies: 1764 | fill-range "^2.1.0" 1765 | 1766 | expand-tilde@^1.2.2: 1767 | version "1.2.2" 1768 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1769 | dependencies: 1770 | os-homedir "^1.0.1" 1771 | 1772 | extend@3, extend@^3.0.0, extend@~3.0.0: 1773 | version "3.0.1" 1774 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1775 | 1776 | external-editor@^1.1.0: 1777 | version "1.1.1" 1778 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 1779 | dependencies: 1780 | extend "^3.0.0" 1781 | spawn-sync "^1.0.15" 1782 | tmp "^0.0.29" 1783 | 1784 | extglob@^0.3.1: 1785 | version "0.3.2" 1786 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1787 | dependencies: 1788 | is-extglob "^1.0.0" 1789 | 1790 | extsprintf@1.0.2: 1791 | version "1.0.2" 1792 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1793 | 1794 | fast-levenshtein@~2.0.4: 1795 | version "2.0.6" 1796 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1797 | 1798 | figures@^1.3.5: 1799 | version "1.7.0" 1800 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1801 | dependencies: 1802 | escape-string-regexp "^1.0.5" 1803 | object-assign "^4.1.0" 1804 | 1805 | file-entry-cache@^2.0.0: 1806 | version "2.0.0" 1807 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1808 | dependencies: 1809 | flat-cache "^1.2.1" 1810 | object-assign "^4.0.1" 1811 | 1812 | filename-regex@^2.0.0: 1813 | version "2.0.1" 1814 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1815 | 1816 | fill-range@^2.1.0: 1817 | version "2.2.3" 1818 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1819 | dependencies: 1820 | is-number "^2.1.0" 1821 | isobject "^2.0.0" 1822 | randomatic "^1.1.3" 1823 | repeat-element "^1.1.2" 1824 | repeat-string "^1.5.2" 1825 | 1826 | finalhandler@1.0.3: 1827 | version "1.0.3" 1828 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" 1829 | dependencies: 1830 | debug "2.6.7" 1831 | encodeurl "~1.0.1" 1832 | escape-html "~1.0.3" 1833 | on-finished "~2.3.0" 1834 | parseurl "~1.3.1" 1835 | statuses "~1.3.1" 1836 | unpipe "~1.0.0" 1837 | 1838 | find-node-modules@1.0.4: 1839 | version "1.0.4" 1840 | resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-1.0.4.tgz#b6deb3cccb699c87037677bcede2c5f5862b2550" 1841 | dependencies: 1842 | findup-sync "0.4.2" 1843 | merge "^1.2.0" 1844 | 1845 | find-root@1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1848 | 1849 | find-root@^1.0.0: 1850 | version "1.1.0" 1851 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 1852 | 1853 | find-up@^1.0.0: 1854 | version "1.1.2" 1855 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1856 | dependencies: 1857 | path-exists "^2.0.0" 1858 | pinkie-promise "^2.0.0" 1859 | 1860 | find-up@^2.0.0, find-up@^2.1.0: 1861 | version "2.1.0" 1862 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1863 | dependencies: 1864 | locate-path "^2.0.0" 1865 | 1866 | findup-sync@0.4.2: 1867 | version "0.4.2" 1868 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.2.tgz#a8117d0f73124f5a4546839579fe52d7129fb5e5" 1869 | dependencies: 1870 | detect-file "^0.1.0" 1871 | is-glob "^2.0.1" 1872 | micromatch "^2.3.7" 1873 | resolve-dir "^0.1.0" 1874 | 1875 | flat-cache@^1.2.1: 1876 | version "1.2.2" 1877 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1878 | dependencies: 1879 | circular-json "^0.3.1" 1880 | del "^2.0.2" 1881 | graceful-fs "^4.1.2" 1882 | write "^0.2.1" 1883 | 1884 | follow-redirects@0.0.7: 1885 | version "0.0.7" 1886 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 1887 | dependencies: 1888 | debug "^2.2.0" 1889 | stream-consume "^0.1.0" 1890 | 1891 | for-in@^1.0.1: 1892 | version "1.0.2" 1893 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1894 | 1895 | for-own@^0.1.4: 1896 | version "0.1.5" 1897 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1898 | dependencies: 1899 | for-in "^1.0.1" 1900 | 1901 | foreach@^2.0.5: 1902 | version "2.0.5" 1903 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1904 | 1905 | foreachasync@^3.0.0: 1906 | version "3.0.0" 1907 | resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" 1908 | 1909 | forever-agent@~0.6.1: 1910 | version "0.6.1" 1911 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1912 | 1913 | form-data@~1.0.0-rc4: 1914 | version "1.0.1" 1915 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 1916 | dependencies: 1917 | async "^2.0.1" 1918 | combined-stream "^1.0.5" 1919 | mime-types "^2.1.11" 1920 | 1921 | form-data@~2.1.1: 1922 | version "2.1.4" 1923 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1924 | dependencies: 1925 | asynckit "^0.4.0" 1926 | combined-stream "^1.0.5" 1927 | mime-types "^2.1.12" 1928 | 1929 | from@~0: 1930 | version "0.1.7" 1931 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1932 | 1933 | fs-access@^1.0.0: 1934 | version "1.0.1" 1935 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 1936 | dependencies: 1937 | null-check "^1.0.0" 1938 | 1939 | fs-exists-sync@^0.1.0: 1940 | version "0.1.0" 1941 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1942 | 1943 | fs-extra@^1.0.0: 1944 | version "1.0.0" 1945 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1946 | dependencies: 1947 | graceful-fs "^4.1.2" 1948 | jsonfile "^2.1.0" 1949 | klaw "^1.0.0" 1950 | 1951 | fs-readdir-recursive@^1.0.0: 1952 | version "1.0.0" 1953 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1954 | 1955 | fs.realpath@^1.0.0: 1956 | version "1.0.0" 1957 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1958 | 1959 | fsevents@^1.0.0: 1960 | version "1.1.2" 1961 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1962 | dependencies: 1963 | nan "^2.3.0" 1964 | node-pre-gyp "^0.6.36" 1965 | 1966 | fstream-ignore@^1.0.5: 1967 | version "1.0.5" 1968 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1969 | dependencies: 1970 | fstream "^1.0.0" 1971 | inherits "2" 1972 | minimatch "^3.0.0" 1973 | 1974 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1975 | version "1.0.11" 1976 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1977 | dependencies: 1978 | graceful-fs "^4.1.2" 1979 | inherits "~2.0.0" 1980 | mkdirp ">=0.5 0" 1981 | rimraf "2" 1982 | 1983 | function-bind@^1.0.2, function-bind@^1.1.0: 1984 | version "1.1.0" 1985 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1986 | 1987 | gauge@~1.2.0: 1988 | version "1.2.7" 1989 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1990 | dependencies: 1991 | ansi "^0.3.0" 1992 | has-unicode "^2.0.0" 1993 | lodash.pad "^4.1.0" 1994 | lodash.padend "^4.1.0" 1995 | lodash.padstart "^4.1.0" 1996 | 1997 | gauge@~2.7.3: 1998 | version "2.7.4" 1999 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 2000 | dependencies: 2001 | aproba "^1.0.3" 2002 | console-control-strings "^1.0.0" 2003 | has-unicode "^2.0.0" 2004 | object-assign "^4.1.0" 2005 | signal-exit "^3.0.0" 2006 | string-width "^1.0.1" 2007 | strip-ansi "^3.0.1" 2008 | wide-align "^1.1.0" 2009 | 2010 | generate-function@^2.0.0: 2011 | version "2.0.0" 2012 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 2013 | 2014 | generate-object-property@^1.1.0: 2015 | version "1.2.0" 2016 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 2017 | dependencies: 2018 | is-property "^1.0.0" 2019 | 2020 | get-func-name@^2.0.0: 2021 | version "2.0.0" 2022 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 2023 | 2024 | get-stdin@^4.0.1: 2025 | version "4.0.1" 2026 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 2027 | 2028 | get-stdin@^5.0.1: 2029 | version "5.0.1" 2030 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 2031 | 2032 | getpass@^0.1.1: 2033 | version "0.1.7" 2034 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 2035 | dependencies: 2036 | assert-plus "^1.0.0" 2037 | 2038 | git-head@^1.2.1: 2039 | version "1.20.1" 2040 | resolved "https://registry.yarnpkg.com/git-head/-/git-head-1.20.1.tgz#036d16a4b374949e4e3daf15827903686d3ccd52" 2041 | dependencies: 2042 | git-refs "^1.1.3" 2043 | 2044 | git-refs@^1.1.3: 2045 | version "1.1.3" 2046 | resolved "https://registry.yarnpkg.com/git-refs/-/git-refs-1.1.3.tgz#83097cb3a92585c4a4926ec54e2182df9e20e89d" 2047 | dependencies: 2048 | path-object "^2.3.0" 2049 | slash "^1.0.0" 2050 | walk "^2.3.9" 2051 | 2052 | github-url-from-git@^1.3.0, github-url-from-git@^1.4.0: 2053 | version "1.5.0" 2054 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 2055 | 2056 | github-url-from-username-repo@^1.0.0: 2057 | version "1.0.2" 2058 | resolved "https://registry.yarnpkg.com/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" 2059 | 2060 | github@^8.0.0: 2061 | version "8.2.1" 2062 | resolved "https://registry.yarnpkg.com/github/-/github-8.2.1.tgz#616b2211fbcd1cc8631669aed67653e62eb53816" 2063 | dependencies: 2064 | follow-redirects "0.0.7" 2065 | https-proxy-agent "^1.0.0" 2066 | mime "^1.2.11" 2067 | netrc "^0.1.4" 2068 | 2069 | github@~0.1.10: 2070 | version "0.1.16" 2071 | resolved "https://registry.yarnpkg.com/github/-/github-0.1.16.tgz#895d2a85b0feb7980d89ac0ce4f44dcaa03f17b5" 2072 | 2073 | glob-base@^0.3.0: 2074 | version "0.3.0" 2075 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2076 | dependencies: 2077 | glob-parent "^2.0.0" 2078 | is-glob "^2.0.0" 2079 | 2080 | glob-parent@^2.0.0: 2081 | version "2.0.0" 2082 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2083 | dependencies: 2084 | is-glob "^2.0.0" 2085 | 2086 | glob@7.1.1: 2087 | version "7.1.1" 2088 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2089 | dependencies: 2090 | fs.realpath "^1.0.0" 2091 | inflight "^1.0.4" 2092 | inherits "2" 2093 | minimatch "^3.0.2" 2094 | once "^1.3.0" 2095 | path-is-absolute "^1.0.0" 2096 | 2097 | glob@^5.0.15: 2098 | version "5.0.15" 2099 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 2100 | dependencies: 2101 | inflight "^1.0.4" 2102 | inherits "2" 2103 | minimatch "2 || 3" 2104 | once "^1.3.0" 2105 | path-is-absolute "^1.0.0" 2106 | 2107 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 2108 | version "7.1.2" 2109 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 2110 | dependencies: 2111 | fs.realpath "^1.0.0" 2112 | inflight "^1.0.4" 2113 | inherits "2" 2114 | minimatch "^3.0.4" 2115 | once "^1.3.0" 2116 | path-is-absolute "^1.0.0" 2117 | 2118 | global-modules@^0.2.3: 2119 | version "0.2.3" 2120 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 2121 | dependencies: 2122 | global-prefix "^0.1.4" 2123 | is-windows "^0.2.0" 2124 | 2125 | global-prefix@^0.1.4: 2126 | version "0.1.5" 2127 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 2128 | dependencies: 2129 | homedir-polyfill "^1.0.0" 2130 | ini "^1.3.4" 2131 | is-windows "^0.2.0" 2132 | which "^1.2.12" 2133 | 2134 | globals@^9.0.0, globals@^9.14.0: 2135 | version "9.18.0" 2136 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2137 | 2138 | globby@^5.0.0: 2139 | version "5.0.0" 2140 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2141 | dependencies: 2142 | array-union "^1.0.1" 2143 | arrify "^1.0.0" 2144 | glob "^7.0.3" 2145 | object-assign "^4.0.1" 2146 | pify "^2.0.0" 2147 | pinkie-promise "^2.0.0" 2148 | 2149 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 2150 | version "4.1.11" 2151 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2152 | 2153 | "graceful-readlink@>= 1.0.0": 2154 | version "1.0.1" 2155 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 2156 | 2157 | growl@1.9.2: 2158 | version "1.9.2" 2159 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 2160 | 2161 | handlebars@^4.0.1: 2162 | version "4.0.10" 2163 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 2164 | dependencies: 2165 | async "^1.4.0" 2166 | optimist "^0.6.1" 2167 | source-map "^0.4.4" 2168 | optionalDependencies: 2169 | uglify-js "^2.6" 2170 | 2171 | har-schema@^1.0.5: 2172 | version "1.0.5" 2173 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2174 | 2175 | har-validator@~2.0.6: 2176 | version "2.0.6" 2177 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2178 | dependencies: 2179 | chalk "^1.1.1" 2180 | commander "^2.9.0" 2181 | is-my-json-valid "^2.12.4" 2182 | pinkie-promise "^2.0.0" 2183 | 2184 | har-validator@~4.2.1: 2185 | version "4.2.1" 2186 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2187 | dependencies: 2188 | ajv "^4.9.1" 2189 | har-schema "^1.0.5" 2190 | 2191 | has-ansi@^2.0.0: 2192 | version "2.0.0" 2193 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2194 | dependencies: 2195 | ansi-regex "^2.0.0" 2196 | 2197 | has-binary@0.1.7: 2198 | version "0.1.7" 2199 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 2200 | dependencies: 2201 | isarray "0.0.1" 2202 | 2203 | has-cors@1.1.0: 2204 | version "1.1.0" 2205 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 2206 | 2207 | has-flag@^1.0.0: 2208 | version "1.0.0" 2209 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2210 | 2211 | has-unicode@^2.0.0: 2212 | version "2.0.1" 2213 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2214 | 2215 | has@^1.0.1: 2216 | version "1.0.1" 2217 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2218 | dependencies: 2219 | function-bind "^1.0.2" 2220 | 2221 | hawk@~3.1.3: 2222 | version "3.1.3" 2223 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2224 | dependencies: 2225 | boom "2.x.x" 2226 | cryptiles "2.x.x" 2227 | hoek "2.x.x" 2228 | sntp "1.x.x" 2229 | 2230 | hoek@2.x.x: 2231 | version "2.16.3" 2232 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2233 | 2234 | home-or-tmp@^2.0.0: 2235 | version "2.0.0" 2236 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2237 | dependencies: 2238 | os-homedir "^1.0.0" 2239 | os-tmpdir "^1.0.1" 2240 | 2241 | homedir-polyfill@^1.0.0: 2242 | version "1.0.1" 2243 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 2244 | dependencies: 2245 | parse-passwd "^1.0.0" 2246 | 2247 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: 2248 | version "2.5.0" 2249 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 2250 | 2251 | http-errors@~1.6.1: 2252 | version "1.6.1" 2253 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 2254 | dependencies: 2255 | depd "1.1.0" 2256 | inherits "2.0.3" 2257 | setprototypeof "1.0.3" 2258 | statuses ">= 1.3.1 < 2" 2259 | 2260 | http-proxy@^1.13.0: 2261 | version "1.16.2" 2262 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 2263 | dependencies: 2264 | eventemitter3 "1.x.x" 2265 | requires-port "1.x.x" 2266 | 2267 | http-signature@~1.1.0: 2268 | version "1.1.1" 2269 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2270 | dependencies: 2271 | assert-plus "^0.2.0" 2272 | jsprim "^1.2.2" 2273 | sshpk "^1.7.0" 2274 | 2275 | https-proxy-agent@^1.0.0: 2276 | version "1.0.0" 2277 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 2278 | dependencies: 2279 | agent-base "2" 2280 | debug "2" 2281 | extend "3" 2282 | 2283 | iconv-lite@0.4.15: 2284 | version "0.4.15" 2285 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 2286 | 2287 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0: 2288 | version "3.3.3" 2289 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 2290 | 2291 | imurmurhash@^0.1.4: 2292 | version "0.1.4" 2293 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2294 | 2295 | indent-string@^2.1.0: 2296 | version "2.1.0" 2297 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2298 | dependencies: 2299 | repeating "^2.0.0" 2300 | 2301 | indexof@0.0.1: 2302 | version "0.0.1" 2303 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2304 | 2305 | inflight@^1.0.4: 2306 | version "1.0.6" 2307 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2308 | dependencies: 2309 | once "^1.3.0" 2310 | wrappy "1" 2311 | 2312 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2313 | version "2.0.3" 2314 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2315 | 2316 | ini@^1.2.0, ini@^1.3.4, ini@~1.3.0: 2317 | version "1.3.4" 2318 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2319 | 2320 | inquirer@1.2.3: 2321 | version "1.2.3" 2322 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 2323 | dependencies: 2324 | ansi-escapes "^1.1.0" 2325 | chalk "^1.0.0" 2326 | cli-cursor "^1.0.1" 2327 | cli-width "^2.0.0" 2328 | external-editor "^1.1.0" 2329 | figures "^1.3.5" 2330 | lodash "^4.3.0" 2331 | mute-stream "0.0.6" 2332 | pinkie-promise "^2.0.0" 2333 | run-async "^2.2.0" 2334 | rx "^4.1.0" 2335 | string-width "^1.0.1" 2336 | strip-ansi "^3.0.0" 2337 | through "^2.3.6" 2338 | 2339 | inquirer@^0.12.0: 2340 | version "0.12.0" 2341 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2342 | dependencies: 2343 | ansi-escapes "^1.1.0" 2344 | ansi-regex "^2.0.0" 2345 | chalk "^1.0.0" 2346 | cli-cursor "^1.0.1" 2347 | cli-width "^2.0.0" 2348 | figures "^1.3.5" 2349 | lodash "^4.3.0" 2350 | readline2 "^1.0.1" 2351 | run-async "^0.1.0" 2352 | rx-lite "^3.1.2" 2353 | string-width "^1.0.1" 2354 | strip-ansi "^3.0.0" 2355 | through "^2.3.6" 2356 | 2357 | interpret@^1.0.0: 2358 | version "1.0.3" 2359 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 2360 | 2361 | invariant@^2.2.0, invariant@^2.2.2: 2362 | version "2.2.2" 2363 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2364 | dependencies: 2365 | loose-envify "^1.0.0" 2366 | 2367 | is-arrayish@^0.2.1: 2368 | version "0.2.1" 2369 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2370 | 2371 | is-binary-path@^1.0.0: 2372 | version "1.0.1" 2373 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2374 | dependencies: 2375 | binary-extensions "^1.0.0" 2376 | 2377 | is-buffer@^1.1.5: 2378 | version "1.1.5" 2379 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2380 | 2381 | is-builtin-module@^1.0.0: 2382 | version "1.0.0" 2383 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2384 | dependencies: 2385 | builtin-modules "^1.0.0" 2386 | 2387 | is-callable@^1.1.1, is-callable@^1.1.3: 2388 | version "1.1.3" 2389 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2390 | 2391 | is-date-object@^1.0.1: 2392 | version "1.0.1" 2393 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2394 | 2395 | is-dotfile@^1.0.0: 2396 | version "1.0.3" 2397 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2398 | 2399 | is-equal-shallow@^0.1.3: 2400 | version "0.1.3" 2401 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2402 | dependencies: 2403 | is-primitive "^2.0.0" 2404 | 2405 | is-extendable@^0.1.1: 2406 | version "0.1.1" 2407 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2408 | 2409 | is-extglob@^1.0.0: 2410 | version "1.0.0" 2411 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2412 | 2413 | is-finite@^1.0.0: 2414 | version "1.0.2" 2415 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2416 | dependencies: 2417 | number-is-nan "^1.0.0" 2418 | 2419 | is-fullwidth-code-point@^1.0.0: 2420 | version "1.0.0" 2421 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2422 | dependencies: 2423 | number-is-nan "^1.0.0" 2424 | 2425 | is-fullwidth-code-point@^2.0.0: 2426 | version "2.0.0" 2427 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2428 | 2429 | is-glob@^2.0.0, is-glob@^2.0.1: 2430 | version "2.0.1" 2431 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2432 | dependencies: 2433 | is-extglob "^1.0.0" 2434 | 2435 | is-module@^1.0.0: 2436 | version "1.0.0" 2437 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 2438 | 2439 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2440 | version "2.16.0" 2441 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2442 | dependencies: 2443 | generate-function "^2.0.0" 2444 | generate-object-property "^1.1.0" 2445 | jsonpointer "^4.0.0" 2446 | xtend "^4.0.0" 2447 | 2448 | is-number@^0.1.1: 2449 | version "0.1.1" 2450 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" 2451 | 2452 | is-number@^2.1.0: 2453 | version "2.1.0" 2454 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2455 | dependencies: 2456 | kind-of "^3.0.2" 2457 | 2458 | is-number@^3.0.0: 2459 | version "3.0.0" 2460 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2461 | dependencies: 2462 | kind-of "^3.0.2" 2463 | 2464 | is-path-cwd@^1.0.0: 2465 | version "1.0.0" 2466 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2467 | 2468 | is-path-in-cwd@^1.0.0: 2469 | version "1.0.0" 2470 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2471 | dependencies: 2472 | is-path-inside "^1.0.0" 2473 | 2474 | is-path-inside@^1.0.0: 2475 | version "1.0.0" 2476 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2477 | dependencies: 2478 | path-is-inside "^1.0.1" 2479 | 2480 | is-posix-bracket@^0.1.0: 2481 | version "0.1.1" 2482 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2483 | 2484 | is-primitive@^2.0.0: 2485 | version "2.0.0" 2486 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2487 | 2488 | is-promise@^2.1.0: 2489 | version "2.1.0" 2490 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2491 | 2492 | is-property@^1.0.0: 2493 | version "1.0.2" 2494 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2495 | 2496 | is-regex@^1.0.3: 2497 | version "1.0.4" 2498 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2499 | dependencies: 2500 | has "^1.0.1" 2501 | 2502 | is-resolvable@^1.0.0: 2503 | version "1.0.0" 2504 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2505 | dependencies: 2506 | tryit "^1.0.1" 2507 | 2508 | is-symbol@^1.0.1: 2509 | version "1.0.1" 2510 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2511 | 2512 | is-typedarray@~1.0.0: 2513 | version "1.0.0" 2514 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2515 | 2516 | is-utf8@^0.2.0: 2517 | version "0.2.1" 2518 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2519 | 2520 | is-windows@^0.2.0: 2521 | version "0.2.0" 2522 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2523 | 2524 | isarray@0.0.1: 2525 | version "0.0.1" 2526 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2527 | 2528 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2529 | version "1.0.0" 2530 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2531 | 2532 | isbinaryfile@^3.0.0: 2533 | version "3.0.2" 2534 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 2535 | 2536 | isexe@^2.0.0: 2537 | version "2.0.0" 2538 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2539 | 2540 | isobject@^2.0.0: 2541 | version "2.1.0" 2542 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2543 | dependencies: 2544 | isarray "1.0.0" 2545 | 2546 | isstream@~0.1.2: 2547 | version "0.1.2" 2548 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2549 | 2550 | istanbul-lib-coverage@^1.1.1: 2551 | version "1.1.1" 2552 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2553 | 2554 | istanbul-lib-instrument@^1.7.2: 2555 | version "1.7.4" 2556 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8" 2557 | dependencies: 2558 | babel-generator "^6.18.0" 2559 | babel-template "^6.16.0" 2560 | babel-traverse "^6.18.0" 2561 | babel-types "^6.18.0" 2562 | babylon "^6.17.4" 2563 | istanbul-lib-coverage "^1.1.1" 2564 | semver "^5.3.0" 2565 | 2566 | istanbul@^0.4.0: 2567 | version "0.4.5" 2568 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 2569 | dependencies: 2570 | abbrev "1.0.x" 2571 | async "1.x" 2572 | escodegen "1.8.x" 2573 | esprima "2.7.x" 2574 | glob "^5.0.15" 2575 | handlebars "^4.0.1" 2576 | js-yaml "3.x" 2577 | mkdirp "0.5.x" 2578 | nopt "3.x" 2579 | once "1.x" 2580 | resolve "1.1.x" 2581 | supports-color "^3.1.0" 2582 | which "^1.1.1" 2583 | wordwrap "^1.0.0" 2584 | 2585 | js-tokens@^3.0.0: 2586 | version "3.0.2" 2587 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2588 | 2589 | js-yaml@3.6.1: 2590 | version "3.6.1" 2591 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2592 | dependencies: 2593 | argparse "^1.0.7" 2594 | esprima "^2.6.0" 2595 | 2596 | js-yaml@3.x, js-yaml@^3.5.1: 2597 | version "3.9.0" 2598 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.0.tgz#4ffbbf25c2ac963b8299dc74da7e3740de1c18ce" 2599 | dependencies: 2600 | argparse "^1.0.7" 2601 | esprima "^4.0.0" 2602 | 2603 | jsbn@~0.1.0: 2604 | version "0.1.1" 2605 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2606 | 2607 | jsesc@^1.3.0: 2608 | version "1.3.0" 2609 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2610 | 2611 | jsesc@~0.5.0: 2612 | version "0.5.0" 2613 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2614 | 2615 | json-schema@0.2.3: 2616 | version "0.2.3" 2617 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2618 | 2619 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2620 | version "1.0.1" 2621 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2622 | dependencies: 2623 | jsonify "~0.0.0" 2624 | 2625 | json-stringify-safe@~5.0.1: 2626 | version "5.0.1" 2627 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2628 | 2629 | json3@3.3.2: 2630 | version "3.3.2" 2631 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2632 | 2633 | json5@^0.5.0: 2634 | version "0.5.1" 2635 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2636 | 2637 | jsonfile@^2.1.0: 2638 | version "2.4.0" 2639 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2640 | optionalDependencies: 2641 | graceful-fs "^4.1.6" 2642 | 2643 | jsonify@~0.0.0: 2644 | version "0.0.0" 2645 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2646 | 2647 | jsonpointer@^4.0.0: 2648 | version "4.0.1" 2649 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2650 | 2651 | jsprim@^1.2.2: 2652 | version "1.4.0" 2653 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2654 | dependencies: 2655 | assert-plus "1.0.0" 2656 | extsprintf "1.0.2" 2657 | json-schema "0.2.3" 2658 | verror "1.3.6" 2659 | 2660 | jsx-ast-utils@^1.3.4: 2661 | version "1.4.1" 2662 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2663 | 2664 | karma-chai@^0.1.0: 2665 | version "0.1.0" 2666 | resolved "https://registry.yarnpkg.com/karma-chai/-/karma-chai-0.1.0.tgz#bee5ad40400517811ae34bb945f762909108b79a" 2667 | 2668 | karma-chrome-launcher@^2.2.0: 2669 | version "2.2.0" 2670 | resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-2.2.0.tgz#cf1b9d07136cc18fe239327d24654c3dbc368acf" 2671 | dependencies: 2672 | fs-access "^1.0.0" 2673 | which "^1.2.1" 2674 | 2675 | karma-coverage@^1.1.1: 2676 | version "1.1.1" 2677 | resolved "https://registry.yarnpkg.com/karma-coverage/-/karma-coverage-1.1.1.tgz#5aff8b39cf6994dc22de4c84362c76001b637cf6" 2678 | dependencies: 2679 | dateformat "^1.0.6" 2680 | istanbul "^0.4.0" 2681 | lodash "^3.8.0" 2682 | minimatch "^3.0.0" 2683 | source-map "^0.5.1" 2684 | 2685 | karma-mocha-reporter@^2.2.3: 2686 | version "2.2.3" 2687 | resolved "https://registry.yarnpkg.com/karma-mocha-reporter/-/karma-mocha-reporter-2.2.3.tgz#04fdda45a1d9697a73871c7472223c581701ab20" 2688 | dependencies: 2689 | chalk "1.1.3" 2690 | 2691 | karma-mocha@^1.3.0: 2692 | version "1.3.0" 2693 | resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-1.3.0.tgz#eeaac7ffc0e201eb63c467440d2b69c7cf3778bf" 2694 | dependencies: 2695 | minimist "1.2.0" 2696 | 2697 | karma-rollup-preprocessor@^4.0.1: 2698 | version "4.0.1" 2699 | resolved "https://registry.yarnpkg.com/karma-rollup-preprocessor/-/karma-rollup-preprocessor-4.0.1.tgz#56e879c2f496d09cf84146efdf03ed9a2721818d" 2700 | dependencies: 2701 | lodash "^4.17.4" 2702 | rollup "^0.x" 2703 | 2704 | karma@^1.7.0: 2705 | version "1.7.0" 2706 | resolved "https://registry.yarnpkg.com/karma/-/karma-1.7.0.tgz#6f7a1a406446fa2e187ec95398698f4cee476269" 2707 | dependencies: 2708 | bluebird "^3.3.0" 2709 | body-parser "^1.16.1" 2710 | chokidar "^1.4.1" 2711 | colors "^1.1.0" 2712 | combine-lists "^1.0.0" 2713 | connect "^3.6.0" 2714 | core-js "^2.2.0" 2715 | di "^0.0.1" 2716 | dom-serialize "^2.2.0" 2717 | expand-braces "^0.1.1" 2718 | glob "^7.1.1" 2719 | graceful-fs "^4.1.2" 2720 | http-proxy "^1.13.0" 2721 | isbinaryfile "^3.0.0" 2722 | lodash "^3.8.0" 2723 | log4js "^0.6.31" 2724 | mime "^1.3.4" 2725 | minimatch "^3.0.2" 2726 | optimist "^0.6.1" 2727 | qjobs "^1.1.4" 2728 | range-parser "^1.2.0" 2729 | rimraf "^2.6.0" 2730 | safe-buffer "^5.0.1" 2731 | socket.io "1.7.3" 2732 | source-map "^0.5.3" 2733 | tmp "0.0.31" 2734 | useragent "^2.1.12" 2735 | 2736 | kind-of@^3.0.2: 2737 | version "3.2.2" 2738 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2739 | dependencies: 2740 | is-buffer "^1.1.5" 2741 | 2742 | kind-of@^4.0.0: 2743 | version "4.0.0" 2744 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2745 | dependencies: 2746 | is-buffer "^1.1.5" 2747 | 2748 | klaw@^1.0.0: 2749 | version "1.3.1" 2750 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2751 | optionalDependencies: 2752 | graceful-fs "^4.1.9" 2753 | 2754 | lazy-cache@^1.0.3: 2755 | version "1.0.4" 2756 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2757 | 2758 | lcov-parse@0.0.10: 2759 | version "0.0.10" 2760 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2761 | 2762 | levn@^0.3.0, levn@~0.3.0: 2763 | version "0.3.0" 2764 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2765 | dependencies: 2766 | prelude-ls "~1.1.2" 2767 | type-check "~0.3.2" 2768 | 2769 | load-json-file@^1.0.0: 2770 | version "1.1.0" 2771 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2772 | dependencies: 2773 | graceful-fs "^4.1.2" 2774 | parse-json "^2.2.0" 2775 | pify "^2.0.0" 2776 | pinkie-promise "^2.0.0" 2777 | strip-bom "^2.0.0" 2778 | 2779 | load-json-file@^2.0.0: 2780 | version "2.0.0" 2781 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2782 | dependencies: 2783 | graceful-fs "^4.1.2" 2784 | parse-json "^2.2.0" 2785 | pify "^2.0.0" 2786 | strip-bom "^3.0.0" 2787 | 2788 | locate-path@^2.0.0: 2789 | version "2.0.0" 2790 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2791 | dependencies: 2792 | p-locate "^2.0.0" 2793 | path-exists "^3.0.0" 2794 | 2795 | lodash._baseassign@^3.0.0: 2796 | version "3.2.0" 2797 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2798 | dependencies: 2799 | lodash._basecopy "^3.0.0" 2800 | lodash.keys "^3.0.0" 2801 | 2802 | lodash._basecopy@^3.0.0: 2803 | version "3.0.1" 2804 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2805 | 2806 | lodash._basecreate@^3.0.0: 2807 | version "3.0.3" 2808 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2809 | 2810 | lodash._bindcallback@^3.0.0: 2811 | version "3.0.1" 2812 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2813 | 2814 | lodash._createassigner@^3.0.0: 2815 | version "3.1.1" 2816 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2817 | dependencies: 2818 | lodash._bindcallback "^3.0.0" 2819 | lodash._isiterateecall "^3.0.0" 2820 | lodash.restparam "^3.0.0" 2821 | 2822 | lodash._getnative@^3.0.0: 2823 | version "3.9.1" 2824 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2825 | 2826 | lodash._isiterateecall@^3.0.0: 2827 | version "3.0.9" 2828 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2829 | 2830 | lodash.assign@^3.0.0: 2831 | version "3.2.0" 2832 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2833 | dependencies: 2834 | lodash._baseassign "^3.0.0" 2835 | lodash._createassigner "^3.0.0" 2836 | lodash.keys "^3.0.0" 2837 | 2838 | lodash.cond@^4.3.0: 2839 | version "4.5.2" 2840 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2841 | 2842 | lodash.create@3.1.1: 2843 | version "3.1.1" 2844 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2845 | dependencies: 2846 | lodash._baseassign "^3.0.0" 2847 | lodash._basecreate "^3.0.0" 2848 | lodash._isiterateecall "^3.0.0" 2849 | 2850 | lodash.isarguments@^3.0.0: 2851 | version "3.1.0" 2852 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2853 | 2854 | lodash.isarray@^3.0.0: 2855 | version "3.0.4" 2856 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2857 | 2858 | lodash.keys@^3.0.0: 2859 | version "3.1.2" 2860 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2861 | dependencies: 2862 | lodash._getnative "^3.0.0" 2863 | lodash.isarguments "^3.0.0" 2864 | lodash.isarray "^3.0.0" 2865 | 2866 | lodash.map@^4.5.1: 2867 | version "4.6.0" 2868 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2869 | 2870 | lodash.pad@^4.1.0: 2871 | version "4.5.1" 2872 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2873 | 2874 | lodash.padend@^4.1.0: 2875 | version "4.6.1" 2876 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2877 | 2878 | lodash.padstart@^4.1.0: 2879 | version "4.6.1" 2880 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2881 | 2882 | lodash.restparam@^3.0.0: 2883 | version "3.6.1" 2884 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2885 | 2886 | lodash@4.17.2: 2887 | version "4.17.2" 2888 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2889 | 2890 | lodash@^3.6.0, lodash@^3.8.0: 2891 | version "3.10.1" 2892 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2893 | 2894 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.5.0: 2895 | version "4.17.4" 2896 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2897 | 2898 | lodash@~1.3.1: 2899 | version "1.3.1" 2900 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.3.1.tgz#a4663b53686b895ff074e2ba504dfb76a8e2b770" 2901 | 2902 | log-driver@1.2.5: 2903 | version "1.2.5" 2904 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2905 | 2906 | log4js@^0.6.31: 2907 | version "0.6.38" 2908 | resolved "https://registry.yarnpkg.com/log4js/-/log4js-0.6.38.tgz#2c494116695d6fb25480943d3fc872e662a522fd" 2909 | dependencies: 2910 | readable-stream "~1.0.2" 2911 | semver "~4.3.3" 2912 | 2913 | longest@^1.0.1: 2914 | version "1.0.1" 2915 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2916 | 2917 | loose-envify@^1.0.0: 2918 | version "1.3.1" 2919 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2920 | dependencies: 2921 | js-tokens "^3.0.0" 2922 | 2923 | loud-rejection@^1.0.0: 2924 | version "1.6.0" 2925 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2926 | dependencies: 2927 | currently-unhandled "^0.4.1" 2928 | signal-exit "^3.0.0" 2929 | 2930 | lru-cache@2.2.x: 2931 | version "2.2.4" 2932 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" 2933 | 2934 | magic-string@^0.15.2: 2935 | version "0.15.2" 2936 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.15.2.tgz#0681d7388741bbc3addaa65060992624c6c09e9c" 2937 | dependencies: 2938 | vlq "^0.2.1" 2939 | 2940 | magic-string@^0.19.0: 2941 | version "0.19.1" 2942 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.1.tgz#14d768013caf2ec8fdea16a49af82fc377e75201" 2943 | dependencies: 2944 | vlq "^0.2.1" 2945 | 2946 | map-obj@^1.0.0, map-obj@^1.0.1: 2947 | version "1.0.1" 2948 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2949 | 2950 | map-stream@~0.1.0: 2951 | version "0.1.0" 2952 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2953 | 2954 | media-typer@0.3.0: 2955 | version "0.3.0" 2956 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2957 | 2958 | meow@^3.3.0: 2959 | version "3.7.0" 2960 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2961 | dependencies: 2962 | camelcase-keys "^2.0.0" 2963 | decamelize "^1.1.2" 2964 | loud-rejection "^1.0.0" 2965 | map-obj "^1.0.1" 2966 | minimist "^1.1.3" 2967 | normalize-package-data "^2.3.4" 2968 | object-assign "^4.0.1" 2969 | read-pkg-up "^1.0.1" 2970 | redent "^1.0.0" 2971 | trim-newlines "^1.0.0" 2972 | 2973 | merge@^1.2.0: 2974 | version "1.2.0" 2975 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2976 | 2977 | micromatch@^2.1.5, micromatch@^2.3.11, micromatch@^2.3.7: 2978 | version "2.3.11" 2979 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2980 | dependencies: 2981 | arr-diff "^2.0.0" 2982 | array-unique "^0.2.1" 2983 | braces "^1.8.2" 2984 | expand-brackets "^0.1.4" 2985 | extglob "^0.3.1" 2986 | filename-regex "^2.0.0" 2987 | is-extglob "^1.0.0" 2988 | is-glob "^2.0.1" 2989 | kind-of "^3.0.2" 2990 | normalize-path "^2.0.1" 2991 | object.omit "^2.0.0" 2992 | parse-glob "^3.0.4" 2993 | regex-cache "^0.4.2" 2994 | 2995 | mime-db@~1.27.0: 2996 | version "1.27.0" 2997 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2998 | 2999 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: 3000 | version "2.1.15" 3001 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 3002 | dependencies: 3003 | mime-db "~1.27.0" 3004 | 3005 | mime@^1.2.11, mime@^1.3.4: 3006 | version "1.3.6" 3007 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 3008 | 3009 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 3010 | version "3.0.4" 3011 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3012 | dependencies: 3013 | brace-expansion "^1.1.7" 3014 | 3015 | minimist@0.0.8: 3016 | version "0.0.8" 3017 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3018 | 3019 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 3020 | version "1.2.0" 3021 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3022 | 3023 | minimist@~0.0.1: 3024 | version "0.0.10" 3025 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3026 | 3027 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 3028 | version "0.5.1" 3029 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3030 | dependencies: 3031 | minimist "0.0.8" 3032 | 3033 | mocha@^3.4.2: 3034 | version "3.4.2" 3035 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.2.tgz#d0ef4d332126dbf18d0d640c9b382dd48be97594" 3036 | dependencies: 3037 | browser-stdout "1.3.0" 3038 | commander "2.9.0" 3039 | debug "2.6.0" 3040 | diff "3.2.0" 3041 | escape-string-regexp "1.0.5" 3042 | glob "7.1.1" 3043 | growl "1.9.2" 3044 | json3 "3.3.2" 3045 | lodash.create "3.1.1" 3046 | mkdirp "0.5.1" 3047 | supports-color "3.1.2" 3048 | 3049 | ms@0.7.1: 3050 | version "0.7.1" 3051 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 3052 | 3053 | ms@0.7.2: 3054 | version "0.7.2" 3055 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 3056 | 3057 | ms@2.0.0: 3058 | version "2.0.0" 3059 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3060 | 3061 | mute-stream@0.0.5: 3062 | version "0.0.5" 3063 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 3064 | 3065 | mute-stream@0.0.6: 3066 | version "0.0.6" 3067 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 3068 | 3069 | nan@^2.3.0: 3070 | version "2.6.2" 3071 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 3072 | 3073 | natural-compare@^1.4.0: 3074 | version "1.4.0" 3075 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3076 | 3077 | negotiator@0.6.1: 3078 | version "0.6.1" 3079 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 3080 | 3081 | nerf-dart@^1.0.0: 3082 | version "1.0.0" 3083 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 3084 | 3085 | netrc@^0.1.4: 3086 | version "0.1.4" 3087 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 3088 | 3089 | node-pre-gyp@^0.6.36: 3090 | version "0.6.36" 3091 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 3092 | dependencies: 3093 | mkdirp "^0.5.1" 3094 | nopt "^4.0.1" 3095 | npmlog "^4.0.2" 3096 | rc "^1.1.7" 3097 | request "^2.81.0" 3098 | rimraf "^2.6.1" 3099 | semver "^5.3.0" 3100 | tar "^2.2.1" 3101 | tar-pack "^3.4.0" 3102 | 3103 | node-uuid@~1.4.7: 3104 | version "1.4.8" 3105 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 3106 | 3107 | nopt@3.x, nopt@~3.0.1: 3108 | version "3.0.6" 3109 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3110 | dependencies: 3111 | abbrev "1" 3112 | 3113 | nopt@^4.0.0, nopt@^4.0.1: 3114 | version "4.0.1" 3115 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3116 | dependencies: 3117 | abbrev "1" 3118 | osenv "^0.1.4" 3119 | 3120 | normalize-package-data@^1.0.3: 3121 | version "1.0.3" 3122 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-1.0.3.tgz#8be955b8907af975f1a4584ea8bb9b41492312f5" 3123 | dependencies: 3124 | github-url-from-git "^1.3.0" 3125 | github-url-from-username-repo "^1.0.0" 3126 | semver "2 || 3 || 4" 3127 | 3128 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": 3129 | version "2.4.0" 3130 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3131 | dependencies: 3132 | hosted-git-info "^2.1.4" 3133 | is-builtin-module "^1.0.0" 3134 | semver "2 || 3 || 4 || 5" 3135 | validate-npm-package-license "^3.0.1" 3136 | 3137 | normalize-path@^2.0.1: 3138 | version "2.1.1" 3139 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3140 | dependencies: 3141 | remove-trailing-separator "^1.0.1" 3142 | 3143 | "npm-package-arg@^3.0.0 || ^4.0.0": 3144 | version "4.2.1" 3145 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" 3146 | dependencies: 3147 | hosted-git-info "^2.1.5" 3148 | semver "^5.1.0" 3149 | 3150 | npm-registry-client@^7.0.1: 3151 | version "7.5.0" 3152 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.5.0.tgz#0f6dd6e5d11424cfa99fce5b930feaf09b4f7f04" 3153 | dependencies: 3154 | concat-stream "^1.5.2" 3155 | graceful-fs "^4.1.6" 3156 | normalize-package-data "~1.0.1 || ^2.0.0" 3157 | npm-package-arg "^3.0.0 || ^4.0.0" 3158 | once "^1.3.3" 3159 | request "^2.74.0" 3160 | retry "^0.10.0" 3161 | semver "2 >=2.2.1 || 3.x || 4 || 5" 3162 | slide "^1.1.3" 3163 | optionalDependencies: 3164 | npmlog "2 || ^3.1.0 || ^4.0.0" 3165 | 3166 | npmconf@^2.1.2: 3167 | version "2.1.2" 3168 | resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" 3169 | dependencies: 3170 | config-chain "~1.1.8" 3171 | inherits "~2.0.0" 3172 | ini "^1.2.0" 3173 | mkdirp "^0.5.0" 3174 | nopt "~3.0.1" 3175 | once "~1.3.0" 3176 | osenv "^0.1.0" 3177 | semver "2 || 3 || 4" 3178 | uid-number "0.0.5" 3179 | 3180 | "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0, npmlog@^4.0.2: 3181 | version "4.1.2" 3182 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3183 | dependencies: 3184 | are-we-there-yet "~1.1.2" 3185 | console-control-strings "~1.1.0" 3186 | gauge "~2.7.3" 3187 | set-blocking "~2.0.0" 3188 | 3189 | npmlog@^1.2.1: 3190 | version "1.2.1" 3191 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz#28e7be619609b53f7ad1dd300a10d64d716268b6" 3192 | dependencies: 3193 | ansi "~0.3.0" 3194 | are-we-there-yet "~1.0.0" 3195 | gauge "~1.2.0" 3196 | 3197 | null-check@^1.0.0: 3198 | version "1.0.0" 3199 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 3200 | 3201 | number-is-nan@^1.0.0: 3202 | version "1.0.1" 3203 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3204 | 3205 | oauth-sign@~0.8.1: 3206 | version "0.8.2" 3207 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3208 | 3209 | object-assign@4.1.0: 3210 | version "4.1.0" 3211 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 3212 | 3213 | object-assign@^4.0.1, object-assign@^4.1.0: 3214 | version "4.1.1" 3215 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3216 | 3217 | object-component@0.0.3: 3218 | version "0.0.3" 3219 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 3220 | 3221 | object-keys@^1.0.10, object-keys@^1.0.8: 3222 | version "1.0.11" 3223 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3224 | 3225 | object.assign@^4.0.4: 3226 | version "4.0.4" 3227 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 3228 | dependencies: 3229 | define-properties "^1.1.2" 3230 | function-bind "^1.1.0" 3231 | object-keys "^1.0.10" 3232 | 3233 | object.omit@^2.0.0: 3234 | version "2.0.1" 3235 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3236 | dependencies: 3237 | for-own "^0.1.4" 3238 | is-extendable "^0.1.1" 3239 | 3240 | on-finished@~2.3.0: 3241 | version "2.3.0" 3242 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 3243 | dependencies: 3244 | ee-first "1.1.1" 3245 | 3246 | once@1.x, once@^1.3.0, once@^1.3.3: 3247 | version "1.4.0" 3248 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3249 | dependencies: 3250 | wrappy "1" 3251 | 3252 | once@~1.3.0: 3253 | version "1.3.3" 3254 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3255 | dependencies: 3256 | wrappy "1" 3257 | 3258 | onetime@^1.0.0: 3259 | version "1.1.0" 3260 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3261 | 3262 | optimist@^0.6.1: 3263 | version "0.6.1" 3264 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3265 | dependencies: 3266 | minimist "~0.0.1" 3267 | wordwrap "~0.0.2" 3268 | 3269 | optionator@^0.8.1, optionator@^0.8.2: 3270 | version "0.8.2" 3271 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3272 | dependencies: 3273 | deep-is "~0.1.3" 3274 | fast-levenshtein "~2.0.4" 3275 | levn "~0.3.0" 3276 | prelude-ls "~1.1.2" 3277 | type-check "~0.3.2" 3278 | wordwrap "~1.0.0" 3279 | 3280 | options@>=0.0.5: 3281 | version "0.0.6" 3282 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 3283 | 3284 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3285 | version "1.0.2" 3286 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3287 | 3288 | os-shim@^0.1.2: 3289 | version "0.1.3" 3290 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3291 | 3292 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 3293 | version "1.0.2" 3294 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3295 | 3296 | osenv@^0.1.0, osenv@^0.1.4: 3297 | version "0.1.4" 3298 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3299 | dependencies: 3300 | os-homedir "^1.0.0" 3301 | os-tmpdir "^1.0.0" 3302 | 3303 | output-file-sync@^1.1.0: 3304 | version "1.1.2" 3305 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3306 | dependencies: 3307 | graceful-fs "^4.1.4" 3308 | mkdirp "^0.5.1" 3309 | object-assign "^4.1.0" 3310 | 3311 | p-limit@^1.1.0: 3312 | version "1.1.0" 3313 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3314 | 3315 | p-locate@^2.0.0: 3316 | version "2.0.0" 3317 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3318 | dependencies: 3319 | p-limit "^1.1.0" 3320 | 3321 | pad-right@^0.2.2: 3322 | version "0.2.2" 3323 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 3324 | dependencies: 3325 | repeat-string "^1.5.2" 3326 | 3327 | parse-github-repo-url@^1.3.0: 3328 | version "1.4.0" 3329 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.0.tgz#286c53e2c9962e0641649ee3ac9508fca4dd959c" 3330 | 3331 | parse-glob@^3.0.4: 3332 | version "3.0.4" 3333 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3334 | dependencies: 3335 | glob-base "^0.3.0" 3336 | is-dotfile "^1.0.0" 3337 | is-extglob "^1.0.0" 3338 | is-glob "^2.0.0" 3339 | 3340 | parse-json@^2.2.0: 3341 | version "2.2.0" 3342 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3343 | dependencies: 3344 | error-ex "^1.2.0" 3345 | 3346 | parse-passwd@^1.0.0: 3347 | version "1.0.0" 3348 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 3349 | 3350 | parsejson@0.0.3: 3351 | version "0.0.3" 3352 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 3353 | dependencies: 3354 | better-assert "~1.0.0" 3355 | 3356 | parseqs@0.0.5: 3357 | version "0.0.5" 3358 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 3359 | dependencies: 3360 | better-assert "~1.0.0" 3361 | 3362 | parseuri@0.0.5: 3363 | version "0.0.5" 3364 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 3365 | dependencies: 3366 | better-assert "~1.0.0" 3367 | 3368 | parseurl@~1.3.1: 3369 | version "1.3.1" 3370 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 3371 | 3372 | path-exists@2.1.0, path-exists@^2.0.0: 3373 | version "2.1.0" 3374 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3375 | dependencies: 3376 | pinkie-promise "^2.0.0" 3377 | 3378 | path-exists@^3.0.0: 3379 | version "3.0.0" 3380 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3381 | 3382 | path-is-absolute@^1.0.0: 3383 | version "1.0.1" 3384 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3385 | 3386 | path-is-inside@^1.0.1: 3387 | version "1.0.2" 3388 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3389 | 3390 | path-object@^2.3.0: 3391 | version "2.3.0" 3392 | resolved "https://registry.yarnpkg.com/path-object/-/path-object-2.3.0.tgz#03e46653e5c375c60af1cabdd94bc6448a5d9110" 3393 | dependencies: 3394 | core-util-is "^1.0.1" 3395 | lodash.assign "^3.0.0" 3396 | 3397 | path-parse@^1.0.5: 3398 | version "1.0.5" 3399 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3400 | 3401 | path-type@^1.0.0: 3402 | version "1.1.0" 3403 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3404 | dependencies: 3405 | graceful-fs "^4.1.2" 3406 | pify "^2.0.0" 3407 | pinkie-promise "^2.0.0" 3408 | 3409 | pathval@^1.0.0: 3410 | version "1.1.0" 3411 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 3412 | 3413 | pause-stream@0.0.11: 3414 | version "0.0.11" 3415 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 3416 | dependencies: 3417 | through "~2.3" 3418 | 3419 | performance-now@^0.2.0: 3420 | version "0.2.0" 3421 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3422 | 3423 | pify@^2.0.0: 3424 | version "2.3.0" 3425 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3426 | 3427 | pinkie-promise@^2.0.0: 3428 | version "2.0.1" 3429 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3430 | dependencies: 3431 | pinkie "^2.0.0" 3432 | 3433 | pinkie@^2.0.0: 3434 | version "2.0.4" 3435 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3436 | 3437 | pkg-conf@^2.0.0: 3438 | version "2.0.0" 3439 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3440 | dependencies: 3441 | find-up "^2.0.0" 3442 | load-json-file "^2.0.0" 3443 | 3444 | pkg-config@^1.1.0: 3445 | version "1.1.1" 3446 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 3447 | dependencies: 3448 | debug-log "^1.0.0" 3449 | find-root "^1.0.0" 3450 | xtend "^4.0.1" 3451 | 3452 | pkg-dir@^1.0.0: 3453 | version "1.0.0" 3454 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3455 | dependencies: 3456 | find-up "^1.0.0" 3457 | 3458 | pkg-up@^1.0.0: 3459 | version "1.0.0" 3460 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3461 | dependencies: 3462 | find-up "^1.0.0" 3463 | 3464 | pluralize@^1.2.1: 3465 | version "1.2.1" 3466 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3467 | 3468 | prelude-ls@~1.1.2: 3469 | version "1.1.2" 3470 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3471 | 3472 | preserve@^0.2.0: 3473 | version "0.2.0" 3474 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3475 | 3476 | private@^0.1.6: 3477 | version "0.1.7" 3478 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3479 | 3480 | process-nextick-args@~1.0.6: 3481 | version "1.0.7" 3482 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3483 | 3484 | progress@^1.1.8: 3485 | version "1.1.8" 3486 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3487 | 3488 | proto-list@~1.2.1: 3489 | version "1.2.4" 3490 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3491 | 3492 | punycode@^1.4.1: 3493 | version "1.4.1" 3494 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3495 | 3496 | qjobs@^1.1.4: 3497 | version "1.1.5" 3498 | resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.1.5.tgz#659de9f2cf8dcc27a1481276f205377272382e73" 3499 | 3500 | qs@6.4.0, qs@~6.4.0: 3501 | version "6.4.0" 3502 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3503 | 3504 | qs@~6.2.0: 3505 | version "6.2.3" 3506 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 3507 | 3508 | qs@~6.3.0: 3509 | version "6.3.2" 3510 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3511 | 3512 | randomatic@^1.1.3: 3513 | version "1.1.7" 3514 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3515 | dependencies: 3516 | is-number "^3.0.0" 3517 | kind-of "^4.0.0" 3518 | 3519 | range-parser@^1.2.0: 3520 | version "1.2.0" 3521 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3522 | 3523 | raw-body@~2.2.0: 3524 | version "2.2.0" 3525 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 3526 | dependencies: 3527 | bytes "2.4.0" 3528 | iconv-lite "0.4.15" 3529 | unpipe "1.0.0" 3530 | 3531 | rc@^1.1.7: 3532 | version "1.2.1" 3533 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3534 | dependencies: 3535 | deep-extend "~0.4.0" 3536 | ini "~1.3.0" 3537 | minimist "^1.2.0" 3538 | strip-json-comments "~2.0.1" 3539 | 3540 | read-pkg-up@^1.0.1: 3541 | version "1.0.1" 3542 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3543 | dependencies: 3544 | find-up "^1.0.0" 3545 | read-pkg "^1.0.0" 3546 | 3547 | read-pkg@^1.0.0: 3548 | version "1.1.0" 3549 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3550 | dependencies: 3551 | load-json-file "^1.0.0" 3552 | normalize-package-data "^2.3.2" 3553 | path-type "^1.0.0" 3554 | 3555 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 3556 | version "2.3.3" 3557 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3558 | dependencies: 3559 | core-util-is "~1.0.0" 3560 | inherits "~2.0.3" 3561 | isarray "~1.0.0" 3562 | process-nextick-args "~1.0.6" 3563 | safe-buffer "~5.1.1" 3564 | string_decoder "~1.0.3" 3565 | util-deprecate "~1.0.1" 3566 | 3567 | readable-stream@~1.0.2: 3568 | version "1.0.34" 3569 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3570 | dependencies: 3571 | core-util-is "~1.0.0" 3572 | inherits "~2.0.1" 3573 | isarray "0.0.1" 3574 | string_decoder "~0.10.x" 3575 | 3576 | readable-stream@~2.0.5: 3577 | version "2.0.6" 3578 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3579 | dependencies: 3580 | core-util-is "~1.0.0" 3581 | inherits "~2.0.1" 3582 | isarray "~1.0.0" 3583 | process-nextick-args "~1.0.6" 3584 | string_decoder "~0.10.x" 3585 | util-deprecate "~1.0.1" 3586 | 3587 | readdirp@^2.0.0: 3588 | version "2.1.0" 3589 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3590 | dependencies: 3591 | graceful-fs "^4.1.2" 3592 | minimatch "^3.0.2" 3593 | readable-stream "^2.0.2" 3594 | set-immediate-shim "^1.0.1" 3595 | 3596 | readline2@^1.0.1: 3597 | version "1.0.1" 3598 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3599 | dependencies: 3600 | code-point-at "^1.0.0" 3601 | is-fullwidth-code-point "^1.0.0" 3602 | mute-stream "0.0.5" 3603 | 3604 | rechoir@^0.6.2: 3605 | version "0.6.2" 3606 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3607 | dependencies: 3608 | resolve "^1.1.6" 3609 | 3610 | redent@^1.0.0: 3611 | version "1.0.0" 3612 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3613 | dependencies: 3614 | indent-string "^2.1.0" 3615 | strip-indent "^1.0.1" 3616 | 3617 | regenerate@^1.2.1: 3618 | version "1.3.2" 3619 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3620 | 3621 | regenerator-runtime@^0.10.0: 3622 | version "0.10.5" 3623 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3624 | 3625 | regenerator-transform@0.9.11: 3626 | version "0.9.11" 3627 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3628 | dependencies: 3629 | babel-runtime "^6.18.0" 3630 | babel-types "^6.19.0" 3631 | private "^0.1.6" 3632 | 3633 | regex-cache@^0.4.2: 3634 | version "0.4.3" 3635 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3636 | dependencies: 3637 | is-equal-shallow "^0.1.3" 3638 | is-primitive "^2.0.0" 3639 | 3640 | regexpu-core@^2.0.0: 3641 | version "2.0.0" 3642 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3643 | dependencies: 3644 | regenerate "^1.2.1" 3645 | regjsgen "^0.2.0" 3646 | regjsparser "^0.1.4" 3647 | 3648 | regjsgen@^0.2.0: 3649 | version "0.2.0" 3650 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3651 | 3652 | regjsparser@^0.1.4: 3653 | version "0.1.5" 3654 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3655 | dependencies: 3656 | jsesc "~0.5.0" 3657 | 3658 | remove-trailing-separator@^1.0.1: 3659 | version "1.0.2" 3660 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 3661 | 3662 | repeat-element@^1.1.2: 3663 | version "1.1.2" 3664 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3665 | 3666 | repeat-string@^0.2.2: 3667 | version "0.2.2" 3668 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" 3669 | 3670 | repeat-string@^1.5.2: 3671 | version "1.6.1" 3672 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3673 | 3674 | repeating@^2.0.0: 3675 | version "2.0.1" 3676 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3677 | dependencies: 3678 | is-finite "^1.0.0" 3679 | 3680 | request-promise-core@1.1.1: 3681 | version "1.1.1" 3682 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3683 | dependencies: 3684 | lodash "^4.13.1" 3685 | 3686 | request-promise@^4.1.1: 3687 | version "4.2.1" 3688 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.1.tgz#7eec56c89317a822cbfea99b039ce543c2e15f67" 3689 | dependencies: 3690 | bluebird "^3.5.0" 3691 | request-promise-core "1.1.1" 3692 | stealthy-require "^1.1.0" 3693 | tough-cookie ">=2.3.0" 3694 | 3695 | request@2.79.0: 3696 | version "2.79.0" 3697 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3698 | dependencies: 3699 | aws-sign2 "~0.6.0" 3700 | aws4 "^1.2.1" 3701 | caseless "~0.11.0" 3702 | combined-stream "~1.0.5" 3703 | extend "~3.0.0" 3704 | forever-agent "~0.6.1" 3705 | form-data "~2.1.1" 3706 | har-validator "~2.0.6" 3707 | hawk "~3.1.3" 3708 | http-signature "~1.1.0" 3709 | is-typedarray "~1.0.0" 3710 | isstream "~0.1.2" 3711 | json-stringify-safe "~5.0.1" 3712 | mime-types "~2.1.7" 3713 | oauth-sign "~0.8.1" 3714 | qs "~6.3.0" 3715 | stringstream "~0.0.4" 3716 | tough-cookie "~2.3.0" 3717 | tunnel-agent "~0.4.1" 3718 | uuid "^3.0.0" 3719 | 3720 | request@^2.74.0, request@^2.78.0, request@^2.81.0: 3721 | version "2.81.0" 3722 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3723 | dependencies: 3724 | aws-sign2 "~0.6.0" 3725 | aws4 "^1.2.1" 3726 | caseless "~0.12.0" 3727 | combined-stream "~1.0.5" 3728 | extend "~3.0.0" 3729 | forever-agent "~0.6.1" 3730 | form-data "~2.1.1" 3731 | har-validator "~4.2.1" 3732 | hawk "~3.1.3" 3733 | http-signature "~1.1.0" 3734 | is-typedarray "~1.0.0" 3735 | isstream "~0.1.2" 3736 | json-stringify-safe "~5.0.1" 3737 | mime-types "~2.1.7" 3738 | oauth-sign "~0.8.1" 3739 | performance-now "^0.2.0" 3740 | qs "~6.4.0" 3741 | safe-buffer "^5.0.1" 3742 | stringstream "~0.0.4" 3743 | tough-cookie "~2.3.0" 3744 | tunnel-agent "^0.6.0" 3745 | uuid "^3.0.0" 3746 | 3747 | request@~2.74.0: 3748 | version "2.74.0" 3749 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 3750 | dependencies: 3751 | aws-sign2 "~0.6.0" 3752 | aws4 "^1.2.1" 3753 | bl "~1.1.2" 3754 | caseless "~0.11.0" 3755 | combined-stream "~1.0.5" 3756 | extend "~3.0.0" 3757 | forever-agent "~0.6.1" 3758 | form-data "~1.0.0-rc4" 3759 | har-validator "~2.0.6" 3760 | hawk "~3.1.3" 3761 | http-signature "~1.1.0" 3762 | is-typedarray "~1.0.0" 3763 | isstream "~0.1.2" 3764 | json-stringify-safe "~5.0.1" 3765 | mime-types "~2.1.7" 3766 | node-uuid "~1.4.7" 3767 | oauth-sign "~0.8.1" 3768 | qs "~6.2.0" 3769 | stringstream "~0.0.4" 3770 | tough-cookie "~2.3.0" 3771 | tunnel-agent "~0.4.1" 3772 | 3773 | require-main-filename@^1.0.1: 3774 | version "1.0.1" 3775 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3776 | 3777 | require-relative@^0.8.7: 3778 | version "0.8.7" 3779 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3780 | 3781 | require-uncached@^1.0.2: 3782 | version "1.0.3" 3783 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3784 | dependencies: 3785 | caller-path "^0.1.0" 3786 | resolve-from "^1.0.0" 3787 | 3788 | requires-port@1.x.x: 3789 | version "1.0.0" 3790 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3791 | 3792 | resolve-dir@^0.1.0: 3793 | version "0.1.1" 3794 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 3795 | dependencies: 3796 | expand-tilde "^1.2.2" 3797 | global-modules "^0.2.3" 3798 | 3799 | resolve-from@^1.0.0: 3800 | version "1.0.1" 3801 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3802 | 3803 | resolve@1.1.7, resolve@1.1.x: 3804 | version "1.1.7" 3805 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3806 | 3807 | resolve@^1.1.6, resolve@^1.1.7: 3808 | version "1.3.3" 3809 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3810 | dependencies: 3811 | path-parse "^1.0.5" 3812 | 3813 | restore-cursor@^1.0.1: 3814 | version "1.0.1" 3815 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3816 | dependencies: 3817 | exit-hook "^1.0.0" 3818 | onetime "^1.0.0" 3819 | 3820 | retry@^0.10.0: 3821 | version "0.10.1" 3822 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 3823 | 3824 | right-align@^0.1.1: 3825 | version "0.1.3" 3826 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3827 | dependencies: 3828 | align-text "^0.1.1" 3829 | 3830 | right-pad@^1.0.1: 3831 | version "1.0.1" 3832 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 3833 | 3834 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.0, rimraf@^2.6.1: 3835 | version "2.6.1" 3836 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3837 | dependencies: 3838 | glob "^7.0.5" 3839 | 3840 | rollup-plugin-babel@^2.7.1: 3841 | version "2.7.1" 3842 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz#16528197b0f938a1536f44683c7a93d573182f57" 3843 | dependencies: 3844 | babel-core "6" 3845 | babel-plugin-transform-es2015-classes "^6.9.0" 3846 | object-assign "^4.1.0" 3847 | rollup-pluginutils "^1.5.0" 3848 | 3849 | rollup-plugin-commonjs@^8.0.2: 3850 | version "8.0.2" 3851 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.0.2.tgz#98b1589bfe32a6c0f67790b60c0b499972afed89" 3852 | dependencies: 3853 | acorn "^4.0.1" 3854 | estree-walker "^0.3.0" 3855 | magic-string "^0.19.0" 3856 | resolve "^1.1.7" 3857 | rollup-pluginutils "^2.0.1" 3858 | 3859 | rollup-plugin-node-resolve@^3.0.0: 3860 | version "3.0.0" 3861 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.0.tgz#8b897c4c3030d5001277b0514b25d2ca09683ee0" 3862 | dependencies: 3863 | browser-resolve "^1.11.0" 3864 | builtin-modules "^1.1.0" 3865 | is-module "^1.0.0" 3866 | resolve "^1.1.6" 3867 | 3868 | rollup-plugin-replace@^1.1.1: 3869 | version "1.1.1" 3870 | resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-1.1.1.tgz#396315ded050a6ce43b9518a886a3f60efb1ea33" 3871 | dependencies: 3872 | magic-string "^0.15.2" 3873 | minimatch "^3.0.2" 3874 | rollup-pluginutils "^1.5.0" 3875 | 3876 | rollup-plugin-uglify@^2.0.1: 3877 | version "2.0.1" 3878 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-2.0.1.tgz#67b37ad1efdafbd83af4c36b40c189ee4866c969" 3879 | dependencies: 3880 | uglify-js "^3.0.9" 3881 | 3882 | rollup-pluginutils@^1.5.0: 3883 | version "1.5.2" 3884 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 3885 | dependencies: 3886 | estree-walker "^0.2.1" 3887 | minimatch "^3.0.2" 3888 | 3889 | rollup-pluginutils@^2.0.1: 3890 | version "2.0.1" 3891 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0" 3892 | dependencies: 3893 | estree-walker "^0.3.0" 3894 | micromatch "^2.3.11" 3895 | 3896 | rollup@^0.45.2, rollup@^0.x: 3897 | version "0.45.2" 3898 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.45.2.tgz#63a284c2b31234656f24e9e9717fabb6a7f0fa43" 3899 | dependencies: 3900 | source-map-support "^0.4.0" 3901 | 3902 | run-async@^0.1.0: 3903 | version "0.1.0" 3904 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3905 | dependencies: 3906 | once "^1.3.0" 3907 | 3908 | run-async@^2.2.0: 3909 | version "2.3.0" 3910 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3911 | dependencies: 3912 | is-promise "^2.1.0" 3913 | 3914 | run-auto@^2.0.0: 3915 | version "2.0.0" 3916 | resolved "https://registry.yarnpkg.com/run-auto/-/run-auto-2.0.0.tgz#5f4353f58adbd6b74926489b4f259e1dad6a78d6" 3917 | dependencies: 3918 | dezalgo "^1.0.1" 3919 | 3920 | run-parallel@^1.1.2: 3921 | version "1.1.6" 3922 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3923 | 3924 | run-series@^1.1.3: 3925 | version "1.1.4" 3926 | resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.4.tgz#89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9" 3927 | 3928 | rx-lite@^3.1.2: 3929 | version "3.1.2" 3930 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3931 | 3932 | rx@^4.1.0: 3933 | version "4.1.0" 3934 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3935 | 3936 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3937 | version "5.1.1" 3938 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3939 | 3940 | semantic-release@^6.3.6: 3941 | version "6.3.6" 3942 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-6.3.6.tgz#629d0aec90b38a2957a57a4a9ee1214af51928c7" 3943 | dependencies: 3944 | "@semantic-release/commit-analyzer" "^2.0.0" 3945 | "@semantic-release/condition-travis" "^5.0.2" 3946 | "@semantic-release/error" "^1.0.0" 3947 | "@semantic-release/last-release-npm" "^1.2.1" 3948 | "@semantic-release/release-notes-generator" "^2.0.0" 3949 | git-head "^1.2.1" 3950 | github "^8.0.0" 3951 | lodash "^4.0.0" 3952 | nerf-dart "^1.0.0" 3953 | nopt "^4.0.0" 3954 | normalize-package-data "^2.3.4" 3955 | npmconf "^2.1.2" 3956 | npmlog "^4.0.0" 3957 | parse-github-repo-url "^1.3.0" 3958 | require-relative "^0.8.7" 3959 | run-auto "^2.0.0" 3960 | run-series "^1.1.3" 3961 | semver "^5.2.0" 3962 | 3963 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.0.3, semver@^5.1.0, semver@^5.2.0, semver@^5.3.0: 3964 | version "5.3.0" 3965 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3966 | 3967 | "semver@2 || 3 || 4", semver@~4.3.3: 3968 | version "4.3.6" 3969 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 3970 | 3971 | semver@~5.0.1: 3972 | version "5.0.3" 3973 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 3974 | 3975 | set-blocking@~2.0.0: 3976 | version "2.0.0" 3977 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3978 | 3979 | set-immediate-shim@^1.0.1: 3980 | version "1.0.1" 3981 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3982 | 3983 | setprototypeof@1.0.3: 3984 | version "1.0.3" 3985 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3986 | 3987 | shelljs@0.7.6: 3988 | version "0.7.6" 3989 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 3990 | dependencies: 3991 | glob "^7.0.0" 3992 | interpret "^1.0.0" 3993 | rechoir "^0.6.2" 3994 | 3995 | shelljs@^0.7.5: 3996 | version "0.7.8" 3997 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 3998 | dependencies: 3999 | glob "^7.0.0" 4000 | interpret "^1.0.0" 4001 | rechoir "^0.6.2" 4002 | 4003 | signal-exit@^3.0.0: 4004 | version "3.0.2" 4005 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4006 | 4007 | slash@^1.0.0: 4008 | version "1.0.0" 4009 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4010 | 4011 | slice-ansi@0.0.4: 4012 | version "0.0.4" 4013 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 4014 | 4015 | slide@^1.1.3: 4016 | version "1.1.6" 4017 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 4018 | 4019 | snazzy@^7.0.0: 4020 | version "7.0.0" 4021 | resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-7.0.0.tgz#95edaccc4a8d6f80f4ac5cc7b520e8f8f9ac2325" 4022 | dependencies: 4023 | chalk "^1.1.0" 4024 | inherits "^2.0.1" 4025 | minimist "^1.1.1" 4026 | readable-stream "^2.0.6" 4027 | standard-json "^1.0.0" 4028 | text-table "^0.2.0" 4029 | 4030 | sntp@1.x.x: 4031 | version "1.0.9" 4032 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4033 | dependencies: 4034 | hoek "2.x.x" 4035 | 4036 | socket.io-adapter@0.5.0: 4037 | version "0.5.0" 4038 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 4039 | dependencies: 4040 | debug "2.3.3" 4041 | socket.io-parser "2.3.1" 4042 | 4043 | socket.io-client@1.7.3: 4044 | version "1.7.3" 4045 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.3.tgz#b30e86aa10d5ef3546601c09cde4765e381da377" 4046 | dependencies: 4047 | backo2 "1.0.2" 4048 | component-bind "1.0.0" 4049 | component-emitter "1.2.1" 4050 | debug "2.3.3" 4051 | engine.io-client "1.8.3" 4052 | has-binary "0.1.7" 4053 | indexof "0.0.1" 4054 | object-component "0.0.3" 4055 | parseuri "0.0.5" 4056 | socket.io-parser "2.3.1" 4057 | to-array "0.1.4" 4058 | 4059 | socket.io-parser@2.3.1: 4060 | version "2.3.1" 4061 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 4062 | dependencies: 4063 | component-emitter "1.1.2" 4064 | debug "2.2.0" 4065 | isarray "0.0.1" 4066 | json3 "3.3.2" 4067 | 4068 | socket.io@1.7.3: 4069 | version "1.7.3" 4070 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.3.tgz#b8af9caba00949e568e369f1327ea9be9ea2461b" 4071 | dependencies: 4072 | debug "2.3.3" 4073 | engine.io "1.8.3" 4074 | has-binary "0.1.7" 4075 | object-assign "4.1.0" 4076 | socket.io-adapter "0.5.0" 4077 | socket.io-client "1.7.3" 4078 | socket.io-parser "2.3.1" 4079 | 4080 | source-map-support@^0.4.0, source-map-support@^0.4.2: 4081 | version "0.4.15" 4082 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 4083 | dependencies: 4084 | source-map "^0.5.6" 4085 | 4086 | source-map@^0.4.4: 4087 | version "0.4.4" 4088 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4089 | dependencies: 4090 | amdefine ">=0.0.4" 4091 | 4092 | source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 4093 | version "0.5.6" 4094 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 4095 | 4096 | source-map@~0.2.0: 4097 | version "0.2.0" 4098 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 4099 | dependencies: 4100 | amdefine ">=0.0.4" 4101 | 4102 | spawn-sync@^1.0.15: 4103 | version "1.0.15" 4104 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 4105 | dependencies: 4106 | concat-stream "^1.4.7" 4107 | os-shim "^0.1.2" 4108 | 4109 | spdx-correct@~1.0.0: 4110 | version "1.0.2" 4111 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 4112 | dependencies: 4113 | spdx-license-ids "^1.0.2" 4114 | 4115 | spdx-expression-parse@~1.0.0: 4116 | version "1.0.4" 4117 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 4118 | 4119 | spdx-license-ids@^1.0.2: 4120 | version "1.2.2" 4121 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4122 | 4123 | split@0.3: 4124 | version "0.3.3" 4125 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 4126 | dependencies: 4127 | through "2" 4128 | 4129 | sprintf-js@~1.0.2: 4130 | version "1.0.3" 4131 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4132 | 4133 | sshpk@^1.7.0: 4134 | version "1.13.1" 4135 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 4136 | dependencies: 4137 | asn1 "~0.2.3" 4138 | assert-plus "^1.0.0" 4139 | dashdash "^1.12.0" 4140 | getpass "^0.1.1" 4141 | optionalDependencies: 4142 | bcrypt-pbkdf "^1.0.0" 4143 | ecc-jsbn "~0.1.1" 4144 | jsbn "~0.1.0" 4145 | tweetnacl "~0.14.0" 4146 | 4147 | standard-engine@~7.0.0: 4148 | version "7.0.0" 4149 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 4150 | dependencies: 4151 | deglob "^2.1.0" 4152 | get-stdin "^5.0.1" 4153 | minimist "^1.1.0" 4154 | pkg-conf "^2.0.0" 4155 | 4156 | standard-json@^1.0.0: 4157 | version "1.0.2" 4158 | resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.2.tgz#82dea4a14c78cd9e35d38cde4b88ac6b62596a23" 4159 | dependencies: 4160 | concat-stream "^1.5.0" 4161 | 4162 | standard@^10.0.2: 4163 | version "10.0.2" 4164 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.2.tgz#974c1c53cc865b075a4b576e78441e1695daaf7b" 4165 | dependencies: 4166 | eslint "~3.19.0" 4167 | eslint-config-standard "10.2.1" 4168 | eslint-config-standard-jsx "4.0.1" 4169 | eslint-plugin-import "~2.2.0" 4170 | eslint-plugin-node "~4.2.2" 4171 | eslint-plugin-promise "~3.5.0" 4172 | eslint-plugin-react "~6.10.0" 4173 | eslint-plugin-standard "~3.0.1" 4174 | standard-engine "~7.0.0" 4175 | 4176 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 4177 | version "1.3.1" 4178 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 4179 | 4180 | stealthy-require@^1.1.0: 4181 | version "1.1.1" 4182 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 4183 | 4184 | stream-combiner@~0.0.4: 4185 | version "0.0.4" 4186 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 4187 | dependencies: 4188 | duplexer "~0.1.1" 4189 | 4190 | stream-consume@^0.1.0: 4191 | version "0.1.0" 4192 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 4193 | 4194 | string-width@^1.0.1, string-width@^1.0.2: 4195 | version "1.0.2" 4196 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4197 | dependencies: 4198 | code-point-at "^1.0.0" 4199 | is-fullwidth-code-point "^1.0.0" 4200 | strip-ansi "^3.0.0" 4201 | 4202 | string-width@^2.0.0: 4203 | version "2.1.1" 4204 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4205 | dependencies: 4206 | is-fullwidth-code-point "^2.0.0" 4207 | strip-ansi "^4.0.0" 4208 | 4209 | string_decoder@~0.10.x: 4210 | version "0.10.31" 4211 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4212 | 4213 | string_decoder@~1.0.3: 4214 | version "1.0.3" 4215 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4216 | dependencies: 4217 | safe-buffer "~5.1.0" 4218 | 4219 | stringstream@~0.0.4: 4220 | version "0.0.5" 4221 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4222 | 4223 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4224 | version "3.0.1" 4225 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4226 | dependencies: 4227 | ansi-regex "^2.0.0" 4228 | 4229 | strip-ansi@^4.0.0: 4230 | version "4.0.0" 4231 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4232 | dependencies: 4233 | ansi-regex "^3.0.0" 4234 | 4235 | strip-bom@^2.0.0: 4236 | version "2.0.0" 4237 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4238 | dependencies: 4239 | is-utf8 "^0.2.0" 4240 | 4241 | strip-bom@^3.0.0: 4242 | version "3.0.0" 4243 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4244 | 4245 | strip-indent@^1.0.1: 4246 | version "1.0.1" 4247 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4248 | dependencies: 4249 | get-stdin "^4.0.1" 4250 | 4251 | strip-json-comments@2.0.1, strip-json-comments@~2.0.1: 4252 | version "2.0.1" 4253 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4254 | 4255 | supports-color@3.1.2: 4256 | version "3.1.2" 4257 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 4258 | dependencies: 4259 | has-flag "^1.0.0" 4260 | 4261 | supports-color@^2.0.0: 4262 | version "2.0.0" 4263 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4264 | 4265 | supports-color@^3.1.0: 4266 | version "3.2.3" 4267 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4268 | dependencies: 4269 | has-flag "^1.0.0" 4270 | 4271 | svg-points@^6.0.0: 4272 | version "6.0.0" 4273 | resolved "https://registry.yarnpkg.com/svg-points/-/svg-points-6.0.0.tgz#a7a7ac04e4fcbfc04a1b4e08db3784c1b8ddc04f" 4274 | 4275 | table@^3.7.8: 4276 | version "3.8.3" 4277 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 4278 | dependencies: 4279 | ajv "^4.7.0" 4280 | ajv-keywords "^1.0.0" 4281 | chalk "^1.1.1" 4282 | lodash "^4.0.0" 4283 | slice-ansi "0.0.4" 4284 | string-width "^2.0.0" 4285 | 4286 | tar-pack@^3.4.0: 4287 | version "3.4.0" 4288 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4289 | dependencies: 4290 | debug "^2.2.0" 4291 | fstream "^1.0.10" 4292 | fstream-ignore "^1.0.5" 4293 | once "^1.3.3" 4294 | readable-stream "^2.1.4" 4295 | rimraf "^2.5.1" 4296 | tar "^2.2.1" 4297 | uid-number "^0.0.6" 4298 | 4299 | tar@^2.2.1: 4300 | version "2.2.1" 4301 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4302 | dependencies: 4303 | block-stream "*" 4304 | fstream "^1.0.2" 4305 | inherits "2" 4306 | 4307 | test-exclude@^4.1.1: 4308 | version "4.1.1" 4309 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 4310 | dependencies: 4311 | arrify "^1.0.1" 4312 | micromatch "^2.3.11" 4313 | object-assign "^4.1.0" 4314 | read-pkg-up "^1.0.1" 4315 | require-main-filename "^1.0.1" 4316 | 4317 | text-table@^0.2.0, text-table@~0.2.0: 4318 | version "0.2.0" 4319 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4320 | 4321 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 4322 | version "2.3.8" 4323 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4324 | 4325 | tmp@0.0.31, tmp@0.0.x: 4326 | version "0.0.31" 4327 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 4328 | dependencies: 4329 | os-tmpdir "~1.0.1" 4330 | 4331 | tmp@^0.0.29: 4332 | version "0.0.29" 4333 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 4334 | dependencies: 4335 | os-tmpdir "~1.0.1" 4336 | 4337 | to-array@0.1.4: 4338 | version "0.1.4" 4339 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 4340 | 4341 | to-fast-properties@^1.0.1: 4342 | version "1.0.3" 4343 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4344 | 4345 | tough-cookie@>=2.3.0, tough-cookie@~2.3.0: 4346 | version "2.3.2" 4347 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4348 | dependencies: 4349 | punycode "^1.4.1" 4350 | 4351 | travis-ci@^2.1.1: 4352 | version "2.1.1" 4353 | resolved "https://registry.yarnpkg.com/travis-ci/-/travis-ci-2.1.1.tgz#98696265af827ae3576f31aa06d876e74b4b082e" 4354 | dependencies: 4355 | github "~0.1.10" 4356 | lodash "~1.3.1" 4357 | request "~2.74.0" 4358 | underscore.string "~2.2.0rc" 4359 | 4360 | travis-deploy-once@1.0.0-node-0.10-support: 4361 | version "1.0.0-node-0.10-support" 4362 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-1.0.0-node-0.10-support.tgz#98ecce7d95b2f4ba5dcdeeebf54b9df87713d5e6" 4363 | dependencies: 4364 | babel-polyfill "^6.16.0" 4365 | bluebird "^3.4.6" 4366 | request "^2.78.0" 4367 | request-promise "^4.1.1" 4368 | travis-ci "^2.1.1" 4369 | 4370 | trim-newlines@^1.0.0: 4371 | version "1.0.0" 4372 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4373 | 4374 | trim-right@^1.0.1: 4375 | version "1.0.1" 4376 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4377 | 4378 | tryit@^1.0.1: 4379 | version "1.0.3" 4380 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 4381 | 4382 | tunnel-agent@^0.6.0: 4383 | version "0.6.0" 4384 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4385 | dependencies: 4386 | safe-buffer "^5.0.1" 4387 | 4388 | tunnel-agent@~0.4.1: 4389 | version "0.4.3" 4390 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4391 | 4392 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4393 | version "0.14.5" 4394 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4395 | 4396 | type-check@~0.3.2: 4397 | version "0.3.2" 4398 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4399 | dependencies: 4400 | prelude-ls "~1.1.2" 4401 | 4402 | type-detect@^3.0.0: 4403 | version "3.0.0" 4404 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-3.0.0.tgz#46d0cc8553abb7b13a352b0d6dea2fd58f2d9b55" 4405 | 4406 | type-detect@^4.0.0: 4407 | version "4.0.3" 4408 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 4409 | 4410 | type-is@~1.6.15: 4411 | version "1.6.15" 4412 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 4413 | dependencies: 4414 | media-typer "0.3.0" 4415 | mime-types "~2.1.15" 4416 | 4417 | typedarray@^0.0.6: 4418 | version "0.0.6" 4419 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4420 | 4421 | uglify-js@^2.6: 4422 | version "2.8.29" 4423 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4424 | dependencies: 4425 | source-map "~0.5.1" 4426 | yargs "~3.10.0" 4427 | optionalDependencies: 4428 | uglify-to-browserify "~1.0.0" 4429 | 4430 | uglify-js@^3.0.9: 4431 | version "3.0.25" 4432 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.0.25.tgz#3dc190b0ee437497e449bc6f785665b06afbe052" 4433 | dependencies: 4434 | commander "~2.9.0" 4435 | source-map "~0.5.1" 4436 | 4437 | uglify-to-browserify@~1.0.0: 4438 | version "1.0.2" 4439 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4440 | 4441 | uid-number@0.0.5: 4442 | version "0.0.5" 4443 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" 4444 | 4445 | uid-number@^0.0.6: 4446 | version "0.0.6" 4447 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4448 | 4449 | ultron@1.0.x: 4450 | version "1.0.2" 4451 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 4452 | 4453 | underscore.string@~2.2.0rc: 4454 | version "2.2.1" 4455 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.2.1.tgz#d7c0fa2af5d5a1a67f4253daee98132e733f0f19" 4456 | 4457 | uniq@^1.0.1: 4458 | version "1.0.1" 4459 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4460 | 4461 | unpipe@1.0.0, unpipe@~1.0.0: 4462 | version "1.0.0" 4463 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4464 | 4465 | user-home@^1.1.1: 4466 | version "1.1.1" 4467 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4468 | 4469 | user-home@^2.0.0: 4470 | version "2.0.0" 4471 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4472 | dependencies: 4473 | os-homedir "^1.0.0" 4474 | 4475 | useragent@^2.1.12: 4476 | version "2.2.1" 4477 | resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.2.1.tgz#cf593ef4f2d175875e8bb658ea92e18a4fd06d8e" 4478 | dependencies: 4479 | lru-cache "2.2.x" 4480 | tmp "0.0.x" 4481 | 4482 | util-deprecate@~1.0.1: 4483 | version "1.0.2" 4484 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4485 | 4486 | utils-merge@1.0.0: 4487 | version "1.0.0" 4488 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 4489 | 4490 | uuid@^3.0.0: 4491 | version "3.1.0" 4492 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4493 | 4494 | v8flags@^2.0.10: 4495 | version "2.1.1" 4496 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4497 | dependencies: 4498 | user-home "^1.1.1" 4499 | 4500 | validate-npm-package-license@^3.0.1: 4501 | version "3.0.1" 4502 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4503 | dependencies: 4504 | spdx-correct "~1.0.0" 4505 | spdx-expression-parse "~1.0.0" 4506 | 4507 | verror@1.3.6: 4508 | version "1.3.6" 4509 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4510 | dependencies: 4511 | extsprintf "1.0.2" 4512 | 4513 | vlq@^0.2.1: 4514 | version "0.2.2" 4515 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 4516 | 4517 | void-elements@^2.0.0: 4518 | version "2.0.1" 4519 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 4520 | 4521 | walk@^2.3.9: 4522 | version "2.3.9" 4523 | resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.9.tgz#31b4db6678f2ae01c39ea9fb8725a9031e558a7b" 4524 | dependencies: 4525 | foreachasync "^3.0.0" 4526 | 4527 | which@^1.1.1, which@^1.2.1, which@^1.2.12: 4528 | version "1.2.14" 4529 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4530 | dependencies: 4531 | isexe "^2.0.0" 4532 | 4533 | wide-align@^1.1.0: 4534 | version "1.1.2" 4535 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4536 | dependencies: 4537 | string-width "^1.0.2" 4538 | 4539 | window-size@0.1.0: 4540 | version "0.1.0" 4541 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4542 | 4543 | word-wrap@^1.0.3: 4544 | version "1.2.3" 4545 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 4546 | 4547 | wordwrap@0.0.2: 4548 | version "0.0.2" 4549 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4550 | 4551 | wordwrap@^1.0.0, wordwrap@~1.0.0: 4552 | version "1.0.0" 4553 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4554 | 4555 | wordwrap@~0.0.2: 4556 | version "0.0.3" 4557 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4558 | 4559 | wrappy@1: 4560 | version "1.0.2" 4561 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4562 | 4563 | write@^0.2.1: 4564 | version "0.2.1" 4565 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4566 | dependencies: 4567 | mkdirp "^0.5.1" 4568 | 4569 | ws@1.1.2: 4570 | version "1.1.2" 4571 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.2.tgz#8a244fa052401e08c9886cf44a85189e1fd4067f" 4572 | dependencies: 4573 | options ">=0.0.5" 4574 | ultron "1.0.x" 4575 | 4576 | wtf-8@1.0.0: 4577 | version "1.0.0" 4578 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 4579 | 4580 | xmlhttprequest-ssl@1.5.3: 4581 | version "1.5.3" 4582 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 4583 | 4584 | xtend@^4.0.0, xtend@^4.0.1: 4585 | version "4.0.1" 4586 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4587 | 4588 | yargs@~3.10.0: 4589 | version "3.10.0" 4590 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4591 | dependencies: 4592 | camelcase "^1.0.2" 4593 | cliui "^2.1.0" 4594 | decamelize "^1.0.0" 4595 | window-size "0.1.0" 4596 | 4597 | yeast@0.1.2: 4598 | version "0.1.2" 4599 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 4600 | --------------------------------------------------------------------------------