├── .circleci
└── config.yml
├── .eslintrc
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── lib
├── events.js
├── ext.js
├── index.js
├── register.js
└── utils.js
├── package.json
├── renovate.json
└── yarn.lock
/.circleci/config.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | jobs:
3 | build:
4 | working_directory: /usr/src/app
5 | docker:
6 | - image: banian/node
7 | steps:
8 | # Checkout repository
9 | - checkout
10 |
11 | # Restore cache
12 | - restore_cache:
13 | key: yarn-{{ checksum "yarn.lock" }}
14 |
15 | # Install dependencies
16 | - run:
17 | name: Install Dependencies
18 | command: NODE_ENV=dev yarn
19 |
20 | # Keep cache
21 | - save_cache:
22 | key: yarn-{{ checksum "yarn.lock" }}
23 | paths:
24 | - "node_modules"
25 |
26 | # Test
27 | - run:
28 | name: Tests
29 | command: yarn test
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "standard",
3 | "rules": {
4 | "camelcase": "off"
5 | }
6 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .idea
3 | node_modules
4 | *.log
5 | packages/*/yarn.lock
6 | .vscode
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4 |
5 |
6 | # [1.1.0](https://github.com/bakjs/hapi-compat/compare/v1.0.1...v1.1.0) (2017-10-20)
7 |
8 |
9 | ### Features
10 |
11 | * **register:** warn for attributes ([17ecae6](https://github.com/bakjs/hapi-compat/commit/17ecae6))
12 |
13 |
14 |
15 |
16 | ## 1.0.1 (2017-10-20)
17 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Pooya Parsa
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # hapi-compat
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | This plugin tries to detect, warn and auto-fix Hapi 17 breaking changes which are not fixed in plugins with a best effort.
30 |
31 | Hooks are recursive so if a plugin requires incompatible plugins, hapi-compat plugin will support them too.
32 |
33 | ## What's supported?
34 |
35 | ID | Auto Fix | Perf Impact | Description
36 | ------------------|-------------|--------------|--------------------------------------------------------------------
37 | ASYNC_PLUGINS | YES | I | plugins with next callback should return a Promise now
38 | SERVER_REGISTER | YES | - | `server.register({ register })` should be `{ plugin }`
39 | PLUGIN_ATTRS | YES | - | `register.attributes` ~> `{register, pkg}`
40 | SERVER_ON | YES | I* + R* | `server.on` ~> `server.events.on`
41 | ASYNC_SERVER_EXT | YES | I | Support for server.ext where the method expects having `next` callback
42 |
43 | - Perf Impact indicates if this support impacts performance of framework (I)init or (R)untime.
44 | - `*` means only impacts perf when old code detected not newer plugins
45 |
46 | For more details please look at breaking changes list [here](https://github.com/hapijs/hapi/milestone/221?closed=1)
47 |
48 | ## Setup
49 |
50 | Install package:
51 |
52 | ```bash
53 | npm install hapi-compat
54 |
55 | # or using yarn...
56 |
57 | yarn add hapi-compat
58 | ```
59 |
60 | Add plugin and push main Hapi instance as `options.server` to allow globally registering hooks:
61 |
62 | ```js
63 | // ...
64 | const server = new Hapi.Server(....)
65 |
66 | // ...
67 | server.register({
68 | plugin: 'hapi-compat',
69 | options: {
70 | server
71 | }
72 | })
73 | ```
74 |
75 | ## Questions
76 |
77 | + Does this plugin magically fixes everything for migration?
78 |
79 | Absolutely no. This is just a helper utility for making migration easier and faster.
80 |
81 | # License
82 |
83 | Copyright (c) 2016-2017 Fandogh - Pooya Parsa
84 |
85 | Released under The MIT [LICENSE](./LICENSE)
--------------------------------------------------------------------------------
/lib/events.js:
--------------------------------------------------------------------------------
1 |
2 | const { warn, caller } = require('./utils')
3 |
4 | function register (server, config) {
5 | server.decorate('server', 'on', function (event, listener) {
6 | warn('SERVER_ON', 'server.on is no longer available, use server.events.on instead!', caller())
7 | if (event === 'tail') {
8 | return
9 | }
10 | server.events.on(event, listener)
11 | })
12 | }
13 |
14 | exports.register = register
15 | exports.name = 'hapi-compat-events'
16 |
--------------------------------------------------------------------------------
/lib/ext.js:
--------------------------------------------------------------------------------
1 | const { warn, caller, getFnParamNames } = require('./utils')
2 |
3 | function wrapEventMethod (originalMethod) {
4 | // method' params are not always the same when calling server.ext
5 | // We need to use some tests for *guessing* if next/callback is there
6 | const fnParamNames = getFnParamNames(originalMethod)
7 | const lastParamName = fnParamNames.length ? fnParamNames[fnParamNames.length - 1] : ''
8 | const hasNext = lastParamName === 'next' || lastParamName === 'callback' || lastParamName === 'cb'
9 |
10 | if (!hasNext) {
11 | return originalMethod
12 | }
13 |
14 | const wrappedFn = function () {
15 | warn('ASYNC_SERVER_EXT', 'methods for server.ext should return promise instead of accepting next/callback argument', caller())
16 | return new Promise((resolve, reject) => {
17 | const next = err => {
18 | if (err) {
19 | return reject(err)
20 | }
21 | resolve()
22 | }
23 | return originalMethod.call(this, ...[].concat(arguments), next)
24 | })
25 | }
26 |
27 | return wrappedFn
28 | }
29 |
30 | function wrapServerExt (originalServerExt) {
31 | const serverExt = function (event, method, options) {
32 | if (Array.isArray(event)) {
33 | return Promise.all(event.map(e => serverExt.call(this, e)))
34 | }
35 |
36 | if (method) {
37 | method = wrapEventMethod(method)
38 | return originalServerExt.call(this, event, method, options)
39 | }
40 |
41 | // Clone to prevent mutation
42 | event = Object.assign({}, event)
43 |
44 | if (Array.isArray(event.method)) {
45 | event.method = event.method.map(m => wrapEventMethod(m))
46 | } else if (event.method) {
47 | event.method = wrapEventMethod(event.method)
48 | }
49 |
50 | return originalServerExt.call(this, event)
51 | }
52 | return serverExt
53 | }
54 |
55 | function register (server, config) {
56 | server.ext = wrapServerExt(server.ext)
57 | }
58 |
59 | exports.register = register
60 | exports.name = 'hapi-compat-ext'
61 |
--------------------------------------------------------------------------------
/lib/index.js:
--------------------------------------------------------------------------------
1 |
2 | const Hoek = require('hoek')
3 | const Joi = require('joi')
4 |
5 | const events = require('./events')
6 | const ext = require('./ext')
7 | const register = require('./register')
8 |
9 | exports.register = function bakCompat (_server, { server, ...options }) {
10 | Hoek.assert(server, 'Missing `server` in options')
11 |
12 | Joi.assert(options, schema)
13 | options = Hoek.applyToDefaults(defaults, options)
14 |
15 | // Manually apply plugins as they are not normal ones!
16 | events.register(server, options)
17 | ext.register(server, options)
18 | register.register(server, options)
19 | }
20 |
21 | exports.pkg = require('../package.json')
22 |
23 | const defaults = {
24 | }
25 |
26 | const schema = {
27 | }
28 |
--------------------------------------------------------------------------------
/lib/register.js:
--------------------------------------------------------------------------------
1 | const { warn, caller, getFnParamNames, isPlugin } = require('./utils')
2 | const ext = require('./ext')
3 |
4 | function wrapPlugin (originalPlugin, config) {
5 | const plugin = Object.assign({}, originalPlugin)
6 |
7 | // Support for attributes
8 | if (plugin.register.attributes && !plugin.pkg) {
9 | plugin.pkg = plugin.register.attributes.pkg || plugin.register.attributes
10 | delete plugin.register.attributes
11 |
12 | warn('PLUGIN_ATTRS', 'plugins should export { register, pkg } instead of { register.attributes }', 'plugin: ' + plugin.pkg.name)
13 | }
14 |
15 | // Wrap register function
16 | const originalRegister = originalPlugin.register
17 | const hasNext = getFnParamNames(originalRegister).length > 2
18 | const name = plugin.name || (plugin.pkg && plugin.pkg.name) || plugin.register.name
19 |
20 | if (hasNext) {
21 | warn('ASYNC_PLUGINS', 'plugins should return a promise instead of accepting next/callback argument', 'plugin: ' + name)
22 | }
23 |
24 | plugin.register = function (server, options) {
25 | return new Promise((resolve, reject) => {
26 | // Recursively add compat support as each plugin has it's own server realm
27 | register(server, config)
28 | ext.register(server, config)
29 |
30 | const result = originalRegister.call(this, server, options, err => {
31 | if (err) {
32 | return reject(err)
33 | }
34 | resolve()
35 | })
36 |
37 | if (!hasNext) {
38 | return resolve(result)
39 | }
40 | })
41 | }
42 |
43 | return plugin
44 | }
45 |
46 | function wrapServerRegister (originalServerRegister, config) {
47 | const serverRegister = function (registration, options) {
48 | if (Array.isArray(registration)) {
49 | return Promise.all(registration.map(r => serverRegister.call(this, r, options)))
50 | }
51 |
52 | // Clone to avoid mutating keys of original registration
53 | registration = Object.assign({}, registration)
54 |
55 | // Support for old { register } syntax
56 | if (isPlugin(registration.register)) {
57 | warn('SERVER_REGISTER', 'server registrations are now { plugin, options } instead of { register, options }', caller())
58 | registration.plugin = registration.register
59 | delete registration.register
60 | }
61 |
62 | // Wrap plugin
63 | if (isPlugin(registration)) {
64 | registration = wrapPlugin(registration, config)
65 | } else {
66 | registration.plugin = wrapPlugin(registration.plugin, config)
67 | }
68 |
69 | // Call to original register
70 | return originalServerRegister.call(this, registration, options)
71 | }
72 | return serverRegister
73 | }
74 |
75 | function register (server, config) {
76 | server.register = wrapServerRegister(server.register, config)
77 | }
78 |
79 | exports.register = register
80 | exports.name = 'hapi-compat-register'
81 |
--------------------------------------------------------------------------------
/lib/utils.js:
--------------------------------------------------------------------------------
1 | const Chalk = require('chalk')
2 | const CallerId = require('caller-id')
3 |
4 | function warn (type, message, at) {
5 | if (at) {
6 | console.warn(' ' + Chalk.red(at))
7 | }
8 | console.warn('⚠️ ', Chalk.yellow(`[${type}]`), Chalk.yellow(message), Chalk.grey('(see https://git.io/vd79N)'))
9 | console.warn('')
10 | }
11 |
12 | function caller () {
13 | const { filePath, lineNumber, functionName } = CallerId.getData(caller.caller)
14 | return `${filePath}:${lineNumber}@${functionName}`
15 | }
16 |
17 | function isPlugin (obj) {
18 | return obj && Boolean(obj.pkg || typeof obj.register === 'function')
19 | }
20 |
21 | function getFnParamNames (fn) {
22 | const match = fn.toString().match(/\(.*?\)/)
23 | return match ? match[0].replace(/[()]/gi, '').replace(/\s/gi, '').split(',') : []
24 | }
25 |
26 | module.exports = {
27 | warn,
28 | caller,
29 | isPlugin,
30 | getFnParamNames
31 | }
32 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "hapi-compat",
3 | "description": "hapi plugin which tries to detect, warn and auto-fix Hapi 17 breaking changes",
4 | "version": "1.1.0",
5 | "license": "MIT",
6 | "main": "lib/index.js",
7 | "homepage": "https://github.com/bakjs/hapi-compat",
8 | "scripts": {
9 | "lint": "eslint lib",
10 | "test": "npm run lint",
11 | "release": "standard-version && git push --follow-tags && npm publish",
12 | "prepare": "npm run test"
13 | },
14 | "publishConfig": {
15 | "access": "public"
16 | },
17 | "contributors": [
18 | "Pooya Parsa "
19 | ],
20 | "files": [
21 | "lib"
22 | ],
23 | "dependencies": {
24 | "caller-id": "^0.1.0",
25 | "chalk": "^2.2.0",
26 | "hoek": "^5.0.0",
27 | "joi": "^13.0.1"
28 | },
29 | "devDependencies": {
30 | "eslint": "^5.8.0",
31 | "eslint-config-standard": "^10.2.1",
32 | "eslint-plugin-html": "^3.2.2",
33 | "eslint-plugin-import": "^2.7.0",
34 | "eslint-plugin-node": "^5.2.0",
35 | "eslint-plugin-promise": "^3.5.0",
36 | "eslint-plugin-standard": "^3.0.1",
37 | "standard-version": "^4.2.0"
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "@nuxtjs"
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.0.0"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
8 | dependencies:
9 | "@babel/highlight" "^7.0.0"
10 |
11 | "@babel/highlight@^7.0.0":
12 | version "7.0.0"
13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
14 | dependencies:
15 | chalk "^2.0.0"
16 | esutils "^2.0.2"
17 | js-tokens "^4.0.0"
18 |
19 | JSONStream@^1.0.4:
20 | version "1.3.1"
21 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a"
22 | dependencies:
23 | jsonparse "^1.2.0"
24 | through ">=2.2.7 <3"
25 |
26 | acorn-jsx@^5.0.0:
27 | version "5.0.0"
28 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.0.tgz#958584ddb60990c02c97c1bd9d521fce433bb101"
29 |
30 | acorn@^6.0.2:
31 | version "6.0.3"
32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.3.tgz#52adffeb02757f06420085a0ed0f7c0baf55fdf4"
33 |
34 | ajv@^6.5.3:
35 | version "6.5.5"
36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.5.tgz#cf97cdade71c6399a92c6d6c4177381291b781a1"
37 | dependencies:
38 | fast-deep-equal "^2.0.1"
39 | fast-json-stable-stringify "^2.0.0"
40 | json-schema-traverse "^0.4.1"
41 | uri-js "^4.2.2"
42 |
43 | align-text@^0.1.1, align-text@^0.1.3:
44 | version "0.1.4"
45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
46 | dependencies:
47 | kind-of "^3.0.2"
48 | longest "^1.0.1"
49 | repeat-string "^1.5.2"
50 |
51 | amdefine@>=0.0.4:
52 | version "1.0.1"
53 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
54 |
55 | ansi-escapes@^3.0.0:
56 | version "3.0.0"
57 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
58 |
59 | ansi-regex@^2.0.0:
60 | version "2.1.1"
61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
62 |
63 | ansi-regex@^3.0.0:
64 | version "3.0.0"
65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
66 |
67 | ansi-styles@^2.2.1:
68 | version "2.2.1"
69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
70 |
71 | ansi-styles@^3.1.0:
72 | version "3.2.0"
73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
74 | dependencies:
75 | color-convert "^1.9.0"
76 |
77 | argparse@^1.0.7:
78 | version "1.0.9"
79 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
80 | dependencies:
81 | sprintf-js "~1.0.2"
82 |
83 | array-find-index@^1.0.1:
84 | version "1.0.2"
85 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
86 |
87 | array-ify@^1.0.0:
88 | version "1.0.0"
89 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
90 |
91 | array-union@^1.0.1:
92 | version "1.0.2"
93 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
94 | dependencies:
95 | array-uniq "^1.0.1"
96 |
97 | array-uniq@^1.0.1:
98 | version "1.0.3"
99 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
100 |
101 | arrify@^1.0.0:
102 | version "1.0.1"
103 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
104 |
105 | async@^1.4.0:
106 | version "1.5.2"
107 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
108 |
109 | balanced-match@^1.0.0:
110 | version "1.0.0"
111 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
112 |
113 | brace-expansion@^1.1.7:
114 | version "1.1.8"
115 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
116 | dependencies:
117 | balanced-match "^1.0.0"
118 | concat-map "0.0.1"
119 |
120 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
121 | version "1.1.1"
122 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
123 |
124 | caller-id@^0.1.0:
125 | version "0.1.0"
126 | resolved "https://registry.yarnpkg.com/caller-id/-/caller-id-0.1.0.tgz#59bdac0893d12c3871408279231f97458364f07b"
127 | dependencies:
128 | stack-trace "~0.0.7"
129 |
130 | caller-path@^0.1.0:
131 | version "0.1.0"
132 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
133 | dependencies:
134 | callsites "^0.2.0"
135 |
136 | callsites@^0.2.0:
137 | version "0.2.0"
138 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
139 |
140 | camelcase-keys@^2.0.0:
141 | version "2.1.0"
142 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
143 | dependencies:
144 | camelcase "^2.0.0"
145 | map-obj "^1.0.0"
146 |
147 | camelcase@^1.0.2:
148 | version "1.2.1"
149 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
150 |
151 | camelcase@^2.0.0:
152 | version "2.1.1"
153 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
154 |
155 | camelcase@^4.1.0:
156 | version "4.1.0"
157 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
158 |
159 | center-align@^0.1.1:
160 | version "0.1.3"
161 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
162 | dependencies:
163 | align-text "^0.1.3"
164 | lazy-cache "^1.0.3"
165 |
166 | chalk@^1.1.3:
167 | version "1.1.3"
168 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
169 | dependencies:
170 | ansi-styles "^2.2.1"
171 | escape-string-regexp "^1.0.2"
172 | has-ansi "^2.0.0"
173 | strip-ansi "^3.0.0"
174 | supports-color "^2.0.0"
175 |
176 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.2.0:
177 | version "2.2.0"
178 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240"
179 | dependencies:
180 | ansi-styles "^3.1.0"
181 | escape-string-regexp "^1.0.5"
182 | supports-color "^4.0.0"
183 |
184 | chardet@^0.7.0:
185 | version "0.7.0"
186 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
187 |
188 | circular-json@^0.3.1:
189 | version "0.3.3"
190 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
191 |
192 | cli-cursor@^2.1.0:
193 | version "2.1.0"
194 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
195 | dependencies:
196 | restore-cursor "^2.0.0"
197 |
198 | cli-width@^2.0.0:
199 | version "2.2.0"
200 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
201 |
202 | cliui@^2.1.0:
203 | version "2.1.0"
204 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
205 | dependencies:
206 | center-align "^0.1.1"
207 | right-align "^0.1.1"
208 | wordwrap "0.0.2"
209 |
210 | cliui@^3.2.0:
211 | version "3.2.0"
212 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
213 | dependencies:
214 | string-width "^1.0.1"
215 | strip-ansi "^3.0.1"
216 | wrap-ansi "^2.0.0"
217 |
218 | code-point-at@^1.0.0:
219 | version "1.1.0"
220 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
221 |
222 | color-convert@^1.9.0:
223 | version "1.9.0"
224 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
225 | dependencies:
226 | color-name "^1.1.1"
227 |
228 | color-name@^1.1.1:
229 | version "1.1.3"
230 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
231 |
232 | compare-func@^1.3.1:
233 | version "1.3.2"
234 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
235 | dependencies:
236 | array-ify "^1.0.0"
237 | dot-prop "^3.0.0"
238 |
239 | concat-map@0.0.1:
240 | version "0.0.1"
241 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
242 |
243 | concat-stream@^1.4.10:
244 | version "1.6.0"
245 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
246 | dependencies:
247 | inherits "^2.0.3"
248 | readable-stream "^2.2.2"
249 | typedarray "^0.0.6"
250 |
251 | contains-path@^0.1.0:
252 | version "0.1.0"
253 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
254 |
255 | conventional-changelog-angular@^1.5.1:
256 | version "1.5.1"
257 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.5.1.tgz#974e73aa1c39c392e4364f2952bd9a62904e9ea3"
258 | dependencies:
259 | compare-func "^1.3.1"
260 | q "^1.4.1"
261 |
262 | conventional-changelog-atom@^0.1.1:
263 | version "0.1.1"
264 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz#d40a9b297961b53c745e5d1718fd1a3379f6a92f"
265 | dependencies:
266 | q "^1.4.1"
267 |
268 | conventional-changelog-codemirror@^0.2.0:
269 | version "0.2.0"
270 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.0.tgz#3cc925955f3b14402827b15168049821972d9459"
271 | dependencies:
272 | q "^1.4.1"
273 |
274 | conventional-changelog-core@^1.9.2:
275 | version "1.9.2"
276 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.2.tgz#a09b6b959161671ff45b93cc9efb0444e7c845c0"
277 | dependencies:
278 | conventional-changelog-writer "^2.0.1"
279 | conventional-commits-parser "^2.0.0"
280 | dateformat "^1.0.12"
281 | get-pkg-repo "^1.0.0"
282 | git-raw-commits "^1.2.0"
283 | git-remote-origin-url "^2.0.0"
284 | git-semver-tags "^1.2.2"
285 | lodash "^4.0.0"
286 | normalize-package-data "^2.3.5"
287 | q "^1.4.1"
288 | read-pkg "^1.1.0"
289 | read-pkg-up "^1.0.1"
290 | through2 "^2.0.0"
291 |
292 | conventional-changelog-ember@^0.2.8:
293 | version "0.2.8"
294 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.8.tgz#65e686da83d23b67133d1f853908c87f948035c0"
295 | dependencies:
296 | q "^1.4.1"
297 |
298 | conventional-changelog-eslint@^0.2.0:
299 | version "0.2.0"
300 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.0.tgz#b4b9b5dc09417844d87c7bcfb16bdcc686c4b1c1"
301 | dependencies:
302 | q "^1.4.1"
303 |
304 | conventional-changelog-express@^0.2.0:
305 | version "0.2.0"
306 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.0.tgz#8d666ad41b10ebf964a4602062ddd2e00deb518d"
307 | dependencies:
308 | q "^1.4.1"
309 |
310 | conventional-changelog-jquery@^0.1.0:
311 | version "0.1.0"
312 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510"
313 | dependencies:
314 | q "^1.4.1"
315 |
316 | conventional-changelog-jscs@^0.1.0:
317 | version "0.1.0"
318 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c"
319 | dependencies:
320 | q "^1.4.1"
321 |
322 | conventional-changelog-jshint@^0.2.0:
323 | version "0.2.0"
324 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.0.tgz#63ad7aec66cd1ae559bafe80348c4657a6eb1872"
325 | dependencies:
326 | compare-func "^1.3.1"
327 | q "^1.4.1"
328 |
329 | conventional-changelog-writer@^2.0.1:
330 | version "2.0.1"
331 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.1.tgz#47c10d0faba526b78d194389d1e931d09ee62372"
332 | dependencies:
333 | compare-func "^1.3.1"
334 | conventional-commits-filter "^1.0.0"
335 | dateformat "^1.0.11"
336 | handlebars "^4.0.2"
337 | json-stringify-safe "^5.0.1"
338 | lodash "^4.0.0"
339 | meow "^3.3.0"
340 | semver "^5.0.1"
341 | split "^1.0.0"
342 | through2 "^2.0.0"
343 |
344 | conventional-changelog@^1.1.0:
345 | version "1.1.6"
346 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.6.tgz#ebd9b1ab63766c715f903f654626b6b1c0da7762"
347 | dependencies:
348 | conventional-changelog-angular "^1.5.1"
349 | conventional-changelog-atom "^0.1.1"
350 | conventional-changelog-codemirror "^0.2.0"
351 | conventional-changelog-core "^1.9.2"
352 | conventional-changelog-ember "^0.2.8"
353 | conventional-changelog-eslint "^0.2.0"
354 | conventional-changelog-express "^0.2.0"
355 | conventional-changelog-jquery "^0.1.0"
356 | conventional-changelog-jscs "^0.1.0"
357 | conventional-changelog-jshint "^0.2.0"
358 |
359 | conventional-commits-filter@^1.0.0:
360 | version "1.0.0"
361 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz#6fc2a659372bc3f2339cf9ffff7e1b0344b93039"
362 | dependencies:
363 | is-subset "^0.1.1"
364 | modify-values "^1.0.0"
365 |
366 | conventional-commits-parser@^2.0.0:
367 | version "2.0.0"
368 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz#71d01910cb0a99aeb20c144e50f81f4df3178447"
369 | dependencies:
370 | JSONStream "^1.0.4"
371 | is-text-path "^1.0.0"
372 | lodash "^4.2.1"
373 | meow "^3.3.0"
374 | split2 "^2.0.0"
375 | through2 "^2.0.0"
376 | trim-off-newlines "^1.0.0"
377 |
378 | conventional-recommended-bump@^1.0.0:
379 | version "1.0.2"
380 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.0.2.tgz#31856443ab6f9453a1827650e7cc15ec28769645"
381 | dependencies:
382 | concat-stream "^1.4.10"
383 | conventional-commits-filter "^1.0.0"
384 | conventional-commits-parser "^2.0.0"
385 | git-raw-commits "^1.2.0"
386 | git-semver-tags "^1.2.2"
387 | meow "^3.3.0"
388 | object-assign "^4.0.1"
389 |
390 | core-util-is@~1.0.0:
391 | version "1.0.2"
392 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
393 |
394 | cross-spawn@^5.0.1:
395 | version "5.1.0"
396 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
397 | dependencies:
398 | lru-cache "^4.0.1"
399 | shebang-command "^1.2.0"
400 | which "^1.2.9"
401 |
402 | cross-spawn@^6.0.5:
403 | version "6.0.5"
404 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
405 | dependencies:
406 | nice-try "^1.0.4"
407 | path-key "^2.0.1"
408 | semver "^5.5.0"
409 | shebang-command "^1.2.0"
410 | which "^1.2.9"
411 |
412 | currently-unhandled@^0.4.1:
413 | version "0.4.1"
414 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
415 | dependencies:
416 | array-find-index "^1.0.1"
417 |
418 | dargs@^4.0.1:
419 | version "4.1.0"
420 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
421 | dependencies:
422 | number-is-nan "^1.0.0"
423 |
424 | dateformat@^1.0.11, dateformat@^1.0.12:
425 | version "1.0.12"
426 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9"
427 | dependencies:
428 | get-stdin "^4.0.1"
429 | meow "^3.3.0"
430 |
431 | debug@^2.6.8:
432 | version "2.6.9"
433 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
434 | dependencies:
435 | ms "2.0.0"
436 |
437 | debug@^4.0.1:
438 | version "4.1.0"
439 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87"
440 | dependencies:
441 | ms "^2.1.1"
442 |
443 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
444 | version "1.2.0"
445 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
446 |
447 | deep-is@~0.1.3:
448 | version "0.1.3"
449 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
450 |
451 | del@^2.0.2:
452 | version "2.2.2"
453 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
454 | dependencies:
455 | globby "^5.0.0"
456 | is-path-cwd "^1.0.0"
457 | is-path-in-cwd "^1.0.0"
458 | object-assign "^4.0.1"
459 | pify "^2.0.0"
460 | pinkie-promise "^2.0.0"
461 | rimraf "^2.2.8"
462 |
463 | doctrine@1.5.0:
464 | version "1.5.0"
465 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
466 | dependencies:
467 | esutils "^2.0.2"
468 | isarray "^1.0.0"
469 |
470 | doctrine@^2.1.0:
471 | version "2.1.0"
472 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
473 | dependencies:
474 | esutils "^2.0.2"
475 |
476 | dom-serializer@0:
477 | version "0.1.0"
478 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
479 | dependencies:
480 | domelementtype "~1.1.1"
481 | entities "~1.1.1"
482 |
483 | domelementtype@1, domelementtype@^1.3.0:
484 | version "1.3.0"
485 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
486 |
487 | domelementtype@~1.1.1:
488 | version "1.1.3"
489 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
490 |
491 | domhandler@^2.3.0:
492 | version "2.4.1"
493 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259"
494 | dependencies:
495 | domelementtype "1"
496 |
497 | domutils@^1.5.1:
498 | version "1.6.2"
499 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"
500 | dependencies:
501 | dom-serializer "0"
502 | domelementtype "1"
503 |
504 | dot-prop@^3.0.0:
505 | version "3.0.0"
506 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
507 | dependencies:
508 | is-obj "^1.0.0"
509 |
510 | entities@^1.1.1, entities@~1.1.1:
511 | version "1.1.1"
512 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
513 |
514 | error-ex@^1.2.0:
515 | version "1.3.1"
516 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
517 | dependencies:
518 | is-arrayish "^0.2.1"
519 |
520 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
521 | version "1.0.5"
522 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
523 |
524 | eslint-config-standard@^10.2.1:
525 | version "10.2.1"
526 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591"
527 |
528 | eslint-import-resolver-node@^0.3.1:
529 | version "0.3.1"
530 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc"
531 | dependencies:
532 | debug "^2.6.8"
533 | resolve "^1.2.0"
534 |
535 | eslint-module-utils@^2.1.1:
536 | version "2.1.1"
537 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
538 | dependencies:
539 | debug "^2.6.8"
540 | pkg-dir "^1.0.0"
541 |
542 | eslint-plugin-html@^3.2.2:
543 | version "3.2.2"
544 | resolved "https://registry.yarnpkg.com/eslint-plugin-html/-/eslint-plugin-html-3.2.2.tgz#ef7093621d3a93de3206fd1f92f347ea9a1a4dfa"
545 | dependencies:
546 | htmlparser2 "^3.8.2"
547 | semver "^5.4.1"
548 |
549 | eslint-plugin-import@^2.7.0:
550 | version "2.8.0"
551 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894"
552 | dependencies:
553 | builtin-modules "^1.1.1"
554 | contains-path "^0.1.0"
555 | debug "^2.6.8"
556 | doctrine "1.5.0"
557 | eslint-import-resolver-node "^0.3.1"
558 | eslint-module-utils "^2.1.1"
559 | has "^1.0.1"
560 | lodash.cond "^4.3.0"
561 | minimatch "^3.0.3"
562 | read-pkg-up "^2.0.0"
563 |
564 | eslint-plugin-node@^5.2.0:
565 | version "5.2.0"
566 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.2.0.tgz#e1efca04a385516cff3f2f04027ce8c5ae6db749"
567 | dependencies:
568 | ignore "^3.3.3"
569 | minimatch "^3.0.4"
570 | resolve "^1.3.3"
571 | semver "5.3.0"
572 |
573 | eslint-plugin-promise@^3.5.0:
574 | version "3.6.0"
575 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75"
576 |
577 | eslint-plugin-standard@^3.0.1:
578 | version "3.0.1"
579 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2"
580 |
581 | eslint-scope@^4.0.0:
582 | version "4.0.0"
583 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172"
584 | dependencies:
585 | esrecurse "^4.1.0"
586 | estraverse "^4.1.1"
587 |
588 | eslint-utils@^1.3.1:
589 | version "1.3.1"
590 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512"
591 |
592 | eslint-visitor-keys@^1.0.0:
593 | version "1.0.0"
594 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
595 |
596 | eslint@^5.8.0:
597 | version "5.8.0"
598 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.8.0.tgz#91fbf24f6e0471e8fdf681a4d9dd1b2c9f28309b"
599 | dependencies:
600 | "@babel/code-frame" "^7.0.0"
601 | ajv "^6.5.3"
602 | chalk "^2.1.0"
603 | cross-spawn "^6.0.5"
604 | debug "^4.0.1"
605 | doctrine "^2.1.0"
606 | eslint-scope "^4.0.0"
607 | eslint-utils "^1.3.1"
608 | eslint-visitor-keys "^1.0.0"
609 | espree "^4.0.0"
610 | esquery "^1.0.1"
611 | esutils "^2.0.2"
612 | file-entry-cache "^2.0.0"
613 | functional-red-black-tree "^1.0.1"
614 | glob "^7.1.2"
615 | globals "^11.7.0"
616 | ignore "^4.0.6"
617 | imurmurhash "^0.1.4"
618 | inquirer "^6.1.0"
619 | is-resolvable "^1.1.0"
620 | js-yaml "^3.12.0"
621 | json-stable-stringify-without-jsonify "^1.0.1"
622 | levn "^0.3.0"
623 | lodash "^4.17.5"
624 | minimatch "^3.0.4"
625 | mkdirp "^0.5.1"
626 | natural-compare "^1.4.0"
627 | optionator "^0.8.2"
628 | path-is-inside "^1.0.2"
629 | pluralize "^7.0.0"
630 | progress "^2.0.0"
631 | regexpp "^2.0.1"
632 | require-uncached "^1.0.3"
633 | semver "^5.5.1"
634 | strip-ansi "^4.0.0"
635 | strip-json-comments "^2.0.1"
636 | table "^5.0.2"
637 | text-table "^0.2.0"
638 |
639 | espree@^4.0.0:
640 | version "4.1.0"
641 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.1.0.tgz#728d5451e0fd156c04384a7ad89ed51ff54eb25f"
642 | dependencies:
643 | acorn "^6.0.2"
644 | acorn-jsx "^5.0.0"
645 | eslint-visitor-keys "^1.0.0"
646 |
647 | esprima@^4.0.0:
648 | version "4.0.0"
649 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
650 |
651 | esquery@^1.0.1:
652 | version "1.0.1"
653 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
654 | dependencies:
655 | estraverse "^4.0.0"
656 |
657 | esrecurse@^4.1.0:
658 | version "4.2.0"
659 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
660 | dependencies:
661 | estraverse "^4.1.0"
662 | object-assign "^4.0.1"
663 |
664 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
665 | version "4.2.0"
666 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
667 |
668 | esutils@^2.0.2:
669 | version "2.0.2"
670 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
671 |
672 | execa@^0.7.0:
673 | version "0.7.0"
674 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
675 | dependencies:
676 | cross-spawn "^5.0.1"
677 | get-stream "^3.0.0"
678 | is-stream "^1.1.0"
679 | npm-run-path "^2.0.0"
680 | p-finally "^1.0.0"
681 | signal-exit "^3.0.0"
682 | strip-eof "^1.0.0"
683 |
684 | external-editor@^3.0.0:
685 | version "3.0.3"
686 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27"
687 | dependencies:
688 | chardet "^0.7.0"
689 | iconv-lite "^0.4.24"
690 | tmp "^0.0.33"
691 |
692 | fast-deep-equal@^2.0.1:
693 | version "2.0.1"
694 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
695 |
696 | fast-json-stable-stringify@^2.0.0:
697 | version "2.0.0"
698 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
699 |
700 | fast-levenshtein@~2.0.4:
701 | version "2.0.6"
702 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
703 |
704 | figures@^1.5.0:
705 | version "1.7.0"
706 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
707 | dependencies:
708 | escape-string-regexp "^1.0.5"
709 | object-assign "^4.1.0"
710 |
711 | figures@^2.0.0:
712 | version "2.0.0"
713 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
714 | dependencies:
715 | escape-string-regexp "^1.0.5"
716 |
717 | file-entry-cache@^2.0.0:
718 | version "2.0.0"
719 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
720 | dependencies:
721 | flat-cache "^1.2.1"
722 | object-assign "^4.0.1"
723 |
724 | find-up@^1.0.0:
725 | version "1.1.2"
726 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
727 | dependencies:
728 | path-exists "^2.0.0"
729 | pinkie-promise "^2.0.0"
730 |
731 | find-up@^2.0.0:
732 | version "2.1.0"
733 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
734 | dependencies:
735 | locate-path "^2.0.0"
736 |
737 | flat-cache@^1.2.1:
738 | version "1.3.0"
739 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
740 | dependencies:
741 | circular-json "^0.3.1"
742 | del "^2.0.2"
743 | graceful-fs "^4.1.2"
744 | write "^0.2.1"
745 |
746 | fs-access@^1.0.0:
747 | version "1.0.1"
748 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a"
749 | dependencies:
750 | null-check "^1.0.0"
751 |
752 | fs.realpath@^1.0.0:
753 | version "1.0.0"
754 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
755 |
756 | function-bind@^1.0.2:
757 | version "1.1.1"
758 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
759 |
760 | functional-red-black-tree@^1.0.1:
761 | version "1.0.1"
762 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
763 |
764 | get-caller-file@^1.0.1:
765 | version "1.0.2"
766 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
767 |
768 | get-pkg-repo@^1.0.0:
769 | version "1.4.0"
770 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
771 | dependencies:
772 | hosted-git-info "^2.1.4"
773 | meow "^3.3.0"
774 | normalize-package-data "^2.3.0"
775 | parse-github-repo-url "^1.3.0"
776 | through2 "^2.0.0"
777 |
778 | get-stdin@^4.0.1:
779 | version "4.0.1"
780 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
781 |
782 | get-stream@^3.0.0:
783 | version "3.0.0"
784 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
785 |
786 | git-raw-commits@^1.2.0:
787 | version "1.2.0"
788 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.2.0.tgz#0f3a8bfd99ae0f2d8b9224d58892975e9a52d03c"
789 | dependencies:
790 | dargs "^4.0.1"
791 | lodash.template "^4.0.2"
792 | meow "^3.3.0"
793 | split2 "^2.0.0"
794 | through2 "^2.0.0"
795 |
796 | git-remote-origin-url@^2.0.0:
797 | version "2.0.0"
798 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f"
799 | dependencies:
800 | gitconfiglocal "^1.0.0"
801 | pify "^2.3.0"
802 |
803 | git-semver-tags@^1.2.2:
804 | version "1.2.2"
805 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.2.tgz#a2139be1bf6e337e125f3eb8bb8fc6f5d4d6445f"
806 | dependencies:
807 | meow "^3.3.0"
808 | semver "^5.0.1"
809 |
810 | gitconfiglocal@^1.0.0:
811 | version "1.0.0"
812 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b"
813 | dependencies:
814 | ini "^1.3.2"
815 |
816 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
817 | version "7.1.2"
818 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
819 | dependencies:
820 | fs.realpath "^1.0.0"
821 | inflight "^1.0.4"
822 | inherits "2"
823 | minimatch "^3.0.4"
824 | once "^1.3.0"
825 | path-is-absolute "^1.0.0"
826 |
827 | globals@^11.7.0:
828 | version "11.8.0"
829 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.8.0.tgz#c1ef45ee9bed6badf0663c5cb90e8d1adec1321d"
830 |
831 | globby@^5.0.0:
832 | version "5.0.0"
833 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
834 | dependencies:
835 | array-union "^1.0.1"
836 | arrify "^1.0.0"
837 | glob "^7.0.3"
838 | object-assign "^4.0.1"
839 | pify "^2.0.0"
840 | pinkie-promise "^2.0.0"
841 |
842 | graceful-fs@^4.1.2:
843 | version "4.1.11"
844 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
845 |
846 | handlebars@^4.0.2:
847 | version "4.0.11"
848 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
849 | dependencies:
850 | async "^1.4.0"
851 | optimist "^0.6.1"
852 | source-map "^0.4.4"
853 | optionalDependencies:
854 | uglify-js "^2.6"
855 |
856 | has-ansi@^2.0.0:
857 | version "2.0.0"
858 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
859 | dependencies:
860 | ansi-regex "^2.0.0"
861 |
862 | has-flag@^2.0.0:
863 | version "2.0.0"
864 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
865 |
866 | has@^1.0.1:
867 | version "1.0.1"
868 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
869 | dependencies:
870 | function-bind "^1.0.2"
871 |
872 | hoek@5.x.x, hoek@^5.0.0:
873 | version "5.0.0"
874 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-5.0.0.tgz#b88953e0fec8e58082e4abd223ed20915d535831"
875 |
876 | hosted-git-info@^2.1.4:
877 | version "2.5.0"
878 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
879 |
880 | htmlparser2@^3.8.2:
881 | version "3.9.2"
882 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"
883 | dependencies:
884 | domelementtype "^1.3.0"
885 | domhandler "^2.3.0"
886 | domutils "^1.5.1"
887 | entities "^1.1.1"
888 | inherits "^2.0.1"
889 | readable-stream "^2.0.2"
890 |
891 | iconv-lite@^0.4.24:
892 | version "0.4.24"
893 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
894 | dependencies:
895 | safer-buffer ">= 2.1.2 < 3"
896 |
897 | ignore@^3.3.3:
898 | version "3.3.5"
899 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6"
900 |
901 | ignore@^4.0.6:
902 | version "4.0.6"
903 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
904 |
905 | imurmurhash@^0.1.4:
906 | version "0.1.4"
907 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
908 |
909 | indent-string@^2.1.0:
910 | version "2.1.0"
911 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
912 | dependencies:
913 | repeating "^2.0.0"
914 |
915 | inflight@^1.0.4:
916 | version "1.0.6"
917 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
918 | dependencies:
919 | once "^1.3.0"
920 | wrappy "1"
921 |
922 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
923 | version "2.0.3"
924 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
925 |
926 | ini@^1.3.2:
927 | version "1.3.4"
928 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
929 |
930 | inquirer@^6.1.0:
931 | version "6.2.0"
932 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
933 | dependencies:
934 | ansi-escapes "^3.0.0"
935 | chalk "^2.0.0"
936 | cli-cursor "^2.1.0"
937 | cli-width "^2.0.0"
938 | external-editor "^3.0.0"
939 | figures "^2.0.0"
940 | lodash "^4.17.10"
941 | mute-stream "0.0.7"
942 | run-async "^2.2.0"
943 | rxjs "^6.1.0"
944 | string-width "^2.1.0"
945 | strip-ansi "^4.0.0"
946 | through "^2.3.6"
947 |
948 | invert-kv@^1.0.0:
949 | version "1.0.0"
950 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
951 |
952 | is-arrayish@^0.2.1:
953 | version "0.2.1"
954 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
955 |
956 | is-buffer@^1.1.5:
957 | version "1.1.5"
958 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
959 |
960 | is-builtin-module@^1.0.0:
961 | version "1.0.0"
962 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
963 | dependencies:
964 | builtin-modules "^1.0.0"
965 |
966 | is-finite@^1.0.0:
967 | version "1.0.2"
968 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
969 | dependencies:
970 | number-is-nan "^1.0.0"
971 |
972 | is-fullwidth-code-point@^1.0.0:
973 | version "1.0.0"
974 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
975 | dependencies:
976 | number-is-nan "^1.0.0"
977 |
978 | is-fullwidth-code-point@^2.0.0:
979 | version "2.0.0"
980 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
981 |
982 | is-obj@^1.0.0:
983 | version "1.0.1"
984 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
985 |
986 | is-path-cwd@^1.0.0:
987 | version "1.0.0"
988 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
989 |
990 | is-path-in-cwd@^1.0.0:
991 | version "1.0.0"
992 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
993 | dependencies:
994 | is-path-inside "^1.0.0"
995 |
996 | is-path-inside@^1.0.0:
997 | version "1.0.0"
998 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
999 | dependencies:
1000 | path-is-inside "^1.0.1"
1001 |
1002 | is-promise@^2.1.0:
1003 | version "2.1.0"
1004 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1005 |
1006 | is-resolvable@^1.1.0:
1007 | version "1.1.0"
1008 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
1009 |
1010 | is-stream@^1.1.0:
1011 | version "1.1.0"
1012 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1013 |
1014 | is-subset@^0.1.1:
1015 | version "0.1.1"
1016 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
1017 |
1018 | is-text-path@^1.0.0:
1019 | version "1.0.1"
1020 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
1021 | dependencies:
1022 | text-extensions "^1.0.0"
1023 |
1024 | is-utf8@^0.2.0:
1025 | version "0.2.1"
1026 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1027 |
1028 | isarray@^1.0.0, isarray@~1.0.0:
1029 | version "1.0.0"
1030 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1031 |
1032 | isemail@3.x.x:
1033 | version "3.0.0"
1034 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-3.0.0.tgz#c89a46bb7a3361e1759f8028f9082488ecce3dff"
1035 | dependencies:
1036 | punycode "2.x.x"
1037 |
1038 | isexe@^2.0.0:
1039 | version "2.0.0"
1040 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1041 |
1042 | joi@^13.0.1:
1043 | version "13.0.1"
1044 | resolved "https://registry.yarnpkg.com/joi/-/joi-13.0.1.tgz#97df285450e3ff5bc4db9eccf40a1cd5cf3ec189"
1045 | dependencies:
1046 | hoek "5.x.x"
1047 | isemail "3.x.x"
1048 | topo "3.x.x"
1049 |
1050 | js-tokens@^4.0.0:
1051 | version "4.0.0"
1052 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1053 |
1054 | js-yaml@^3.12.0:
1055 | version "3.12.0"
1056 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
1057 | dependencies:
1058 | argparse "^1.0.7"
1059 | esprima "^4.0.0"
1060 |
1061 | json-schema-traverse@^0.4.1:
1062 | version "0.4.1"
1063 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1064 |
1065 | json-stable-stringify-without-jsonify@^1.0.1:
1066 | version "1.0.1"
1067 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1068 |
1069 | json-stringify-safe@^5.0.1:
1070 | version "5.0.1"
1071 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1072 |
1073 | jsonparse@^1.2.0:
1074 | version "1.3.1"
1075 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
1076 |
1077 | kind-of@^3.0.2:
1078 | version "3.2.2"
1079 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1080 | dependencies:
1081 | is-buffer "^1.1.5"
1082 |
1083 | lazy-cache@^1.0.3:
1084 | version "1.0.4"
1085 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1086 |
1087 | lcid@^1.0.0:
1088 | version "1.0.0"
1089 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1090 | dependencies:
1091 | invert-kv "^1.0.0"
1092 |
1093 | levn@^0.3.0, levn@~0.3.0:
1094 | version "0.3.0"
1095 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1096 | dependencies:
1097 | prelude-ls "~1.1.2"
1098 | type-check "~0.3.2"
1099 |
1100 | load-json-file@^1.0.0:
1101 | version "1.1.0"
1102 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1103 | dependencies:
1104 | graceful-fs "^4.1.2"
1105 | parse-json "^2.2.0"
1106 | pify "^2.0.0"
1107 | pinkie-promise "^2.0.0"
1108 | strip-bom "^2.0.0"
1109 |
1110 | load-json-file@^2.0.0:
1111 | version "2.0.0"
1112 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1113 | dependencies:
1114 | graceful-fs "^4.1.2"
1115 | parse-json "^2.2.0"
1116 | pify "^2.0.0"
1117 | strip-bom "^3.0.0"
1118 |
1119 | locate-path@^2.0.0:
1120 | version "2.0.0"
1121 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1122 | dependencies:
1123 | p-locate "^2.0.0"
1124 | path-exists "^3.0.0"
1125 |
1126 | lodash._reinterpolate@~3.0.0:
1127 | version "3.0.0"
1128 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
1129 |
1130 | lodash.cond@^4.3.0:
1131 | version "4.5.2"
1132 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
1133 |
1134 | lodash.template@^4.0.2:
1135 | version "4.4.0"
1136 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
1137 | dependencies:
1138 | lodash._reinterpolate "~3.0.0"
1139 | lodash.templatesettings "^4.0.0"
1140 |
1141 | lodash.templatesettings@^4.0.0:
1142 | version "4.1.0"
1143 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
1144 | dependencies:
1145 | lodash._reinterpolate "~3.0.0"
1146 |
1147 | lodash@^4.0.0, lodash@^4.2.1:
1148 | version "4.17.4"
1149 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1150 |
1151 | lodash@^4.17.10, lodash@^4.17.5:
1152 | version "4.17.11"
1153 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
1154 |
1155 | longest@^1.0.1:
1156 | version "1.0.1"
1157 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1158 |
1159 | loud-rejection@^1.0.0:
1160 | version "1.6.0"
1161 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1162 | dependencies:
1163 | currently-unhandled "^0.4.1"
1164 | signal-exit "^3.0.0"
1165 |
1166 | lru-cache@^4.0.1:
1167 | version "4.1.1"
1168 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1169 | dependencies:
1170 | pseudomap "^1.0.2"
1171 | yallist "^2.1.2"
1172 |
1173 | map-obj@^1.0.0, map-obj@^1.0.1:
1174 | version "1.0.1"
1175 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1176 |
1177 | mem@^1.1.0:
1178 | version "1.1.0"
1179 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1180 | dependencies:
1181 | mimic-fn "^1.0.0"
1182 |
1183 | meow@^3.3.0:
1184 | version "3.7.0"
1185 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
1186 | dependencies:
1187 | camelcase-keys "^2.0.0"
1188 | decamelize "^1.1.2"
1189 | loud-rejection "^1.0.0"
1190 | map-obj "^1.0.1"
1191 | minimist "^1.1.3"
1192 | normalize-package-data "^2.3.4"
1193 | object-assign "^4.0.1"
1194 | read-pkg-up "^1.0.1"
1195 | redent "^1.0.0"
1196 | trim-newlines "^1.0.0"
1197 |
1198 | mimic-fn@^1.0.0:
1199 | version "1.1.0"
1200 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
1201 |
1202 | minimatch@^3.0.3, minimatch@^3.0.4:
1203 | version "3.0.4"
1204 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1205 | dependencies:
1206 | brace-expansion "^1.1.7"
1207 |
1208 | minimist@0.0.8:
1209 | version "0.0.8"
1210 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1211 |
1212 | minimist@^1.1.3:
1213 | version "1.2.0"
1214 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1215 |
1216 | minimist@~0.0.1:
1217 | version "0.0.10"
1218 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
1219 |
1220 | mkdirp@^0.5.1:
1221 | version "0.5.1"
1222 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1223 | dependencies:
1224 | minimist "0.0.8"
1225 |
1226 | modify-values@^1.0.0:
1227 | version "1.0.0"
1228 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2"
1229 |
1230 | ms@2.0.0:
1231 | version "2.0.0"
1232 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1233 |
1234 | ms@^2.1.1:
1235 | version "2.1.1"
1236 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
1237 |
1238 | mute-stream@0.0.7:
1239 | version "0.0.7"
1240 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
1241 |
1242 | natural-compare@^1.4.0:
1243 | version "1.4.0"
1244 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1245 |
1246 | nice-try@^1.0.4:
1247 | version "1.0.5"
1248 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
1249 |
1250 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5:
1251 | version "2.4.0"
1252 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1253 | dependencies:
1254 | hosted-git-info "^2.1.4"
1255 | is-builtin-module "^1.0.0"
1256 | semver "2 || 3 || 4 || 5"
1257 | validate-npm-package-license "^3.0.1"
1258 |
1259 | npm-run-path@^2.0.0:
1260 | version "2.0.2"
1261 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1262 | dependencies:
1263 | path-key "^2.0.0"
1264 |
1265 | null-check@^1.0.0:
1266 | version "1.0.0"
1267 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd"
1268 |
1269 | number-is-nan@^1.0.0:
1270 | version "1.0.1"
1271 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1272 |
1273 | object-assign@^4.0.1, object-assign@^4.1.0:
1274 | version "4.1.1"
1275 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1276 |
1277 | once@^1.3.0:
1278 | version "1.4.0"
1279 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1280 | dependencies:
1281 | wrappy "1"
1282 |
1283 | onetime@^2.0.0:
1284 | version "2.0.1"
1285 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
1286 | dependencies:
1287 | mimic-fn "^1.0.0"
1288 |
1289 | optimist@^0.6.1:
1290 | version "0.6.1"
1291 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
1292 | dependencies:
1293 | minimist "~0.0.1"
1294 | wordwrap "~0.0.2"
1295 |
1296 | optionator@^0.8.2:
1297 | version "0.8.2"
1298 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1299 | dependencies:
1300 | deep-is "~0.1.3"
1301 | fast-levenshtein "~2.0.4"
1302 | levn "~0.3.0"
1303 | prelude-ls "~1.1.2"
1304 | type-check "~0.3.2"
1305 | wordwrap "~1.0.0"
1306 |
1307 | os-locale@^2.0.0:
1308 | version "2.1.0"
1309 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
1310 | dependencies:
1311 | execa "^0.7.0"
1312 | lcid "^1.0.0"
1313 | mem "^1.1.0"
1314 |
1315 | os-tmpdir@~1.0.2:
1316 | version "1.0.2"
1317 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1318 |
1319 | p-finally@^1.0.0:
1320 | version "1.0.0"
1321 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1322 |
1323 | p-limit@^1.1.0:
1324 | version "1.1.0"
1325 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
1326 |
1327 | p-locate@^2.0.0:
1328 | version "2.0.0"
1329 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1330 | dependencies:
1331 | p-limit "^1.1.0"
1332 |
1333 | parse-github-repo-url@^1.3.0:
1334 | version "1.4.1"
1335 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
1336 |
1337 | parse-json@^2.2.0:
1338 | version "2.2.0"
1339 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1340 | dependencies:
1341 | error-ex "^1.2.0"
1342 |
1343 | path-exists@^2.0.0:
1344 | version "2.1.0"
1345 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1346 | dependencies:
1347 | pinkie-promise "^2.0.0"
1348 |
1349 | path-exists@^3.0.0:
1350 | version "3.0.0"
1351 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1352 |
1353 | path-is-absolute@^1.0.0:
1354 | version "1.0.1"
1355 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1356 |
1357 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
1358 | version "1.0.2"
1359 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1360 |
1361 | path-key@^2.0.0, path-key@^2.0.1:
1362 | version "2.0.1"
1363 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1364 |
1365 | path-parse@^1.0.5:
1366 | version "1.0.5"
1367 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
1368 |
1369 | path-type@^1.0.0:
1370 | version "1.1.0"
1371 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
1372 | dependencies:
1373 | graceful-fs "^4.1.2"
1374 | pify "^2.0.0"
1375 | pinkie-promise "^2.0.0"
1376 |
1377 | path-type@^2.0.0:
1378 | version "2.0.0"
1379 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
1380 | dependencies:
1381 | pify "^2.0.0"
1382 |
1383 | pify@^2.0.0, pify@^2.3.0:
1384 | version "2.3.0"
1385 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1386 |
1387 | pinkie-promise@^2.0.0:
1388 | version "2.0.1"
1389 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1390 | dependencies:
1391 | pinkie "^2.0.0"
1392 |
1393 | pinkie@^2.0.0:
1394 | version "2.0.4"
1395 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1396 |
1397 | pkg-dir@^1.0.0:
1398 | version "1.0.0"
1399 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1400 | dependencies:
1401 | find-up "^1.0.0"
1402 |
1403 | pluralize@^7.0.0:
1404 | version "7.0.0"
1405 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
1406 |
1407 | prelude-ls@~1.1.2:
1408 | version "1.1.2"
1409 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1410 |
1411 | process-nextick-args@~1.0.6:
1412 | version "1.0.7"
1413 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1414 |
1415 | progress@^2.0.0:
1416 | version "2.0.0"
1417 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
1418 |
1419 | pseudomap@^1.0.2:
1420 | version "1.0.2"
1421 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1422 |
1423 | punycode@2.x.x:
1424 | version "2.1.0"
1425 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
1426 |
1427 | punycode@^2.1.0:
1428 | version "2.1.1"
1429 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1430 |
1431 | q@^1.4.1:
1432 | version "1.5.1"
1433 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
1434 |
1435 | read-pkg-up@^1.0.1:
1436 | version "1.0.1"
1437 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
1438 | dependencies:
1439 | find-up "^1.0.0"
1440 | read-pkg "^1.0.0"
1441 |
1442 | read-pkg-up@^2.0.0:
1443 | version "2.0.0"
1444 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
1445 | dependencies:
1446 | find-up "^2.0.0"
1447 | read-pkg "^2.0.0"
1448 |
1449 | read-pkg@^1.0.0, read-pkg@^1.1.0:
1450 | version "1.1.0"
1451 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
1452 | dependencies:
1453 | load-json-file "^1.0.0"
1454 | normalize-package-data "^2.3.2"
1455 | path-type "^1.0.0"
1456 |
1457 | read-pkg@^2.0.0:
1458 | version "2.0.0"
1459 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
1460 | dependencies:
1461 | load-json-file "^2.0.0"
1462 | normalize-package-data "^2.3.2"
1463 | path-type "^2.0.0"
1464 |
1465 | readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2:
1466 | version "2.3.3"
1467 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
1468 | dependencies:
1469 | core-util-is "~1.0.0"
1470 | inherits "~2.0.3"
1471 | isarray "~1.0.0"
1472 | process-nextick-args "~1.0.6"
1473 | safe-buffer "~5.1.1"
1474 | string_decoder "~1.0.3"
1475 | util-deprecate "~1.0.1"
1476 |
1477 | redent@^1.0.0:
1478 | version "1.0.0"
1479 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
1480 | dependencies:
1481 | indent-string "^2.1.0"
1482 | strip-indent "^1.0.1"
1483 |
1484 | regexpp@^2.0.1:
1485 | version "2.0.1"
1486 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
1487 |
1488 | repeat-string@^1.5.2:
1489 | version "1.6.1"
1490 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1491 |
1492 | repeating@^2.0.0:
1493 | version "2.0.1"
1494 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
1495 | dependencies:
1496 | is-finite "^1.0.0"
1497 |
1498 | require-directory@^2.1.1:
1499 | version "2.1.1"
1500 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1501 |
1502 | require-main-filename@^1.0.1:
1503 | version "1.0.1"
1504 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
1505 |
1506 | require-uncached@^1.0.3:
1507 | version "1.0.3"
1508 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1509 | dependencies:
1510 | caller-path "^0.1.0"
1511 | resolve-from "^1.0.0"
1512 |
1513 | resolve-from@^1.0.0:
1514 | version "1.0.1"
1515 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1516 |
1517 | resolve@^1.2.0, resolve@^1.3.3:
1518 | version "1.4.0"
1519 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
1520 | dependencies:
1521 | path-parse "^1.0.5"
1522 |
1523 | restore-cursor@^2.0.0:
1524 | version "2.0.0"
1525 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
1526 | dependencies:
1527 | onetime "^2.0.0"
1528 | signal-exit "^3.0.2"
1529 |
1530 | right-align@^0.1.1:
1531 | version "0.1.3"
1532 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
1533 | dependencies:
1534 | align-text "^0.1.1"
1535 |
1536 | rimraf@^2.2.8:
1537 | version "2.6.2"
1538 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1539 | dependencies:
1540 | glob "^7.0.5"
1541 |
1542 | run-async@^2.2.0:
1543 | version "2.3.0"
1544 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
1545 | dependencies:
1546 | is-promise "^2.1.0"
1547 |
1548 | rxjs@^6.1.0:
1549 | version "6.3.3"
1550 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55"
1551 | dependencies:
1552 | tslib "^1.9.0"
1553 |
1554 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1555 | version "5.1.1"
1556 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
1557 |
1558 | "safer-buffer@>= 2.1.2 < 3":
1559 | version "2.1.2"
1560 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1561 |
1562 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0, semver@^5.4.1:
1563 | version "5.4.1"
1564 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
1565 |
1566 | semver@5.3.0:
1567 | version "5.3.0"
1568 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
1569 |
1570 | semver@^5.5.0, semver@^5.5.1:
1571 | version "5.6.0"
1572 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
1573 |
1574 | set-blocking@^2.0.0:
1575 | version "2.0.0"
1576 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1577 |
1578 | shebang-command@^1.2.0:
1579 | version "1.2.0"
1580 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1581 | dependencies:
1582 | shebang-regex "^1.0.0"
1583 |
1584 | shebang-regex@^1.0.0:
1585 | version "1.0.0"
1586 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1587 |
1588 | signal-exit@^3.0.0, signal-exit@^3.0.2:
1589 | version "3.0.2"
1590 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1591 |
1592 | slice-ansi@1.0.0:
1593 | version "1.0.0"
1594 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
1595 | dependencies:
1596 | is-fullwidth-code-point "^2.0.0"
1597 |
1598 | source-map@^0.4.4:
1599 | version "0.4.4"
1600 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
1601 | dependencies:
1602 | amdefine ">=0.0.4"
1603 |
1604 | source-map@~0.5.1:
1605 | version "0.5.7"
1606 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1607 |
1608 | spdx-correct@~1.0.0:
1609 | version "1.0.2"
1610 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
1611 | dependencies:
1612 | spdx-license-ids "^1.0.2"
1613 |
1614 | spdx-expression-parse@~1.0.0:
1615 | version "1.0.4"
1616 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
1617 |
1618 | spdx-license-ids@^1.0.2:
1619 | version "1.2.2"
1620 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
1621 |
1622 | split2@^2.0.0:
1623 | version "2.2.0"
1624 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
1625 | dependencies:
1626 | through2 "^2.0.2"
1627 |
1628 | split@^1.0.0:
1629 | version "1.0.1"
1630 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
1631 | dependencies:
1632 | through "2"
1633 |
1634 | sprintf-js@~1.0.2:
1635 | version "1.0.3"
1636 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1637 |
1638 | stack-trace@~0.0.7:
1639 | version "0.0.10"
1640 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
1641 |
1642 | standard-version@^4.2.0:
1643 | version "4.2.0"
1644 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.2.0.tgz#3017e8c5ced2a92db7501790255c3ba85157375d"
1645 | dependencies:
1646 | chalk "^1.1.3"
1647 | conventional-changelog "^1.1.0"
1648 | conventional-recommended-bump "^1.0.0"
1649 | figures "^1.5.0"
1650 | fs-access "^1.0.0"
1651 | semver "^5.1.0"
1652 | yargs "^8.0.1"
1653 |
1654 | string-width@^1.0.1:
1655 | version "1.0.2"
1656 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1657 | dependencies:
1658 | code-point-at "^1.0.0"
1659 | is-fullwidth-code-point "^1.0.0"
1660 | strip-ansi "^3.0.0"
1661 |
1662 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
1663 | version "2.1.1"
1664 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1665 | dependencies:
1666 | is-fullwidth-code-point "^2.0.0"
1667 | strip-ansi "^4.0.0"
1668 |
1669 | string_decoder@~1.0.3:
1670 | version "1.0.3"
1671 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
1672 | dependencies:
1673 | safe-buffer "~5.1.0"
1674 |
1675 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1676 | version "3.0.1"
1677 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1678 | dependencies:
1679 | ansi-regex "^2.0.0"
1680 |
1681 | strip-ansi@^4.0.0:
1682 | version "4.0.0"
1683 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1684 | dependencies:
1685 | ansi-regex "^3.0.0"
1686 |
1687 | strip-bom@^2.0.0:
1688 | version "2.0.0"
1689 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
1690 | dependencies:
1691 | is-utf8 "^0.2.0"
1692 |
1693 | strip-bom@^3.0.0:
1694 | version "3.0.0"
1695 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1696 |
1697 | strip-eof@^1.0.0:
1698 | version "1.0.0"
1699 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1700 |
1701 | strip-indent@^1.0.1:
1702 | version "1.0.1"
1703 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
1704 | dependencies:
1705 | get-stdin "^4.0.1"
1706 |
1707 | strip-json-comments@^2.0.1:
1708 | version "2.0.1"
1709 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1710 |
1711 | supports-color@^2.0.0:
1712 | version "2.0.0"
1713 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1714 |
1715 | supports-color@^4.0.0:
1716 | version "4.5.0"
1717 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
1718 | dependencies:
1719 | has-flag "^2.0.0"
1720 |
1721 | table@^5.0.2:
1722 | version "5.1.0"
1723 | resolved "https://registry.yarnpkg.com/table/-/table-5.1.0.tgz#69a54644f6f01ad1628f8178715b408dc6bf11f7"
1724 | dependencies:
1725 | ajv "^6.5.3"
1726 | lodash "^4.17.10"
1727 | slice-ansi "1.0.0"
1728 | string-width "^2.1.1"
1729 |
1730 | text-extensions@^1.0.0:
1731 | version "1.7.0"
1732 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39"
1733 |
1734 | text-table@^0.2.0:
1735 | version "0.2.0"
1736 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1737 |
1738 | through2@^2.0.0, through2@^2.0.2:
1739 | version "2.0.3"
1740 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
1741 | dependencies:
1742 | readable-stream "^2.1.5"
1743 | xtend "~4.0.1"
1744 |
1745 | through@2, "through@>=2.2.7 <3", through@^2.3.6:
1746 | version "2.3.8"
1747 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1748 |
1749 | tmp@^0.0.33:
1750 | version "0.0.33"
1751 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
1752 | dependencies:
1753 | os-tmpdir "~1.0.2"
1754 |
1755 | topo@3.x.x:
1756 | version "3.0.0"
1757 | resolved "https://registry.yarnpkg.com/topo/-/topo-3.0.0.tgz#37e48c330efeac784538e0acd3e62ca5e231fe7a"
1758 | dependencies:
1759 | hoek "5.x.x"
1760 |
1761 | trim-newlines@^1.0.0:
1762 | version "1.0.0"
1763 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
1764 |
1765 | trim-off-newlines@^1.0.0:
1766 | version "1.0.1"
1767 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
1768 |
1769 | tslib@^1.9.0:
1770 | version "1.9.3"
1771 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
1772 |
1773 | type-check@~0.3.2:
1774 | version "0.3.2"
1775 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1776 | dependencies:
1777 | prelude-ls "~1.1.2"
1778 |
1779 | typedarray@^0.0.6:
1780 | version "0.0.6"
1781 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1782 |
1783 | uglify-js@^2.6:
1784 | version "2.8.29"
1785 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
1786 | dependencies:
1787 | source-map "~0.5.1"
1788 | yargs "~3.10.0"
1789 | optionalDependencies:
1790 | uglify-to-browserify "~1.0.0"
1791 |
1792 | uglify-to-browserify@~1.0.0:
1793 | version "1.0.2"
1794 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
1795 |
1796 | uri-js@^4.2.2:
1797 | version "4.2.2"
1798 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
1799 | dependencies:
1800 | punycode "^2.1.0"
1801 |
1802 | util-deprecate@~1.0.1:
1803 | version "1.0.2"
1804 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1805 |
1806 | validate-npm-package-license@^3.0.1:
1807 | version "3.0.1"
1808 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
1809 | dependencies:
1810 | spdx-correct "~1.0.0"
1811 | spdx-expression-parse "~1.0.0"
1812 |
1813 | which-module@^2.0.0:
1814 | version "2.0.0"
1815 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
1816 |
1817 | which@^1.2.9:
1818 | version "1.3.0"
1819 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
1820 | dependencies:
1821 | isexe "^2.0.0"
1822 |
1823 | window-size@0.1.0:
1824 | version "0.1.0"
1825 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
1826 |
1827 | wordwrap@0.0.2:
1828 | version "0.0.2"
1829 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
1830 |
1831 | wordwrap@~0.0.2:
1832 | version "0.0.3"
1833 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
1834 |
1835 | wordwrap@~1.0.0:
1836 | version "1.0.0"
1837 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1838 |
1839 | wrap-ansi@^2.0.0:
1840 | version "2.1.0"
1841 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
1842 | dependencies:
1843 | string-width "^1.0.1"
1844 | strip-ansi "^3.0.1"
1845 |
1846 | wrappy@1:
1847 | version "1.0.2"
1848 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1849 |
1850 | write@^0.2.1:
1851 | version "0.2.1"
1852 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1853 | dependencies:
1854 | mkdirp "^0.5.1"
1855 |
1856 | xtend@~4.0.1:
1857 | version "4.0.1"
1858 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
1859 |
1860 | y18n@^3.2.1:
1861 | version "3.2.1"
1862 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
1863 |
1864 | yallist@^2.1.2:
1865 | version "2.1.2"
1866 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
1867 |
1868 | yargs-parser@^7.0.0:
1869 | version "7.0.0"
1870 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
1871 | dependencies:
1872 | camelcase "^4.1.0"
1873 |
1874 | yargs@^8.0.1:
1875 | version "8.0.2"
1876 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
1877 | dependencies:
1878 | camelcase "^4.1.0"
1879 | cliui "^3.2.0"
1880 | decamelize "^1.1.1"
1881 | get-caller-file "^1.0.1"
1882 | os-locale "^2.0.0"
1883 | read-pkg-up "^2.0.0"
1884 | require-directory "^2.1.1"
1885 | require-main-filename "^1.0.1"
1886 | set-blocking "^2.0.0"
1887 | string-width "^2.0.0"
1888 | which-module "^2.0.0"
1889 | y18n "^3.2.1"
1890 | yargs-parser "^7.0.0"
1891 |
1892 | yargs@~3.10.0:
1893 | version "3.10.0"
1894 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
1895 | dependencies:
1896 | camelcase "^1.0.2"
1897 | cliui "^2.1.0"
1898 | decamelize "^1.0.0"
1899 | window-size "0.1.0"
1900 |
--------------------------------------------------------------------------------