├── .gitignore
├── .travis.yml
├── HISTORY.md
├── README.md
├── bin
└── startup-name-generator
├── lib
├── __tests__
│ └── index.test.js
├── constants.js
├── index.js
├── normalize.js
├── permutate.js
└── score.js
├── package.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /coverage
3 | /dist
4 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - '6'
4 |
--------------------------------------------------------------------------------
/HISTORY.md:
--------------------------------------------------------------------------------
1 | ## [v0.3.0]
2 | > Mar 24, 2017
3 |
4 | - More names.
5 |
6 | [v0.3.0]: https://github.com/rstacruz/startup-name-generator/compare/v0.2.1...v0.3.0
7 |
8 | ## [v0.2.1]
9 | > Mar 20, 2017
10 |
11 | - Fix distribution package not being packaged.
12 |
13 | [v0.2.1]: https://github.com/rstacruz/startup-name-generator/compare/v0.2.0...v0.2.1
14 |
15 | ## [v0.2.0]
16 | > Mar 20, 2017
17 |
18 | - Add a distribution package via [unpkg.com](https://unpkg.com/@rstacruz/startup-name-generator@latest/lib/index.js).
19 |
20 | [v0.2.0]: https://github.com/rstacruz/startup-name-generator/compare/v0.1.1...v0.2.0
21 |
22 | ## [v0.1.1]
23 | > Mar 17, 2017
24 |
25 | - Fix `main` entry in package.json.
26 |
27 | [v0.1.1]: https://github.com/rstacruz/startup-name-generator/compare/v0.1.0...v0.1.1
28 |
29 | ## [v0.1.0]
30 | > Mar 17, 2017
31 |
32 | - Initial release.
33 |
34 | [v0.1.0]: https://github.com/rstacruz/startup-name-generator/tree/v0.1.0
35 |
36 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # startup-name-generator
2 |
3 | > Let's name your silly startup
4 |
5 | Generates cliché (but nice-sounding) names for your startup. [Try it on Codepen](http://codepen.io/rstacruz/full/wJyaJb/).
6 |
7 | ```js
8 | const name = require('@rstacruz/startup-name-generator')
9 |
10 | name('cloud')
11 | //=> ['Cloudary', 'Purecloud', 'Cloudlayer', 'Echocloud', 'Cloudspan',
12 | // 'Cloudloop', 'Activecloud', 'Cloudspark', 'Cloudable', 'Clouder', ...]
13 | ```
14 |
15 | [](https://travis-ci.org/rstacruz/startup-name-generator "See test builds")
16 |
17 | ## Install
18 |
19 | ```sh
20 | yarn add --exact @rstacruz/startup-name-generator
21 | # or
22 | npm install --save-exact @rstacruz/startup-name-generator
23 | ```
24 |
25 | Also available at: https://unpkg.com/@rstacruz/startup-name-generator@latest/dist/startup-name-generator.js (name `StartupNameGenerator`)
26 |
27 | ## Command line
28 |
29 | Also available as a command-line app.
30 |
31 | ```sh
32 | yarn global add @rstacruz/startup-name-generator
33 | # or
34 | npm install -g @rstacruz/startup-name-generator
35 |
36 | startup-name-generator health fit run
37 | startup-name-generator --help
38 | ```
39 |
40 | ## Thanks
41 |
42 | **startup-name-generator** © 2017, Rico Sta. Cruz. Released under the [MIT] License.
43 | Authored and maintained by Rico Sta. Cruz with help from contributors ([list][contributors]).
44 |
45 | > [ricostacruz.com](http://ricostacruz.com) ·
46 | > GitHub [@rstacruz](https://github.com/rstacruz) ·
47 | > Twitter [@rstacruz](https://twitter.com/rstacruz)
48 |
49 | [MIT]: http://mit-license.org/
50 | [contributors]: http://github.com/rstacruz/startup-name-generator/contributors
51 |
--------------------------------------------------------------------------------
/bin/startup-name-generator:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | const namer = require('../lib/index')
3 |
4 | const cli = require('meow')(`
5 | Usage:
6 | $ startup-name-generator [seed names]
7 |
8 | Options:
9 | -p, --paginate make things a bit easier to read
10 |
11 | Other options:
12 | -h, --help show usage information
13 | -v, --version print version info and exit
14 | `, {
15 | boolean: ['help', 'version', 'paginate'],
16 | alias: {
17 | h: 'help', v: 'version', p: 'paginate'
18 | }
19 | })
20 |
21 | // let list = namer(cli.input, { seed: 123 })
22 | let list = namer(cli.input)
23 |
24 | // Paginate
25 | if (cli.flags.paginate) {
26 | list = list.reduce((result, item, idx) => {
27 | const group = Math.floor(idx / 9)
28 | if (!result[group]) result[group] = []
29 | result[group].push(item)
30 | return result
31 | }, [])
32 | }
33 |
34 | console.log(JSON.stringify(list, null, 2))
35 |
--------------------------------------------------------------------------------
/lib/__tests__/index.test.js:
--------------------------------------------------------------------------------
1 | const name = require('../index')
2 |
3 | test('works for two words', () => {
4 | const result = name('health fit')
5 | expect(result).toContain('Fitline')
6 | expect(result).toContain('Healthmark')
7 | expect(result).toContain('Fitness')
8 | expect(result).toContain('Omnifit')
9 | })
10 |
11 | test('works for no words', () => {
12 | const result = name([])
13 | expect(result).toContain('Truecast')
14 | expect(result).toContain('Coredock')
15 | expect(result).toContain('Goup')
16 | })
17 |
18 | test('works for one word in an array', () => {
19 | const result = name(['a'])
20 | expect(result).toContain('Ary')
21 | expect(result).toContain('Meta')
22 | expect(result).toContain('Ina')
23 | })
24 |
25 | test('works for super long words', () => {
26 | const result = name(['management'])
27 | expect(result).toContain('Managementary')
28 | })
29 |
30 | test('works for super super long words', () => {
31 | const result = name(['cocacola'])
32 | expect(result).toContain('Cocacolary')
33 | })
34 |
--------------------------------------------------------------------------------
/lib/constants.js:
--------------------------------------------------------------------------------
1 | const PREFIXES = [
2 | 'active',
3 | 'arc',
4 | 'auto',
5 | 'app',
6 | 'avi', // aviato
7 | 'base', // basecamp
8 | 'co',
9 | 'con',
10 | 'core',
11 | 'clear', // clearleft
12 | 'en', // envato
13 | 'echo', // echoplex
14 | 'even',
15 | 'ever', // note
16 | 'fair', // fairlight
17 | 'go', // gopro
18 | 'high', // highrise
19 | 'hyper',
20 | 'in',
21 | 'inter',
22 | 'iso',
23 | 'jump',
24 | 'live', // livejournal
25 | 'make',
26 | 'mass', // massdrop
27 | 'meta', // metalab
28 | 'matter', // mattermost
29 | 'omni', // omniture
30 | 'on',
31 | 'one', // onenote
32 | 'open',
33 | 'over', // overwatch
34 | 'out',
35 | 're',
36 | 'real',
37 | 'peak',
38 | 'pure',
39 | 'shift',
40 | 'silver', // silverstripe
41 | 'solid',
42 | 'spark',
43 | 'start',
44 | 'true', // truecrypt
45 | 'up', // upwork
46 | 'vibe', // vibewrite
47 | ]
48 |
49 | const WORD_SUFFIXES = [
50 | 'arc', // luminarc
51 | 'atlas',
52 | 'base', // crunchbase
53 | 'bay', // ebay
54 | 'boost',
55 | 'capsule', // time capsule
56 | 'case',
57 | 'center',
58 | 'cast', // shoutcast
59 | 'click',
60 | 'dash',
61 | 'deck',
62 | 'dock', // flowdock, stardock, apidock
63 | 'dot', // slashdot
64 | 'drop', // massdrop
65 | 'engine',
66 | 'flow', // eventflow
67 | 'glow', // afterglow
68 | 'grid', // sendgrid
69 | 'gram', // instagram
70 | 'graph',
71 | 'hub', // github
72 | 'focus',
73 | 'kit',
74 | 'lab', // gitlab
75 | 'level',
76 | 'layer', // softlayer
77 | 'light', // fairlight
78 | 'line',
79 | 'logic', // authlogic
80 | 'load',
81 | 'loop',
82 | 'ment',
83 | 'method',
84 | 'mode',
85 | 'mark', // zipmark
86 | 'ness',
87 | 'now',
88 | 'pass',
89 | 'port',
90 | 'post',
91 | 'press', // wordpress
92 | 'prime', // pushprime
93 | 'push',
94 | 'rise', // highrise
95 | 'scape', // netscape
96 | 'scale',
97 | 'scan', // skyscanner
98 | 'scout',
99 | 'sense',
100 | 'set',
101 | 'shift', // redshift, infoshift
102 | 'ship', // codeship
103 | 'side',
104 | 'signal', // appsignal
105 | 'snap',
106 | 'scope', // periscope
107 | 'space', // squarespace
108 | 'span',
109 | 'spark',
110 | 'spot', // blogspot
111 | 'start',
112 | 'storm', // packetstorm
113 | 'stripe', // silverstripe
114 | 'sync',
115 | 'tap', // healthtap
116 | 'tilt',
117 | 'ture', // omniture
118 | 'type',
119 | 'view',
120 | 'verge', // converge
121 | 'vibe',
122 | 'ware',
123 | 'yard', // engineyard
124 | 'up', // squareup
125 | ]
126 |
127 | // Actual suffixes (not just words); ranks lower
128 | const ACTUAL_SUFFIXES = [
129 | 'ary', // apiary
130 | 'able', // mashable
131 | 'ance',
132 | 'ible',
133 | 'ice',
134 | 'ite', // graphite
135 | 'er',
136 | 'eon', // vaporeon :p
137 | 'ent',
138 | 'ful',
139 | 'gent',
140 | 'tion',
141 | 'sion',
142 | ]
143 |
144 | const SUFFIXES = WORD_SUFFIXES.concat(ACTUAL_SUFFIXES)
145 |
146 | module.exports = {
147 | PREFIXES,
148 | SUFFIXES,
149 | WORD_SUFFIXES,
150 | ACTUAL_SUFFIXES
151 | }
152 |
--------------------------------------------------------------------------------
/lib/index.js:
--------------------------------------------------------------------------------
1 | // TODO:
2 | // suffix input, eg, -ploy
3 |
4 | // Try these:
5 | // - place site point spot local
6 | // - trade stock
7 | // - health fit
8 |
9 | const sortBy = require('lodash/sortBy')
10 | const getRandom = require('random-seed')
11 | const permutate = require('./permutate').permutate
12 | const score = require('./score').score
13 | const normalize = require('./normalize').normalize
14 |
15 | /**
16 | * Names your shitty startup. Returns a list of possible names.
17 | * @example
18 | *
19 | * namer('cloud')
20 | * namer('health fit')
21 | * namer(['health', 'fit'])
22 | * => ['Fitrise', 'Fityard', 'Healthup', ...]
23 | */
24 |
25 | function namer (words, options = {}) {
26 | if (typeof words === 'string') words = words.split(' ')
27 |
28 | let list = permutate(words)
29 |
30 | // Random number generator
31 | let gen = getRandom(options.seed || Math.random())
32 | let rand = () => gen.floatBetween(0, 1)
33 |
34 | list = list.map((word) => ({
35 | word: normalize(word),
36 | score: score(word, { rand })
37 | }))
38 |
39 | // Sort by score
40 | list = sortBy(list, ({ word, score }) => -1 * score)
41 |
42 | // Reduce to just words
43 | list = list.map(({ word, score }) => word)
44 |
45 | return list
46 | }
47 |
48 | /*
49 | * Export
50 | */
51 |
52 | module.exports = namer
53 |
--------------------------------------------------------------------------------
/lib/normalize.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Normalizes a word.
3 | * @private
4 | * @example
5 | *
6 | * normalize('cloud layer')
7 | * => 'Cloudlayer'
8 | *
9 | * normalize('time ible')
10 | * => 'Timible'
11 | */
12 |
13 | function normalize (word) {
14 | return word
15 | .replace(/e i/, 'i') // time ible -> timible
16 | .replace(/th t/, 't') // health tion -> healthion
17 | .replace(/(.) (.)/, (_, a, b) => a === b ? a : `${a}${b}`) // live event -> livevent
18 | .replace(/^./, s => s.toUpperCase())
19 | }
20 |
21 | /*
22 | * Exports
23 | */
24 |
25 | module.exports = { normalize }
26 |
--------------------------------------------------------------------------------
/lib/permutate.js:
--------------------------------------------------------------------------------
1 | const { PREFIXES, SUFFIXES } = require('./constants')
2 |
3 | /*
4 | * Adds suffixes and prefixes to words
5 | */
6 |
7 | function permutate (words) {
8 | if (words.length === 0) {
9 | return permutateFixes(PREFIXES, SUFFIXES)
10 | } else {
11 | return permutateFixes(PREFIXES, words)
12 | .concat(permutateFixes(words, SUFFIXES))
13 | }
14 | }
15 |
16 | /*
17 | * I'm feeling lucky
18 | */
19 |
20 | function permutateFixes (prefixes, suffixes) {
21 | return prefixes.reduce((list, prefix) => {
22 | return suffixes.reduce((list, suffix) => {
23 | if (prefix === suffix) return list
24 | return list.concat([ `${prefix} ${suffix}` ])
25 | }, list)
26 | }, [])
27 | }
28 |
29 | module.exports = { permutate, permutateFixes }
30 |
--------------------------------------------------------------------------------
/lib/score.js:
--------------------------------------------------------------------------------
1 | const countSyllables = require('syllable')
2 | const normalize = require('./normalize').normalize
3 | const { ACTUAL_SUFFIXES } = require('./constants')
4 |
5 | /*
6 | * Scores a word
7 | *
8 | * @param {Function} rand Random number generator
9 | */
10 |
11 | function score (word, { rand }) {
12 | let score = 0
13 | score += scoreSyllables(word)
14 | score += scoreSuffix(word)
15 | score += scoreLength(word)
16 | score += rand() * 0.4
17 | return score
18 | }
19 |
20 | /**
21 | * Scores a word based on syllables
22 | * @private
23 | */
24 |
25 | function scoreSyllables (word) {
26 | const syllables = countSyllables(word)
27 |
28 | if (syllables === 2) return 6.1
29 | else if (syllables === 3) return 6
30 | else if (syllables > 4) return 2
31 | else return 4
32 | }
33 |
34 | /**
35 | * Scores a word based on suffixes
36 | * @private
37 | */
38 |
39 | function scoreSuffix (word) {
40 | const isActual = ACTUAL_SUFFIXES.some(suffix =>
41 | word.substr(word.length - suffix.length) === suffix)
42 |
43 | return isActual ? -1.5 : 0
44 | }
45 |
46 | /**
47 | * Scores a word based on length
48 | * @private
49 | */
50 |
51 | function scoreLength (word) {
52 | const len = normalize(word).length
53 | if (len < 9) return 0.1
54 | else return 0
55 | }
56 |
57 | /*
58 | * Export
59 | */
60 |
61 | module.exports = { score }
62 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@rstacruz/startup-name-generator",
3 | "description": "Let's name your silly startup",
4 | "version": "0.3.0",
5 | "author": "Rico Sta. Cruz (http://ricostacruz.com)",
6 | "babel": {
7 | "presets": [
8 | "env"
9 | ]
10 | },
11 | "bin": {
12 | "startup-name-generator": "bin/startup-name-generator"
13 | },
14 | "bugs": {
15 | "url": "https://github.com/rstacruz/startup-name-generator/issues"
16 | },
17 | "dependencies": {
18 | "lodash": "4.17.4",
19 | "meow": "3.7.0",
20 | "random-seed": "0.3.0",
21 | "syllable": "2.0.0"
22 | },
23 | "devDependencies": {
24 | "babel-preset-env": "1.2.2",
25 | "babelify": "7.3.0",
26 | "browserify": "14.1.0",
27 | "jest": "19.0.2",
28 | "uglify-js": "2.8.14"
29 | },
30 | "files": [
31 | "lib",
32 | "bin",
33 | "dist"
34 | ],
35 | "homepage": "https://github.com/rstacruz/startup-name-generator#readme",
36 | "keywords": [
37 | "generator",
38 | "name",
39 | "startup"
40 | ],
41 | "license": "MIT",
42 | "main": "lib/index.js",
43 | "repository": {
44 | "type": "git",
45 | "url": "git+https://github.com/rstacruz/startup-name-generator.git"
46 | },
47 | "scripts": {
48 | "dist": "mkdir -p dist; browserify -t babelify -s StartupNameGenerator lib/index.js | uglifyjs -m -c warnings=false > dist/startup-name-generator.js",
49 | "prepublish": "npm run dist",
50 | "test": "jest"
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | JSONStream@^1.0.3:
6 | version "1.3.1"
7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a"
8 | dependencies:
9 | jsonparse "^1.2.0"
10 | through ">=2.2.7 <3"
11 |
12 | abab@^1.0.3:
13 | version "1.0.3"
14 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d"
15 |
16 | acorn-globals@^3.1.0:
17 | version "3.1.0"
18 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
19 | dependencies:
20 | acorn "^4.0.4"
21 |
22 | acorn@^4.0.3, acorn@^4.0.4:
23 | version "4.0.11"
24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0"
25 |
26 | ajv@^4.9.1:
27 | version "4.11.5"
28 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd"
29 | dependencies:
30 | co "^4.6.0"
31 | json-stable-stringify "^1.0.1"
32 |
33 | align-text@^0.1.1, align-text@^0.1.3:
34 | version "0.1.4"
35 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
36 | dependencies:
37 | kind-of "^3.0.2"
38 | longest "^1.0.1"
39 | repeat-string "^1.5.2"
40 |
41 | amdefine@>=0.0.4:
42 | version "1.0.1"
43 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
44 |
45 | ansi-escapes@^1.4.0:
46 | version "1.4.0"
47 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
48 |
49 | ansi-regex@^2.0.0:
50 | version "2.1.1"
51 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
52 |
53 | ansi-styles@^2.2.1:
54 | version "2.2.1"
55 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
56 |
57 | ansi-styles@^3.0.0:
58 | version "3.0.0"
59 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1"
60 | dependencies:
61 | color-convert "^1.0.0"
62 |
63 | anymatch@^1.3.0:
64 | version "1.3.0"
65 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
66 | dependencies:
67 | arrify "^1.0.0"
68 | micromatch "^2.1.5"
69 |
70 | append-transform@^0.4.0:
71 | version "0.4.0"
72 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
73 | dependencies:
74 | default-require-extensions "^1.0.0"
75 |
76 | argparse@^1.0.7:
77 | version "1.0.9"
78 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
79 | dependencies:
80 | sprintf-js "~1.0.2"
81 |
82 | arr-diff@^2.0.0:
83 | version "2.0.0"
84 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
85 | dependencies:
86 | arr-flatten "^1.0.1"
87 |
88 | arr-flatten@^1.0.1:
89 | version "1.0.1"
90 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
91 |
92 | array-equal@^1.0.0:
93 | version "1.0.0"
94 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
95 |
96 | array-filter@~0.0.0:
97 | version "0.0.1"
98 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
99 |
100 | array-find-index@^1.0.1:
101 | version "1.0.2"
102 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
103 |
104 | array-map@~0.0.0:
105 | version "0.0.0"
106 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
107 |
108 | array-reduce@~0.0.0:
109 | version "0.0.0"
110 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
111 |
112 | array-unique@^0.2.1:
113 | version "0.2.1"
114 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
115 |
116 | arrify@^1.0.0, arrify@^1.0.1:
117 | version "1.0.1"
118 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
119 |
120 | asn1.js@^4.0.0:
121 | version "4.9.1"
122 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
123 | dependencies:
124 | bn.js "^4.0.0"
125 | inherits "^2.0.1"
126 | minimalistic-assert "^1.0.0"
127 |
128 | asn1@~0.2.3:
129 | version "0.2.3"
130 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
131 |
132 | assert-plus@1.0.0, assert-plus@^1.0.0:
133 | version "1.0.0"
134 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
135 |
136 | assert-plus@^0.2.0:
137 | version "0.2.0"
138 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
139 |
140 | assert@^1.4.0:
141 | version "1.4.1"
142 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
143 | dependencies:
144 | util "0.10.3"
145 |
146 | astw@^2.0.0:
147 | version "2.2.0"
148 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917"
149 | dependencies:
150 | acorn "^4.0.3"
151 |
152 | async@^1.4.0, async@^1.4.2:
153 | version "1.5.2"
154 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
155 |
156 | async@^2.1.4:
157 | version "2.1.5"
158 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc"
159 | dependencies:
160 | lodash "^4.14.0"
161 |
162 | asynckit@^0.4.0:
163 | version "0.4.0"
164 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
165 |
166 | aws-sign2@~0.6.0:
167 | version "0.6.0"
168 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
169 |
170 | aws4@^1.2.1:
171 | version "1.6.0"
172 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
173 |
174 | babel-code-frame@^6.22.0:
175 | version "6.22.0"
176 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
177 | dependencies:
178 | chalk "^1.1.0"
179 | esutils "^2.0.2"
180 | js-tokens "^3.0.0"
181 |
182 | babel-core@^6.0.0, babel-core@^6.0.14, babel-core@^6.24.0:
183 | version "6.24.0"
184 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02"
185 | dependencies:
186 | babel-code-frame "^6.22.0"
187 | babel-generator "^6.24.0"
188 | babel-helpers "^6.23.0"
189 | babel-messages "^6.23.0"
190 | babel-register "^6.24.0"
191 | babel-runtime "^6.22.0"
192 | babel-template "^6.23.0"
193 | babel-traverse "^6.23.1"
194 | babel-types "^6.23.0"
195 | babylon "^6.11.0"
196 | convert-source-map "^1.1.0"
197 | debug "^2.1.1"
198 | json5 "^0.5.0"
199 | lodash "^4.2.0"
200 | minimatch "^3.0.2"
201 | path-is-absolute "^1.0.0"
202 | private "^0.1.6"
203 | slash "^1.0.0"
204 | source-map "^0.5.0"
205 |
206 | babel-generator@^6.18.0, babel-generator@^6.24.0:
207 | version "6.24.0"
208 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56"
209 | dependencies:
210 | babel-messages "^6.23.0"
211 | babel-runtime "^6.22.0"
212 | babel-types "^6.23.0"
213 | detect-indent "^4.0.0"
214 | jsesc "^1.3.0"
215 | lodash "^4.2.0"
216 | source-map "^0.5.0"
217 | trim-right "^1.0.1"
218 |
219 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0:
220 | version "6.22.0"
221 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd"
222 | dependencies:
223 | babel-helper-explode-assignable-expression "^6.22.0"
224 | babel-runtime "^6.22.0"
225 | babel-types "^6.22.0"
226 |
227 | babel-helper-call-delegate@^6.22.0:
228 | version "6.22.0"
229 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef"
230 | dependencies:
231 | babel-helper-hoist-variables "^6.22.0"
232 | babel-runtime "^6.22.0"
233 | babel-traverse "^6.22.0"
234 | babel-types "^6.22.0"
235 |
236 | babel-helper-define-map@^6.23.0:
237 | version "6.23.0"
238 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7"
239 | dependencies:
240 | babel-helper-function-name "^6.23.0"
241 | babel-runtime "^6.22.0"
242 | babel-types "^6.23.0"
243 | lodash "^4.2.0"
244 |
245 | babel-helper-explode-assignable-expression@^6.22.0:
246 | version "6.22.0"
247 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478"
248 | dependencies:
249 | babel-runtime "^6.22.0"
250 | babel-traverse "^6.22.0"
251 | babel-types "^6.22.0"
252 |
253 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0:
254 | version "6.23.0"
255 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6"
256 | dependencies:
257 | babel-helper-get-function-arity "^6.22.0"
258 | babel-runtime "^6.22.0"
259 | babel-template "^6.23.0"
260 | babel-traverse "^6.23.0"
261 | babel-types "^6.23.0"
262 |
263 | babel-helper-get-function-arity@^6.22.0:
264 | version "6.22.0"
265 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce"
266 | dependencies:
267 | babel-runtime "^6.22.0"
268 | babel-types "^6.22.0"
269 |
270 | babel-helper-hoist-variables@^6.22.0:
271 | version "6.22.0"
272 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72"
273 | dependencies:
274 | babel-runtime "^6.22.0"
275 | babel-types "^6.22.0"
276 |
277 | babel-helper-optimise-call-expression@^6.23.0:
278 | version "6.23.0"
279 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5"
280 | dependencies:
281 | babel-runtime "^6.22.0"
282 | babel-types "^6.23.0"
283 |
284 | babel-helper-regex@^6.22.0:
285 | version "6.22.0"
286 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d"
287 | dependencies:
288 | babel-runtime "^6.22.0"
289 | babel-types "^6.22.0"
290 | lodash "^4.2.0"
291 |
292 | babel-helper-remap-async-to-generator@^6.22.0:
293 | version "6.22.0"
294 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383"
295 | dependencies:
296 | babel-helper-function-name "^6.22.0"
297 | babel-runtime "^6.22.0"
298 | babel-template "^6.22.0"
299 | babel-traverse "^6.22.0"
300 | babel-types "^6.22.0"
301 |
302 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0:
303 | version "6.23.0"
304 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd"
305 | dependencies:
306 | babel-helper-optimise-call-expression "^6.23.0"
307 | babel-messages "^6.23.0"
308 | babel-runtime "^6.22.0"
309 | babel-template "^6.23.0"
310 | babel-traverse "^6.23.0"
311 | babel-types "^6.23.0"
312 |
313 | babel-helpers@^6.23.0:
314 | version "6.23.0"
315 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992"
316 | dependencies:
317 | babel-runtime "^6.22.0"
318 | babel-template "^6.23.0"
319 |
320 | babel-jest@^19.0.0:
321 | version "19.0.0"
322 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f"
323 | dependencies:
324 | babel-core "^6.0.0"
325 | babel-plugin-istanbul "^4.0.0"
326 | babel-preset-jest "^19.0.0"
327 |
328 | babel-messages@^6.23.0:
329 | version "6.23.0"
330 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
331 | dependencies:
332 | babel-runtime "^6.22.0"
333 |
334 | babel-plugin-check-es2015-constants@^6.22.0:
335 | version "6.22.0"
336 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
337 | dependencies:
338 | babel-runtime "^6.22.0"
339 |
340 | babel-plugin-istanbul@^4.0.0:
341 | version "4.0.0"
342 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.0.0.tgz#36bde8fbef4837e5ff0366531a2beabd7b1ffa10"
343 | dependencies:
344 | find-up "^2.1.0"
345 | istanbul-lib-instrument "^1.4.2"
346 | test-exclude "^4.0.0"
347 |
348 | babel-plugin-jest-hoist@^19.0.0:
349 | version "19.0.0"
350 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea"
351 |
352 | babel-plugin-syntax-async-functions@^6.8.0:
353 | version "6.13.0"
354 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
355 |
356 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
357 | version "6.13.0"
358 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
359 |
360 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
361 | version "6.22.0"
362 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
363 |
364 | babel-plugin-transform-async-to-generator@^6.22.0:
365 | version "6.22.0"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e"
367 | dependencies:
368 | babel-helper-remap-async-to-generator "^6.22.0"
369 | babel-plugin-syntax-async-functions "^6.8.0"
370 | babel-runtime "^6.22.0"
371 |
372 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
373 | version "6.22.0"
374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
375 | dependencies:
376 | babel-runtime "^6.22.0"
377 |
378 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
379 | version "6.22.0"
380 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
381 | dependencies:
382 | babel-runtime "^6.22.0"
383 |
384 | babel-plugin-transform-es2015-block-scoping@^6.23.0:
385 | version "6.23.0"
386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51"
387 | dependencies:
388 | babel-runtime "^6.22.0"
389 | babel-template "^6.23.0"
390 | babel-traverse "^6.23.0"
391 | babel-types "^6.23.0"
392 | lodash "^4.2.0"
393 |
394 | babel-plugin-transform-es2015-classes@^6.23.0:
395 | version "6.23.0"
396 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1"
397 | dependencies:
398 | babel-helper-define-map "^6.23.0"
399 | babel-helper-function-name "^6.23.0"
400 | babel-helper-optimise-call-expression "^6.23.0"
401 | babel-helper-replace-supers "^6.23.0"
402 | babel-messages "^6.23.0"
403 | babel-runtime "^6.22.0"
404 | babel-template "^6.23.0"
405 | babel-traverse "^6.23.0"
406 | babel-types "^6.23.0"
407 |
408 | babel-plugin-transform-es2015-computed-properties@^6.22.0:
409 | version "6.22.0"
410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7"
411 | dependencies:
412 | babel-runtime "^6.22.0"
413 | babel-template "^6.22.0"
414 |
415 | babel-plugin-transform-es2015-destructuring@^6.23.0:
416 | version "6.23.0"
417 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
418 | dependencies:
419 | babel-runtime "^6.22.0"
420 |
421 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
422 | version "6.22.0"
423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b"
424 | dependencies:
425 | babel-runtime "^6.22.0"
426 | babel-types "^6.22.0"
427 |
428 | babel-plugin-transform-es2015-for-of@^6.23.0:
429 | version "6.23.0"
430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
431 | dependencies:
432 | babel-runtime "^6.22.0"
433 |
434 | babel-plugin-transform-es2015-function-name@^6.22.0:
435 | version "6.22.0"
436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104"
437 | dependencies:
438 | babel-helper-function-name "^6.22.0"
439 | babel-runtime "^6.22.0"
440 | babel-types "^6.22.0"
441 |
442 | babel-plugin-transform-es2015-literals@^6.22.0:
443 | version "6.22.0"
444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
445 | dependencies:
446 | babel-runtime "^6.22.0"
447 |
448 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.0:
449 | version "6.24.0"
450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e"
451 | dependencies:
452 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0"
453 | babel-runtime "^6.22.0"
454 | babel-template "^6.22.0"
455 |
456 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.0:
457 | version "6.24.0"
458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f"
459 | dependencies:
460 | babel-plugin-transform-strict-mode "^6.22.0"
461 | babel-runtime "^6.22.0"
462 | babel-template "^6.23.0"
463 | babel-types "^6.23.0"
464 |
465 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
466 | version "6.23.0"
467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0"
468 | dependencies:
469 | babel-helper-hoist-variables "^6.22.0"
470 | babel-runtime "^6.22.0"
471 | babel-template "^6.23.0"
472 |
473 | babel-plugin-transform-es2015-modules-umd@^6.23.0:
474 | version "6.24.0"
475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450"
476 | dependencies:
477 | babel-plugin-transform-es2015-modules-amd "^6.24.0"
478 | babel-runtime "^6.22.0"
479 | babel-template "^6.23.0"
480 |
481 | babel-plugin-transform-es2015-object-super@^6.22.0:
482 | version "6.22.0"
483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc"
484 | dependencies:
485 | babel-helper-replace-supers "^6.22.0"
486 | babel-runtime "^6.22.0"
487 |
488 | babel-plugin-transform-es2015-parameters@^6.23.0:
489 | version "6.23.0"
490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b"
491 | dependencies:
492 | babel-helper-call-delegate "^6.22.0"
493 | babel-helper-get-function-arity "^6.22.0"
494 | babel-runtime "^6.22.0"
495 | babel-template "^6.23.0"
496 | babel-traverse "^6.23.0"
497 | babel-types "^6.23.0"
498 |
499 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
500 | version "6.22.0"
501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723"
502 | dependencies:
503 | babel-runtime "^6.22.0"
504 | babel-types "^6.22.0"
505 |
506 | babel-plugin-transform-es2015-spread@^6.22.0:
507 | version "6.22.0"
508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
509 | dependencies:
510 | babel-runtime "^6.22.0"
511 |
512 | babel-plugin-transform-es2015-sticky-regex@^6.22.0:
513 | version "6.22.0"
514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593"
515 | dependencies:
516 | babel-helper-regex "^6.22.0"
517 | babel-runtime "^6.22.0"
518 | babel-types "^6.22.0"
519 |
520 | babel-plugin-transform-es2015-template-literals@^6.22.0:
521 | version "6.22.0"
522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
523 | dependencies:
524 | babel-runtime "^6.22.0"
525 |
526 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
527 | version "6.23.0"
528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
529 | dependencies:
530 | babel-runtime "^6.22.0"
531 |
532 | babel-plugin-transform-es2015-unicode-regex@^6.22.0:
533 | version "6.22.0"
534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20"
535 | dependencies:
536 | babel-helper-regex "^6.22.0"
537 | babel-runtime "^6.22.0"
538 | regexpu-core "^2.0.0"
539 |
540 | babel-plugin-transform-exponentiation-operator@^6.22.0:
541 | version "6.22.0"
542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d"
543 | dependencies:
544 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0"
545 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
546 | babel-runtime "^6.22.0"
547 |
548 | babel-plugin-transform-regenerator@^6.22.0:
549 | version "6.22.0"
550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
551 | dependencies:
552 | regenerator-transform "0.9.8"
553 |
554 | babel-plugin-transform-strict-mode@^6.22.0:
555 | version "6.22.0"
556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c"
557 | dependencies:
558 | babel-runtime "^6.22.0"
559 | babel-types "^6.22.0"
560 |
561 | babel-preset-env@1.2.2:
562 | version "1.2.2"
563 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.2.2.tgz#1dbc4d7f8a575691d301f45fa9b2f9698b1e3b92"
564 | dependencies:
565 | babel-plugin-check-es2015-constants "^6.22.0"
566 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
567 | babel-plugin-transform-async-to-generator "^6.22.0"
568 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
569 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
570 | babel-plugin-transform-es2015-block-scoping "^6.23.0"
571 | babel-plugin-transform-es2015-classes "^6.23.0"
572 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
573 | babel-plugin-transform-es2015-destructuring "^6.23.0"
574 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
575 | babel-plugin-transform-es2015-for-of "^6.23.0"
576 | babel-plugin-transform-es2015-function-name "^6.22.0"
577 | babel-plugin-transform-es2015-literals "^6.22.0"
578 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
579 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
580 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
581 | babel-plugin-transform-es2015-modules-umd "^6.23.0"
582 | babel-plugin-transform-es2015-object-super "^6.22.0"
583 | babel-plugin-transform-es2015-parameters "^6.23.0"
584 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
585 | babel-plugin-transform-es2015-spread "^6.22.0"
586 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
587 | babel-plugin-transform-es2015-template-literals "^6.22.0"
588 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
589 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
590 | babel-plugin-transform-exponentiation-operator "^6.22.0"
591 | babel-plugin-transform-regenerator "^6.22.0"
592 | browserslist "^1.4.0"
593 | electron-to-chromium "^1.2.6"
594 | invariant "^2.2.2"
595 |
596 | babel-preset-jest@^19.0.0:
597 | version "19.0.0"
598 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396"
599 | dependencies:
600 | babel-plugin-jest-hoist "^19.0.0"
601 |
602 | babel-register@^6.24.0:
603 | version "6.24.0"
604 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd"
605 | dependencies:
606 | babel-core "^6.24.0"
607 | babel-runtime "^6.22.0"
608 | core-js "^2.4.0"
609 | home-or-tmp "^2.0.0"
610 | lodash "^4.2.0"
611 | mkdirp "^0.5.1"
612 | source-map-support "^0.4.2"
613 |
614 | babel-runtime@^6.18.0, babel-runtime@^6.22.0:
615 | version "6.23.0"
616 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
617 | dependencies:
618 | core-js "^2.4.0"
619 | regenerator-runtime "^0.10.0"
620 |
621 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0:
622 | version "6.23.0"
623 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638"
624 | dependencies:
625 | babel-runtime "^6.22.0"
626 | babel-traverse "^6.23.0"
627 | babel-types "^6.23.0"
628 | babylon "^6.11.0"
629 | lodash "^4.2.0"
630 |
631 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
632 | version "6.23.1"
633 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
634 | dependencies:
635 | babel-code-frame "^6.22.0"
636 | babel-messages "^6.23.0"
637 | babel-runtime "^6.22.0"
638 | babel-types "^6.23.0"
639 | babylon "^6.15.0"
640 | debug "^2.2.0"
641 | globals "^9.0.0"
642 | invariant "^2.2.0"
643 | lodash "^4.2.0"
644 |
645 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
646 | version "6.23.0"
647 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
648 | dependencies:
649 | babel-runtime "^6.22.0"
650 | esutils "^2.0.2"
651 | lodash "^4.2.0"
652 | to-fast-properties "^1.0.1"
653 |
654 | babelify@7.3.0:
655 | version "7.3.0"
656 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5"
657 | dependencies:
658 | babel-core "^6.0.14"
659 | object-assign "^4.0.0"
660 |
661 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
662 | version "6.16.1"
663 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
664 |
665 | balanced-match@^0.4.1:
666 | version "0.4.2"
667 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
668 |
669 | base64-js@^1.0.2:
670 | version "1.2.0"
671 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
672 |
673 | bcrypt-pbkdf@^1.0.0:
674 | version "1.0.1"
675 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
676 | dependencies:
677 | tweetnacl "^0.14.3"
678 |
679 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
680 | version "4.11.6"
681 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
682 |
683 | boom@2.x.x:
684 | version "2.10.1"
685 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
686 | dependencies:
687 | hoek "2.x.x"
688 |
689 | brace-expansion@^1.0.0:
690 | version "1.1.6"
691 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
692 | dependencies:
693 | balanced-match "^0.4.1"
694 | concat-map "0.0.1"
695 |
696 | braces@^1.8.2:
697 | version "1.8.5"
698 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
699 | dependencies:
700 | expand-range "^1.8.1"
701 | preserve "^0.2.0"
702 | repeat-element "^1.1.2"
703 |
704 | brorand@^1.0.1:
705 | version "1.1.0"
706 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
707 |
708 | browser-pack@^6.0.1:
709 | version "6.0.2"
710 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531"
711 | dependencies:
712 | JSONStream "^1.0.3"
713 | combine-source-map "~0.7.1"
714 | defined "^1.0.0"
715 | through2 "^2.0.0"
716 | umd "^3.0.0"
717 |
718 | browser-resolve@^1.11.0, browser-resolve@^1.11.2, browser-resolve@^1.7.0:
719 | version "1.11.2"
720 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
721 | dependencies:
722 | resolve "1.1.7"
723 |
724 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
725 | version "1.0.6"
726 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
727 | dependencies:
728 | buffer-xor "^1.0.2"
729 | cipher-base "^1.0.0"
730 | create-hash "^1.1.0"
731 | evp_bytestokey "^1.0.0"
732 | inherits "^2.0.1"
733 |
734 | browserify-cipher@^1.0.0:
735 | version "1.0.0"
736 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
737 | dependencies:
738 | browserify-aes "^1.0.4"
739 | browserify-des "^1.0.0"
740 | evp_bytestokey "^1.0.0"
741 |
742 | browserify-des@^1.0.0:
743 | version "1.0.0"
744 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
745 | dependencies:
746 | cipher-base "^1.0.1"
747 | des.js "^1.0.0"
748 | inherits "^2.0.1"
749 |
750 | browserify-rsa@^4.0.0:
751 | version "4.0.1"
752 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
753 | dependencies:
754 | bn.js "^4.1.0"
755 | randombytes "^2.0.1"
756 |
757 | browserify-sign@^4.0.0:
758 | version "4.0.0"
759 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f"
760 | dependencies:
761 | bn.js "^4.1.1"
762 | browserify-rsa "^4.0.0"
763 | create-hash "^1.1.0"
764 | create-hmac "^1.1.2"
765 | elliptic "^6.0.0"
766 | inherits "^2.0.1"
767 | parse-asn1 "^5.0.0"
768 |
769 | browserify-zlib@~0.1.2:
770 | version "0.1.4"
771 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
772 | dependencies:
773 | pako "~0.2.0"
774 |
775 | browserify@14.1.0:
776 | version "14.1.0"
777 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.1.0.tgz#0508cc1e7bf4c152312c2fa523e676c0b0b92311"
778 | dependencies:
779 | JSONStream "^1.0.3"
780 | assert "^1.4.0"
781 | browser-pack "^6.0.1"
782 | browser-resolve "^1.11.0"
783 | browserify-zlib "~0.1.2"
784 | buffer "^5.0.2"
785 | cached-path-relative "^1.0.0"
786 | concat-stream "~1.5.1"
787 | console-browserify "^1.1.0"
788 | constants-browserify "~1.0.0"
789 | crypto-browserify "^3.0.0"
790 | defined "^1.0.0"
791 | deps-sort "^2.0.0"
792 | domain-browser "~1.1.0"
793 | duplexer2 "~0.1.2"
794 | events "~1.1.0"
795 | glob "^7.1.0"
796 | has "^1.0.0"
797 | htmlescape "^1.1.0"
798 | https-browserify "~0.0.0"
799 | inherits "~2.0.1"
800 | insert-module-globals "^7.0.0"
801 | labeled-stream-splicer "^2.0.0"
802 | module-deps "^4.0.8"
803 | os-browserify "~0.1.1"
804 | parents "^1.0.1"
805 | path-browserify "~0.0.0"
806 | process "~0.11.0"
807 | punycode "^1.3.2"
808 | querystring-es3 "~0.2.0"
809 | read-only-stream "^2.0.0"
810 | readable-stream "^2.0.2"
811 | resolve "^1.1.4"
812 | shasum "^1.0.0"
813 | shell-quote "^1.6.1"
814 | stream-browserify "^2.0.0"
815 | stream-http "^2.0.0"
816 | string_decoder "~0.10.0"
817 | subarg "^1.0.0"
818 | syntax-error "^1.1.1"
819 | through2 "^2.0.0"
820 | timers-browserify "^1.0.1"
821 | tty-browserify "~0.0.0"
822 | url "~0.11.0"
823 | util "~0.10.1"
824 | vm-browserify "~0.0.1"
825 | xtend "^4.0.0"
826 |
827 | browserslist@^1.4.0:
828 | version "1.7.6"
829 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.6.tgz#af98589ce6e7ab09618d29451faacb81220bd3ba"
830 | dependencies:
831 | caniuse-db "^1.0.30000631"
832 | electron-to-chromium "^1.2.5"
833 |
834 | bser@1.0.2:
835 | version "1.0.2"
836 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169"
837 | dependencies:
838 | node-int64 "^0.4.0"
839 |
840 | bser@^2.0.0:
841 | version "2.0.0"
842 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
843 | dependencies:
844 | node-int64 "^0.4.0"
845 |
846 | buffer-shims@^1.0.0:
847 | version "1.0.0"
848 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
849 |
850 | buffer-xor@^1.0.2:
851 | version "1.0.3"
852 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
853 |
854 | buffer@^5.0.2:
855 | version "5.0.5"
856 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.5.tgz#35c9393244a90aff83581063d16f0882cecc9418"
857 | dependencies:
858 | base64-js "^1.0.2"
859 | ieee754 "^1.1.4"
860 |
861 | builtin-modules@^1.0.0:
862 | version "1.1.1"
863 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
864 |
865 | builtin-status-codes@^3.0.0:
866 | version "3.0.0"
867 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
868 |
869 | cached-path-relative@^1.0.0:
870 | version "1.0.1"
871 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7"
872 |
873 | callsites@^2.0.0:
874 | version "2.0.0"
875 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
876 |
877 | camelcase-keys@^2.0.0:
878 | version "2.1.0"
879 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
880 | dependencies:
881 | camelcase "^2.0.0"
882 | map-obj "^1.0.0"
883 |
884 | camelcase@^1.0.2:
885 | version "1.2.1"
886 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
887 |
888 | camelcase@^2.0.0:
889 | version "2.1.1"
890 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
891 |
892 | camelcase@^3.0.0:
893 | version "3.0.0"
894 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
895 |
896 | caniuse-db@^1.0.30000631:
897 | version "1.0.30000639"
898 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000639.tgz#5982f70a54352adaf8901a772d2c68ca24f501aa"
899 |
900 | caseless@~0.12.0:
901 | version "0.12.0"
902 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
903 |
904 | center-align@^0.1.1:
905 | version "0.1.3"
906 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
907 | dependencies:
908 | align-text "^0.1.3"
909 | lazy-cache "^1.0.3"
910 |
911 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
912 | version "1.1.3"
913 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
914 | dependencies:
915 | ansi-styles "^2.2.1"
916 | escape-string-regexp "^1.0.2"
917 | has-ansi "^2.0.0"
918 | strip-ansi "^3.0.0"
919 | supports-color "^2.0.0"
920 |
921 | ci-info@^1.0.0:
922 | version "1.0.0"
923 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534"
924 |
925 | cipher-base@^1.0.0, cipher-base@^1.0.1:
926 | version "1.0.3"
927 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
928 | dependencies:
929 | inherits "^2.0.1"
930 |
931 | cliui@^2.1.0:
932 | version "2.1.0"
933 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
934 | dependencies:
935 | center-align "^0.1.1"
936 | right-align "^0.1.1"
937 | wordwrap "0.0.2"
938 |
939 | cliui@^3.2.0:
940 | version "3.2.0"
941 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
942 | dependencies:
943 | string-width "^1.0.1"
944 | strip-ansi "^3.0.1"
945 | wrap-ansi "^2.0.0"
946 |
947 | co@^4.6.0:
948 | version "4.6.0"
949 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
950 |
951 | code-point-at@^1.0.0:
952 | version "1.1.0"
953 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
954 |
955 | color-convert@^1.0.0:
956 | version "1.9.0"
957 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
958 | dependencies:
959 | color-name "^1.1.1"
960 |
961 | color-name@^1.1.1:
962 | version "1.1.2"
963 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d"
964 |
965 | combine-source-map@~0.7.1:
966 | version "0.7.2"
967 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e"
968 | dependencies:
969 | convert-source-map "~1.1.0"
970 | inline-source-map "~0.6.0"
971 | lodash.memoize "~3.0.3"
972 | source-map "~0.5.3"
973 |
974 | combined-stream@^1.0.5, combined-stream@~1.0.5:
975 | version "1.0.5"
976 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
977 | dependencies:
978 | delayed-stream "~1.0.0"
979 |
980 | concat-map@0.0.1:
981 | version "0.0.1"
982 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
983 |
984 | concat-stream@~1.5.0, concat-stream@~1.5.1:
985 | version "1.5.2"
986 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266"
987 | dependencies:
988 | inherits "~2.0.1"
989 | readable-stream "~2.0.0"
990 | typedarray "~0.0.5"
991 |
992 | console-browserify@^1.1.0:
993 | version "1.1.0"
994 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
995 | dependencies:
996 | date-now "^0.1.4"
997 |
998 | constants-browserify@~1.0.0:
999 | version "1.0.0"
1000 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1001 |
1002 | content-type-parser@^1.0.1:
1003 | version "1.0.1"
1004 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94"
1005 |
1006 | convert-source-map@^1.1.0:
1007 | version "1.4.0"
1008 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3"
1009 |
1010 | convert-source-map@~1.1.0:
1011 | version "1.1.3"
1012 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860"
1013 |
1014 | core-js@^2.4.0:
1015 | version "2.4.1"
1016 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1017 |
1018 | core-util-is@~1.0.0:
1019 | version "1.0.2"
1020 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1021 |
1022 | create-ecdh@^4.0.0:
1023 | version "4.0.0"
1024 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
1025 | dependencies:
1026 | bn.js "^4.1.0"
1027 | elliptic "^6.0.0"
1028 |
1029 | create-hash@^1.1.0, create-hash@^1.1.1:
1030 | version "1.1.2"
1031 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad"
1032 | dependencies:
1033 | cipher-base "^1.0.1"
1034 | inherits "^2.0.1"
1035 | ripemd160 "^1.0.0"
1036 | sha.js "^2.3.6"
1037 |
1038 | create-hmac@^1.1.0, create-hmac@^1.1.2:
1039 | version "1.1.4"
1040 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170"
1041 | dependencies:
1042 | create-hash "^1.1.0"
1043 | inherits "^2.0.1"
1044 |
1045 | cryptiles@2.x.x:
1046 | version "2.0.5"
1047 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1048 | dependencies:
1049 | boom "2.x.x"
1050 |
1051 | crypto-browserify@^3.0.0:
1052 | version "3.11.0"
1053 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
1054 | dependencies:
1055 | browserify-cipher "^1.0.0"
1056 | browserify-sign "^4.0.0"
1057 | create-ecdh "^4.0.0"
1058 | create-hash "^1.1.0"
1059 | create-hmac "^1.1.0"
1060 | diffie-hellman "^5.0.0"
1061 | inherits "^2.0.1"
1062 | pbkdf2 "^3.0.3"
1063 | public-encrypt "^4.0.0"
1064 | randombytes "^2.0.0"
1065 |
1066 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
1067 | version "0.3.2"
1068 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
1069 |
1070 | "cssstyle@>= 0.2.37 < 0.3.0":
1071 | version "0.2.37"
1072 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
1073 | dependencies:
1074 | cssom "0.3.x"
1075 |
1076 | currently-unhandled@^0.4.1:
1077 | version "0.4.1"
1078 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1079 | dependencies:
1080 | array-find-index "^1.0.1"
1081 |
1082 | dashdash@^1.12.0:
1083 | version "1.14.1"
1084 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1085 | dependencies:
1086 | assert-plus "^1.0.0"
1087 |
1088 | date-now@^0.1.4:
1089 | version "0.1.4"
1090 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1091 |
1092 | debug@^2.1.1, debug@^2.2.0:
1093 | version "2.6.3"
1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d"
1095 | dependencies:
1096 | ms "0.7.2"
1097 |
1098 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1099 | version "1.2.0"
1100 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1101 |
1102 | deep-is@~0.1.3:
1103 | version "0.1.3"
1104 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1105 |
1106 | default-require-extensions@^1.0.0:
1107 | version "1.0.0"
1108 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
1109 | dependencies:
1110 | strip-bom "^2.0.0"
1111 |
1112 | defined@^1.0.0:
1113 | version "1.0.0"
1114 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
1115 |
1116 | delayed-stream@~1.0.0:
1117 | version "1.0.0"
1118 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1119 |
1120 | deps-sort@^2.0.0:
1121 | version "2.0.0"
1122 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5"
1123 | dependencies:
1124 | JSONStream "^1.0.3"
1125 | shasum "^1.0.0"
1126 | subarg "^1.0.0"
1127 | through2 "^2.0.0"
1128 |
1129 | des.js@^1.0.0:
1130 | version "1.0.0"
1131 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1132 | dependencies:
1133 | inherits "^2.0.1"
1134 | minimalistic-assert "^1.0.0"
1135 |
1136 | detect-indent@^4.0.0:
1137 | version "4.0.0"
1138 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1139 | dependencies:
1140 | repeating "^2.0.0"
1141 |
1142 | detective@^4.0.0:
1143 | version "4.5.0"
1144 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1"
1145 | dependencies:
1146 | acorn "^4.0.3"
1147 | defined "^1.0.0"
1148 |
1149 | diff@^3.0.0:
1150 | version "3.2.0"
1151 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9"
1152 |
1153 | diffie-hellman@^5.0.0:
1154 | version "5.0.2"
1155 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1156 | dependencies:
1157 | bn.js "^4.1.0"
1158 | miller-rabin "^4.0.0"
1159 | randombytes "^2.0.0"
1160 |
1161 | domain-browser@~1.1.0:
1162 | version "1.1.7"
1163 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1164 |
1165 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2:
1166 | version "0.1.4"
1167 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
1168 | dependencies:
1169 | readable-stream "^2.0.2"
1170 |
1171 | ecc-jsbn@~0.1.1:
1172 | version "0.1.1"
1173 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1174 | dependencies:
1175 | jsbn "~0.1.0"
1176 |
1177 | electron-to-chromium@^1.2.5, electron-to-chromium@^1.2.6:
1178 | version "1.2.7"
1179 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.7.tgz#4f748061407e478c76256d04496972b71f647407"
1180 |
1181 | elliptic@^6.0.0:
1182 | version "6.4.0"
1183 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1184 | dependencies:
1185 | bn.js "^4.4.0"
1186 | brorand "^1.0.1"
1187 | hash.js "^1.0.0"
1188 | hmac-drbg "^1.0.0"
1189 | inherits "^2.0.1"
1190 | minimalistic-assert "^1.0.0"
1191 | minimalistic-crypto-utils "^1.0.0"
1192 |
1193 | "errno@>=0.1.1 <0.2.0-0":
1194 | version "0.1.4"
1195 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1196 | dependencies:
1197 | prr "~0.0.0"
1198 |
1199 | error-ex@^1.2.0:
1200 | version "1.3.1"
1201 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1202 | dependencies:
1203 | is-arrayish "^0.2.1"
1204 |
1205 | escape-string-regexp@^1.0.2:
1206 | version "1.0.5"
1207 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1208 |
1209 | escodegen@^1.6.1:
1210 | version "1.8.1"
1211 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018"
1212 | dependencies:
1213 | esprima "^2.7.1"
1214 | estraverse "^1.9.1"
1215 | esutils "^2.0.2"
1216 | optionator "^0.8.1"
1217 | optionalDependencies:
1218 | source-map "~0.2.0"
1219 |
1220 | esprima@^2.7.1:
1221 | version "2.7.3"
1222 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1223 |
1224 | esprima@^3.1.1:
1225 | version "3.1.3"
1226 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1227 |
1228 | estraverse@^1.9.1:
1229 | version "1.9.3"
1230 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
1231 |
1232 | esutils@^2.0.2:
1233 | version "2.0.2"
1234 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1235 |
1236 | events@~1.1.0:
1237 | version "1.1.1"
1238 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1239 |
1240 | evp_bytestokey@^1.0.0:
1241 | version "1.0.0"
1242 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
1243 | dependencies:
1244 | create-hash "^1.1.1"
1245 |
1246 | exec-sh@^0.2.0:
1247 | version "0.2.0"
1248 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10"
1249 | dependencies:
1250 | merge "^1.1.3"
1251 |
1252 | expand-brackets@^0.1.4:
1253 | version "0.1.5"
1254 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1255 | dependencies:
1256 | is-posix-bracket "^0.1.0"
1257 |
1258 | expand-range@^1.8.1:
1259 | version "1.8.2"
1260 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1261 | dependencies:
1262 | fill-range "^2.1.0"
1263 |
1264 | extend@~3.0.0:
1265 | version "3.0.0"
1266 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1267 |
1268 | extglob@^0.3.1:
1269 | version "0.3.2"
1270 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1271 | dependencies:
1272 | is-extglob "^1.0.0"
1273 |
1274 | extsprintf@1.0.2:
1275 | version "1.0.2"
1276 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1277 |
1278 | fast-levenshtein@~2.0.4:
1279 | version "2.0.6"
1280 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1281 |
1282 | fb-watchman@^1.8.0:
1283 | version "1.9.2"
1284 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383"
1285 | dependencies:
1286 | bser "1.0.2"
1287 |
1288 | fb-watchman@^2.0.0:
1289 | version "2.0.0"
1290 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1291 | dependencies:
1292 | bser "^2.0.0"
1293 |
1294 | filename-regex@^2.0.0:
1295 | version "2.0.0"
1296 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1297 |
1298 | fileset@^2.0.2:
1299 | version "2.0.3"
1300 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1301 | dependencies:
1302 | glob "^7.0.3"
1303 | minimatch "^3.0.3"
1304 |
1305 | fill-range@^2.1.0:
1306 | version "2.2.3"
1307 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1308 | dependencies:
1309 | is-number "^2.1.0"
1310 | isobject "^2.0.0"
1311 | randomatic "^1.1.3"
1312 | repeat-element "^1.1.2"
1313 | repeat-string "^1.5.2"
1314 |
1315 | find-up@^1.0.0:
1316 | version "1.1.2"
1317 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1318 | dependencies:
1319 | path-exists "^2.0.0"
1320 | pinkie-promise "^2.0.0"
1321 |
1322 | find-up@^2.1.0:
1323 | version "2.1.0"
1324 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1325 | dependencies:
1326 | locate-path "^2.0.0"
1327 |
1328 | for-in@^1.0.1:
1329 | version "1.0.2"
1330 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1331 |
1332 | for-own@^0.1.4:
1333 | version "0.1.5"
1334 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1335 | dependencies:
1336 | for-in "^1.0.1"
1337 |
1338 | forever-agent@~0.6.1:
1339 | version "0.6.1"
1340 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1341 |
1342 | form-data@~2.1.1:
1343 | version "2.1.2"
1344 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
1345 | dependencies:
1346 | asynckit "^0.4.0"
1347 | combined-stream "^1.0.5"
1348 | mime-types "^2.1.12"
1349 |
1350 | fs.realpath@^1.0.0:
1351 | version "1.0.0"
1352 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1353 |
1354 | function-bind@^1.0.2:
1355 | version "1.1.0"
1356 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1357 |
1358 | get-caller-file@^1.0.1:
1359 | version "1.0.2"
1360 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1361 |
1362 | get-stdin@^4.0.1:
1363 | version "4.0.1"
1364 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1365 |
1366 | getpass@^0.1.1:
1367 | version "0.1.6"
1368 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1369 | dependencies:
1370 | assert-plus "^1.0.0"
1371 |
1372 | glob-base@^0.3.0:
1373 | version "0.3.0"
1374 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1375 | dependencies:
1376 | glob-parent "^2.0.0"
1377 | is-glob "^2.0.0"
1378 |
1379 | glob-parent@^2.0.0:
1380 | version "2.0.0"
1381 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1382 | dependencies:
1383 | is-glob "^2.0.0"
1384 |
1385 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.0:
1386 | version "7.1.1"
1387 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1388 | dependencies:
1389 | fs.realpath "^1.0.0"
1390 | inflight "^1.0.4"
1391 | inherits "2"
1392 | minimatch "^3.0.2"
1393 | once "^1.3.0"
1394 | path-is-absolute "^1.0.0"
1395 |
1396 | globals@^9.0.0:
1397 | version "9.16.0"
1398 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80"
1399 |
1400 | graceful-fs@^4.1.2, graceful-fs@^4.1.6:
1401 | version "4.1.11"
1402 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1403 |
1404 | growly@^1.3.0:
1405 | version "1.3.0"
1406 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1407 |
1408 | handlebars@^4.0.3:
1409 | version "4.0.6"
1410 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7"
1411 | dependencies:
1412 | async "^1.4.0"
1413 | optimist "^0.6.1"
1414 | source-map "^0.4.4"
1415 | optionalDependencies:
1416 | uglify-js "^2.6"
1417 |
1418 | har-schema@^1.0.5:
1419 | version "1.0.5"
1420 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1421 |
1422 | har-validator@~4.2.1:
1423 | version "4.2.1"
1424 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1425 | dependencies:
1426 | ajv "^4.9.1"
1427 | har-schema "^1.0.5"
1428 |
1429 | has-ansi@^2.0.0:
1430 | version "2.0.0"
1431 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1432 | dependencies:
1433 | ansi-regex "^2.0.0"
1434 |
1435 | has-flag@^1.0.0:
1436 | version "1.0.0"
1437 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1438 |
1439 | has@^1.0.0, has@^1.0.1:
1440 | version "1.0.1"
1441 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1442 | dependencies:
1443 | function-bind "^1.0.2"
1444 |
1445 | hash.js@^1.0.0, hash.js@^1.0.3:
1446 | version "1.0.3"
1447 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
1448 | dependencies:
1449 | inherits "^2.0.1"
1450 |
1451 | hawk@~3.1.3:
1452 | version "3.1.3"
1453 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1454 | dependencies:
1455 | boom "2.x.x"
1456 | cryptiles "2.x.x"
1457 | hoek "2.x.x"
1458 | sntp "1.x.x"
1459 |
1460 | hmac-drbg@^1.0.0:
1461 | version "1.0.0"
1462 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5"
1463 | dependencies:
1464 | hash.js "^1.0.3"
1465 | minimalistic-assert "^1.0.0"
1466 | minimalistic-crypto-utils "^1.0.1"
1467 |
1468 | hoek@2.x.x:
1469 | version "2.16.3"
1470 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1471 |
1472 | home-or-tmp@^2.0.0:
1473 | version "2.0.0"
1474 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1475 | dependencies:
1476 | os-homedir "^1.0.0"
1477 | os-tmpdir "^1.0.1"
1478 |
1479 | hosted-git-info@^2.1.4:
1480 | version "2.2.0"
1481 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5"
1482 |
1483 | html-encoding-sniffer@^1.0.1:
1484 | version "1.0.1"
1485 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da"
1486 | dependencies:
1487 | whatwg-encoding "^1.0.1"
1488 |
1489 | htmlescape@^1.1.0:
1490 | version "1.1.1"
1491 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351"
1492 |
1493 | http-signature@~1.1.0:
1494 | version "1.1.1"
1495 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1496 | dependencies:
1497 | assert-plus "^0.2.0"
1498 | jsprim "^1.2.2"
1499 | sshpk "^1.7.0"
1500 |
1501 | https-browserify@~0.0.0:
1502 | version "0.0.1"
1503 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1504 |
1505 | iconv-lite@0.4.13:
1506 | version "0.4.13"
1507 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
1508 |
1509 | ieee754@^1.1.4:
1510 | version "1.1.8"
1511 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1512 |
1513 | indent-string@^2.1.0:
1514 | version "2.1.0"
1515 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1516 | dependencies:
1517 | repeating "^2.0.0"
1518 |
1519 | indexof@0.0.1:
1520 | version "0.0.1"
1521 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1522 |
1523 | inflight@^1.0.4:
1524 | version "1.0.6"
1525 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1526 | dependencies:
1527 | once "^1.3.0"
1528 | wrappy "1"
1529 |
1530 | inherits@2, inherits@^2.0.1, inherits@~2.0.1:
1531 | version "2.0.3"
1532 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1533 |
1534 | inherits@2.0.1:
1535 | version "2.0.1"
1536 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1537 |
1538 | inline-source-map@~0.6.0:
1539 | version "0.6.2"
1540 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5"
1541 | dependencies:
1542 | source-map "~0.5.3"
1543 |
1544 | insert-module-globals@^7.0.0:
1545 | version "7.0.1"
1546 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3"
1547 | dependencies:
1548 | JSONStream "^1.0.3"
1549 | combine-source-map "~0.7.1"
1550 | concat-stream "~1.5.1"
1551 | is-buffer "^1.1.0"
1552 | lexical-scope "^1.2.0"
1553 | process "~0.11.0"
1554 | through2 "^2.0.0"
1555 | xtend "^4.0.0"
1556 |
1557 | invariant@^2.2.0, invariant@^2.2.2:
1558 | version "2.2.2"
1559 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1560 | dependencies:
1561 | loose-envify "^1.0.0"
1562 |
1563 | invert-kv@^1.0.0:
1564 | version "1.0.0"
1565 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1566 |
1567 | is-arrayish@^0.2.1:
1568 | version "0.2.1"
1569 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1570 |
1571 | is-buffer@^1.0.2, is-buffer@^1.1.0:
1572 | version "1.1.5"
1573 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1574 |
1575 | is-builtin-module@^1.0.0:
1576 | version "1.0.0"
1577 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1578 | dependencies:
1579 | builtin-modules "^1.0.0"
1580 |
1581 | is-ci@^1.0.9:
1582 | version "1.0.10"
1583 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
1584 | dependencies:
1585 | ci-info "^1.0.0"
1586 |
1587 | is-dotfile@^1.0.0:
1588 | version "1.0.2"
1589 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
1590 |
1591 | is-equal-shallow@^0.1.3:
1592 | version "0.1.3"
1593 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1594 | dependencies:
1595 | is-primitive "^2.0.0"
1596 |
1597 | is-extendable@^0.1.1:
1598 | version "0.1.1"
1599 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1600 |
1601 | is-extglob@^1.0.0:
1602 | version "1.0.0"
1603 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1604 |
1605 | is-finite@^1.0.0:
1606 | version "1.0.2"
1607 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1608 | dependencies:
1609 | number-is-nan "^1.0.0"
1610 |
1611 | is-fullwidth-code-point@^1.0.0:
1612 | version "1.0.0"
1613 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1614 | dependencies:
1615 | number-is-nan "^1.0.0"
1616 |
1617 | is-glob@^2.0.0, is-glob@^2.0.1:
1618 | version "2.0.1"
1619 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1620 | dependencies:
1621 | is-extglob "^1.0.0"
1622 |
1623 | is-number@^2.0.2, is-number@^2.1.0:
1624 | version "2.1.0"
1625 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1626 | dependencies:
1627 | kind-of "^3.0.2"
1628 |
1629 | is-posix-bracket@^0.1.0:
1630 | version "0.1.1"
1631 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1632 |
1633 | is-primitive@^2.0.0:
1634 | version "2.0.0"
1635 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1636 |
1637 | is-typedarray@~1.0.0:
1638 | version "1.0.0"
1639 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1640 |
1641 | is-utf8@^0.2.0:
1642 | version "0.2.1"
1643 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1644 |
1645 | isarray@1.0.0, isarray@~1.0.0:
1646 | version "1.0.0"
1647 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1648 |
1649 | isarray@~0.0.1:
1650 | version "0.0.1"
1651 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1652 |
1653 | isexe@^1.1.1:
1654 | version "1.1.2"
1655 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0"
1656 |
1657 | isobject@^2.0.0:
1658 | version "2.1.0"
1659 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1660 | dependencies:
1661 | isarray "1.0.0"
1662 |
1663 | isstream@~0.1.2:
1664 | version "0.1.2"
1665 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1666 |
1667 | istanbul-api@^1.1.0-alpha.1:
1668 | version "1.1.1"
1669 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.1.tgz#d36e2f1560d1a43ce304c4ff7338182de61c8f73"
1670 | dependencies:
1671 | async "^2.1.4"
1672 | fileset "^2.0.2"
1673 | istanbul-lib-coverage "^1.0.0"
1674 | istanbul-lib-hook "^1.0.0"
1675 | istanbul-lib-instrument "^1.3.0"
1676 | istanbul-lib-report "^1.0.0-alpha.3"
1677 | istanbul-lib-source-maps "^1.1.0"
1678 | istanbul-reports "^1.0.0"
1679 | js-yaml "^3.7.0"
1680 | mkdirp "^0.5.1"
1681 | once "^1.4.0"
1682 |
1683 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0:
1684 | version "1.0.1"
1685 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212"
1686 |
1687 | istanbul-lib-hook@^1.0.0:
1688 | version "1.0.0"
1689 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5"
1690 | dependencies:
1691 | append-transform "^0.4.0"
1692 |
1693 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.3.0, istanbul-lib-instrument@^1.4.2:
1694 | version "1.4.2"
1695 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e"
1696 | dependencies:
1697 | babel-generator "^6.18.0"
1698 | babel-template "^6.16.0"
1699 | babel-traverse "^6.18.0"
1700 | babel-types "^6.18.0"
1701 | babylon "^6.13.0"
1702 | istanbul-lib-coverage "^1.0.0"
1703 | semver "^5.3.0"
1704 |
1705 | istanbul-lib-report@^1.0.0-alpha.3:
1706 | version "1.0.0-alpha.3"
1707 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af"
1708 | dependencies:
1709 | async "^1.4.2"
1710 | istanbul-lib-coverage "^1.0.0-alpha"
1711 | mkdirp "^0.5.1"
1712 | path-parse "^1.0.5"
1713 | rimraf "^2.4.3"
1714 | supports-color "^3.1.2"
1715 |
1716 | istanbul-lib-source-maps@^1.1.0:
1717 | version "1.1.0"
1718 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f"
1719 | dependencies:
1720 | istanbul-lib-coverage "^1.0.0-alpha.0"
1721 | mkdirp "^0.5.1"
1722 | rimraf "^2.4.4"
1723 | source-map "^0.5.3"
1724 |
1725 | istanbul-reports@^1.0.0:
1726 | version "1.0.1"
1727 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc"
1728 | dependencies:
1729 | handlebars "^4.0.3"
1730 |
1731 | jest-changed-files@^19.0.2:
1732 | version "19.0.2"
1733 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824"
1734 |
1735 | jest-cli@^19.0.2:
1736 | version "19.0.2"
1737 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443"
1738 | dependencies:
1739 | ansi-escapes "^1.4.0"
1740 | callsites "^2.0.0"
1741 | chalk "^1.1.1"
1742 | graceful-fs "^4.1.6"
1743 | is-ci "^1.0.9"
1744 | istanbul-api "^1.1.0-alpha.1"
1745 | istanbul-lib-coverage "^1.0.0"
1746 | istanbul-lib-instrument "^1.1.1"
1747 | jest-changed-files "^19.0.2"
1748 | jest-config "^19.0.2"
1749 | jest-environment-jsdom "^19.0.2"
1750 | jest-haste-map "^19.0.0"
1751 | jest-jasmine2 "^19.0.2"
1752 | jest-message-util "^19.0.0"
1753 | jest-regex-util "^19.0.0"
1754 | jest-resolve-dependencies "^19.0.0"
1755 | jest-runtime "^19.0.2"
1756 | jest-snapshot "^19.0.2"
1757 | jest-util "^19.0.2"
1758 | micromatch "^2.3.11"
1759 | node-notifier "^5.0.1"
1760 | slash "^1.0.0"
1761 | string-length "^1.0.1"
1762 | throat "^3.0.0"
1763 | which "^1.1.1"
1764 | worker-farm "^1.3.1"
1765 | yargs "^6.3.0"
1766 |
1767 | jest-config@^19.0.2:
1768 | version "19.0.2"
1769 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411"
1770 | dependencies:
1771 | chalk "^1.1.1"
1772 | jest-environment-jsdom "^19.0.2"
1773 | jest-environment-node "^19.0.2"
1774 | jest-jasmine2 "^19.0.2"
1775 | jest-regex-util "^19.0.0"
1776 | jest-resolve "^19.0.2"
1777 | jest-validate "^19.0.2"
1778 | pretty-format "^19.0.0"
1779 |
1780 | jest-diff@^19.0.0:
1781 | version "19.0.0"
1782 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c"
1783 | dependencies:
1784 | chalk "^1.1.3"
1785 | diff "^3.0.0"
1786 | jest-matcher-utils "^19.0.0"
1787 | pretty-format "^19.0.0"
1788 |
1789 | jest-environment-jsdom@^19.0.2:
1790 | version "19.0.2"
1791 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3"
1792 | dependencies:
1793 | jest-mock "^19.0.0"
1794 | jest-util "^19.0.2"
1795 | jsdom "^9.11.0"
1796 |
1797 | jest-environment-node@^19.0.2:
1798 | version "19.0.2"
1799 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b"
1800 | dependencies:
1801 | jest-mock "^19.0.0"
1802 | jest-util "^19.0.2"
1803 |
1804 | jest-file-exists@^19.0.0:
1805 | version "19.0.0"
1806 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8"
1807 |
1808 | jest-haste-map@^19.0.0:
1809 | version "19.0.0"
1810 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e"
1811 | dependencies:
1812 | fb-watchman "^2.0.0"
1813 | graceful-fs "^4.1.6"
1814 | micromatch "^2.3.11"
1815 | sane "~1.5.0"
1816 | worker-farm "^1.3.1"
1817 |
1818 | jest-jasmine2@^19.0.2:
1819 | version "19.0.2"
1820 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73"
1821 | dependencies:
1822 | graceful-fs "^4.1.6"
1823 | jest-matcher-utils "^19.0.0"
1824 | jest-matchers "^19.0.0"
1825 | jest-message-util "^19.0.0"
1826 | jest-snapshot "^19.0.2"
1827 |
1828 | jest-matcher-utils@^19.0.0:
1829 | version "19.0.0"
1830 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d"
1831 | dependencies:
1832 | chalk "^1.1.3"
1833 | pretty-format "^19.0.0"
1834 |
1835 | jest-matchers@^19.0.0:
1836 | version "19.0.0"
1837 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754"
1838 | dependencies:
1839 | jest-diff "^19.0.0"
1840 | jest-matcher-utils "^19.0.0"
1841 | jest-message-util "^19.0.0"
1842 | jest-regex-util "^19.0.0"
1843 |
1844 | jest-message-util@^19.0.0:
1845 | version "19.0.0"
1846 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416"
1847 | dependencies:
1848 | chalk "^1.1.1"
1849 | micromatch "^2.3.11"
1850 |
1851 | jest-mock@^19.0.0:
1852 | version "19.0.0"
1853 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01"
1854 |
1855 | jest-regex-util@^19.0.0:
1856 | version "19.0.0"
1857 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691"
1858 |
1859 | jest-resolve-dependencies@^19.0.0:
1860 | version "19.0.0"
1861 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee"
1862 | dependencies:
1863 | jest-file-exists "^19.0.0"
1864 |
1865 | jest-resolve@^19.0.2:
1866 | version "19.0.2"
1867 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c"
1868 | dependencies:
1869 | browser-resolve "^1.11.2"
1870 | jest-haste-map "^19.0.0"
1871 | resolve "^1.2.0"
1872 |
1873 | jest-runtime@^19.0.2:
1874 | version "19.0.2"
1875 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407"
1876 | dependencies:
1877 | babel-core "^6.0.0"
1878 | babel-jest "^19.0.0"
1879 | babel-plugin-istanbul "^4.0.0"
1880 | chalk "^1.1.3"
1881 | graceful-fs "^4.1.6"
1882 | jest-config "^19.0.2"
1883 | jest-file-exists "^19.0.0"
1884 | jest-haste-map "^19.0.0"
1885 | jest-regex-util "^19.0.0"
1886 | jest-resolve "^19.0.2"
1887 | jest-util "^19.0.2"
1888 | json-stable-stringify "^1.0.1"
1889 | micromatch "^2.3.11"
1890 | strip-bom "3.0.0"
1891 | yargs "^6.3.0"
1892 |
1893 | jest-snapshot@^19.0.2:
1894 | version "19.0.2"
1895 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b"
1896 | dependencies:
1897 | chalk "^1.1.3"
1898 | jest-diff "^19.0.0"
1899 | jest-file-exists "^19.0.0"
1900 | jest-matcher-utils "^19.0.0"
1901 | jest-util "^19.0.2"
1902 | natural-compare "^1.4.0"
1903 | pretty-format "^19.0.0"
1904 |
1905 | jest-util@^19.0.2:
1906 | version "19.0.2"
1907 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41"
1908 | dependencies:
1909 | chalk "^1.1.1"
1910 | graceful-fs "^4.1.6"
1911 | jest-file-exists "^19.0.0"
1912 | jest-message-util "^19.0.0"
1913 | jest-mock "^19.0.0"
1914 | jest-validate "^19.0.2"
1915 | leven "^2.0.0"
1916 | mkdirp "^0.5.1"
1917 |
1918 | jest-validate@^19.0.2:
1919 | version "19.0.2"
1920 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c"
1921 | dependencies:
1922 | chalk "^1.1.1"
1923 | jest-matcher-utils "^19.0.0"
1924 | leven "^2.0.0"
1925 | pretty-format "^19.0.0"
1926 |
1927 | jest@19.0.2:
1928 | version "19.0.2"
1929 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10"
1930 | dependencies:
1931 | jest-cli "^19.0.2"
1932 |
1933 | jodid25519@^1.0.0:
1934 | version "1.0.2"
1935 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
1936 | dependencies:
1937 | jsbn "~0.1.0"
1938 |
1939 | js-tokens@^3.0.0:
1940 | version "3.0.1"
1941 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
1942 |
1943 | js-yaml@^3.7.0:
1944 | version "3.8.2"
1945 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721"
1946 | dependencies:
1947 | argparse "^1.0.7"
1948 | esprima "^3.1.1"
1949 |
1950 | jsbn@~0.1.0:
1951 | version "0.1.1"
1952 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1953 |
1954 | jsdom@^9.11.0:
1955 | version "9.12.0"
1956 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4"
1957 | dependencies:
1958 | abab "^1.0.3"
1959 | acorn "^4.0.4"
1960 | acorn-globals "^3.1.0"
1961 | array-equal "^1.0.0"
1962 | content-type-parser "^1.0.1"
1963 | cssom ">= 0.3.2 < 0.4.0"
1964 | cssstyle ">= 0.2.37 < 0.3.0"
1965 | escodegen "^1.6.1"
1966 | html-encoding-sniffer "^1.0.1"
1967 | nwmatcher ">= 1.3.9 < 2.0.0"
1968 | parse5 "^1.5.1"
1969 | request "^2.79.0"
1970 | sax "^1.2.1"
1971 | symbol-tree "^3.2.1"
1972 | tough-cookie "^2.3.2"
1973 | webidl-conversions "^4.0.0"
1974 | whatwg-encoding "^1.0.1"
1975 | whatwg-url "^4.3.0"
1976 | xml-name-validator "^2.0.1"
1977 |
1978 | jsesc@^1.3.0:
1979 | version "1.3.0"
1980 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1981 |
1982 | jsesc@~0.5.0:
1983 | version "0.5.0"
1984 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1985 |
1986 | json-schema@0.2.3:
1987 | version "0.2.3"
1988 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1989 |
1990 | json-stable-stringify@^1.0.1:
1991 | version "1.0.1"
1992 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1993 | dependencies:
1994 | jsonify "~0.0.0"
1995 |
1996 | json-stable-stringify@~0.0.0:
1997 | version "0.0.1"
1998 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45"
1999 | dependencies:
2000 | jsonify "~0.0.0"
2001 |
2002 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
2003 | version "5.0.1"
2004 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2005 |
2006 | json5@^0.5.0:
2007 | version "0.5.1"
2008 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2009 |
2010 | jsonify@~0.0.0:
2011 | version "0.0.0"
2012 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2013 |
2014 | jsonparse@^1.2.0:
2015 | version "1.3.0"
2016 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.0.tgz#85fc245b1d9259acc6941960b905adf64e7de0e8"
2017 |
2018 | jsprim@^1.2.2:
2019 | version "1.4.0"
2020 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
2021 | dependencies:
2022 | assert-plus "1.0.0"
2023 | extsprintf "1.0.2"
2024 | json-schema "0.2.3"
2025 | verror "1.3.6"
2026 |
2027 | kind-of@^3.0.2:
2028 | version "3.1.0"
2029 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
2030 | dependencies:
2031 | is-buffer "^1.0.2"
2032 |
2033 | labeled-stream-splicer@^2.0.0:
2034 | version "2.0.0"
2035 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59"
2036 | dependencies:
2037 | inherits "^2.0.1"
2038 | isarray "~0.0.1"
2039 | stream-splicer "^2.0.0"
2040 |
2041 | lazy-cache@^1.0.3:
2042 | version "1.0.4"
2043 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2044 |
2045 | lcid@^1.0.0:
2046 | version "1.0.0"
2047 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2048 | dependencies:
2049 | invert-kv "^1.0.0"
2050 |
2051 | leven@^2.0.0:
2052 | version "2.1.0"
2053 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2054 |
2055 | levn@~0.3.0:
2056 | version "0.3.0"
2057 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2058 | dependencies:
2059 | prelude-ls "~1.1.2"
2060 | type-check "~0.3.2"
2061 |
2062 | lexical-scope@^1.2.0:
2063 | version "1.2.0"
2064 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4"
2065 | dependencies:
2066 | astw "^2.0.0"
2067 |
2068 | load-json-file@^1.0.0:
2069 | version "1.1.0"
2070 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2071 | dependencies:
2072 | graceful-fs "^4.1.2"
2073 | parse-json "^2.2.0"
2074 | pify "^2.0.0"
2075 | pinkie-promise "^2.0.0"
2076 | strip-bom "^2.0.0"
2077 |
2078 | locate-path@^2.0.0:
2079 | version "2.0.0"
2080 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2081 | dependencies:
2082 | p-locate "^2.0.0"
2083 | path-exists "^3.0.0"
2084 |
2085 | lodash.memoize@~3.0.3:
2086 | version "3.0.4"
2087 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"
2088 |
2089 | lodash@4.17.4, lodash@^4.14.0, lodash@^4.2.0:
2090 | version "4.17.4"
2091 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2092 |
2093 | longest@^1.0.1:
2094 | version "1.0.1"
2095 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2096 |
2097 | loose-envify@^1.0.0:
2098 | version "1.3.1"
2099 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2100 | dependencies:
2101 | js-tokens "^3.0.0"
2102 |
2103 | loud-rejection@^1.0.0:
2104 | version "1.6.0"
2105 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2106 | dependencies:
2107 | currently-unhandled "^0.4.1"
2108 | signal-exit "^3.0.0"
2109 |
2110 | makeerror@1.0.x:
2111 | version "1.0.11"
2112 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2113 | dependencies:
2114 | tmpl "1.0.x"
2115 |
2116 | map-obj@^1.0.0, map-obj@^1.0.1:
2117 | version "1.0.1"
2118 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2119 |
2120 | meow@3.7.0:
2121 | version "3.7.0"
2122 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2123 | dependencies:
2124 | camelcase-keys "^2.0.0"
2125 | decamelize "^1.1.2"
2126 | loud-rejection "^1.0.0"
2127 | map-obj "^1.0.1"
2128 | minimist "^1.1.3"
2129 | normalize-package-data "^2.3.4"
2130 | object-assign "^4.0.1"
2131 | read-pkg-up "^1.0.1"
2132 | redent "^1.0.0"
2133 | trim-newlines "^1.0.0"
2134 |
2135 | merge@^1.1.3:
2136 | version "1.2.0"
2137 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2138 |
2139 | micromatch@^2.1.5, micromatch@^2.3.11:
2140 | version "2.3.11"
2141 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2142 | dependencies:
2143 | arr-diff "^2.0.0"
2144 | array-unique "^0.2.1"
2145 | braces "^1.8.2"
2146 | expand-brackets "^0.1.4"
2147 | extglob "^0.3.1"
2148 | filename-regex "^2.0.0"
2149 | is-extglob "^1.0.0"
2150 | is-glob "^2.0.1"
2151 | kind-of "^3.0.2"
2152 | normalize-path "^2.0.1"
2153 | object.omit "^2.0.0"
2154 | parse-glob "^3.0.4"
2155 | regex-cache "^0.4.2"
2156 |
2157 | miller-rabin@^4.0.0:
2158 | version "4.0.0"
2159 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
2160 | dependencies:
2161 | bn.js "^4.0.0"
2162 | brorand "^1.0.1"
2163 |
2164 | mime-db@~1.26.0:
2165 | version "1.26.0"
2166 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff"
2167 |
2168 | mime-types@^2.1.12, mime-types@~2.1.7:
2169 | version "2.1.14"
2170 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee"
2171 | dependencies:
2172 | mime-db "~1.26.0"
2173 |
2174 | minimalistic-assert@^1.0.0:
2175 | version "1.0.0"
2176 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2177 |
2178 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2179 | version "1.0.1"
2180 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2181 |
2182 | minimatch@^3.0.2, minimatch@^3.0.3:
2183 | version "3.0.3"
2184 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
2185 | dependencies:
2186 | brace-expansion "^1.0.0"
2187 |
2188 | minimist@0.0.8, minimist@~0.0.1:
2189 | version "0.0.8"
2190 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2191 |
2192 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3:
2193 | version "1.2.0"
2194 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2195 |
2196 | mkdirp@^0.5.1:
2197 | version "0.5.1"
2198 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2199 | dependencies:
2200 | minimist "0.0.8"
2201 |
2202 | module-deps@^4.0.8:
2203 | version "4.1.1"
2204 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd"
2205 | dependencies:
2206 | JSONStream "^1.0.3"
2207 | browser-resolve "^1.7.0"
2208 | cached-path-relative "^1.0.0"
2209 | concat-stream "~1.5.0"
2210 | defined "^1.0.0"
2211 | detective "^4.0.0"
2212 | duplexer2 "^0.1.2"
2213 | inherits "^2.0.1"
2214 | parents "^1.0.0"
2215 | readable-stream "^2.0.2"
2216 | resolve "^1.1.3"
2217 | stream-combiner2 "^1.1.1"
2218 | subarg "^1.0.0"
2219 | through2 "^2.0.0"
2220 | xtend "^4.0.0"
2221 |
2222 | ms@0.7.2:
2223 | version "0.7.2"
2224 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2225 |
2226 | natural-compare@^1.4.0:
2227 | version "1.4.0"
2228 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2229 |
2230 | node-int64@^0.4.0:
2231 | version "0.4.0"
2232 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2233 |
2234 | node-notifier@^5.0.1:
2235 | version "5.0.2"
2236 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.0.2.tgz#4438449fe69e321f941cef943986b0797032701b"
2237 | dependencies:
2238 | growly "^1.3.0"
2239 | semver "^5.3.0"
2240 | shellwords "^0.1.0"
2241 | which "^1.2.12"
2242 |
2243 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2244 | version "2.3.6"
2245 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff"
2246 | dependencies:
2247 | hosted-git-info "^2.1.4"
2248 | is-builtin-module "^1.0.0"
2249 | semver "2 || 3 || 4 || 5"
2250 | validate-npm-package-license "^3.0.1"
2251 |
2252 | normalize-path@^2.0.1:
2253 | version "2.0.1"
2254 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
2255 |
2256 | normalize-strings@^1.1.0:
2257 | version "1.1.0"
2258 | resolved "https://registry.yarnpkg.com/normalize-strings/-/normalize-strings-1.1.0.tgz#b24a75ed48176394404f74649b5cb8040e899a75"
2259 |
2260 | number-is-nan@^1.0.0:
2261 | version "1.0.1"
2262 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2263 |
2264 | "nwmatcher@>= 1.3.9 < 2.0.0":
2265 | version "1.3.9"
2266 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a"
2267 |
2268 | oauth-sign@~0.8.1:
2269 | version "0.8.2"
2270 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2271 |
2272 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0:
2273 | version "4.1.1"
2274 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2275 |
2276 | object.omit@^2.0.0:
2277 | version "2.0.1"
2278 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2279 | dependencies:
2280 | for-own "^0.1.4"
2281 | is-extendable "^0.1.1"
2282 |
2283 | once@^1.3.0, once@^1.4.0:
2284 | version "1.4.0"
2285 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2286 | dependencies:
2287 | wrappy "1"
2288 |
2289 | optimist@^0.6.1:
2290 | version "0.6.1"
2291 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2292 | dependencies:
2293 | minimist "~0.0.1"
2294 | wordwrap "~0.0.2"
2295 |
2296 | optionator@^0.8.1:
2297 | version "0.8.2"
2298 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2299 | dependencies:
2300 | deep-is "~0.1.3"
2301 | fast-levenshtein "~2.0.4"
2302 | levn "~0.3.0"
2303 | prelude-ls "~1.1.2"
2304 | type-check "~0.3.2"
2305 | wordwrap "~1.0.0"
2306 |
2307 | os-browserify@~0.1.1:
2308 | version "0.1.2"
2309 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54"
2310 |
2311 | os-homedir@^1.0.0:
2312 | version "1.0.2"
2313 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2314 |
2315 | os-locale@^1.4.0:
2316 | version "1.4.0"
2317 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2318 | dependencies:
2319 | lcid "^1.0.0"
2320 |
2321 | os-tmpdir@^1.0.1:
2322 | version "1.0.2"
2323 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2324 |
2325 | p-limit@^1.1.0:
2326 | version "1.1.0"
2327 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2328 |
2329 | p-locate@^2.0.0:
2330 | version "2.0.0"
2331 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2332 | dependencies:
2333 | p-limit "^1.1.0"
2334 |
2335 | pako@~0.2.0:
2336 | version "0.2.9"
2337 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2338 |
2339 | parents@^1.0.0, parents@^1.0.1:
2340 | version "1.0.1"
2341 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751"
2342 | dependencies:
2343 | path-platform "~0.11.15"
2344 |
2345 | parse-asn1@^5.0.0:
2346 | version "5.1.0"
2347 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
2348 | dependencies:
2349 | asn1.js "^4.0.0"
2350 | browserify-aes "^1.0.0"
2351 | create-hash "^1.1.0"
2352 | evp_bytestokey "^1.0.0"
2353 | pbkdf2 "^3.0.3"
2354 |
2355 | parse-glob@^3.0.4:
2356 | version "3.0.4"
2357 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2358 | dependencies:
2359 | glob-base "^0.3.0"
2360 | is-dotfile "^1.0.0"
2361 | is-extglob "^1.0.0"
2362 | is-glob "^2.0.0"
2363 |
2364 | parse-json@^2.2.0:
2365 | version "2.2.0"
2366 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2367 | dependencies:
2368 | error-ex "^1.2.0"
2369 |
2370 | parse5@^1.5.1:
2371 | version "1.5.1"
2372 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"
2373 |
2374 | path-browserify@~0.0.0:
2375 | version "0.0.0"
2376 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2377 |
2378 | path-exists@^2.0.0:
2379 | version "2.1.0"
2380 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2381 | dependencies:
2382 | pinkie-promise "^2.0.0"
2383 |
2384 | path-exists@^3.0.0:
2385 | version "3.0.0"
2386 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2387 |
2388 | path-is-absolute@^1.0.0:
2389 | version "1.0.1"
2390 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2391 |
2392 | path-parse@^1.0.5:
2393 | version "1.0.5"
2394 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2395 |
2396 | path-platform@~0.11.15:
2397 | version "0.11.15"
2398 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2"
2399 |
2400 | path-type@^1.0.0:
2401 | version "1.1.0"
2402 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2403 | dependencies:
2404 | graceful-fs "^4.1.2"
2405 | pify "^2.0.0"
2406 | pinkie-promise "^2.0.0"
2407 |
2408 | pbkdf2@^3.0.3:
2409 | version "3.0.9"
2410 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693"
2411 | dependencies:
2412 | create-hmac "^1.1.2"
2413 |
2414 | performance-now@^0.2.0:
2415 | version "0.2.0"
2416 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2417 |
2418 | pify@^2.0.0:
2419 | version "2.3.0"
2420 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2421 |
2422 | pinkie-promise@^2.0.0:
2423 | version "2.0.1"
2424 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2425 | dependencies:
2426 | pinkie "^2.0.0"
2427 |
2428 | pinkie@^2.0.0:
2429 | version "2.0.4"
2430 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2431 |
2432 | pluralize@^3.0.0:
2433 | version "3.1.0"
2434 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-3.1.0.tgz#84213d0a12356069daa84060c559242633161368"
2435 |
2436 | prelude-ls@~1.1.2:
2437 | version "1.1.2"
2438 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2439 |
2440 | preserve@^0.2.0:
2441 | version "0.2.0"
2442 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2443 |
2444 | pretty-format@^19.0.0:
2445 | version "19.0.0"
2446 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84"
2447 | dependencies:
2448 | ansi-styles "^3.0.0"
2449 |
2450 | private@^0.1.6:
2451 | version "0.1.7"
2452 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
2453 |
2454 | process-nextick-args@~1.0.6:
2455 | version "1.0.7"
2456 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2457 |
2458 | process@~0.11.0:
2459 | version "0.11.9"
2460 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1"
2461 |
2462 | prr@~0.0.0:
2463 | version "0.0.0"
2464 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2465 |
2466 | public-encrypt@^4.0.0:
2467 | version "4.0.0"
2468 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2469 | dependencies:
2470 | bn.js "^4.1.0"
2471 | browserify-rsa "^4.0.0"
2472 | create-hash "^1.1.0"
2473 | parse-asn1 "^5.0.0"
2474 | randombytes "^2.0.1"
2475 |
2476 | punycode@1.3.2:
2477 | version "1.3.2"
2478 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2479 |
2480 | punycode@^1.3.2, punycode@^1.4.1:
2481 | version "1.4.1"
2482 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2483 |
2484 | qs@~6.4.0:
2485 | version "6.4.0"
2486 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2487 |
2488 | querystring-es3@~0.2.0:
2489 | version "0.2.1"
2490 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2491 |
2492 | querystring@0.2.0:
2493 | version "0.2.0"
2494 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2495 |
2496 | random-seed@0.3.0:
2497 | version "0.3.0"
2498 | resolved "https://registry.yarnpkg.com/random-seed/-/random-seed-0.3.0.tgz#d945f2e1f38f49e8d58913431b8bf6bb937556cd"
2499 | dependencies:
2500 | json-stringify-safe "^5.0.1"
2501 |
2502 | randomatic@^1.1.3:
2503 | version "1.1.6"
2504 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
2505 | dependencies:
2506 | is-number "^2.0.2"
2507 | kind-of "^3.0.2"
2508 |
2509 | randombytes@^2.0.0, randombytes@^2.0.1:
2510 | version "2.0.3"
2511 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec"
2512 |
2513 | read-only-stream@^2.0.0:
2514 | version "2.0.0"
2515 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0"
2516 | dependencies:
2517 | readable-stream "^2.0.2"
2518 |
2519 | read-pkg-up@^1.0.1:
2520 | version "1.0.1"
2521 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2522 | dependencies:
2523 | find-up "^1.0.0"
2524 | read-pkg "^1.0.0"
2525 |
2526 | read-pkg@^1.0.0:
2527 | version "1.1.0"
2528 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2529 | dependencies:
2530 | load-json-file "^1.0.0"
2531 | normalize-package-data "^2.3.2"
2532 | path-type "^1.0.0"
2533 |
2534 | readable-stream@^2.0.2, readable-stream@^2.1.0, readable-stream@^2.1.5:
2535 | version "2.2.6"
2536 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816"
2537 | dependencies:
2538 | buffer-shims "^1.0.0"
2539 | core-util-is "~1.0.0"
2540 | inherits "~2.0.1"
2541 | isarray "~1.0.0"
2542 | process-nextick-args "~1.0.6"
2543 | string_decoder "~0.10.x"
2544 | util-deprecate "~1.0.1"
2545 |
2546 | readable-stream@~2.0.0:
2547 | version "2.0.6"
2548 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
2549 | dependencies:
2550 | core-util-is "~1.0.0"
2551 | inherits "~2.0.1"
2552 | isarray "~1.0.0"
2553 | process-nextick-args "~1.0.6"
2554 | string_decoder "~0.10.x"
2555 | util-deprecate "~1.0.1"
2556 |
2557 | redent@^1.0.0:
2558 | version "1.0.0"
2559 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2560 | dependencies:
2561 | indent-string "^2.1.0"
2562 | strip-indent "^1.0.1"
2563 |
2564 | regenerate@^1.2.1:
2565 | version "1.3.2"
2566 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
2567 |
2568 | regenerator-runtime@^0.10.0:
2569 | version "0.10.3"
2570 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e"
2571 |
2572 | regenerator-transform@0.9.8:
2573 | version "0.9.8"
2574 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
2575 | dependencies:
2576 | babel-runtime "^6.18.0"
2577 | babel-types "^6.19.0"
2578 | private "^0.1.6"
2579 |
2580 | regex-cache@^0.4.2:
2581 | version "0.4.3"
2582 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
2583 | dependencies:
2584 | is-equal-shallow "^0.1.3"
2585 | is-primitive "^2.0.0"
2586 |
2587 | regexpu-core@^2.0.0:
2588 | version "2.0.0"
2589 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2590 | dependencies:
2591 | regenerate "^1.2.1"
2592 | regjsgen "^0.2.0"
2593 | regjsparser "^0.1.4"
2594 |
2595 | regjsgen@^0.2.0:
2596 | version "0.2.0"
2597 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2598 |
2599 | regjsparser@^0.1.4:
2600 | version "0.1.5"
2601 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2602 | dependencies:
2603 | jsesc "~0.5.0"
2604 |
2605 | repeat-element@^1.1.2:
2606 | version "1.1.2"
2607 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2608 |
2609 | repeat-string@^1.5.2:
2610 | version "1.6.1"
2611 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2612 |
2613 | repeating@^2.0.0:
2614 | version "2.0.1"
2615 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2616 | dependencies:
2617 | is-finite "^1.0.0"
2618 |
2619 | request@^2.79.0:
2620 | version "2.81.0"
2621 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2622 | dependencies:
2623 | aws-sign2 "~0.6.0"
2624 | aws4 "^1.2.1"
2625 | caseless "~0.12.0"
2626 | combined-stream "~1.0.5"
2627 | extend "~3.0.0"
2628 | forever-agent "~0.6.1"
2629 | form-data "~2.1.1"
2630 | har-validator "~4.2.1"
2631 | hawk "~3.1.3"
2632 | http-signature "~1.1.0"
2633 | is-typedarray "~1.0.0"
2634 | isstream "~0.1.2"
2635 | json-stringify-safe "~5.0.1"
2636 | mime-types "~2.1.7"
2637 | oauth-sign "~0.8.1"
2638 | performance-now "^0.2.0"
2639 | qs "~6.4.0"
2640 | safe-buffer "^5.0.1"
2641 | stringstream "~0.0.4"
2642 | tough-cookie "~2.3.0"
2643 | tunnel-agent "^0.6.0"
2644 | uuid "^3.0.0"
2645 |
2646 | require-directory@^2.1.1:
2647 | version "2.1.1"
2648 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2649 |
2650 | require-main-filename@^1.0.1:
2651 | version "1.0.1"
2652 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2653 |
2654 | resolve@1.1.7:
2655 | version "1.1.7"
2656 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
2657 |
2658 | resolve@^1.1.3, resolve@^1.1.4, resolve@^1.2.0:
2659 | version "1.3.2"
2660 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235"
2661 | dependencies:
2662 | path-parse "^1.0.5"
2663 |
2664 | right-align@^0.1.1:
2665 | version "0.1.3"
2666 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2667 | dependencies:
2668 | align-text "^0.1.1"
2669 |
2670 | rimraf@^2.4.3, rimraf@^2.4.4:
2671 | version "2.6.1"
2672 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
2673 | dependencies:
2674 | glob "^7.0.5"
2675 |
2676 | ripemd160@^1.0.0:
2677 | version "1.0.1"
2678 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e"
2679 |
2680 | safe-buffer@^5.0.1:
2681 | version "5.0.1"
2682 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
2683 |
2684 | sane@~1.5.0:
2685 | version "1.5.0"
2686 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3"
2687 | dependencies:
2688 | anymatch "^1.3.0"
2689 | exec-sh "^0.2.0"
2690 | fb-watchman "^1.8.0"
2691 | minimatch "^3.0.2"
2692 | minimist "^1.1.1"
2693 | walker "~1.0.5"
2694 | watch "~0.10.0"
2695 |
2696 | sax@^1.2.1:
2697 | version "1.2.2"
2698 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828"
2699 |
2700 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2701 | version "5.3.0"
2702 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2703 |
2704 | set-blocking@^2.0.0:
2705 | version "2.0.0"
2706 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2707 |
2708 | sha.js@^2.3.6, sha.js@~2.4.4:
2709 | version "2.4.8"
2710 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
2711 | dependencies:
2712 | inherits "^2.0.1"
2713 |
2714 | shasum@^1.0.0:
2715 | version "1.0.2"
2716 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f"
2717 | dependencies:
2718 | json-stable-stringify "~0.0.0"
2719 | sha.js "~2.4.4"
2720 |
2721 | shell-quote@^1.6.1:
2722 | version "1.6.1"
2723 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
2724 | dependencies:
2725 | array-filter "~0.0.0"
2726 | array-map "~0.0.0"
2727 | array-reduce "~0.0.0"
2728 | jsonify "~0.0.0"
2729 |
2730 | shellwords@^0.1.0:
2731 | version "0.1.0"
2732 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14"
2733 |
2734 | signal-exit@^3.0.0:
2735 | version "3.0.2"
2736 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2737 |
2738 | slash@^1.0.0:
2739 | version "1.0.0"
2740 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2741 |
2742 | sntp@1.x.x:
2743 | version "1.0.9"
2744 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2745 | dependencies:
2746 | hoek "2.x.x"
2747 |
2748 | source-map-support@^0.4.2:
2749 | version "0.4.12"
2750 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.12.tgz#f47d02bf01efaf0c160d3a37d038401b92b1867e"
2751 | dependencies:
2752 | source-map "^0.5.6"
2753 |
2754 | source-map@^0.4.4:
2755 | version "0.4.4"
2756 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2757 | dependencies:
2758 | amdefine ">=0.0.4"
2759 |
2760 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
2761 | version "0.5.6"
2762 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
2763 |
2764 | source-map@~0.2.0:
2765 | version "0.2.0"
2766 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"
2767 | dependencies:
2768 | amdefine ">=0.0.4"
2769 |
2770 | spdx-correct@~1.0.0:
2771 | version "1.0.2"
2772 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2773 | dependencies:
2774 | spdx-license-ids "^1.0.2"
2775 |
2776 | spdx-expression-parse@~1.0.0:
2777 | version "1.0.4"
2778 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2779 |
2780 | spdx-license-ids@^1.0.2:
2781 | version "1.2.2"
2782 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2783 |
2784 | sprintf-js@~1.0.2:
2785 | version "1.0.3"
2786 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2787 |
2788 | sshpk@^1.7.0:
2789 | version "1.11.0"
2790 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77"
2791 | dependencies:
2792 | asn1 "~0.2.3"
2793 | assert-plus "^1.0.0"
2794 | dashdash "^1.12.0"
2795 | getpass "^0.1.1"
2796 | optionalDependencies:
2797 | bcrypt-pbkdf "^1.0.0"
2798 | ecc-jsbn "~0.1.1"
2799 | jodid25519 "^1.0.0"
2800 | jsbn "~0.1.0"
2801 | tweetnacl "~0.14.0"
2802 |
2803 | stream-browserify@^2.0.0:
2804 | version "2.0.1"
2805 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2806 | dependencies:
2807 | inherits "~2.0.1"
2808 | readable-stream "^2.0.2"
2809 |
2810 | stream-combiner2@^1.1.1:
2811 | version "1.1.1"
2812 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe"
2813 | dependencies:
2814 | duplexer2 "~0.1.0"
2815 | readable-stream "^2.0.2"
2816 |
2817 | stream-http@^2.0.0:
2818 | version "2.6.3"
2819 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3"
2820 | dependencies:
2821 | builtin-status-codes "^3.0.0"
2822 | inherits "^2.0.1"
2823 | readable-stream "^2.1.0"
2824 | to-arraybuffer "^1.0.0"
2825 | xtend "^4.0.0"
2826 |
2827 | stream-splicer@^2.0.0:
2828 | version "2.0.0"
2829 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83"
2830 | dependencies:
2831 | inherits "^2.0.1"
2832 | readable-stream "^2.0.2"
2833 |
2834 | string-length@^1.0.1:
2835 | version "1.0.1"
2836 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac"
2837 | dependencies:
2838 | strip-ansi "^3.0.0"
2839 |
2840 | string-width@^1.0.1, string-width@^1.0.2:
2841 | version "1.0.2"
2842 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2843 | dependencies:
2844 | code-point-at "^1.0.0"
2845 | is-fullwidth-code-point "^1.0.0"
2846 | strip-ansi "^3.0.0"
2847 |
2848 | string_decoder@~0.10.0, string_decoder@~0.10.x:
2849 | version "0.10.31"
2850 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2851 |
2852 | stringstream@~0.0.4:
2853 | version "0.0.5"
2854 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2855 |
2856 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2857 | version "3.0.1"
2858 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2859 | dependencies:
2860 | ansi-regex "^2.0.0"
2861 |
2862 | strip-bom@3.0.0:
2863 | version "3.0.0"
2864 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2865 |
2866 | strip-bom@^2.0.0:
2867 | version "2.0.0"
2868 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2869 | dependencies:
2870 | is-utf8 "^0.2.0"
2871 |
2872 | strip-indent@^1.0.1:
2873 | version "1.0.1"
2874 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
2875 | dependencies:
2876 | get-stdin "^4.0.1"
2877 |
2878 | subarg@^1.0.0:
2879 | version "1.0.0"
2880 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2"
2881 | dependencies:
2882 | minimist "^1.1.0"
2883 |
2884 | supports-color@^2.0.0:
2885 | version "2.0.0"
2886 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2887 |
2888 | supports-color@^3.1.2:
2889 | version "3.2.3"
2890 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
2891 | dependencies:
2892 | has-flag "^1.0.0"
2893 |
2894 | syllable@2.0.0:
2895 | version "2.0.0"
2896 | resolved "https://registry.yarnpkg.com/syllable/-/syllable-2.0.0.tgz#d4118d4fe8df943a045bad8b411748453c3613f1"
2897 | dependencies:
2898 | has "^1.0.1"
2899 | normalize-strings "^1.1.0"
2900 | pluralize "^3.0.0"
2901 | trim "0.0.1"
2902 |
2903 | symbol-tree@^3.2.1:
2904 | version "3.2.2"
2905 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
2906 |
2907 | syntax-error@^1.1.1:
2908 | version "1.3.0"
2909 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1"
2910 | dependencies:
2911 | acorn "^4.0.3"
2912 |
2913 | test-exclude@^4.0.0:
2914 | version "4.0.0"
2915 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.0.tgz#0ddc0100b8ae7e88b34eb4fd98a907e961991900"
2916 | dependencies:
2917 | arrify "^1.0.1"
2918 | micromatch "^2.3.11"
2919 | object-assign "^4.1.0"
2920 | read-pkg-up "^1.0.1"
2921 | require-main-filename "^1.0.1"
2922 |
2923 | throat@^3.0.0:
2924 | version "3.0.0"
2925 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6"
2926 |
2927 | through2@^2.0.0:
2928 | version "2.0.3"
2929 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
2930 | dependencies:
2931 | readable-stream "^2.1.5"
2932 | xtend "~4.0.1"
2933 |
2934 | "through@>=2.2.7 <3":
2935 | version "2.3.8"
2936 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2937 |
2938 | timers-browserify@^1.0.1:
2939 | version "1.4.2"
2940 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d"
2941 | dependencies:
2942 | process "~0.11.0"
2943 |
2944 | tmpl@1.0.x:
2945 | version "1.0.4"
2946 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
2947 |
2948 | to-arraybuffer@^1.0.0:
2949 | version "1.0.1"
2950 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2951 |
2952 | to-fast-properties@^1.0.1:
2953 | version "1.0.2"
2954 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
2955 |
2956 | tough-cookie@^2.3.2, tough-cookie@~2.3.0:
2957 | version "2.3.2"
2958 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
2959 | dependencies:
2960 | punycode "^1.4.1"
2961 |
2962 | tr46@~0.0.3:
2963 | version "0.0.3"
2964 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
2965 |
2966 | trim-newlines@^1.0.0:
2967 | version "1.0.0"
2968 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
2969 |
2970 | trim-right@^1.0.1:
2971 | version "1.0.1"
2972 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2973 |
2974 | trim@0.0.1:
2975 | version "0.0.1"
2976 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
2977 |
2978 | tty-browserify@~0.0.0:
2979 | version "0.0.0"
2980 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2981 |
2982 | tunnel-agent@^0.6.0:
2983 | version "0.6.0"
2984 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2985 | dependencies:
2986 | safe-buffer "^5.0.1"
2987 |
2988 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2989 | version "0.14.5"
2990 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2991 |
2992 | type-check@~0.3.2:
2993 | version "0.3.2"
2994 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2995 | dependencies:
2996 | prelude-ls "~1.1.2"
2997 |
2998 | typedarray@~0.0.5:
2999 | version "0.0.6"
3000 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3001 |
3002 | uglify-js@2.8.14:
3003 | version "2.8.14"
3004 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.14.tgz#25b15d1af39b21752ee33703adbf432e8bc8f77d"
3005 | dependencies:
3006 | source-map "~0.5.1"
3007 | uglify-to-browserify "~1.0.0"
3008 | yargs "~3.10.0"
3009 |
3010 | uglify-js@^2.6:
3011 | version "2.8.12"
3012 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.12.tgz#8a50f5d482243650b7108f6080aa3a6afe2a6c55"
3013 | dependencies:
3014 | source-map "~0.5.1"
3015 | uglify-to-browserify "~1.0.0"
3016 | yargs "~3.10.0"
3017 |
3018 | uglify-to-browserify@~1.0.0:
3019 | version "1.0.2"
3020 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3021 |
3022 | umd@^3.0.0:
3023 | version "3.0.1"
3024 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e"
3025 |
3026 | url@~0.11.0:
3027 | version "0.11.0"
3028 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
3029 | dependencies:
3030 | punycode "1.3.2"
3031 | querystring "0.2.0"
3032 |
3033 | util-deprecate@~1.0.1:
3034 | version "1.0.2"
3035 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3036 |
3037 | util@0.10.3, util@~0.10.1:
3038 | version "0.10.3"
3039 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3040 | dependencies:
3041 | inherits "2.0.1"
3042 |
3043 | uuid@^3.0.0:
3044 | version "3.0.1"
3045 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
3046 |
3047 | validate-npm-package-license@^3.0.1:
3048 | version "3.0.1"
3049 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3050 | dependencies:
3051 | spdx-correct "~1.0.0"
3052 | spdx-expression-parse "~1.0.0"
3053 |
3054 | verror@1.3.6:
3055 | version "1.3.6"
3056 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3057 | dependencies:
3058 | extsprintf "1.0.2"
3059 |
3060 | vm-browserify@~0.0.1:
3061 | version "0.0.4"
3062 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3063 | dependencies:
3064 | indexof "0.0.1"
3065 |
3066 | walker@~1.0.5:
3067 | version "1.0.7"
3068 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3069 | dependencies:
3070 | makeerror "1.0.x"
3071 |
3072 | watch@~0.10.0:
3073 | version "0.10.0"
3074 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc"
3075 |
3076 | webidl-conversions@^3.0.0:
3077 | version "3.0.1"
3078 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
3079 |
3080 | webidl-conversions@^4.0.0:
3081 | version "4.0.1"
3082 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0"
3083 |
3084 | whatwg-encoding@^1.0.1:
3085 | version "1.0.1"
3086 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4"
3087 | dependencies:
3088 | iconv-lite "0.4.13"
3089 |
3090 | whatwg-url@^4.3.0:
3091 | version "4.5.1"
3092 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.5.1.tgz#ba634f630ff0778212c52ea9055d2d061380b1bb"
3093 | dependencies:
3094 | tr46 "~0.0.3"
3095 | webidl-conversions "^3.0.0"
3096 |
3097 | which-module@^1.0.0:
3098 | version "1.0.0"
3099 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3100 |
3101 | which@^1.1.1, which@^1.2.12:
3102 | version "1.2.12"
3103 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192"
3104 | dependencies:
3105 | isexe "^1.1.1"
3106 |
3107 | window-size@0.1.0:
3108 | version "0.1.0"
3109 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3110 |
3111 | wordwrap@0.0.2:
3112 | version "0.0.2"
3113 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3114 |
3115 | wordwrap@~0.0.2:
3116 | version "0.0.3"
3117 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3118 |
3119 | wordwrap@~1.0.0:
3120 | version "1.0.0"
3121 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3122 |
3123 | worker-farm@^1.3.1:
3124 | version "1.3.1"
3125 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff"
3126 | dependencies:
3127 | errno ">=0.1.1 <0.2.0-0"
3128 | xtend ">=4.0.0 <4.1.0-0"
3129 |
3130 | wrap-ansi@^2.0.0:
3131 | version "2.1.0"
3132 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3133 | dependencies:
3134 | string-width "^1.0.1"
3135 | strip-ansi "^3.0.1"
3136 |
3137 | wrappy@1:
3138 | version "1.0.2"
3139 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3140 |
3141 | xml-name-validator@^2.0.1:
3142 | version "2.0.1"
3143 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
3144 |
3145 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1:
3146 | version "4.0.1"
3147 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3148 |
3149 | y18n@^3.2.1:
3150 | version "3.2.1"
3151 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3152 |
3153 | yargs-parser@^4.2.0:
3154 | version "4.2.1"
3155 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
3156 | dependencies:
3157 | camelcase "^3.0.0"
3158 |
3159 | yargs@^6.3.0:
3160 | version "6.6.0"
3161 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
3162 | dependencies:
3163 | camelcase "^3.0.0"
3164 | cliui "^3.2.0"
3165 | decamelize "^1.1.1"
3166 | get-caller-file "^1.0.1"
3167 | os-locale "^1.4.0"
3168 | read-pkg-up "^1.0.1"
3169 | require-directory "^2.1.1"
3170 | require-main-filename "^1.0.1"
3171 | set-blocking "^2.0.0"
3172 | string-width "^1.0.2"
3173 | which-module "^1.0.0"
3174 | y18n "^3.2.1"
3175 | yargs-parser "^4.2.0"
3176 |
3177 | yargs@~3.10.0:
3178 | version "3.10.0"
3179 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3180 | dependencies:
3181 | camelcase "^1.0.2"
3182 | cliui "^2.1.0"
3183 | decamelize "^1.0.0"
3184 | window-size "0.1.0"
3185 |
--------------------------------------------------------------------------------