├── .gitignore ├── .travis.yml ├── src ├── time.js ├── index.js ├── parser.ne └── grammar.js ├── package.json ├── LICENSE ├── README.md ├── test └── in-seconds.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "7" 4 | - "6" 5 | 6 | env: 7 | - NODE_ENV=development 8 | 9 | before_install: 10 | - npm i -g codecov node-pre-gyp 11 | 12 | install: 13 | - npm install 14 | 15 | script: 16 | - npm test 17 | - codecov 18 | -------------------------------------------------------------------------------- /src/time.js: -------------------------------------------------------------------------------- 1 | 2 | var ctx = {} 3 | 4 | var time = { 5 | setContext: (c) => { ctx = c || {}; return ctx }, 6 | fromHz: (hz) => 1 / hz, 7 | fromBpm: (bpm) => 60 / bpm, 8 | fromMidi: (midi) => time.fromHz(Math.pow(2, (midi - 69) / 12) * (ctx.tuning || 440)), 9 | fromDuration: (fig, mod) => mod * (4 / fig) * (60 / (ctx.bpm || 120)) 10 | } 11 | 12 | module.exports = time 13 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | var grammar = require('./grammar') 2 | var nearley = require('nearley') 3 | var time = require('./time') 4 | 5 | module.exports = function (value, context) { 6 | time.setContext(context) 7 | var p = new nearley.Parser(grammar.ParserRules, grammar.ParserStart) 8 | var result = p.feed(value).results 9 | if (result && result.length === 1) return result[0] 10 | } 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "in-seconds", 3 | "version": "0.0.1", 4 | "description": "Time calculation for music applications", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "pretest": "npm run gen:parser", 8 | "test": "jest --coverage --colors --cache", 9 | "gen:parser": "nearleyc lib/parser.ne > lib/grammar.js" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/danigb/in-seconds.git" 14 | }, 15 | "keywords": ["time", "conversion", "music"], 16 | "author": "", 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/danigb/in-seconds/issues" 20 | }, 21 | "homepage": "https://github.com/danigb/in-seconds#readme", 22 | "dependencies": { 23 | "nearley": "^2.7.12" 24 | }, 25 | "devDependencies": { 26 | "jest": "^21.2.1" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 danigb 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # in-seconds 2 | 3 | > time calculator for music applications 4 | 5 | [![Build Status](https://travis-ci.org/danigb/in-seconds.svg?branch=master)](https://travis-ci.org/danigb/in-seconds) [![Coverage](https://codecov.io/github/danigb/in-seconds/coverage.svg)](https://codecov.io/gh/danigb/in-seconds) 6 | 7 | __Work in progress__. It uses the awesome [nearley](https://github.com/Hardmath123/nearley) to parse the strings: 8 | 9 | ```js 10 | var inSeconds = require('in-seconds') 11 | inSeconds('100Hz') // => 0.01 12 | inSeconds('120bpm') // => 0.5 13 | 14 | // if Hz can be expressed in seconds, notes too 15 | inSeconds('C4') // => 0.00382225643297143 16 | inSeconds('60midi') // => 0.00382225643297143 17 | 18 | // note durations 19 | inSeconds('8n', { bpm: 120 }) // => 0.25 (a quarter note at 120bpm ) 20 | inSeconds('4t', { bpm: 100 }) // a quarter triplet note at 100bpm 21 | 22 | // offsets 23 | inSeconds('+8n', { bpm: 120, now: 1.21 }) // => 1.46 (an eight note after now) 24 | 25 | // quantization 26 | inSeconds('@8n' { bpm: 120, now: 1.21 }) // => the next quarter note after 1.21 (at 120 bpm) 27 | 28 | // arithmetic fun! 29 | inSeconds('4n + 8n', { bpm: 120 }) // => 0.75 (a quarter note + a eight not at 120 bpm) 30 | inSeconds('100Hz + 1') // => 1.01 31 | inSeconds('2 * C3') // => 0.00382225643297143 (same as C4) 32 | ``` 33 | 34 | See [tests](https://github.com/danigb/in-seconds/blob/master/test/in-seconds.test.js) for more. 35 | 36 | ## Install 37 | 38 | No release yet. 39 | 40 | ## Develop 41 | 42 | Clone this repo, install dependencies with npm: `npm install` and then run the tests: `npm test` 43 | 44 | 45 | ## License 46 | 47 | MIT 48 | -------------------------------------------------------------------------------- /src/parser.ne: -------------------------------------------------------------------------------- 1 | @{% 2 | var time = require('./time') 3 | %} 4 | 5 | main -> _ AS _ {% function(d) {return d[1]; } %} 6 | 7 | # Addition and subtraction 8 | AS -> AS _ "+" _ MD {% function(d) {return d[0]+d[4]; } %} 9 | | AS _ "-" _ MD {% function(d) {return d[0]-d[4]; } %} 10 | | MD {% id %} 11 | 12 | # Multiplication and division 13 | MD -> MD _ "*" _ P {% function(d) {return d[0]*d[4]; } %} 14 | | MD _ "/" _ P {% function(d) {return d[0]/d[4]; } %} 15 | | P {% id %} 16 | 17 | # Parentheses 18 | P -> "(" _ AS _ ")" {% function(d) {return d[2]; } %} 19 | | T {% id %} 20 | 21 | # Time 22 | T -> P "Hz" {% function(d) { return time.fromHz(d[0]); } %} 23 | | P "bpm" {% function(d) { return time.fromBpm(d[0]); } %} 24 | | P "midi" {% function(d) { return time.fromMidi(d[0]); } %} 25 | | DUR {% id %} 26 | | N {% id %} 27 | 28 | DUR -> FIG "n" {% function(d) { return time.fromDuration(d[0], 1) } %} 29 | | FIG "d" {% function(d) { return time.fromDuration(d[0], 1.5) } %} 30 | | FIG "t" {% function(d) { return time.fromDuration(d[0], 2/3) } %} 31 | 32 | FIG -> "1" | "2" | "4" | "8" | "16" | "32" | "64" | "128" 33 | 34 | N -> float {% id %} 35 | 36 | float -> 37 | int "." int {% function(d) {return parseFloat(d[0] + d[1] + d[2])} %} 38 | | int {% function(d) {return parseInt(d[0])} %} 39 | 40 | int -> [0-9]:+ {% function(d) {return d[0].join(""); } %} 41 | 42 | # Whitespace. The important thing here is that the postprocessor 43 | # is a null-returning function. This is a memory efficiency trick. 44 | _ -> [\s]:* {% function(d) {return null; } %} 45 | -------------------------------------------------------------------------------- /test/in-seconds.test.js: -------------------------------------------------------------------------------- 1 | /* global describe test expect */ 2 | var inSeconds = require('..') 3 | 4 | describe('inSeconds', () => { 5 | test('durations', () => { 6 | expect(inSeconds('4n', { bpm: 120 })).toBe(0.5) 7 | expect(inSeconds('4n', { bpm: 60 })).toBe(1) 8 | expect(inSeconds('4n')).toBe(0.5) 9 | expect(inSeconds('4d', { bpm: 120 })).toBe(0.75) 10 | expect(inSeconds('4t', { bpm: 120 })).toBe(1 / 3) 11 | expect(inSeconds('4n + 8n')).toBe(inSeconds('4d')) 12 | expect(inSeconds('16n+16n')).toBe(inSeconds('8n')) 13 | expect(inSeconds('32n+32n')).toBe(inSeconds('16n')) 14 | expect(inSeconds('64n+64n')).toBe(inSeconds('32n')) 15 | expect(inSeconds('128n+128n')).toBe(inSeconds('64n')) 16 | expect(inSeconds('4t+4t+4t')).toBe(inSeconds('2n')) 17 | }) 18 | 19 | test('inSeconds numbers', () => { 20 | expect(inSeconds('3')).toBe(3) 21 | expect(inSeconds('6.5')).toBe(6.5) 22 | }) 23 | 24 | test('arithmetic', () => { 25 | expect(inSeconds('3+2')).toBe(5) 26 | expect(inSeconds('2-3')).toBe(-1) 27 | expect(inSeconds('3*2')).toBe(6) 28 | expect(inSeconds('3/2')).toBe(1.5) 29 | }) 30 | 31 | test('parenthesis', () => { 32 | expect(inSeconds('3*2+2')).toBe(8) 33 | expect(inSeconds('2+2*3')).toBe(8) 34 | expect(inSeconds('(2+2)*3')).toBe(12) 35 | expect(inSeconds('(2+2)*(2+2)')).toBe(16) 36 | expect(inSeconds('(2)')).toBe(2) 37 | }) 38 | 39 | test('hertzs', () => { 40 | expect(inSeconds('1Hz')).toBe(1) 41 | expect(inSeconds('10Hz')).toBe(0.1) 42 | expect(inSeconds('100Hz')).toBe(0.01) 43 | expect(inSeconds('10Hz+10Hz')).toBe(0.2) 44 | expect(inSeconds('(10+10)Hz')).toBe(0.05) 45 | }) 46 | 47 | test('beats per minute', () => { 48 | expect(inSeconds('120bpm')).toBe(0.5) 49 | expect(inSeconds('60bpm')).toBe(1) 50 | expect(inSeconds('60bpm + 60bpm')).toBe(2) 51 | expect(inSeconds('(60 + 60)bpm')).toBe(0.5) 52 | }) 53 | 54 | test('midi', () => { 55 | expect(inSeconds('69midi')).toBe(inSeconds('440Hz')) 56 | expect(inSeconds('69midi', { tuning: 440 })).toBe(0.0022727272727272726) 57 | expect(inSeconds('69midi', { tuning: 10 })).toBe(0.1) 58 | expect(inSeconds('60midi')).toBe(0.00382225643297143) 59 | expect(inSeconds('(60 / 2)midi')).toBe(inSeconds('30midi')) 60 | }) 61 | }) 62 | -------------------------------------------------------------------------------- /src/grammar.js: -------------------------------------------------------------------------------- 1 | // Generated automatically by nearley 2 | // http://github.com/Hardmath123/nearley 3 | (function () { 4 | function id(x) {return x[0]; } 5 | 6 | var time = require('./time') 7 | var grammar = { 8 | ParserRules: [ 9 | {"name": "main", "symbols": ["_", "AS", "_"], "postprocess": function(d) {return d[1]; }}, 10 | {"name": "AS", "symbols": ["AS", "_", {"literal":"+"}, "_", "MD"], "postprocess": function(d) {return d[0]+d[4]; }}, 11 | {"name": "AS", "symbols": ["AS", "_", {"literal":"-"}, "_", "MD"], "postprocess": function(d) {return d[0]-d[4]; }}, 12 | {"name": "AS", "symbols": ["MD"], "postprocess": id}, 13 | {"name": "MD", "symbols": ["MD", "_", {"literal":"*"}, "_", "P"], "postprocess": function(d) {return d[0]*d[4]; }}, 14 | {"name": "MD", "symbols": ["MD", "_", {"literal":"/"}, "_", "P"], "postprocess": function(d) {return d[0]/d[4]; }}, 15 | {"name": "MD", "symbols": ["P"], "postprocess": id}, 16 | {"name": "P", "symbols": [{"literal":"("}, "_", "AS", "_", {"literal":")"}], "postprocess": function(d) {return d[2]; }}, 17 | {"name": "P", "symbols": ["T"], "postprocess": id}, 18 | {"name": "T$string$1", "symbols": [{"literal":"H"}, {"literal":"z"}], "postprocess": function joiner(d) {return d.join('');}}, 19 | {"name": "T", "symbols": ["P", "T$string$1"], "postprocess": function(d) { return time.fromHz(d[0]); }}, 20 | {"name": "T$string$2", "symbols": [{"literal":"b"}, {"literal":"p"}, {"literal":"m"}], "postprocess": function joiner(d) {return d.join('');}}, 21 | {"name": "T", "symbols": ["P", "T$string$2"], "postprocess": function(d) { return time.fromBpm(d[0]); }}, 22 | {"name": "T$string$3", "symbols": [{"literal":"m"}, {"literal":"i"}, {"literal":"d"}, {"literal":"i"}], "postprocess": function joiner(d) {return d.join('');}}, 23 | {"name": "T", "symbols": ["P", "T$string$3"], "postprocess": function(d) { return time.fromMidi(d[0]); }}, 24 | {"name": "T", "symbols": ["DUR"], "postprocess": id}, 25 | {"name": "T", "symbols": ["N"], "postprocess": id}, 26 | {"name": "DUR", "symbols": ["FIG", {"literal":"n"}], "postprocess": function(d) { return time.fromDuration(d[0], 1) }}, 27 | {"name": "DUR", "symbols": ["FIG", {"literal":"d"}], "postprocess": function(d) { return time.fromDuration(d[0], 1.5) }}, 28 | {"name": "DUR", "symbols": ["FIG", {"literal":"t"}], "postprocess": function(d) { return time.fromDuration(d[0], 2/3) }}, 29 | {"name": "FIG", "symbols": [{"literal":"1"}]}, 30 | {"name": "FIG", "symbols": [{"literal":"2"}]}, 31 | {"name": "FIG", "symbols": [{"literal":"4"}]}, 32 | {"name": "FIG", "symbols": [{"literal":"8"}]}, 33 | {"name": "FIG$string$1", "symbols": [{"literal":"1"}, {"literal":"6"}], "postprocess": function joiner(d) {return d.join('');}}, 34 | {"name": "FIG", "symbols": ["FIG$string$1"]}, 35 | {"name": "FIG$string$2", "symbols": [{"literal":"3"}, {"literal":"2"}], "postprocess": function joiner(d) {return d.join('');}}, 36 | {"name": "FIG", "symbols": ["FIG$string$2"]}, 37 | {"name": "FIG$string$3", "symbols": [{"literal":"6"}, {"literal":"4"}], "postprocess": function joiner(d) {return d.join('');}}, 38 | {"name": "FIG", "symbols": ["FIG$string$3"]}, 39 | {"name": "FIG$string$4", "symbols": [{"literal":"1"}, {"literal":"2"}, {"literal":"8"}], "postprocess": function joiner(d) {return d.join('');}}, 40 | {"name": "FIG", "symbols": ["FIG$string$4"]}, 41 | {"name": "N", "symbols": ["float"], "postprocess": id}, 42 | {"name": "float", "symbols": ["int", {"literal":"."}, "int"], "postprocess": function(d) {return parseFloat(d[0] + d[1] + d[2])}}, 43 | {"name": "float", "symbols": ["int"], "postprocess": function(d) {return parseInt(d[0])}}, 44 | {"name": "int$ebnf$1", "symbols": [/[0-9]/]}, 45 | {"name": "int$ebnf$1", "symbols": [/[0-9]/, "int$ebnf$1"], "postprocess": function arrconcat(d) {return [d[0]].concat(d[1]);}}, 46 | {"name": "int", "symbols": ["int$ebnf$1"], "postprocess": function(d) {return d[0].join(""); }}, 47 | {"name": "_$ebnf$1", "symbols": []}, 48 | {"name": "_$ebnf$1", "symbols": [/[\s]/, "_$ebnf$1"], "postprocess": function arrconcat(d) {return [d[0]].concat(d[1]);}}, 49 | {"name": "_", "symbols": ["_$ebnf$1"], "postprocess": function(d) {return null; }} 50 | ] 51 | , ParserStart: "main" 52 | } 53 | if (typeof module !== 'undefined'&& typeof module.exports !== 'undefined') { 54 | module.exports = grammar; 55 | } else { 56 | window.grammar = grammar; 57 | } 58 | })(); 59 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.4" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 8 | 9 | abbrev@1: 10 | version "1.1.1" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn@^4.0.4: 20 | version "4.0.13" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | ajv@^5.1.0: 31 | version "5.3.0" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 33 | dependencies: 34 | co "^4.6.0" 35 | fast-deep-equal "^1.0.0" 36 | fast-json-stable-stringify "^2.0.0" 37 | json-schema-traverse "^0.3.0" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | amdefine@>=0.0.4: 48 | version "1.0.1" 49 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 50 | 51 | ansi-escapes@^3.0.0: 52 | version "3.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-regex@^3.0.0: 60 | version "3.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 62 | 63 | ansi-styles@^2.2.1: 64 | version "2.2.1" 65 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 66 | 67 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 68 | version "3.2.0" 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 70 | dependencies: 71 | color-convert "^1.9.0" 72 | 73 | anymatch@^1.3.0: 74 | version "1.3.2" 75 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 76 | dependencies: 77 | micromatch "^2.1.5" 78 | normalize-path "^2.0.0" 79 | 80 | append-transform@^0.4.0: 81 | version "0.4.0" 82 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 83 | dependencies: 84 | default-require-extensions "^1.0.0" 85 | 86 | aproba@^1.0.3: 87 | version "1.2.0" 88 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 89 | 90 | are-we-there-yet@~1.1.2: 91 | version "1.1.4" 92 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 93 | dependencies: 94 | delegates "^1.0.0" 95 | readable-stream "^2.0.6" 96 | 97 | argparse@^1.0.7: 98 | version "1.0.9" 99 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 100 | dependencies: 101 | sprintf-js "~1.0.2" 102 | 103 | arr-diff@^2.0.0: 104 | version "2.0.0" 105 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 106 | dependencies: 107 | arr-flatten "^1.0.1" 108 | 109 | arr-flatten@^1.0.1: 110 | version "1.1.0" 111 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 112 | 113 | array-equal@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 116 | 117 | array-unique@^0.2.1: 118 | version "0.2.1" 119 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 120 | 121 | arrify@^1.0.1: 122 | version "1.0.1" 123 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 124 | 125 | asn1@~0.2.3: 126 | version "0.2.3" 127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 128 | 129 | assert-plus@1.0.0, assert-plus@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 132 | 133 | assert-plus@^0.2.0: 134 | version "0.2.0" 135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 136 | 137 | astral-regex@^1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 140 | 141 | async@^1.4.0: 142 | version "1.5.2" 143 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 144 | 145 | async@^2.1.4: 146 | version "2.5.0" 147 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 148 | dependencies: 149 | lodash "^4.14.0" 150 | 151 | asynckit@^0.4.0: 152 | version "0.4.0" 153 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 154 | 155 | aws-sign2@~0.6.0: 156 | version "0.6.0" 157 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 158 | 159 | aws-sign2@~0.7.0: 160 | version "0.7.0" 161 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 162 | 163 | aws4@^1.2.1, aws4@^1.6.0: 164 | version "1.6.0" 165 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 166 | 167 | babel-code-frame@^6.26.0: 168 | version "6.26.0" 169 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 170 | dependencies: 171 | chalk "^1.1.3" 172 | esutils "^2.0.2" 173 | js-tokens "^3.0.2" 174 | 175 | babel-core@^6.0.0, babel-core@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 178 | dependencies: 179 | babel-code-frame "^6.26.0" 180 | babel-generator "^6.26.0" 181 | babel-helpers "^6.24.1" 182 | babel-messages "^6.23.0" 183 | babel-register "^6.26.0" 184 | babel-runtime "^6.26.0" 185 | babel-template "^6.26.0" 186 | babel-traverse "^6.26.0" 187 | babel-types "^6.26.0" 188 | babylon "^6.18.0" 189 | convert-source-map "^1.5.0" 190 | debug "^2.6.8" 191 | json5 "^0.5.1" 192 | lodash "^4.17.4" 193 | minimatch "^3.0.4" 194 | path-is-absolute "^1.0.1" 195 | private "^0.1.7" 196 | slash "^1.0.0" 197 | source-map "^0.5.6" 198 | 199 | babel-generator@^6.18.0, babel-generator@^6.26.0: 200 | version "6.26.0" 201 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 202 | dependencies: 203 | babel-messages "^6.23.0" 204 | babel-runtime "^6.26.0" 205 | babel-types "^6.26.0" 206 | detect-indent "^4.0.0" 207 | jsesc "^1.3.0" 208 | lodash "^4.17.4" 209 | source-map "^0.5.6" 210 | trim-right "^1.0.1" 211 | 212 | babel-helpers@^6.24.1: 213 | version "6.24.1" 214 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 215 | dependencies: 216 | babel-runtime "^6.22.0" 217 | babel-template "^6.24.1" 218 | 219 | babel-jest@^21.2.0: 220 | version "21.2.0" 221 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 222 | dependencies: 223 | babel-plugin-istanbul "^4.0.0" 224 | babel-preset-jest "^21.2.0" 225 | 226 | babel-messages@^6.23.0: 227 | version "6.23.0" 228 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 229 | dependencies: 230 | babel-runtime "^6.22.0" 231 | 232 | babel-plugin-istanbul@^4.0.0: 233 | version "4.1.5" 234 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 235 | dependencies: 236 | find-up "^2.1.0" 237 | istanbul-lib-instrument "^1.7.5" 238 | test-exclude "^4.1.1" 239 | 240 | babel-plugin-jest-hoist@^21.2.0: 241 | version "21.2.0" 242 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 243 | 244 | babel-plugin-syntax-object-rest-spread@^6.13.0: 245 | version "6.13.0" 246 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 247 | 248 | babel-preset-jest@^21.2.0: 249 | version "21.2.0" 250 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 251 | dependencies: 252 | babel-plugin-jest-hoist "^21.2.0" 253 | babel-plugin-syntax-object-rest-spread "^6.13.0" 254 | 255 | babel-register@^6.26.0: 256 | version "6.26.0" 257 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 258 | dependencies: 259 | babel-core "^6.26.0" 260 | babel-runtime "^6.26.0" 261 | core-js "^2.5.0" 262 | home-or-tmp "^2.0.0" 263 | lodash "^4.17.4" 264 | mkdirp "^0.5.1" 265 | source-map-support "^0.4.15" 266 | 267 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 268 | version "6.26.0" 269 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 270 | dependencies: 271 | core-js "^2.4.0" 272 | regenerator-runtime "^0.11.0" 273 | 274 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 275 | version "6.26.0" 276 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 277 | dependencies: 278 | babel-runtime "^6.26.0" 279 | babel-traverse "^6.26.0" 280 | babel-types "^6.26.0" 281 | babylon "^6.18.0" 282 | lodash "^4.17.4" 283 | 284 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 285 | version "6.26.0" 286 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 287 | dependencies: 288 | babel-code-frame "^6.26.0" 289 | babel-messages "^6.23.0" 290 | babel-runtime "^6.26.0" 291 | babel-types "^6.26.0" 292 | babylon "^6.18.0" 293 | debug "^2.6.8" 294 | globals "^9.18.0" 295 | invariant "^2.2.2" 296 | lodash "^4.17.4" 297 | 298 | babel-types@^6.18.0, babel-types@^6.26.0: 299 | version "6.26.0" 300 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 301 | dependencies: 302 | babel-runtime "^6.26.0" 303 | esutils "^2.0.2" 304 | lodash "^4.17.4" 305 | to-fast-properties "^1.0.3" 306 | 307 | babylon@^6.18.0: 308 | version "6.18.0" 309 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 310 | 311 | balanced-match@^1.0.0: 312 | version "1.0.0" 313 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 314 | 315 | bcrypt-pbkdf@^1.0.0: 316 | version "1.0.1" 317 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 318 | dependencies: 319 | tweetnacl "^0.14.3" 320 | 321 | block-stream@*: 322 | version "0.0.9" 323 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 324 | dependencies: 325 | inherits "~2.0.0" 326 | 327 | boom@2.x.x: 328 | version "2.10.1" 329 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 330 | dependencies: 331 | hoek "2.x.x" 332 | 333 | boom@4.x.x: 334 | version "4.3.1" 335 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 336 | dependencies: 337 | hoek "4.x.x" 338 | 339 | boom@5.x.x: 340 | version "5.2.0" 341 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 342 | dependencies: 343 | hoek "4.x.x" 344 | 345 | brace-expansion@^1.1.7: 346 | version "1.1.8" 347 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 348 | dependencies: 349 | balanced-match "^1.0.0" 350 | concat-map "0.0.1" 351 | 352 | braces@^1.8.2: 353 | version "1.8.5" 354 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 355 | dependencies: 356 | expand-range "^1.8.1" 357 | preserve "^0.2.0" 358 | repeat-element "^1.1.2" 359 | 360 | browser-resolve@^1.11.2: 361 | version "1.11.2" 362 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 363 | dependencies: 364 | resolve "1.1.7" 365 | 366 | bser@^2.0.0: 367 | version "2.0.0" 368 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 369 | dependencies: 370 | node-int64 "^0.4.0" 371 | 372 | builtin-modules@^1.0.0: 373 | version "1.1.1" 374 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 375 | 376 | callsites@^2.0.0: 377 | version "2.0.0" 378 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 379 | 380 | camelcase@^1.0.2: 381 | version "1.2.1" 382 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 383 | 384 | camelcase@^4.1.0: 385 | version "4.1.0" 386 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 387 | 388 | caseless@~0.12.0: 389 | version "0.12.0" 390 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 391 | 392 | center-align@^0.1.1: 393 | version "0.1.3" 394 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 395 | dependencies: 396 | align-text "^0.1.3" 397 | lazy-cache "^1.0.3" 398 | 399 | chalk@^1.1.3: 400 | version "1.1.3" 401 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 402 | dependencies: 403 | ansi-styles "^2.2.1" 404 | escape-string-regexp "^1.0.2" 405 | has-ansi "^2.0.0" 406 | strip-ansi "^3.0.0" 407 | supports-color "^2.0.0" 408 | 409 | chalk@^2.0.1: 410 | version "2.3.0" 411 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 412 | dependencies: 413 | ansi-styles "^3.1.0" 414 | escape-string-regexp "^1.0.5" 415 | supports-color "^4.0.0" 416 | 417 | ci-info@^1.0.0: 418 | version "1.1.1" 419 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 420 | 421 | cliui@^2.1.0: 422 | version "2.1.0" 423 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 424 | dependencies: 425 | center-align "^0.1.1" 426 | right-align "^0.1.1" 427 | wordwrap "0.0.2" 428 | 429 | cliui@^3.2.0: 430 | version "3.2.0" 431 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 432 | dependencies: 433 | string-width "^1.0.1" 434 | strip-ansi "^3.0.1" 435 | wrap-ansi "^2.0.0" 436 | 437 | co@^4.6.0: 438 | version "4.6.0" 439 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 440 | 441 | code-point-at@^1.0.0: 442 | version "1.1.0" 443 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 444 | 445 | color-convert@^1.9.0: 446 | version "1.9.0" 447 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 448 | dependencies: 449 | color-name "^1.1.1" 450 | 451 | color-name@^1.1.1: 452 | version "1.1.3" 453 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 454 | 455 | colors@0.5.x: 456 | version "0.5.1" 457 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.5.1.tgz#7d0023eaeb154e8ee9fce75dcb923d0ed1667774" 458 | 459 | combined-stream@^1.0.5, combined-stream@~1.0.5: 460 | version "1.0.5" 461 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 462 | dependencies: 463 | delayed-stream "~1.0.0" 464 | 465 | concat-map@0.0.1: 466 | version "0.0.1" 467 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 468 | 469 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 470 | version "1.1.0" 471 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 472 | 473 | content-type-parser@^1.0.1: 474 | version "1.0.2" 475 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 476 | 477 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 478 | version "1.5.0" 479 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 480 | 481 | core-js@^2.4.0, core-js@^2.5.0: 482 | version "2.5.1" 483 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 484 | 485 | core-util-is@1.0.2, core-util-is@~1.0.0: 486 | version "1.0.2" 487 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 488 | 489 | cross-spawn@^5.0.1: 490 | version "5.1.0" 491 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 492 | dependencies: 493 | lru-cache "^4.0.1" 494 | shebang-command "^1.2.0" 495 | which "^1.2.9" 496 | 497 | cryptiles@2.x.x: 498 | version "2.0.5" 499 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 500 | dependencies: 501 | boom "2.x.x" 502 | 503 | cryptiles@3.x.x: 504 | version "3.1.2" 505 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 506 | dependencies: 507 | boom "5.x.x" 508 | 509 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 510 | version "0.3.2" 511 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 512 | 513 | "cssstyle@>= 0.2.37 < 0.3.0": 514 | version "0.2.37" 515 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 516 | dependencies: 517 | cssom "0.3.x" 518 | 519 | dashdash@^1.12.0: 520 | version "1.14.1" 521 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 522 | dependencies: 523 | assert-plus "^1.0.0" 524 | 525 | debug@^2.2.0, debug@^2.6.8: 526 | version "2.6.9" 527 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 528 | dependencies: 529 | ms "2.0.0" 530 | 531 | debug@^3.1.0: 532 | version "3.1.0" 533 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 534 | dependencies: 535 | ms "2.0.0" 536 | 537 | decamelize@^1.0.0, decamelize@^1.1.1: 538 | version "1.2.0" 539 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 540 | 541 | deep-extend@~0.4.0: 542 | version "0.4.2" 543 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 544 | 545 | deep-is@~0.1.3: 546 | version "0.1.3" 547 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 548 | 549 | default-require-extensions@^1.0.0: 550 | version "1.0.0" 551 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 552 | dependencies: 553 | strip-bom "^2.0.0" 554 | 555 | delayed-stream@~1.0.0: 556 | version "1.0.0" 557 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 558 | 559 | delegates@^1.0.0: 560 | version "1.0.0" 561 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 562 | 563 | detect-indent@^4.0.0: 564 | version "4.0.0" 565 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 566 | dependencies: 567 | repeating "^2.0.0" 568 | 569 | diff@^3.2.0: 570 | version "3.4.0" 571 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 572 | 573 | discontinuous-range@1.0.0: 574 | version "1.0.0" 575 | resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" 576 | 577 | ecc-jsbn@~0.1.1: 578 | version "0.1.1" 579 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 580 | dependencies: 581 | jsbn "~0.1.0" 582 | 583 | errno@^0.1.4: 584 | version "0.1.4" 585 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 586 | dependencies: 587 | prr "~0.0.0" 588 | 589 | error-ex@^1.2.0: 590 | version "1.3.1" 591 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 592 | dependencies: 593 | is-arrayish "^0.2.1" 594 | 595 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 596 | version "1.0.5" 597 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 598 | 599 | escodegen@^1.6.1: 600 | version "1.9.0" 601 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 602 | dependencies: 603 | esprima "^3.1.3" 604 | estraverse "^4.2.0" 605 | esutils "^2.0.2" 606 | optionator "^0.8.1" 607 | optionalDependencies: 608 | source-map "~0.5.6" 609 | 610 | esprima@^3.1.3: 611 | version "3.1.3" 612 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 613 | 614 | esprima@^4.0.0: 615 | version "4.0.0" 616 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 617 | 618 | estraverse@^4.2.0: 619 | version "4.2.0" 620 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 621 | 622 | esutils@^2.0.2: 623 | version "2.0.2" 624 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 625 | 626 | exec-sh@^0.2.0: 627 | version "0.2.1" 628 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 629 | dependencies: 630 | merge "^1.1.3" 631 | 632 | execa@^0.7.0: 633 | version "0.7.0" 634 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 635 | dependencies: 636 | cross-spawn "^5.0.1" 637 | get-stream "^3.0.0" 638 | is-stream "^1.1.0" 639 | npm-run-path "^2.0.0" 640 | p-finally "^1.0.0" 641 | signal-exit "^3.0.0" 642 | strip-eof "^1.0.0" 643 | 644 | expand-brackets@^0.1.4: 645 | version "0.1.5" 646 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 647 | dependencies: 648 | is-posix-bracket "^0.1.0" 649 | 650 | expand-range@^1.8.1: 651 | version "1.8.2" 652 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 653 | dependencies: 654 | fill-range "^2.1.0" 655 | 656 | expect@^21.2.1: 657 | version "21.2.1" 658 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 659 | dependencies: 660 | ansi-styles "^3.2.0" 661 | jest-diff "^21.2.1" 662 | jest-get-type "^21.2.0" 663 | jest-matcher-utils "^21.2.1" 664 | jest-message-util "^21.2.1" 665 | jest-regex-util "^21.2.0" 666 | 667 | extend@~3.0.0, extend@~3.0.1: 668 | version "3.0.1" 669 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 670 | 671 | extglob@^0.3.1: 672 | version "0.3.2" 673 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 674 | dependencies: 675 | is-extglob "^1.0.0" 676 | 677 | extsprintf@1.3.0, extsprintf@^1.2.0: 678 | version "1.3.0" 679 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 680 | 681 | fast-deep-equal@^1.0.0: 682 | version "1.0.0" 683 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 684 | 685 | fast-json-stable-stringify@^2.0.0: 686 | version "2.0.0" 687 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 688 | 689 | fast-levenshtein@~2.0.4: 690 | version "2.0.6" 691 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 692 | 693 | fb-watchman@^2.0.0: 694 | version "2.0.0" 695 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 696 | dependencies: 697 | bser "^2.0.0" 698 | 699 | filename-regex@^2.0.0: 700 | version "2.0.1" 701 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 702 | 703 | fileset@^2.0.2: 704 | version "2.0.3" 705 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 706 | dependencies: 707 | glob "^7.0.3" 708 | minimatch "^3.0.3" 709 | 710 | fill-range@^2.1.0: 711 | version "2.2.3" 712 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 713 | dependencies: 714 | is-number "^2.1.0" 715 | isobject "^2.0.0" 716 | randomatic "^1.1.3" 717 | repeat-element "^1.1.2" 718 | repeat-string "^1.5.2" 719 | 720 | find-up@^1.0.0: 721 | version "1.1.2" 722 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 723 | dependencies: 724 | path-exists "^2.0.0" 725 | pinkie-promise "^2.0.0" 726 | 727 | find-up@^2.0.0, find-up@^2.1.0: 728 | version "2.1.0" 729 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 730 | dependencies: 731 | locate-path "^2.0.0" 732 | 733 | for-in@^1.0.1: 734 | version "1.0.2" 735 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 736 | 737 | for-own@^0.1.4: 738 | version "0.1.5" 739 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 740 | dependencies: 741 | for-in "^1.0.1" 742 | 743 | forever-agent@~0.6.1: 744 | version "0.6.1" 745 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 746 | 747 | form-data@~2.1.1: 748 | version "2.1.4" 749 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 750 | dependencies: 751 | asynckit "^0.4.0" 752 | combined-stream "^1.0.5" 753 | mime-types "^2.1.12" 754 | 755 | form-data@~2.3.1: 756 | version "2.3.1" 757 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 758 | dependencies: 759 | asynckit "^0.4.0" 760 | combined-stream "^1.0.5" 761 | mime-types "^2.1.12" 762 | 763 | fs.realpath@^1.0.0: 764 | version "1.0.0" 765 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 766 | 767 | fsevents@^1.1.1: 768 | version "1.1.2" 769 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 770 | dependencies: 771 | nan "^2.3.0" 772 | node-pre-gyp "^0.6.36" 773 | 774 | fstream-ignore@^1.0.5: 775 | version "1.0.5" 776 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 777 | dependencies: 778 | fstream "^1.0.0" 779 | inherits "2" 780 | minimatch "^3.0.0" 781 | 782 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 783 | version "1.0.11" 784 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 785 | dependencies: 786 | graceful-fs "^4.1.2" 787 | inherits "~2.0.0" 788 | mkdirp ">=0.5 0" 789 | rimraf "2" 790 | 791 | gauge@~2.7.3: 792 | version "2.7.4" 793 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 794 | dependencies: 795 | aproba "^1.0.3" 796 | console-control-strings "^1.0.0" 797 | has-unicode "^2.0.0" 798 | object-assign "^4.1.0" 799 | signal-exit "^3.0.0" 800 | string-width "^1.0.1" 801 | strip-ansi "^3.0.1" 802 | wide-align "^1.1.0" 803 | 804 | get-caller-file@^1.0.1: 805 | version "1.0.2" 806 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 807 | 808 | get-stream@^3.0.0: 809 | version "3.0.0" 810 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 811 | 812 | getpass@^0.1.1: 813 | version "0.1.7" 814 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 815 | dependencies: 816 | assert-plus "^1.0.0" 817 | 818 | glob-base@^0.3.0: 819 | version "0.3.0" 820 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 821 | dependencies: 822 | glob-parent "^2.0.0" 823 | is-glob "^2.0.0" 824 | 825 | glob-parent@^2.0.0: 826 | version "2.0.0" 827 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 828 | dependencies: 829 | is-glob "^2.0.0" 830 | 831 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 832 | version "7.1.2" 833 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 834 | dependencies: 835 | fs.realpath "^1.0.0" 836 | inflight "^1.0.4" 837 | inherits "2" 838 | minimatch "^3.0.4" 839 | once "^1.3.0" 840 | path-is-absolute "^1.0.0" 841 | 842 | globals@^9.18.0: 843 | version "9.18.0" 844 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 845 | 846 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 847 | version "4.1.11" 848 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 849 | 850 | growly@^1.3.0: 851 | version "1.3.0" 852 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 853 | 854 | handlebars@^4.0.3: 855 | version "4.0.11" 856 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 857 | dependencies: 858 | async "^1.4.0" 859 | optimist "^0.6.1" 860 | source-map "^0.4.4" 861 | optionalDependencies: 862 | uglify-js "^2.6" 863 | 864 | har-schema@^1.0.5: 865 | version "1.0.5" 866 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 867 | 868 | har-schema@^2.0.0: 869 | version "2.0.0" 870 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 871 | 872 | har-validator@~4.2.1: 873 | version "4.2.1" 874 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 875 | dependencies: 876 | ajv "^4.9.1" 877 | har-schema "^1.0.5" 878 | 879 | har-validator@~5.0.3: 880 | version "5.0.3" 881 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 882 | dependencies: 883 | ajv "^5.1.0" 884 | har-schema "^2.0.0" 885 | 886 | has-ansi@^2.0.0: 887 | version "2.0.0" 888 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 889 | dependencies: 890 | ansi-regex "^2.0.0" 891 | 892 | has-flag@^1.0.0: 893 | version "1.0.0" 894 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 895 | 896 | has-flag@^2.0.0: 897 | version "2.0.0" 898 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 899 | 900 | has-unicode@^2.0.0: 901 | version "2.0.1" 902 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 903 | 904 | hawk@3.1.3, hawk@~3.1.3: 905 | version "3.1.3" 906 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 907 | dependencies: 908 | boom "2.x.x" 909 | cryptiles "2.x.x" 910 | hoek "2.x.x" 911 | sntp "1.x.x" 912 | 913 | hawk@~6.0.2: 914 | version "6.0.2" 915 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 916 | dependencies: 917 | boom "4.x.x" 918 | cryptiles "3.x.x" 919 | hoek "4.x.x" 920 | sntp "2.x.x" 921 | 922 | hoek@2.x.x: 923 | version "2.16.3" 924 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 925 | 926 | hoek@4.x.x: 927 | version "4.2.0" 928 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 929 | 930 | home-or-tmp@^2.0.0: 931 | version "2.0.0" 932 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 933 | dependencies: 934 | os-homedir "^1.0.0" 935 | os-tmpdir "^1.0.1" 936 | 937 | hosted-git-info@^2.1.4: 938 | version "2.5.0" 939 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 940 | 941 | html-encoding-sniffer@^1.0.1: 942 | version "1.0.2" 943 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 944 | dependencies: 945 | whatwg-encoding "^1.0.1" 946 | 947 | http-signature@~1.1.0: 948 | version "1.1.1" 949 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 950 | dependencies: 951 | assert-plus "^0.2.0" 952 | jsprim "^1.2.2" 953 | sshpk "^1.7.0" 954 | 955 | http-signature@~1.2.0: 956 | version "1.2.0" 957 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 958 | dependencies: 959 | assert-plus "^1.0.0" 960 | jsprim "^1.2.2" 961 | sshpk "^1.7.0" 962 | 963 | iconv-lite@0.4.19: 964 | version "0.4.19" 965 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 966 | 967 | imurmurhash@^0.1.4: 968 | version "0.1.4" 969 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 970 | 971 | inflight@^1.0.4: 972 | version "1.0.6" 973 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 974 | dependencies: 975 | once "^1.3.0" 976 | wrappy "1" 977 | 978 | inherits@2, inherits@~2.0.0, inherits@~2.0.3: 979 | version "2.0.3" 980 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 981 | 982 | ini@~1.3.0: 983 | version "1.3.4" 984 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 985 | 986 | invariant@^2.2.2: 987 | version "2.2.2" 988 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 989 | dependencies: 990 | loose-envify "^1.0.0" 991 | 992 | invert-kv@^1.0.0: 993 | version "1.0.0" 994 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 995 | 996 | is-arrayish@^0.2.1: 997 | version "0.2.1" 998 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 999 | 1000 | is-buffer@^1.1.5: 1001 | version "1.1.6" 1002 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1003 | 1004 | is-builtin-module@^1.0.0: 1005 | version "1.0.0" 1006 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1007 | dependencies: 1008 | builtin-modules "^1.0.0" 1009 | 1010 | is-ci@^1.0.10: 1011 | version "1.0.10" 1012 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1013 | dependencies: 1014 | ci-info "^1.0.0" 1015 | 1016 | is-dotfile@^1.0.0: 1017 | version "1.0.3" 1018 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1019 | 1020 | is-equal-shallow@^0.1.3: 1021 | version "0.1.3" 1022 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1023 | dependencies: 1024 | is-primitive "^2.0.0" 1025 | 1026 | is-extendable@^0.1.1: 1027 | version "0.1.1" 1028 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1029 | 1030 | is-extglob@^1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1033 | 1034 | is-finite@^1.0.0: 1035 | version "1.0.2" 1036 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1037 | dependencies: 1038 | number-is-nan "^1.0.0" 1039 | 1040 | is-fullwidth-code-point@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1043 | dependencies: 1044 | number-is-nan "^1.0.0" 1045 | 1046 | is-fullwidth-code-point@^2.0.0: 1047 | version "2.0.0" 1048 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1049 | 1050 | is-glob@^2.0.0, is-glob@^2.0.1: 1051 | version "2.0.1" 1052 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1053 | dependencies: 1054 | is-extglob "^1.0.0" 1055 | 1056 | is-number@^2.1.0: 1057 | version "2.1.0" 1058 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1059 | dependencies: 1060 | kind-of "^3.0.2" 1061 | 1062 | is-number@^3.0.0: 1063 | version "3.0.0" 1064 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1065 | dependencies: 1066 | kind-of "^3.0.2" 1067 | 1068 | is-posix-bracket@^0.1.0: 1069 | version "0.1.1" 1070 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1071 | 1072 | is-primitive@^2.0.0: 1073 | version "2.0.0" 1074 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1075 | 1076 | is-stream@^1.1.0: 1077 | version "1.1.0" 1078 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1079 | 1080 | is-typedarray@~1.0.0: 1081 | version "1.0.0" 1082 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1083 | 1084 | is-utf8@^0.2.0: 1085 | version "0.2.1" 1086 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1087 | 1088 | isarray@1.0.0, isarray@~1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1091 | 1092 | isexe@^2.0.0: 1093 | version "2.0.0" 1094 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1095 | 1096 | isobject@^2.0.0: 1097 | version "2.1.0" 1098 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1099 | dependencies: 1100 | isarray "1.0.0" 1101 | 1102 | isstream@~0.1.2: 1103 | version "0.1.2" 1104 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1105 | 1106 | istanbul-api@^1.1.1: 1107 | version "1.2.1" 1108 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1109 | dependencies: 1110 | async "^2.1.4" 1111 | fileset "^2.0.2" 1112 | istanbul-lib-coverage "^1.1.1" 1113 | istanbul-lib-hook "^1.1.0" 1114 | istanbul-lib-instrument "^1.9.1" 1115 | istanbul-lib-report "^1.1.2" 1116 | istanbul-lib-source-maps "^1.2.2" 1117 | istanbul-reports "^1.1.3" 1118 | js-yaml "^3.7.0" 1119 | mkdirp "^0.5.1" 1120 | once "^1.4.0" 1121 | 1122 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1123 | version "1.1.1" 1124 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1125 | 1126 | istanbul-lib-hook@^1.1.0: 1127 | version "1.1.0" 1128 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1129 | dependencies: 1130 | append-transform "^0.4.0" 1131 | 1132 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.1: 1133 | version "1.9.1" 1134 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1135 | dependencies: 1136 | babel-generator "^6.18.0" 1137 | babel-template "^6.16.0" 1138 | babel-traverse "^6.18.0" 1139 | babel-types "^6.18.0" 1140 | babylon "^6.18.0" 1141 | istanbul-lib-coverage "^1.1.1" 1142 | semver "^5.3.0" 1143 | 1144 | istanbul-lib-report@^1.1.2: 1145 | version "1.1.2" 1146 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1147 | dependencies: 1148 | istanbul-lib-coverage "^1.1.1" 1149 | mkdirp "^0.5.1" 1150 | path-parse "^1.0.5" 1151 | supports-color "^3.1.2" 1152 | 1153 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.2: 1154 | version "1.2.2" 1155 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1156 | dependencies: 1157 | debug "^3.1.0" 1158 | istanbul-lib-coverage "^1.1.1" 1159 | mkdirp "^0.5.1" 1160 | rimraf "^2.6.1" 1161 | source-map "^0.5.3" 1162 | 1163 | istanbul-reports@^1.1.3: 1164 | version "1.1.3" 1165 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1166 | dependencies: 1167 | handlebars "^4.0.3" 1168 | 1169 | jest-changed-files@^21.2.0: 1170 | version "21.2.0" 1171 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 1172 | dependencies: 1173 | throat "^4.0.0" 1174 | 1175 | jest-cli@^21.2.1: 1176 | version "21.2.1" 1177 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 1178 | dependencies: 1179 | ansi-escapes "^3.0.0" 1180 | chalk "^2.0.1" 1181 | glob "^7.1.2" 1182 | graceful-fs "^4.1.11" 1183 | is-ci "^1.0.10" 1184 | istanbul-api "^1.1.1" 1185 | istanbul-lib-coverage "^1.0.1" 1186 | istanbul-lib-instrument "^1.4.2" 1187 | istanbul-lib-source-maps "^1.1.0" 1188 | jest-changed-files "^21.2.0" 1189 | jest-config "^21.2.1" 1190 | jest-environment-jsdom "^21.2.1" 1191 | jest-haste-map "^21.2.0" 1192 | jest-message-util "^21.2.1" 1193 | jest-regex-util "^21.2.0" 1194 | jest-resolve-dependencies "^21.2.0" 1195 | jest-runner "^21.2.1" 1196 | jest-runtime "^21.2.1" 1197 | jest-snapshot "^21.2.1" 1198 | jest-util "^21.2.1" 1199 | micromatch "^2.3.11" 1200 | node-notifier "^5.0.2" 1201 | pify "^3.0.0" 1202 | slash "^1.0.0" 1203 | string-length "^2.0.0" 1204 | strip-ansi "^4.0.0" 1205 | which "^1.2.12" 1206 | worker-farm "^1.3.1" 1207 | yargs "^9.0.0" 1208 | 1209 | jest-config@^21.2.1: 1210 | version "21.2.1" 1211 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 1212 | dependencies: 1213 | chalk "^2.0.1" 1214 | glob "^7.1.1" 1215 | jest-environment-jsdom "^21.2.1" 1216 | jest-environment-node "^21.2.1" 1217 | jest-get-type "^21.2.0" 1218 | jest-jasmine2 "^21.2.1" 1219 | jest-regex-util "^21.2.0" 1220 | jest-resolve "^21.2.0" 1221 | jest-util "^21.2.1" 1222 | jest-validate "^21.2.1" 1223 | pretty-format "^21.2.1" 1224 | 1225 | jest-diff@^21.2.1: 1226 | version "21.2.1" 1227 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 1228 | dependencies: 1229 | chalk "^2.0.1" 1230 | diff "^3.2.0" 1231 | jest-get-type "^21.2.0" 1232 | pretty-format "^21.2.1" 1233 | 1234 | jest-docblock@^21.2.0: 1235 | version "21.2.0" 1236 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1237 | 1238 | jest-environment-jsdom@^21.2.1: 1239 | version "21.2.1" 1240 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 1241 | dependencies: 1242 | jest-mock "^21.2.0" 1243 | jest-util "^21.2.1" 1244 | jsdom "^9.12.0" 1245 | 1246 | jest-environment-node@^21.2.1: 1247 | version "21.2.1" 1248 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 1249 | dependencies: 1250 | jest-mock "^21.2.0" 1251 | jest-util "^21.2.1" 1252 | 1253 | jest-get-type@^21.2.0: 1254 | version "21.2.0" 1255 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1256 | 1257 | jest-haste-map@^21.2.0: 1258 | version "21.2.0" 1259 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 1260 | dependencies: 1261 | fb-watchman "^2.0.0" 1262 | graceful-fs "^4.1.11" 1263 | jest-docblock "^21.2.0" 1264 | micromatch "^2.3.11" 1265 | sane "^2.0.0" 1266 | worker-farm "^1.3.1" 1267 | 1268 | jest-jasmine2@^21.2.1: 1269 | version "21.2.1" 1270 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 1271 | dependencies: 1272 | chalk "^2.0.1" 1273 | expect "^21.2.1" 1274 | graceful-fs "^4.1.11" 1275 | jest-diff "^21.2.1" 1276 | jest-matcher-utils "^21.2.1" 1277 | jest-message-util "^21.2.1" 1278 | jest-snapshot "^21.2.1" 1279 | p-cancelable "^0.3.0" 1280 | 1281 | jest-matcher-utils@^21.2.1: 1282 | version "21.2.1" 1283 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 1284 | dependencies: 1285 | chalk "^2.0.1" 1286 | jest-get-type "^21.2.0" 1287 | pretty-format "^21.2.1" 1288 | 1289 | jest-message-util@^21.2.1: 1290 | version "21.2.1" 1291 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 1292 | dependencies: 1293 | chalk "^2.0.1" 1294 | micromatch "^2.3.11" 1295 | slash "^1.0.0" 1296 | 1297 | jest-mock@^21.2.0: 1298 | version "21.2.0" 1299 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 1300 | 1301 | jest-regex-util@^21.2.0: 1302 | version "21.2.0" 1303 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 1304 | 1305 | jest-resolve-dependencies@^21.2.0: 1306 | version "21.2.0" 1307 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 1308 | dependencies: 1309 | jest-regex-util "^21.2.0" 1310 | 1311 | jest-resolve@^21.2.0: 1312 | version "21.2.0" 1313 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 1314 | dependencies: 1315 | browser-resolve "^1.11.2" 1316 | chalk "^2.0.1" 1317 | is-builtin-module "^1.0.0" 1318 | 1319 | jest-runner@^21.2.1: 1320 | version "21.2.1" 1321 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 1322 | dependencies: 1323 | jest-config "^21.2.1" 1324 | jest-docblock "^21.2.0" 1325 | jest-haste-map "^21.2.0" 1326 | jest-jasmine2 "^21.2.1" 1327 | jest-message-util "^21.2.1" 1328 | jest-runtime "^21.2.1" 1329 | jest-util "^21.2.1" 1330 | pify "^3.0.0" 1331 | throat "^4.0.0" 1332 | worker-farm "^1.3.1" 1333 | 1334 | jest-runtime@^21.2.1: 1335 | version "21.2.1" 1336 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 1337 | dependencies: 1338 | babel-core "^6.0.0" 1339 | babel-jest "^21.2.0" 1340 | babel-plugin-istanbul "^4.0.0" 1341 | chalk "^2.0.1" 1342 | convert-source-map "^1.4.0" 1343 | graceful-fs "^4.1.11" 1344 | jest-config "^21.2.1" 1345 | jest-haste-map "^21.2.0" 1346 | jest-regex-util "^21.2.0" 1347 | jest-resolve "^21.2.0" 1348 | jest-util "^21.2.1" 1349 | json-stable-stringify "^1.0.1" 1350 | micromatch "^2.3.11" 1351 | slash "^1.0.0" 1352 | strip-bom "3.0.0" 1353 | write-file-atomic "^2.1.0" 1354 | yargs "^9.0.0" 1355 | 1356 | jest-snapshot@^21.2.1: 1357 | version "21.2.1" 1358 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 1359 | dependencies: 1360 | chalk "^2.0.1" 1361 | jest-diff "^21.2.1" 1362 | jest-matcher-utils "^21.2.1" 1363 | mkdirp "^0.5.1" 1364 | natural-compare "^1.4.0" 1365 | pretty-format "^21.2.1" 1366 | 1367 | jest-util@^21.2.1: 1368 | version "21.2.1" 1369 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 1370 | dependencies: 1371 | callsites "^2.0.0" 1372 | chalk "^2.0.1" 1373 | graceful-fs "^4.1.11" 1374 | jest-message-util "^21.2.1" 1375 | jest-mock "^21.2.0" 1376 | jest-validate "^21.2.1" 1377 | mkdirp "^0.5.1" 1378 | 1379 | jest-validate@^21.2.1: 1380 | version "21.2.1" 1381 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 1382 | dependencies: 1383 | chalk "^2.0.1" 1384 | jest-get-type "^21.2.0" 1385 | leven "^2.1.0" 1386 | pretty-format "^21.2.1" 1387 | 1388 | jest@^21.2.1: 1389 | version "21.2.1" 1390 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 1391 | dependencies: 1392 | jest-cli "^21.2.1" 1393 | 1394 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1395 | version "3.0.2" 1396 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1397 | 1398 | js-yaml@^3.7.0: 1399 | version "3.10.0" 1400 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1401 | dependencies: 1402 | argparse "^1.0.7" 1403 | esprima "^4.0.0" 1404 | 1405 | jsbn@~0.1.0: 1406 | version "0.1.1" 1407 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1408 | 1409 | jsdom@^9.12.0: 1410 | version "9.12.0" 1411 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1412 | dependencies: 1413 | abab "^1.0.3" 1414 | acorn "^4.0.4" 1415 | acorn-globals "^3.1.0" 1416 | array-equal "^1.0.0" 1417 | content-type-parser "^1.0.1" 1418 | cssom ">= 0.3.2 < 0.4.0" 1419 | cssstyle ">= 0.2.37 < 0.3.0" 1420 | escodegen "^1.6.1" 1421 | html-encoding-sniffer "^1.0.1" 1422 | nwmatcher ">= 1.3.9 < 2.0.0" 1423 | parse5 "^1.5.1" 1424 | request "^2.79.0" 1425 | sax "^1.2.1" 1426 | symbol-tree "^3.2.1" 1427 | tough-cookie "^2.3.2" 1428 | webidl-conversions "^4.0.0" 1429 | whatwg-encoding "^1.0.1" 1430 | whatwg-url "^4.3.0" 1431 | xml-name-validator "^2.0.1" 1432 | 1433 | jsesc@^1.3.0: 1434 | version "1.3.0" 1435 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1436 | 1437 | json-schema-traverse@^0.3.0: 1438 | version "0.3.1" 1439 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1440 | 1441 | json-schema@0.2.3: 1442 | version "0.2.3" 1443 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1444 | 1445 | json-stable-stringify@^1.0.1: 1446 | version "1.0.1" 1447 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1448 | dependencies: 1449 | jsonify "~0.0.0" 1450 | 1451 | json-stringify-safe@~5.0.1: 1452 | version "5.0.1" 1453 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1454 | 1455 | json5@^0.5.1: 1456 | version "0.5.1" 1457 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1458 | 1459 | jsonify@~0.0.0: 1460 | version "0.0.0" 1461 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1462 | 1463 | jsprim@^1.2.2: 1464 | version "1.4.1" 1465 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1466 | dependencies: 1467 | assert-plus "1.0.0" 1468 | extsprintf "1.3.0" 1469 | json-schema "0.2.3" 1470 | verror "1.10.0" 1471 | 1472 | kind-of@^3.0.2: 1473 | version "3.2.2" 1474 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1475 | dependencies: 1476 | is-buffer "^1.1.5" 1477 | 1478 | kind-of@^4.0.0: 1479 | version "4.0.0" 1480 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1481 | dependencies: 1482 | is-buffer "^1.1.5" 1483 | 1484 | lazy-cache@^1.0.3: 1485 | version "1.0.4" 1486 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1487 | 1488 | lcid@^1.0.0: 1489 | version "1.0.0" 1490 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1491 | dependencies: 1492 | invert-kv "^1.0.0" 1493 | 1494 | leven@^2.1.0: 1495 | version "2.1.0" 1496 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1497 | 1498 | levn@~0.3.0: 1499 | version "0.3.0" 1500 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1501 | dependencies: 1502 | prelude-ls "~1.1.2" 1503 | type-check "~0.3.2" 1504 | 1505 | load-json-file@^1.0.0: 1506 | version "1.1.0" 1507 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1508 | dependencies: 1509 | graceful-fs "^4.1.2" 1510 | parse-json "^2.2.0" 1511 | pify "^2.0.0" 1512 | pinkie-promise "^2.0.0" 1513 | strip-bom "^2.0.0" 1514 | 1515 | load-json-file@^2.0.0: 1516 | version "2.0.0" 1517 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1518 | dependencies: 1519 | graceful-fs "^4.1.2" 1520 | parse-json "^2.2.0" 1521 | pify "^2.0.0" 1522 | strip-bom "^3.0.0" 1523 | 1524 | locate-path@^2.0.0: 1525 | version "2.0.0" 1526 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1527 | dependencies: 1528 | p-locate "^2.0.0" 1529 | path-exists "^3.0.0" 1530 | 1531 | lodash@^4.14.0, lodash@^4.17.4: 1532 | version "4.17.4" 1533 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1534 | 1535 | longest@^1.0.1: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1538 | 1539 | loose-envify@^1.0.0: 1540 | version "1.3.1" 1541 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1542 | dependencies: 1543 | js-tokens "^3.0.0" 1544 | 1545 | lru-cache@^4.0.1: 1546 | version "4.1.1" 1547 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1548 | dependencies: 1549 | pseudomap "^1.0.2" 1550 | yallist "^2.1.2" 1551 | 1552 | makeerror@1.0.x: 1553 | version "1.0.11" 1554 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1555 | dependencies: 1556 | tmpl "1.0.x" 1557 | 1558 | mem@^1.1.0: 1559 | version "1.1.0" 1560 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1561 | dependencies: 1562 | mimic-fn "^1.0.0" 1563 | 1564 | merge@^1.1.3: 1565 | version "1.2.0" 1566 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1567 | 1568 | micromatch@^2.1.5, micromatch@^2.3.11: 1569 | version "2.3.11" 1570 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1571 | dependencies: 1572 | arr-diff "^2.0.0" 1573 | array-unique "^0.2.1" 1574 | braces "^1.8.2" 1575 | expand-brackets "^0.1.4" 1576 | extglob "^0.3.1" 1577 | filename-regex "^2.0.0" 1578 | is-extglob "^1.0.0" 1579 | is-glob "^2.0.1" 1580 | kind-of "^3.0.2" 1581 | normalize-path "^2.0.1" 1582 | object.omit "^2.0.0" 1583 | parse-glob "^3.0.4" 1584 | regex-cache "^0.4.2" 1585 | 1586 | mime-db@~1.30.0: 1587 | version "1.30.0" 1588 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1589 | 1590 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 1591 | version "2.1.17" 1592 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1593 | dependencies: 1594 | mime-db "~1.30.0" 1595 | 1596 | mimic-fn@^1.0.0: 1597 | version "1.1.0" 1598 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1599 | 1600 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1601 | version "3.0.4" 1602 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1603 | dependencies: 1604 | brace-expansion "^1.1.7" 1605 | 1606 | minimist@0.0.8: 1607 | version "0.0.8" 1608 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1609 | 1610 | minimist@^1.1.1, minimist@^1.2.0: 1611 | version "1.2.0" 1612 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1613 | 1614 | minimist@~0.0.1: 1615 | version "0.0.10" 1616 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1617 | 1618 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1619 | version "0.5.1" 1620 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1621 | dependencies: 1622 | minimist "0.0.8" 1623 | 1624 | ms@2.0.0: 1625 | version "2.0.0" 1626 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1627 | 1628 | nan@^2.3.0: 1629 | version "2.7.0" 1630 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1631 | 1632 | natural-compare@^1.4.0: 1633 | version "1.4.0" 1634 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1635 | 1636 | nearley@^2.7.12: 1637 | version "2.11.0" 1638 | resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.11.0.tgz#5e626c79a6cd2f6ab9e7e5d5805e7668967757ae" 1639 | dependencies: 1640 | nomnom "~1.6.2" 1641 | railroad-diagrams "^1.0.0" 1642 | randexp "^0.4.2" 1643 | 1644 | node-int64@^0.4.0: 1645 | version "0.4.0" 1646 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1647 | 1648 | node-notifier@^5.0.2: 1649 | version "5.1.2" 1650 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1651 | dependencies: 1652 | growly "^1.3.0" 1653 | semver "^5.3.0" 1654 | shellwords "^0.1.0" 1655 | which "^1.2.12" 1656 | 1657 | node-pre-gyp@^0.6.36: 1658 | version "0.6.38" 1659 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 1660 | dependencies: 1661 | hawk "3.1.3" 1662 | mkdirp "^0.5.1" 1663 | nopt "^4.0.1" 1664 | npmlog "^4.0.2" 1665 | rc "^1.1.7" 1666 | request "2.81.0" 1667 | rimraf "^2.6.1" 1668 | semver "^5.3.0" 1669 | tar "^2.2.1" 1670 | tar-pack "^3.4.0" 1671 | 1672 | nomnom@~1.6.2: 1673 | version "1.6.2" 1674 | resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.6.2.tgz#84a66a260174408fc5b77a18f888eccc44fb6971" 1675 | dependencies: 1676 | colors "0.5.x" 1677 | underscore "~1.4.4" 1678 | 1679 | nopt@^4.0.1: 1680 | version "4.0.1" 1681 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1682 | dependencies: 1683 | abbrev "1" 1684 | osenv "^0.1.4" 1685 | 1686 | normalize-package-data@^2.3.2: 1687 | version "2.4.0" 1688 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1689 | dependencies: 1690 | hosted-git-info "^2.1.4" 1691 | is-builtin-module "^1.0.0" 1692 | semver "2 || 3 || 4 || 5" 1693 | validate-npm-package-license "^3.0.1" 1694 | 1695 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1696 | version "2.1.1" 1697 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1698 | dependencies: 1699 | remove-trailing-separator "^1.0.1" 1700 | 1701 | npm-run-path@^2.0.0: 1702 | version "2.0.2" 1703 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1704 | dependencies: 1705 | path-key "^2.0.0" 1706 | 1707 | npmlog@^4.0.2: 1708 | version "4.1.2" 1709 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1710 | dependencies: 1711 | are-we-there-yet "~1.1.2" 1712 | console-control-strings "~1.1.0" 1713 | gauge "~2.7.3" 1714 | set-blocking "~2.0.0" 1715 | 1716 | number-is-nan@^1.0.0: 1717 | version "1.0.1" 1718 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1719 | 1720 | "nwmatcher@>= 1.3.9 < 2.0.0": 1721 | version "1.4.3" 1722 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 1723 | 1724 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1725 | version "0.8.2" 1726 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1727 | 1728 | object-assign@^4.1.0: 1729 | version "4.1.1" 1730 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1731 | 1732 | object.omit@^2.0.0: 1733 | version "2.0.1" 1734 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1735 | dependencies: 1736 | for-own "^0.1.4" 1737 | is-extendable "^0.1.1" 1738 | 1739 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 1740 | version "1.4.0" 1741 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1742 | dependencies: 1743 | wrappy "1" 1744 | 1745 | optimist@^0.6.1: 1746 | version "0.6.1" 1747 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1748 | dependencies: 1749 | minimist "~0.0.1" 1750 | wordwrap "~0.0.2" 1751 | 1752 | optionator@^0.8.1: 1753 | version "0.8.2" 1754 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1755 | dependencies: 1756 | deep-is "~0.1.3" 1757 | fast-levenshtein "~2.0.4" 1758 | levn "~0.3.0" 1759 | prelude-ls "~1.1.2" 1760 | type-check "~0.3.2" 1761 | wordwrap "~1.0.0" 1762 | 1763 | os-homedir@^1.0.0: 1764 | version "1.0.2" 1765 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1766 | 1767 | os-locale@^2.0.0: 1768 | version "2.1.0" 1769 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1770 | dependencies: 1771 | execa "^0.7.0" 1772 | lcid "^1.0.0" 1773 | mem "^1.1.0" 1774 | 1775 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1776 | version "1.0.2" 1777 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1778 | 1779 | osenv@^0.1.4: 1780 | version "0.1.4" 1781 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1782 | dependencies: 1783 | os-homedir "^1.0.0" 1784 | os-tmpdir "^1.0.0" 1785 | 1786 | p-cancelable@^0.3.0: 1787 | version "0.3.0" 1788 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 1789 | 1790 | p-finally@^1.0.0: 1791 | version "1.0.0" 1792 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1793 | 1794 | p-limit@^1.1.0: 1795 | version "1.1.0" 1796 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1797 | 1798 | p-locate@^2.0.0: 1799 | version "2.0.0" 1800 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1801 | dependencies: 1802 | p-limit "^1.1.0" 1803 | 1804 | parse-glob@^3.0.4: 1805 | version "3.0.4" 1806 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1807 | dependencies: 1808 | glob-base "^0.3.0" 1809 | is-dotfile "^1.0.0" 1810 | is-extglob "^1.0.0" 1811 | is-glob "^2.0.0" 1812 | 1813 | parse-json@^2.2.0: 1814 | version "2.2.0" 1815 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1816 | dependencies: 1817 | error-ex "^1.2.0" 1818 | 1819 | parse5@^1.5.1: 1820 | version "1.5.1" 1821 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1822 | 1823 | path-exists@^2.0.0: 1824 | version "2.1.0" 1825 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1826 | dependencies: 1827 | pinkie-promise "^2.0.0" 1828 | 1829 | path-exists@^3.0.0: 1830 | version "3.0.0" 1831 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1832 | 1833 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1834 | version "1.0.1" 1835 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1836 | 1837 | path-key@^2.0.0: 1838 | version "2.0.1" 1839 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1840 | 1841 | path-parse@^1.0.5: 1842 | version "1.0.5" 1843 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1844 | 1845 | path-type@^1.0.0: 1846 | version "1.1.0" 1847 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1848 | dependencies: 1849 | graceful-fs "^4.1.2" 1850 | pify "^2.0.0" 1851 | pinkie-promise "^2.0.0" 1852 | 1853 | path-type@^2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1856 | dependencies: 1857 | pify "^2.0.0" 1858 | 1859 | performance-now@^0.2.0: 1860 | version "0.2.0" 1861 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1862 | 1863 | performance-now@^2.1.0: 1864 | version "2.1.0" 1865 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1866 | 1867 | pify@^2.0.0: 1868 | version "2.3.0" 1869 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1870 | 1871 | pify@^3.0.0: 1872 | version "3.0.0" 1873 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1874 | 1875 | pinkie-promise@^2.0.0: 1876 | version "2.0.1" 1877 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1878 | dependencies: 1879 | pinkie "^2.0.0" 1880 | 1881 | pinkie@^2.0.0: 1882 | version "2.0.4" 1883 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1884 | 1885 | prelude-ls@~1.1.2: 1886 | version "1.1.2" 1887 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1888 | 1889 | preserve@^0.2.0: 1890 | version "0.2.0" 1891 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1892 | 1893 | pretty-format@^21.2.1: 1894 | version "21.2.1" 1895 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 1896 | dependencies: 1897 | ansi-regex "^3.0.0" 1898 | ansi-styles "^3.2.0" 1899 | 1900 | private@^0.1.7: 1901 | version "0.1.8" 1902 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1903 | 1904 | process-nextick-args@~1.0.6: 1905 | version "1.0.7" 1906 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1907 | 1908 | prr@~0.0.0: 1909 | version "0.0.0" 1910 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1911 | 1912 | pseudomap@^1.0.2: 1913 | version "1.0.2" 1914 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1915 | 1916 | punycode@^1.4.1: 1917 | version "1.4.1" 1918 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1919 | 1920 | qs@~6.4.0: 1921 | version "6.4.0" 1922 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1923 | 1924 | qs@~6.5.1: 1925 | version "6.5.1" 1926 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1927 | 1928 | railroad-diagrams@^1.0.0: 1929 | version "1.0.0" 1930 | resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" 1931 | 1932 | randexp@^0.4.2: 1933 | version "0.4.6" 1934 | resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" 1935 | dependencies: 1936 | discontinuous-range "1.0.0" 1937 | ret "~0.1.10" 1938 | 1939 | randomatic@^1.1.3: 1940 | version "1.1.7" 1941 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1942 | dependencies: 1943 | is-number "^3.0.0" 1944 | kind-of "^4.0.0" 1945 | 1946 | rc@^1.1.7: 1947 | version "1.2.2" 1948 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1949 | dependencies: 1950 | deep-extend "~0.4.0" 1951 | ini "~1.3.0" 1952 | minimist "^1.2.0" 1953 | strip-json-comments "~2.0.1" 1954 | 1955 | read-pkg-up@^1.0.1: 1956 | version "1.0.1" 1957 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1958 | dependencies: 1959 | find-up "^1.0.0" 1960 | read-pkg "^1.0.0" 1961 | 1962 | read-pkg-up@^2.0.0: 1963 | version "2.0.0" 1964 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1965 | dependencies: 1966 | find-up "^2.0.0" 1967 | read-pkg "^2.0.0" 1968 | 1969 | read-pkg@^1.0.0: 1970 | version "1.1.0" 1971 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1972 | dependencies: 1973 | load-json-file "^1.0.0" 1974 | normalize-package-data "^2.3.2" 1975 | path-type "^1.0.0" 1976 | 1977 | read-pkg@^2.0.0: 1978 | version "2.0.0" 1979 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1980 | dependencies: 1981 | load-json-file "^2.0.0" 1982 | normalize-package-data "^2.3.2" 1983 | path-type "^2.0.0" 1984 | 1985 | readable-stream@^2.0.6, readable-stream@^2.1.4: 1986 | version "2.3.3" 1987 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1988 | dependencies: 1989 | core-util-is "~1.0.0" 1990 | inherits "~2.0.3" 1991 | isarray "~1.0.0" 1992 | process-nextick-args "~1.0.6" 1993 | safe-buffer "~5.1.1" 1994 | string_decoder "~1.0.3" 1995 | util-deprecate "~1.0.1" 1996 | 1997 | regenerator-runtime@^0.11.0: 1998 | version "0.11.0" 1999 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2000 | 2001 | regex-cache@^0.4.2: 2002 | version "0.4.4" 2003 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2004 | dependencies: 2005 | is-equal-shallow "^0.1.3" 2006 | 2007 | remove-trailing-separator@^1.0.1: 2008 | version "1.1.0" 2009 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2010 | 2011 | repeat-element@^1.1.2: 2012 | version "1.1.2" 2013 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2014 | 2015 | repeat-string@^1.5.2: 2016 | version "1.6.1" 2017 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2018 | 2019 | repeating@^2.0.0: 2020 | version "2.0.1" 2021 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2022 | dependencies: 2023 | is-finite "^1.0.0" 2024 | 2025 | request@2.81.0: 2026 | version "2.81.0" 2027 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2028 | dependencies: 2029 | aws-sign2 "~0.6.0" 2030 | aws4 "^1.2.1" 2031 | caseless "~0.12.0" 2032 | combined-stream "~1.0.5" 2033 | extend "~3.0.0" 2034 | forever-agent "~0.6.1" 2035 | form-data "~2.1.1" 2036 | har-validator "~4.2.1" 2037 | hawk "~3.1.3" 2038 | http-signature "~1.1.0" 2039 | is-typedarray "~1.0.0" 2040 | isstream "~0.1.2" 2041 | json-stringify-safe "~5.0.1" 2042 | mime-types "~2.1.7" 2043 | oauth-sign "~0.8.1" 2044 | performance-now "^0.2.0" 2045 | qs "~6.4.0" 2046 | safe-buffer "^5.0.1" 2047 | stringstream "~0.0.4" 2048 | tough-cookie "~2.3.0" 2049 | tunnel-agent "^0.6.0" 2050 | uuid "^3.0.0" 2051 | 2052 | request@^2.79.0: 2053 | version "2.83.0" 2054 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2055 | dependencies: 2056 | aws-sign2 "~0.7.0" 2057 | aws4 "^1.6.0" 2058 | caseless "~0.12.0" 2059 | combined-stream "~1.0.5" 2060 | extend "~3.0.1" 2061 | forever-agent "~0.6.1" 2062 | form-data "~2.3.1" 2063 | har-validator "~5.0.3" 2064 | hawk "~6.0.2" 2065 | http-signature "~1.2.0" 2066 | is-typedarray "~1.0.0" 2067 | isstream "~0.1.2" 2068 | json-stringify-safe "~5.0.1" 2069 | mime-types "~2.1.17" 2070 | oauth-sign "~0.8.2" 2071 | performance-now "^2.1.0" 2072 | qs "~6.5.1" 2073 | safe-buffer "^5.1.1" 2074 | stringstream "~0.0.5" 2075 | tough-cookie "~2.3.3" 2076 | tunnel-agent "^0.6.0" 2077 | uuid "^3.1.0" 2078 | 2079 | require-directory@^2.1.1: 2080 | version "2.1.1" 2081 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2082 | 2083 | require-main-filename@^1.0.1: 2084 | version "1.0.1" 2085 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2086 | 2087 | resolve@1.1.7: 2088 | version "1.1.7" 2089 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2090 | 2091 | ret@~0.1.10: 2092 | version "0.1.15" 2093 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2094 | 2095 | right-align@^0.1.1: 2096 | version "0.1.3" 2097 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2098 | dependencies: 2099 | align-text "^0.1.1" 2100 | 2101 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2102 | version "2.6.2" 2103 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2104 | dependencies: 2105 | glob "^7.0.5" 2106 | 2107 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2108 | version "5.1.1" 2109 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2110 | 2111 | sane@^2.0.0: 2112 | version "2.2.0" 2113 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 2114 | dependencies: 2115 | anymatch "^1.3.0" 2116 | exec-sh "^0.2.0" 2117 | fb-watchman "^2.0.0" 2118 | minimatch "^3.0.2" 2119 | minimist "^1.1.1" 2120 | walker "~1.0.5" 2121 | watch "~0.18.0" 2122 | optionalDependencies: 2123 | fsevents "^1.1.1" 2124 | 2125 | sax@^1.2.1: 2126 | version "1.2.4" 2127 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2128 | 2129 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2130 | version "5.4.1" 2131 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2132 | 2133 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2134 | version "2.0.0" 2135 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2136 | 2137 | shebang-command@^1.2.0: 2138 | version "1.2.0" 2139 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2140 | dependencies: 2141 | shebang-regex "^1.0.0" 2142 | 2143 | shebang-regex@^1.0.0: 2144 | version "1.0.0" 2145 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2146 | 2147 | shellwords@^0.1.0: 2148 | version "0.1.1" 2149 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2150 | 2151 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2152 | version "3.0.2" 2153 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2154 | 2155 | slash@^1.0.0: 2156 | version "1.0.0" 2157 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2158 | 2159 | sntp@1.x.x: 2160 | version "1.0.9" 2161 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2162 | dependencies: 2163 | hoek "2.x.x" 2164 | 2165 | sntp@2.x.x: 2166 | version "2.1.0" 2167 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2168 | dependencies: 2169 | hoek "4.x.x" 2170 | 2171 | source-map-support@^0.4.15: 2172 | version "0.4.18" 2173 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2174 | dependencies: 2175 | source-map "^0.5.6" 2176 | 2177 | source-map@^0.4.4: 2178 | version "0.4.4" 2179 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2180 | dependencies: 2181 | amdefine ">=0.0.4" 2182 | 2183 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2184 | version "0.5.7" 2185 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2186 | 2187 | spdx-correct@~1.0.0: 2188 | version "1.0.2" 2189 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2190 | dependencies: 2191 | spdx-license-ids "^1.0.2" 2192 | 2193 | spdx-expression-parse@~1.0.0: 2194 | version "1.0.4" 2195 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2196 | 2197 | spdx-license-ids@^1.0.2: 2198 | version "1.2.2" 2199 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2200 | 2201 | sprintf-js@~1.0.2: 2202 | version "1.0.3" 2203 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2204 | 2205 | sshpk@^1.7.0: 2206 | version "1.13.1" 2207 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2208 | dependencies: 2209 | asn1 "~0.2.3" 2210 | assert-plus "^1.0.0" 2211 | dashdash "^1.12.0" 2212 | getpass "^0.1.1" 2213 | optionalDependencies: 2214 | bcrypt-pbkdf "^1.0.0" 2215 | ecc-jsbn "~0.1.1" 2216 | jsbn "~0.1.0" 2217 | tweetnacl "~0.14.0" 2218 | 2219 | string-length@^2.0.0: 2220 | version "2.0.0" 2221 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2222 | dependencies: 2223 | astral-regex "^1.0.0" 2224 | strip-ansi "^4.0.0" 2225 | 2226 | string-width@^1.0.1, string-width@^1.0.2: 2227 | version "1.0.2" 2228 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2229 | dependencies: 2230 | code-point-at "^1.0.0" 2231 | is-fullwidth-code-point "^1.0.0" 2232 | strip-ansi "^3.0.0" 2233 | 2234 | string-width@^2.0.0: 2235 | version "2.1.1" 2236 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2237 | dependencies: 2238 | is-fullwidth-code-point "^2.0.0" 2239 | strip-ansi "^4.0.0" 2240 | 2241 | string_decoder@~1.0.3: 2242 | version "1.0.3" 2243 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2244 | dependencies: 2245 | safe-buffer "~5.1.0" 2246 | 2247 | stringstream@~0.0.4, stringstream@~0.0.5: 2248 | version "0.0.5" 2249 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2250 | 2251 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2252 | version "3.0.1" 2253 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2254 | dependencies: 2255 | ansi-regex "^2.0.0" 2256 | 2257 | strip-ansi@^4.0.0: 2258 | version "4.0.0" 2259 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2260 | dependencies: 2261 | ansi-regex "^3.0.0" 2262 | 2263 | strip-bom@3.0.0, strip-bom@^3.0.0: 2264 | version "3.0.0" 2265 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2266 | 2267 | strip-bom@^2.0.0: 2268 | version "2.0.0" 2269 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2270 | dependencies: 2271 | is-utf8 "^0.2.0" 2272 | 2273 | strip-eof@^1.0.0: 2274 | version "1.0.0" 2275 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2276 | 2277 | strip-json-comments@~2.0.1: 2278 | version "2.0.1" 2279 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2280 | 2281 | supports-color@^2.0.0: 2282 | version "2.0.0" 2283 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2284 | 2285 | supports-color@^3.1.2: 2286 | version "3.2.3" 2287 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2288 | dependencies: 2289 | has-flag "^1.0.0" 2290 | 2291 | supports-color@^4.0.0: 2292 | version "4.5.0" 2293 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2294 | dependencies: 2295 | has-flag "^2.0.0" 2296 | 2297 | symbol-tree@^3.2.1: 2298 | version "3.2.2" 2299 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2300 | 2301 | tar-pack@^3.4.0: 2302 | version "3.4.1" 2303 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2304 | dependencies: 2305 | debug "^2.2.0" 2306 | fstream "^1.0.10" 2307 | fstream-ignore "^1.0.5" 2308 | once "^1.3.3" 2309 | readable-stream "^2.1.4" 2310 | rimraf "^2.5.1" 2311 | tar "^2.2.1" 2312 | uid-number "^0.0.6" 2313 | 2314 | tar@^2.2.1: 2315 | version "2.2.1" 2316 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2317 | dependencies: 2318 | block-stream "*" 2319 | fstream "^1.0.2" 2320 | inherits "2" 2321 | 2322 | test-exclude@^4.1.1: 2323 | version "4.1.1" 2324 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2325 | dependencies: 2326 | arrify "^1.0.1" 2327 | micromatch "^2.3.11" 2328 | object-assign "^4.1.0" 2329 | read-pkg-up "^1.0.1" 2330 | require-main-filename "^1.0.1" 2331 | 2332 | throat@^4.0.0: 2333 | version "4.1.0" 2334 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 2335 | 2336 | tmpl@1.0.x: 2337 | version "1.0.4" 2338 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2339 | 2340 | to-fast-properties@^1.0.3: 2341 | version "1.0.3" 2342 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2343 | 2344 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2345 | version "2.3.3" 2346 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2347 | dependencies: 2348 | punycode "^1.4.1" 2349 | 2350 | tr46@~0.0.3: 2351 | version "0.0.3" 2352 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2353 | 2354 | trim-right@^1.0.1: 2355 | version "1.0.1" 2356 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2357 | 2358 | tunnel-agent@^0.6.0: 2359 | version "0.6.0" 2360 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2361 | dependencies: 2362 | safe-buffer "^5.0.1" 2363 | 2364 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2365 | version "0.14.5" 2366 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2367 | 2368 | type-check@~0.3.2: 2369 | version "0.3.2" 2370 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2371 | dependencies: 2372 | prelude-ls "~1.1.2" 2373 | 2374 | uglify-js@^2.6: 2375 | version "2.8.29" 2376 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2377 | dependencies: 2378 | source-map "~0.5.1" 2379 | yargs "~3.10.0" 2380 | optionalDependencies: 2381 | uglify-to-browserify "~1.0.0" 2382 | 2383 | uglify-to-browserify@~1.0.0: 2384 | version "1.0.2" 2385 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2386 | 2387 | uid-number@^0.0.6: 2388 | version "0.0.6" 2389 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2390 | 2391 | underscore@~1.4.4: 2392 | version "1.4.4" 2393 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604" 2394 | 2395 | util-deprecate@~1.0.1: 2396 | version "1.0.2" 2397 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2398 | 2399 | uuid@^3.0.0, uuid@^3.1.0: 2400 | version "3.1.0" 2401 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2402 | 2403 | validate-npm-package-license@^3.0.1: 2404 | version "3.0.1" 2405 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2406 | dependencies: 2407 | spdx-correct "~1.0.0" 2408 | spdx-expression-parse "~1.0.0" 2409 | 2410 | verror@1.10.0: 2411 | version "1.10.0" 2412 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2413 | dependencies: 2414 | assert-plus "^1.0.0" 2415 | core-util-is "1.0.2" 2416 | extsprintf "^1.2.0" 2417 | 2418 | walker@~1.0.5: 2419 | version "1.0.7" 2420 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2421 | dependencies: 2422 | makeerror "1.0.x" 2423 | 2424 | watch@~0.18.0: 2425 | version "0.18.0" 2426 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 2427 | dependencies: 2428 | exec-sh "^0.2.0" 2429 | minimist "^1.2.0" 2430 | 2431 | webidl-conversions@^3.0.0: 2432 | version "3.0.1" 2433 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2434 | 2435 | webidl-conversions@^4.0.0: 2436 | version "4.0.2" 2437 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2438 | 2439 | whatwg-encoding@^1.0.1: 2440 | version "1.0.3" 2441 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 2442 | dependencies: 2443 | iconv-lite "0.4.19" 2444 | 2445 | whatwg-url@^4.3.0: 2446 | version "4.8.0" 2447 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2448 | dependencies: 2449 | tr46 "~0.0.3" 2450 | webidl-conversions "^3.0.0" 2451 | 2452 | which-module@^2.0.0: 2453 | version "2.0.0" 2454 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2455 | 2456 | which@^1.2.12, which@^1.2.9: 2457 | version "1.3.0" 2458 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2459 | dependencies: 2460 | isexe "^2.0.0" 2461 | 2462 | wide-align@^1.1.0: 2463 | version "1.1.2" 2464 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2465 | dependencies: 2466 | string-width "^1.0.2" 2467 | 2468 | window-size@0.1.0: 2469 | version "0.1.0" 2470 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2471 | 2472 | wordwrap@0.0.2: 2473 | version "0.0.2" 2474 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2475 | 2476 | wordwrap@~0.0.2: 2477 | version "0.0.3" 2478 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2479 | 2480 | wordwrap@~1.0.0: 2481 | version "1.0.0" 2482 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2483 | 2484 | worker-farm@^1.3.1: 2485 | version "1.5.1" 2486 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.1.tgz#8e9f4a7da4f3c595aa600903051b969390423fa1" 2487 | dependencies: 2488 | errno "^0.1.4" 2489 | xtend "^4.0.1" 2490 | 2491 | wrap-ansi@^2.0.0: 2492 | version "2.1.0" 2493 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2494 | dependencies: 2495 | string-width "^1.0.1" 2496 | strip-ansi "^3.0.1" 2497 | 2498 | wrappy@1: 2499 | version "1.0.2" 2500 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2501 | 2502 | write-file-atomic@^2.1.0: 2503 | version "2.3.0" 2504 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2505 | dependencies: 2506 | graceful-fs "^4.1.11" 2507 | imurmurhash "^0.1.4" 2508 | signal-exit "^3.0.2" 2509 | 2510 | xml-name-validator@^2.0.1: 2511 | version "2.0.1" 2512 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2513 | 2514 | xtend@^4.0.1: 2515 | version "4.0.1" 2516 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2517 | 2518 | y18n@^3.2.1: 2519 | version "3.2.1" 2520 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2521 | 2522 | yallist@^2.1.2: 2523 | version "2.1.2" 2524 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2525 | 2526 | yargs-parser@^7.0.0: 2527 | version "7.0.0" 2528 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2529 | dependencies: 2530 | camelcase "^4.1.0" 2531 | 2532 | yargs@^9.0.0: 2533 | version "9.0.1" 2534 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 2535 | dependencies: 2536 | camelcase "^4.1.0" 2537 | cliui "^3.2.0" 2538 | decamelize "^1.1.1" 2539 | get-caller-file "^1.0.1" 2540 | os-locale "^2.0.0" 2541 | read-pkg-up "^2.0.0" 2542 | require-directory "^2.1.1" 2543 | require-main-filename "^1.0.1" 2544 | set-blocking "^2.0.0" 2545 | string-width "^2.0.0" 2546 | which-module "^2.0.0" 2547 | y18n "^3.2.1" 2548 | yargs-parser "^7.0.0" 2549 | 2550 | yargs@~3.10.0: 2551 | version "3.10.0" 2552 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2553 | dependencies: 2554 | camelcase "^1.0.2" 2555 | cliui "^2.1.0" 2556 | decamelize "^1.0.0" 2557 | window-size "0.1.0" 2558 | --------------------------------------------------------------------------------