├── .gitignore
├── .travis.yml
├── bin
└── now-docs.js
├── cover.png
├── docs
├── 01-about.md
├── 02-installation.md
├── 03-usage.md
├── 04-themes.md
├── 05-examples.md
└── 06-links.md
├── lib
├── components
│ ├── footer.js
│ ├── header.js
│ └── sidebar.js
├── create-components.js
├── create-docs.js
├── create-layout.js
├── create-package.js
├── create-page.js
├── create-styles.js
├── deploy.js
├── get-cfg.js
├── get-docs.js
├── layouts
│ └── page.js
├── pages
│ └── home.js
└── styles
│ └── apex.js
├── license
├── package.json
├── readme.md
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .now-docs
3 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - '8'
4 | - '7'
5 |
--------------------------------------------------------------------------------
/bin/now-docs.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | 'use strict'
4 |
5 | const { join } = require('path')
6 | const meow = require('meow')
7 | const updateNotifier = require('update-notifier')
8 | const { existsSync } = require('fs-extra')
9 | const shoutSuccess = require('shout-success')
10 | const shoutError = require('shout-error')
11 | const del = require('del')
12 | const ora = require('ora')
13 |
14 | const createPackage = require('./../lib/create-package')
15 | const createLayout = require('./../lib/create-layout')
16 | const createPage = require('./../lib/create-page')
17 | const createComponents = require('./../lib/create-components')
18 | const createDocs = require('./../lib/create-docs')
19 | const createStyles = require('./../lib/create-styles')
20 | const deploy = require('./../lib/deploy')
21 | const getCfg = require('./../lib/get-cfg')
22 |
23 | const cli = meow(
24 | `
25 | Usage:
26 | $ now-docs Deploy \`now-docs\`
27 |
28 | Options:
29 | -h, --help Show help options
30 | -v, --version Show version
31 | `,
32 | {
33 | alias: {
34 | h: 'help',
35 | v: 'version'
36 | }
37 | }
38 | )
39 |
40 | updateNotifier({ pkg: cli.pkg }).notify()
41 |
42 | const run = async () => {
43 | const hasDocs = existsSync(join(process.cwd(), 'docs'))
44 | const { alias } = await getCfg()
45 | const spinner = ora('Deploying with `now-docs`')
46 | const theme = 'apex'
47 |
48 | if (!hasDocs) {
49 | return shoutError("Couldn't find `docs` folder.")
50 | }
51 |
52 | spinner.start()
53 |
54 | Promise.all([
55 | await del(join(process.cwd(), '.now-docs')),
56 | await createPackage(),
57 | await createLayout(),
58 | await createPage(),
59 | await createComponents(),
60 | await createDocs(),
61 | await createStyles(theme),
62 | await deploy({ alias })
63 | ])
64 | .then(res => {
65 | const domain = alias ? `https://${alias}` : res[7]
66 | shoutSuccess(`\`now-docs\` created! ${domain}`)
67 | })
68 | .catch(() => shoutError('Ops! something happened!'))
69 |
70 | spinner.stop()
71 | }
72 |
73 | run()
74 |
--------------------------------------------------------------------------------
/cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bukinoshita/now-docs/d9744186d54a7d28514c93431aaa857c0f36062b/cover.png
--------------------------------------------------------------------------------
/docs/01-about.md:
--------------------------------------------------------------------------------
1 | ## About
2 |
3 | With `now-docs`, you can deploy a web app docs for your project by using a
4 | single command.
5 |
6 | `now-docs` uses [now](https://zeit.co/now) and
7 | [next.js](https://github.com/zeit/next.js) (React) to deploy the new docs with a
8 | single command. Create a new documentation using markdown.
9 |
--------------------------------------------------------------------------------
/docs/02-installation.md:
--------------------------------------------------------------------------------
1 | ## Installation
2 |
3 | Install the `now-docs` with npm:
4 |
5 | ```
6 | $ npm install -g now-docs
7 | ```
8 |
9 | _Make sure you have [now-cli](https://github.com/zeit/now-cli) installed._
10 |
--------------------------------------------------------------------------------
/docs/03-usage.md:
--------------------------------------------------------------------------------
1 | ## Usage
2 |
3 | ### Architecture
4 |
5 | Inside of your project create a `docs` folder.
6 |
7 | ```
8 | project
9 | ├── docs
10 | │ ├── 01-getting-started.md
11 | │ ├── 02-installation.md
12 | │ └── 03-examples.md
13 | └── src
14 | ├── index.js
15 | └── etc...
16 | ```
17 |
18 | ### Naming
19 |
20 | We recommend naming your files as `01-name.md`, `02-name.md`, `03-name.md`. Each
21 | file should contain a `title (h2)`. We also recommend naming the title of the
22 | section with the same name used on file name.
23 |
24 | So if you have a `about.md` the title of this file should be `About`.
25 |
26 | ```
27 | ## About
28 |
29 | Docs content goes here
30 | ```
31 |
32 | ### Customizing
33 |
34 | To customize your `now-docs`, create a `.now-docs.json` at the root of your
35 | project and if you already have a `package.json` file inside your project, you
36 | can define all of the following properties inside the `nowDocs` property within
37 | it instead:
38 |
39 | #### name (string)
40 |
41 | The prefix for all new deployment instances. The CLI usually generates this
42 | field automatically based on your `package.json` name + `docs`. But if you'd
43 | like to define it explicitly, this is the way to go.
44 |
45 | ```
46 | "name": "my-docs"
47 | ```
48 |
49 | ### Deploying
50 |
51 | After writing all the documentation, run:
52 |
53 | ```
54 | $ now-docs
55 | ```
56 |
--------------------------------------------------------------------------------
/docs/04-themes.md:
--------------------------------------------------------------------------------
1 | ## Themes
2 |
3 | Our themes
4 |
5 | * Apex
6 |
--------------------------------------------------------------------------------
/docs/05-examples.md:
--------------------------------------------------------------------------------
1 | ## Examples
2 |
3 | * [now-docs](https://now-docs.now.sh/)
4 |
--------------------------------------------------------------------------------
/docs/06-links.md:
--------------------------------------------------------------------------------
1 | ## Links
2 |
3 | * [Github](https://github.com/bukinoshita/now-docs)
4 |
--------------------------------------------------------------------------------
/lib/components/footer.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import React from 'react'
4 |
5 | const Footer = () => (
6 |
11 | )
12 |
13 | export default Footer
14 |
--------------------------------------------------------------------------------
/lib/components/header.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import React from 'react'
4 |
5 | const Header = ({ title, description }) => (
6 |
/g, '{`')
31 | html = html.replace(/<\/code><\/pre>/g, '`}
')
32 |
33 | const doc = `
34 | 'use strict'
35 |
36 | import React from 'react'
37 |
38 | export default () => ${html}
39 | `
40 |
41 | await writeFile(
42 | join(process.cwd(), `/.now-docs/components/${newFilename}`),
43 | doc
44 | )
45 | })
46 | }
47 |
--------------------------------------------------------------------------------
/lib/create-layout.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const { join } = require('path')
4 | const { writeFile, mkdir } = require('fs-extra')
5 |
6 | const page = require('./layouts/page')
7 |
8 | module.exports = async () => {
9 | const path = join(process.cwd(), '.now-docs/layouts')
10 |
11 | try {
12 | Promise.all([
13 | await mkdir(path),
14 | await writeFile(`${path}/page.js`, await page())
15 | ])
16 | } catch (err) {}
17 | }
18 |
--------------------------------------------------------------------------------
/lib/create-package.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const readPackage = require('read-package')
4 | const writePkg = require('write-pkg')
5 |
6 | const getCfg = require('./../lib/get-cfg')
7 |
8 | module.exports = async () => {
9 | const pkg = await readPackage()
10 | const nowDocsCfg = await getCfg()
11 | const newPkg = {
12 | name: nowDocsCfg.name || `${pkg.name}-docs`,
13 | version: '0.0.0',
14 | description: pkg.description,
15 | scripts: {
16 | dev: 'next',
17 | start: 'next start',
18 | build: 'next build'
19 | },
20 | dependencies: {
21 | next: '^4.2.0-canary.1',
22 | react: '^16.2.0',
23 | 'react-dom': '^16.2.0'
24 | },
25 | now: {
26 | name: nowDocsCfg.name || `${pkg.name}-docs`,
27 | alias: nowDocsCfg.alias
28 | }
29 | }
30 |
31 | return writePkg('.now-docs', newPkg)
32 | }
33 |
--------------------------------------------------------------------------------
/lib/create-page.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const { join } = require('path')
4 | const { writeFile, mkdir } = require('fs-extra')
5 |
6 | const page = require('./pages/home')
7 |
8 | module.exports = async () => {
9 | const path = join(process.cwd(), '.now-docs/pages')
10 |
11 | try {
12 | Promise.all([
13 | await mkdir(path),
14 | await writeFile(`${path}/index.js`, await page())
15 | ])
16 | } catch (err) {}
17 | }
18 |
--------------------------------------------------------------------------------
/lib/create-styles.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const { join } = require('path')
4 | const { copy, mkdir } = require('fs-extra')
5 |
6 | module.exports = async theme => {
7 | const path = join(process.cwd(), '.now-docs/styles')
8 |
9 | try {
10 | Promise.all([
11 | await mkdir(path),
12 | await copy(
13 | join(process.cwd(), `lib/styles/${theme}.js`),
14 | `${path}/styles.js`
15 | )
16 | ])
17 | } catch (err) {}
18 | }
19 |
--------------------------------------------------------------------------------
/lib/deploy.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const execa = require('execa')
4 |
5 | module.exports = ({ alias = false } = {}) => {
6 | const hasAlias = alias ? '&& now alias' : ''
7 |
8 | return execa
9 | .shell(`cd .now-docs && now ${hasAlias}`)
10 | .then(({ stdout }) => stdout)
11 | .catch(({ stderr }) => stderr)
12 | }
13 |
--------------------------------------------------------------------------------
/lib/get-cfg.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const { join } = require('path')
4 |
5 | const readPackage = require('read-package')
6 | const { exists } = require('fs-extra')
7 | const readJSON = require('load-json-file')
8 |
9 | module.exports = async () => {
10 | const dotNowDocs = await exists(join(process.cwd(), '.now-docs.json'))
11 | const { nowDocs } = await readPackage()
12 |
13 | if (dotNowDocs) {
14 | const nowDocsCfg = await readJSON(join(process.cwd(), '.now-docs.json'))
15 |
16 | return nowDocsCfg
17 | }
18 |
19 | if (nowDocs) {
20 | return nowDocs
21 | }
22 |
23 | return false
24 | }
25 |
--------------------------------------------------------------------------------
/lib/get-docs.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const { join } = require('path')
4 | const { readdir } = require('fs-extra')
5 |
6 | module.exports = async () => {
7 | const files = await readdir(join(process.cwd(), 'docs'))
8 |
9 | return files
10 | }
11 |
--------------------------------------------------------------------------------
/lib/layouts/page.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const getDocs = require('./../get-docs')
4 |
5 | module.exports = async () => {
6 | const files = await getDocs()
7 | const items = files.map(item => item.substring(3).replace('.md', ''))
8 |
9 | return `
10 | 'use strict'
11 |
12 | import React from 'react'
13 | import Head from 'next/head'
14 |
15 | import Header from './../components/header'
16 | import Sidebar from './../components/sidebar'
17 | import Footer from './../components/footer'
18 |
19 | import { name, description } from './../package'
20 |
21 | import styles from './../styles/styles'
22 |
23 | const Page = ({ children }) => {
24 | return (
25 |
26 |
27 |
28 | {name} — {description}
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 | {children}
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 | )
54 | }
55 |
56 | export default Page
57 | `
58 | }
59 |
--------------------------------------------------------------------------------
/lib/pages/home.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const getDocs = require('./../get-docs')
4 |
5 | module.exports = async () => {
6 | const files = await getDocs()
7 | const dependencies = []
8 | const depsName = []
9 |
10 | files.filter(file => {
11 | // eslint-disable-line array-callback-return
12 | const f = file
13 | .substring(3)
14 | .replace('.md', '')
15 | .replace(/-/g, '')
16 |
17 | depsName.push(f.charAt(0).toUpperCase() + f.slice(1))
18 | dependencies.push(
19 | `import ${f.charAt(0).toUpperCase() +
20 | f.slice(1)} from './../components/${file.replace('.md', '')}'`
21 | )
22 | })
23 |
24 | const components = depsName.map(deps => `<${deps} />`)
25 |
26 | return `
27 | 'use strict'
28 |
29 | import React from 'react'
30 |
31 | import Page from './../layouts/page'
32 |
33 | ${dependencies.join('\n')}
34 |
35 | export default () => (${components.join('\n')} )
36 | `
37 | }
38 |
--------------------------------------------------------------------------------
/lib/styles/apex.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | import css from 'styled-jsx/css' // eslint-disable-line import/no-unresolved
4 |
5 | export default css`
6 | // Global
7 | html,
8 | body {
9 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
10 | 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
11 | 'Helvetica Neue', sans-serif;
12 | -webkit-font-smoothing: antialiased;
13 | font-size: 16px;
14 | font-weight: 300;
15 | background: #fff;
16 | color: #212529;
17 | line-height: 1;
18 | margin: 0;
19 | padding: 0;
20 | }
21 |
22 | h1, h2, h3, h4 {
23 | margin-top: 75px;
24 | margin-bottom: 0;
25 | font-size: 1.2rem;
26 | font-weight: 600;
27 | line-height: 1.5rem;
28 | color: color: #212529;
29 | }
30 |
31 | code {
32 | margin-left: 5px;
33 | margin-right: 2px;
34 | }
35 |
36 | .wrapper {
37 | display: flex;
38 | justify-content: center;
39 | }
40 |
41 | .container {
42 | width: 800px;
43 | display: flex;
44 | flex-direction: column;
45 | }
46 |
47 | .content-wrapper {
48 | display: flex;
49 | }
50 |
51 | .content {
52 | width: 75%;
53 | }
54 |
55 | // Header
56 | .header {
57 | display: flex;
58 | justify-content: center;
59 | align-items: center;
60 | height: 400px;
61 | }
62 |
63 | .title {
64 | margin: 5px 0;
65 | line-height: 2.2em;
66 | }
67 |
68 | .title.center {
69 | margin-left: auto;
70 | margin-right: auto;
71 | text-align: center;
72 | max-width: 500px;
73 | }
74 |
75 | .title > span {
76 | display: block;
77 | }
78 |
79 | .text {
80 | letter-spacing: 0.05rem;
81 | text-transform: uppercase;
82 | font-weight: bold;
83 | font-size: 16px;
84 | }
85 |
86 | .subtext {
87 | color: #212529;
88 | font-size: 0.8rem;
89 | text-transform: uppercase;
90 | }
91 |
92 | // Sidebar
93 | .sidebar {
94 | flex: 1 1 auto;
95 | }
96 |
97 | .menu {
98 | position: sticky;
99 | top: 50px;
100 | color: #212529;
101 | }
102 |
103 | .menu-item {
104 | list-style: none;
105 | padding-bottom: 15px;
106 | }
107 |
108 | .menu__link {
109 | position: relative;
110 | user-select: none;
111 | font-weight: 400;
112 | transition: color 200ms;
113 | color: #868e96;
114 | text-decoration: none;
115 | }
116 |
117 | .menu__link:before {
118 | content: '';
119 | position: absolute;
120 | width: 100%;
121 | height: 1px;
122 | bottom: -5px;
123 | left: 0;
124 | background-color: #212529;
125 | visibility: hidden;
126 | transform: scaleX(0);
127 | transform-origin: left center;
128 | transition: all 250ms cubic-bezier(0.82, 0, 0.12, 1);
129 | }
130 |
131 | .menu__link:hover {
132 | color: #212529;
133 | }
134 |
135 | .menu__link:hover:before {
136 | visibility: visible;
137 | transform: scaleX(1);
138 | }
139 |
140 | // Docs
141 | .page {
142 | margin-top: 100px;
143 | padding-top: 50px;
144 | }
145 |
146 | .page:first-child {
147 | margin-top: 0;
148 | padding-top: 0;
149 | }
150 |
151 | .page h2 {
152 | margin-top: 0;
153 | font-size: 1.5rem;
154 | }
155 |
156 | .page h2 a {
157 | position: relative;
158 | margin-left: -14px;
159 | opacity: 0.15;
160 | display: inline-block;
161 | width: 14px;
162 | height: 14px;
163 | border-bottom: none;
164 | }
165 |
166 | .page h2 a:hover {
167 | opacity: 1;
168 | }
169 |
170 | .page h2 svg {
171 | position: absolute;
172 | right: 8px;
173 | top: 3px;
174 | }
175 |
176 | .page h2 + p {
177 | font-size: 1.5rem;
178 | line-height: 1.6;
179 | }
180 |
181 | .page p {
182 | margin: 25px 0;
183 | line-height: 1.6;
184 | color: #212529;
185 | }
186 |
187 | .page a {
188 | color: #212529;
189 | font-weight: 400;
190 | padding-bottom: 3px;
191 | border-bottom: 1px dotted #ddd;
192 | text-decoration: none;
193 | margin-left: 5px;
194 | }
195 |
196 | .page p > code {
197 | border: 1px solid #DEE2E6;
198 | font-size: 0.75rem;
199 | padding: 3px 10px;
200 | border-radius: 3px;
201 | white-space: nowrap;
202 | font-weight: 600;
203 | font-family: inherit;
204 | }
205 |
206 | .page pre {
207 | background: #fafafa;
208 | color: #000;
209 | padding: 30px;
210 | border-radius: 2px;
211 | overflow-x: auto;
212 | font-family: "Source Code Pro", Menlo, monospace;
213 | font-size: .8em;
214 | line-height: 1.5em;
215 | }
216 |
217 | .page ul {
218 | margin: 50px 0 50px 30px;
219 | padding: 0;
220 | }
221 |
222 | .page li {
223 | margin: 5px 0;
224 | color: #212529;
225 | line-height: 1.5em;
226 | }
227 |
228 | .page li a:hover,
229 | .page p a:hover {
230 | color: #33A9FF;
231 | border-bottom: none;
232 | }
233 |
234 | .footer {
235 | text-align: center;
236 | margin-top: 50px;
237 | margin-bottom: 50px;
238 | }
239 |
240 | .footer span {
241 | font-size: 14px;
242 | font-weight: 400;
243 | }
244 |
245 | .footer a {
246 | color: #868E96;
247 | transition: color 200ms;
248 | position: relative;
249 | user-select: none;
250 | font-weight: 400;
251 | text-decoration: none;
252 | }
253 |
254 | .footer a:before {
255 | content: '';
256 | position: absolute;
257 | width: 100%;
258 | height: 1px;
259 | bottom: -5px;
260 | left: 0;
261 | background-color: #212529;
262 | visibility: hidden;
263 | transform: scaleX(0);
264 | transform-origin: left center;
265 | transition: all 250ms cubic-bezier(.82,0,.12,1);
266 | }
267 |
268 | .footer a:hover {
269 | color: #212529;
270 | }
271 |
272 | .footer a:hover:before {
273 | visibility: visible;
274 | transform: scaleX(1);
275 | }
276 | `
277 |
--------------------------------------------------------------------------------
/license:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Bu Kinoshita (https://bukinoshita.io)
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.
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "now-docs",
3 | "version": "0.0.1-0",
4 | "description": "Deploy docs with a single command",
5 | "main": "bin/now-docs.js",
6 | "repository": "bukinoshita/now-docs",
7 | "author": "Bu Kinoshita ",
8 | "license": "MIT",
9 | "files": ["lib", "bin"],
10 | "bin": {
11 | "now-docs": "bin/now-docs.js"
12 | },
13 | "keywords": ["docs", "documentation", "now", "zeit", "deploy", "nextjs"],
14 | "scripts": {
15 | "test": "xo"
16 | },
17 | "dependencies": {
18 | "del": "^3.0.0",
19 | "execa": "^0.8.0",
20 | "fs-extra": "^4.0.2",
21 | "is-extname": "^0.0.1",
22 | "load-json-file": "^4.0.0",
23 | "meow": "^4.0.0",
24 | "ora": "^1.3.0",
25 | "read-package": "^0.0.1",
26 | "shout-error": "^0.0.2",
27 | "shout-success": "^0.0.2",
28 | "showdown": "^1.8.2",
29 | "update-notifier": "^2.3.0",
30 | "write-pkg": "^3.1.0"
31 | },
32 | "devDependencies": {
33 | "eslint-config-prettier": "^2.9.0",
34 | "xo": "^0.18.2"
35 | },
36 | "xo": {
37 | "extend": ["prettier"],
38 | "rules": {
39 | "unicorn/catch-error-name": 0
40 | },
41 | "ignores": [
42 | "lib/components/*.js",
43 | "lib/layouts/*.js",
44 | "lib/pages/*.js",
45 | "lib/styles/*.js"
46 | ]
47 | },
48 | "nowDocs": {
49 | "name": "now-docs",
50 | "alias": "now-docs.now.sh"
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | Deploy docs with a single command using [now](https://github.com/zeit/now-cli).
4 |
5 | [](https://travis-ci.org/bukinoshita/now-docs)
6 | [](https://github.com/sindresorhus/xo)
7 | [](https://github.com/prettier/prettier)
8 |
9 |
10 | ## Install
11 |
12 | ```bash
13 | $ npm install -g now-docs
14 | ```
15 |
16 |
17 | ## Usage
18 |
19 | ```bash
20 | $ now-docs --help
21 |
22 | Usage:
23 | $ docs Deploy `now-docs`
24 |
25 | Options:
26 | -h, --help Show help options
27 | -v, --version Show version
28 | ```
29 |
30 |
31 | ## Related
32 |
33 | * [zeit/now](https://github.com/zeit/now-cli) — Universal serverless
34 | single-command deployment
35 | * [now-domains](https://github.com/bukinoshita/now-domains) — Check
36 | now domains availability and pricing
37 | * [now-domains-status](https://github.com/bukinoshita/now-domains-status)
38 | — Check now domains availability
39 | * [now-domains-price](https://github.com/bukinoshita/now-domains-price)
40 | — Check now domains price
41 | * [netlify-docs](https://github.com/bukinoshita/netlify-docs) — Deploy docs with a single command using Netlify
42 |
43 | ## Comparing `now-docs` with `netlify-docs`
44 |
45 | Check comparison [here](https://latency.apex.sh/?url=https%3A%2F%2Fnow-docs.now.sh%2F&compare=http%3A%2F%2Fnetlify-docs.netlify.com%2F).
46 |
47 |
48 | ## License
49 |
50 | MIT © [Bu Kinoshita](https://bukinoshita.io)
51 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | acorn-jsx@^3.0.0:
6 | version "3.0.1"
7 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
8 | dependencies:
9 | acorn "^3.0.4"
10 |
11 | acorn@^3.0.4:
12 | version "3.3.0"
13 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
14 |
15 | acorn@^5.2.1:
16 | version "5.2.1"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
18 |
19 | ajv-keywords@^1.0.0:
20 | version "1.5.1"
21 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
22 |
23 | ajv@^4.7.0:
24 | version "4.11.8"
25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
26 | dependencies:
27 | co "^4.6.0"
28 | json-stable-stringify "^1.0.1"
29 |
30 | ansi-align@^2.0.0:
31 | version "2.0.0"
32 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
33 | dependencies:
34 | string-width "^2.0.0"
35 |
36 | ansi-escapes@^1.1.0:
37 | version "1.4.0"
38 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
39 |
40 | ansi-escapes@^2.0.0:
41 | version "2.0.0"
42 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b"
43 |
44 | ansi-regex@^2.0.0:
45 | version "2.1.1"
46 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
47 |
48 | ansi-regex@^3.0.0:
49 | version "3.0.0"
50 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
51 |
52 | ansi-styles@^2.2.1:
53 | version "2.2.1"
54 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
55 |
56 | ansi-styles@^3.1.0:
57 | version "3.2.0"
58 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
59 | dependencies:
60 | color-convert "^1.9.0"
61 |
62 | argparse@^1.0.7:
63 | version "1.0.10"
64 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
65 | dependencies:
66 | sprintf-js "~1.0.2"
67 |
68 | array-differ@^1.0.0:
69 | version "1.0.0"
70 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
71 |
72 | array-find-index@^1.0.1:
73 | version "1.0.2"
74 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
75 |
76 | array-union@^1.0.1:
77 | version "1.0.2"
78 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
79 | dependencies:
80 | array-uniq "^1.0.1"
81 |
82 | array-uniq@^1.0.1:
83 | version "1.0.3"
84 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
85 |
86 | arrify@^1.0.0, arrify@^1.0.1:
87 | version "1.0.1"
88 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
89 |
90 | babel-code-frame@^6.16.0:
91 | version "6.26.0"
92 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
93 | dependencies:
94 | chalk "^1.1.3"
95 | esutils "^2.0.2"
96 | js-tokens "^3.0.2"
97 |
98 | balanced-match@^1.0.0:
99 | version "1.0.0"
100 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
101 |
102 | boxen@^1.2.1:
103 | version "1.2.2"
104 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.2.tgz#3f1d4032c30ffea9d4b02c322eaf2ea741dcbce5"
105 | dependencies:
106 | ansi-align "^2.0.0"
107 | camelcase "^4.0.0"
108 | chalk "^2.0.1"
109 | cli-boxes "^1.0.0"
110 | string-width "^2.0.0"
111 | term-size "^1.2.0"
112 | widest-line "^1.0.0"
113 |
114 | brace-expansion@^1.1.7:
115 | version "1.1.8"
116 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
117 | dependencies:
118 | balanced-match "^1.0.0"
119 | concat-map "0.0.1"
120 |
121 | buf-compare@^1.0.0:
122 | version "1.0.1"
123 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a"
124 |
125 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
126 | version "1.1.1"
127 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
128 |
129 | caller-path@^0.1.0:
130 | version "0.1.0"
131 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
132 | dependencies:
133 | callsites "^0.2.0"
134 |
135 | callsites@^0.2.0:
136 | version "0.2.0"
137 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
138 |
139 | camelcase-keys@^2.0.0:
140 | version "2.1.0"
141 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
142 | dependencies:
143 | camelcase "^2.0.0"
144 | map-obj "^1.0.0"
145 |
146 | camelcase-keys@^4.0.0:
147 | version "4.2.0"
148 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
149 | dependencies:
150 | camelcase "^4.1.0"
151 | map-obj "^2.0.0"
152 | quick-lru "^1.0.0"
153 |
154 | camelcase@^2.0.0:
155 | version "2.1.1"
156 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
157 |
158 | camelcase@^4.0.0, camelcase@^4.1.0:
159 | version "4.1.0"
160 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
161 |
162 | capture-stack-trace@^1.0.0:
163 | version "1.0.0"
164 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
165 |
166 | chalk@^1.0.0, chalk@^1.1.1, 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.1, chalk@^2.1.0:
177 | version "2.3.0"
178 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
179 | dependencies:
180 | ansi-styles "^3.1.0"
181 | escape-string-regexp "^1.0.5"
182 | supports-color "^4.0.0"
183 |
184 | circular-json@^0.3.1:
185 | version "0.3.3"
186 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
187 |
188 | cli-boxes@^1.0.0:
189 | version "1.0.0"
190 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
191 |
192 | cli-cursor@^1.0.1:
193 | version "1.0.2"
194 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
195 | dependencies:
196 | restore-cursor "^1.0.1"
197 |
198 | cli-cursor@^2.1.0:
199 | version "2.1.0"
200 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
201 | dependencies:
202 | restore-cursor "^2.0.0"
203 |
204 | cli-spinners@^1.0.0:
205 | version "1.1.0"
206 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06"
207 |
208 | cli-width@^2.0.0:
209 | version "2.2.0"
210 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
211 |
212 | cliui@^3.2.0:
213 | version "3.2.0"
214 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
215 | dependencies:
216 | string-width "^1.0.1"
217 | strip-ansi "^3.0.1"
218 | wrap-ansi "^2.0.0"
219 |
220 | co@^4.6.0:
221 | version "4.6.0"
222 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
223 |
224 | code-point-at@^1.0.0:
225 | version "1.1.0"
226 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
227 |
228 | color-convert@^1.9.0:
229 | version "1.9.1"
230 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
231 | dependencies:
232 | color-name "^1.1.1"
233 |
234 | color-name@^1.1.1:
235 | version "1.1.3"
236 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
237 |
238 | concat-map@0.0.1:
239 | version "0.0.1"
240 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
241 |
242 | concat-stream@^1.5.2:
243 | version "1.6.0"
244 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
245 | dependencies:
246 | inherits "^2.0.3"
247 | readable-stream "^2.2.2"
248 | typedarray "^0.0.6"
249 |
250 | configstore@^3.0.0:
251 | version "3.1.1"
252 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90"
253 | dependencies:
254 | dot-prop "^4.1.0"
255 | graceful-fs "^4.1.2"
256 | make-dir "^1.0.0"
257 | unique-string "^1.0.0"
258 | write-file-atomic "^2.0.0"
259 | xdg-basedir "^3.0.0"
260 |
261 | contains-path@^0.1.0:
262 | version "0.1.0"
263 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
264 |
265 | core-assert@^0.2.0:
266 | version "0.2.1"
267 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f"
268 | dependencies:
269 | buf-compare "^1.0.0"
270 | is-error "^2.2.0"
271 |
272 | core-js@^2.0.0:
273 | version "2.5.1"
274 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
275 |
276 | core-util-is@~1.0.0:
277 | version "1.0.2"
278 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
279 |
280 | create-error-class@^3.0.0:
281 | version "3.0.2"
282 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
283 | dependencies:
284 | capture-stack-trace "^1.0.0"
285 |
286 | cross-spawn@^4.0.0:
287 | version "4.0.2"
288 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
289 | dependencies:
290 | lru-cache "^4.0.1"
291 | which "^1.2.9"
292 |
293 | cross-spawn@^5.0.1:
294 | version "5.1.0"
295 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
296 | dependencies:
297 | lru-cache "^4.0.1"
298 | shebang-command "^1.2.0"
299 | which "^1.2.9"
300 |
301 | crypto-random-string@^1.0.0:
302 | version "1.0.0"
303 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
304 |
305 | currently-unhandled@^0.4.1:
306 | version "0.4.1"
307 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
308 | dependencies:
309 | array-find-index "^1.0.1"
310 |
311 | d@1:
312 | version "1.0.0"
313 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
314 | dependencies:
315 | es5-ext "^0.10.9"
316 |
317 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.8:
318 | version "2.6.9"
319 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
320 | dependencies:
321 | ms "2.0.0"
322 |
323 | decamelize-keys@^1.0.0:
324 | version "1.1.0"
325 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
326 | dependencies:
327 | decamelize "^1.1.0"
328 | map-obj "^1.0.0"
329 |
330 | decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2:
331 | version "1.2.0"
332 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
333 |
334 | deep-assign@^1.0.0:
335 | version "1.0.0"
336 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b"
337 | dependencies:
338 | is-obj "^1.0.0"
339 |
340 | deep-extend@~0.4.0:
341 | version "0.4.2"
342 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
343 |
344 | deep-is@~0.1.3:
345 | version "0.1.3"
346 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
347 |
348 | deep-strict-equal@^0.2.0:
349 | version "0.2.0"
350 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4"
351 | dependencies:
352 | core-assert "^0.2.0"
353 |
354 | del@^2.0.2:
355 | version "2.2.2"
356 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
357 | dependencies:
358 | globby "^5.0.0"
359 | is-path-cwd "^1.0.0"
360 | is-path-in-cwd "^1.0.0"
361 | object-assign "^4.0.1"
362 | pify "^2.0.0"
363 | pinkie-promise "^2.0.0"
364 | rimraf "^2.2.8"
365 |
366 | del@^3.0.0:
367 | version "3.0.0"
368 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
369 | dependencies:
370 | globby "^6.1.0"
371 | is-path-cwd "^1.0.0"
372 | is-path-in-cwd "^1.0.0"
373 | p-map "^1.1.1"
374 | pify "^3.0.0"
375 | rimraf "^2.2.8"
376 |
377 | detect-indent@^5.0.0:
378 | version "5.0.0"
379 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
380 |
381 | doctrine@1.5.0:
382 | version "1.5.0"
383 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
384 | dependencies:
385 | esutils "^2.0.2"
386 | isarray "^1.0.0"
387 |
388 | doctrine@^2.0.0:
389 | version "2.0.2"
390 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.2.tgz#68f96ce8efc56cc42651f1faadb4f175273b0075"
391 | dependencies:
392 | esutils "^2.0.2"
393 |
394 | dot-prop@^4.1.0:
395 | version "4.2.0"
396 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
397 | dependencies:
398 | is-obj "^1.0.0"
399 |
400 | duplexer3@^0.1.4:
401 | version "0.1.4"
402 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
403 |
404 | enhance-visitors@^1.0.0:
405 | version "1.0.0"
406 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a"
407 | dependencies:
408 | lodash "^4.13.1"
409 |
410 | error-ex@^1.2.0, error-ex@^1.3.1:
411 | version "1.3.1"
412 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
413 | dependencies:
414 | is-arrayish "^0.2.1"
415 |
416 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
417 | version "0.10.37"
418 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3"
419 | dependencies:
420 | es6-iterator "~2.0.1"
421 | es6-symbol "~3.1.1"
422 |
423 | es6-iterator@^2.0.1, es6-iterator@~2.0.1:
424 | version "2.0.3"
425 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
426 | dependencies:
427 | d "1"
428 | es5-ext "^0.10.35"
429 | es6-symbol "^3.1.1"
430 |
431 | es6-map@^0.1.3:
432 | version "0.1.5"
433 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
434 | dependencies:
435 | d "1"
436 | es5-ext "~0.10.14"
437 | es6-iterator "~2.0.1"
438 | es6-set "~0.1.5"
439 | es6-symbol "~3.1.1"
440 | event-emitter "~0.3.5"
441 |
442 | es6-set@~0.1.5:
443 | version "0.1.5"
444 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
445 | dependencies:
446 | d "1"
447 | es5-ext "~0.10.14"
448 | es6-iterator "~2.0.1"
449 | es6-symbol "3.1.1"
450 | event-emitter "~0.3.5"
451 |
452 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
453 | version "3.1.1"
454 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
455 | dependencies:
456 | d "1"
457 | es5-ext "~0.10.14"
458 |
459 | es6-weak-map@^2.0.1:
460 | version "2.0.2"
461 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
462 | dependencies:
463 | d "1"
464 | es5-ext "^0.10.14"
465 | es6-iterator "^2.0.1"
466 | es6-symbol "^3.1.1"
467 |
468 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
469 | version "1.0.5"
470 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
471 |
472 | escope@^3.6.0:
473 | version "3.6.0"
474 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
475 | dependencies:
476 | es6-map "^0.1.3"
477 | es6-weak-map "^2.0.1"
478 | esrecurse "^4.1.0"
479 | estraverse "^4.1.1"
480 |
481 | eslint-config-prettier@^2.9.0:
482 | version "2.9.0"
483 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3"
484 | dependencies:
485 | get-stdin "^5.0.1"
486 |
487 | eslint-config-xo@^0.18.0:
488 | version "0.18.2"
489 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.18.2.tgz#0a157120875619929e735ffd6b185c41e8a187af"
490 |
491 | eslint-formatter-pretty@^1.0.0:
492 | version "1.3.0"
493 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.3.0.tgz#985d9e41c1f8475f4a090c5dbd2dfcf2821d607e"
494 | dependencies:
495 | ansi-escapes "^2.0.0"
496 | chalk "^2.1.0"
497 | log-symbols "^2.0.0"
498 | plur "^2.1.2"
499 | string-width "^2.0.0"
500 |
501 | eslint-import-resolver-node@^0.3.1:
502 | version "0.3.1"
503 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc"
504 | dependencies:
505 | debug "^2.6.8"
506 | resolve "^1.2.0"
507 |
508 | eslint-module-utils@^2.1.1:
509 | version "2.1.1"
510 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
511 | dependencies:
512 | debug "^2.6.8"
513 | pkg-dir "^1.0.0"
514 |
515 | eslint-plugin-ava@^4.2.0:
516 | version "4.3.0"
517 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-4.3.0.tgz#5d1520824d96a510bbe4eaf0f12fe35f204a749e"
518 | dependencies:
519 | arrify "^1.0.1"
520 | deep-strict-equal "^0.2.0"
521 | enhance-visitors "^1.0.0"
522 | espree "^3.1.3"
523 | espurify "^1.5.0"
524 | import-modules "^1.1.0"
525 | multimatch "^2.1.0"
526 | pkg-up "^2.0.0"
527 |
528 | eslint-plugin-import@^2.0.0:
529 | version "2.8.0"
530 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894"
531 | dependencies:
532 | builtin-modules "^1.1.1"
533 | contains-path "^0.1.0"
534 | debug "^2.6.8"
535 | doctrine "1.5.0"
536 | eslint-import-resolver-node "^0.3.1"
537 | eslint-module-utils "^2.1.1"
538 | has "^1.0.1"
539 | lodash.cond "^4.3.0"
540 | minimatch "^3.0.3"
541 | read-pkg-up "^2.0.0"
542 |
543 | eslint-plugin-no-use-extend-native@^0.3.2:
544 | version "0.3.12"
545 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea"
546 | dependencies:
547 | is-get-set-prop "^1.0.0"
548 | is-js-type "^2.0.0"
549 | is-obj-prop "^1.0.0"
550 | is-proto-prop "^1.0.0"
551 |
552 | eslint-plugin-promise@^3.4.0:
553 | version "3.6.0"
554 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75"
555 |
556 | eslint-plugin-unicorn@^2.1.0:
557 | version "2.1.2"
558 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-2.1.2.tgz#99dffe9f4773b04bc39356a7febd64dd700274bc"
559 | dependencies:
560 | import-modules "^1.1.0"
561 | lodash.camelcase "^4.1.1"
562 | lodash.kebabcase "^4.0.1"
563 | lodash.snakecase "^4.0.1"
564 | lodash.upperfirst "^4.2.0"
565 |
566 | eslint@^3.18.0:
567 | version "3.19.0"
568 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
569 | dependencies:
570 | babel-code-frame "^6.16.0"
571 | chalk "^1.1.3"
572 | concat-stream "^1.5.2"
573 | debug "^2.1.1"
574 | doctrine "^2.0.0"
575 | escope "^3.6.0"
576 | espree "^3.4.0"
577 | esquery "^1.0.0"
578 | estraverse "^4.2.0"
579 | esutils "^2.0.2"
580 | file-entry-cache "^2.0.0"
581 | glob "^7.0.3"
582 | globals "^9.14.0"
583 | ignore "^3.2.0"
584 | imurmurhash "^0.1.4"
585 | inquirer "^0.12.0"
586 | is-my-json-valid "^2.10.0"
587 | is-resolvable "^1.0.0"
588 | js-yaml "^3.5.1"
589 | json-stable-stringify "^1.0.0"
590 | levn "^0.3.0"
591 | lodash "^4.0.0"
592 | mkdirp "^0.5.0"
593 | natural-compare "^1.4.0"
594 | optionator "^0.8.2"
595 | path-is-inside "^1.0.1"
596 | pluralize "^1.2.1"
597 | progress "^1.1.8"
598 | require-uncached "^1.0.2"
599 | shelljs "^0.7.5"
600 | strip-bom "^3.0.0"
601 | strip-json-comments "~2.0.1"
602 | table "^3.7.8"
603 | text-table "~0.2.0"
604 | user-home "^2.0.0"
605 |
606 | espree@^3.1.3, espree@^3.4.0:
607 | version "3.5.2"
608 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca"
609 | dependencies:
610 | acorn "^5.2.1"
611 | acorn-jsx "^3.0.0"
612 |
613 | esprima@^4.0.0:
614 | version "4.0.1"
615 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
616 |
617 | espurify@^1.5.0:
618 | version "1.7.0"
619 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226"
620 | dependencies:
621 | core-js "^2.0.0"
622 |
623 | esquery@^1.0.0:
624 | version "1.0.0"
625 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
626 | dependencies:
627 | estraverse "^4.0.0"
628 |
629 | esrecurse@^4.1.0:
630 | version "4.2.0"
631 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
632 | dependencies:
633 | estraverse "^4.1.0"
634 | object-assign "^4.0.1"
635 |
636 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
637 | version "4.2.0"
638 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
639 |
640 | esutils@^2.0.2:
641 | version "2.0.2"
642 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
643 |
644 | event-emitter@~0.3.5:
645 | version "0.3.5"
646 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
647 | dependencies:
648 | d "1"
649 | es5-ext "~0.10.14"
650 |
651 | execa@^0.5.0:
652 | version "0.5.1"
653 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36"
654 | dependencies:
655 | cross-spawn "^4.0.0"
656 | get-stream "^2.2.0"
657 | is-stream "^1.1.0"
658 | npm-run-path "^2.0.0"
659 | p-finally "^1.0.0"
660 | signal-exit "^3.0.0"
661 | strip-eof "^1.0.0"
662 |
663 | execa@^0.7.0:
664 | version "0.7.0"
665 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
666 | dependencies:
667 | cross-spawn "^5.0.1"
668 | get-stream "^3.0.0"
669 | is-stream "^1.1.0"
670 | npm-run-path "^2.0.0"
671 | p-finally "^1.0.0"
672 | signal-exit "^3.0.0"
673 | strip-eof "^1.0.0"
674 |
675 | execa@^0.8.0:
676 | version "0.8.0"
677 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
678 | dependencies:
679 | cross-spawn "^5.0.1"
680 | get-stream "^3.0.0"
681 | is-stream "^1.1.0"
682 | npm-run-path "^2.0.0"
683 | p-finally "^1.0.0"
684 | signal-exit "^3.0.0"
685 | strip-eof "^1.0.0"
686 |
687 | exit-hook@^1.0.0:
688 | version "1.1.1"
689 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
690 |
691 | fast-levenshtein@~2.0.4:
692 | version "2.0.6"
693 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
694 |
695 | figures@^1.3.5:
696 | version "1.7.0"
697 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
698 | dependencies:
699 | escape-string-regexp "^1.0.5"
700 | object-assign "^4.1.0"
701 |
702 | file-entry-cache@^2.0.0:
703 | version "2.0.0"
704 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
705 | dependencies:
706 | flat-cache "^1.2.1"
707 | object-assign "^4.0.1"
708 |
709 | find-up@^1.0.0:
710 | version "1.1.2"
711 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
712 | dependencies:
713 | path-exists "^2.0.0"
714 | pinkie-promise "^2.0.0"
715 |
716 | find-up@^2.0.0, find-up@^2.1.0:
717 | version "2.1.0"
718 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
719 | dependencies:
720 | locate-path "^2.0.0"
721 |
722 | flat-cache@^1.2.1:
723 | version "1.3.0"
724 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
725 | dependencies:
726 | circular-json "^0.3.1"
727 | del "^2.0.2"
728 | graceful-fs "^4.1.2"
729 | write "^0.2.1"
730 |
731 | fs-extra@^4.0.2:
732 | version "4.0.2"
733 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b"
734 | dependencies:
735 | graceful-fs "^4.1.2"
736 | jsonfile "^4.0.0"
737 | universalify "^0.1.0"
738 |
739 | fs.realpath@^1.0.0:
740 | version "1.0.0"
741 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
742 |
743 | function-bind@^1.0.2:
744 | version "1.1.1"
745 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
746 |
747 | generate-function@^2.0.0:
748 | version "2.3.1"
749 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
750 | dependencies:
751 | is-property "^1.0.2"
752 |
753 | generate-object-property@^1.1.0:
754 | version "1.2.0"
755 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
756 | dependencies:
757 | is-property "^1.0.0"
758 |
759 | get-caller-file@^1.0.1:
760 | version "1.0.2"
761 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
762 |
763 | get-set-props@^0.1.0:
764 | version "0.1.0"
765 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3"
766 |
767 | get-stdin@^4.0.1:
768 | version "4.0.1"
769 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
770 |
771 | get-stdin@^5.0.0, get-stdin@^5.0.1:
772 | version "5.0.1"
773 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
774 |
775 | get-stream@^2.2.0:
776 | version "2.3.1"
777 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
778 | dependencies:
779 | object-assign "^4.0.1"
780 | pinkie-promise "^2.0.0"
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 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
787 | version "7.1.2"
788 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
789 | dependencies:
790 | fs.realpath "^1.0.0"
791 | inflight "^1.0.4"
792 | inherits "2"
793 | minimatch "^3.0.4"
794 | once "^1.3.0"
795 | path-is-absolute "^1.0.0"
796 |
797 | global-dirs@^0.1.0:
798 | version "0.1.1"
799 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
800 | dependencies:
801 | ini "^1.3.4"
802 |
803 | globals@^9.14.0:
804 | version "9.18.0"
805 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
806 |
807 | globby@^5.0.0:
808 | version "5.0.0"
809 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
810 | dependencies:
811 | array-union "^1.0.1"
812 | arrify "^1.0.0"
813 | glob "^7.0.3"
814 | object-assign "^4.0.1"
815 | pify "^2.0.0"
816 | pinkie-promise "^2.0.0"
817 |
818 | globby@^6.0.0, globby@^6.1.0:
819 | version "6.1.0"
820 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
821 | dependencies:
822 | array-union "^1.0.1"
823 | glob "^7.0.3"
824 | object-assign "^4.0.1"
825 | pify "^2.0.0"
826 | pinkie-promise "^2.0.0"
827 |
828 | got@^6.7.1:
829 | version "6.7.1"
830 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
831 | dependencies:
832 | create-error-class "^3.0.0"
833 | duplexer3 "^0.1.4"
834 | get-stream "^3.0.0"
835 | is-redirect "^1.0.0"
836 | is-retry-allowed "^1.0.0"
837 | is-stream "^1.0.0"
838 | lowercase-keys "^1.0.0"
839 | safe-buffer "^5.0.1"
840 | timed-out "^4.0.0"
841 | unzip-response "^2.0.1"
842 | url-parse-lax "^1.0.0"
843 |
844 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
845 | version "4.1.11"
846 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
847 |
848 | has-ansi@^2.0.0:
849 | version "2.0.0"
850 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
851 | dependencies:
852 | ansi-regex "^2.0.0"
853 |
854 | has-flag@^2.0.0:
855 | version "2.0.0"
856 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
857 |
858 | has-package@^0.0.1:
859 | version "0.0.1"
860 | resolved "https://registry.yarnpkg.com/has-package/-/has-package-0.0.1.tgz#9cbc6f5b656cbf5bb3840a048741de06acbbd021"
861 |
862 | has@^1.0.1:
863 | version "1.0.1"
864 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
865 | dependencies:
866 | function-bind "^1.0.2"
867 |
868 | hosted-git-info@^2.1.4:
869 | version "2.5.0"
870 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
871 |
872 | ignore@^3.2.0, ignore@^3.2.6:
873 | version "3.3.7"
874 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021"
875 |
876 | import-lazy@^2.1.0:
877 | version "2.1.0"
878 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
879 |
880 | import-modules@^1.1.0:
881 | version "1.1.0"
882 | resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc"
883 |
884 | imurmurhash@^0.1.4:
885 | version "0.1.4"
886 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
887 |
888 | indent-string@^2.1.0:
889 | version "2.1.0"
890 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
891 | dependencies:
892 | repeating "^2.0.0"
893 |
894 | indent-string@^3.0.0:
895 | version "3.2.0"
896 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
897 |
898 | inflight@^1.0.4:
899 | version "1.0.6"
900 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
901 | dependencies:
902 | once "^1.3.0"
903 | wrappy "1"
904 |
905 | inherits@2, inherits@^2.0.3, inherits@~2.0.3:
906 | version "2.0.3"
907 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
908 |
909 | ini@^1.3.4, ini@~1.3.0:
910 | version "1.3.5"
911 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
912 |
913 | inquirer@^0.12.0:
914 | version "0.12.0"
915 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
916 | dependencies:
917 | ansi-escapes "^1.1.0"
918 | ansi-regex "^2.0.0"
919 | chalk "^1.0.0"
920 | cli-cursor "^1.0.1"
921 | cli-width "^2.0.0"
922 | figures "^1.3.5"
923 | lodash "^4.3.0"
924 | readline2 "^1.0.1"
925 | run-async "^0.1.0"
926 | rx-lite "^3.1.2"
927 | string-width "^1.0.1"
928 | strip-ansi "^3.0.0"
929 | through "^2.3.6"
930 |
931 | interpret@^1.0.0:
932 | version "1.1.0"
933 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
934 |
935 | invert-kv@^1.0.0:
936 | version "1.0.0"
937 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
938 |
939 | irregular-plurals@^1.0.0:
940 | version "1.4.0"
941 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766"
942 |
943 | is-arrayish@^0.2.1:
944 | version "0.2.1"
945 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
946 |
947 | is-builtin-module@^1.0.0:
948 | version "1.0.0"
949 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
950 | dependencies:
951 | builtin-modules "^1.0.0"
952 |
953 | is-error@^2.2.0:
954 | version "2.2.1"
955 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c"
956 |
957 | is-extname@^0.0.1:
958 | version "0.0.1"
959 | resolved "https://registry.yarnpkg.com/is-extname/-/is-extname-0.0.1.tgz#0fac764a06ce26e6b6804f5f12b4260ebd2b90f8"
960 |
961 | is-finite@^1.0.0:
962 | version "1.0.2"
963 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
964 | dependencies:
965 | number-is-nan "^1.0.0"
966 |
967 | is-fullwidth-code-point@^1.0.0:
968 | version "1.0.0"
969 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
970 | dependencies:
971 | number-is-nan "^1.0.0"
972 |
973 | is-fullwidth-code-point@^2.0.0:
974 | version "2.0.0"
975 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
976 |
977 | is-get-set-prop@^1.0.0:
978 | version "1.0.0"
979 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312"
980 | dependencies:
981 | get-set-props "^0.1.0"
982 | lowercase-keys "^1.0.0"
983 |
984 | is-installed-globally@^0.1.0:
985 | version "0.1.0"
986 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
987 | dependencies:
988 | global-dirs "^0.1.0"
989 | is-path-inside "^1.0.0"
990 |
991 | is-js-type@^2.0.0:
992 | version "2.0.0"
993 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22"
994 | dependencies:
995 | js-types "^1.0.0"
996 |
997 | is-my-ip-valid@^1.0.0:
998 | version "1.0.0"
999 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824"
1000 |
1001 | is-my-json-valid@^2.10.0:
1002 | version "2.20.0"
1003 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz#1345a6fca3e8daefc10d0fa77067f54cedafd59a"
1004 | dependencies:
1005 | generate-function "^2.0.0"
1006 | generate-object-property "^1.1.0"
1007 | is-my-ip-valid "^1.0.0"
1008 | jsonpointer "^4.0.0"
1009 | xtend "^4.0.0"
1010 |
1011 | is-npm@^1.0.0:
1012 | version "1.0.0"
1013 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
1014 |
1015 | is-obj-prop@^1.0.0:
1016 | version "1.0.0"
1017 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e"
1018 | dependencies:
1019 | lowercase-keys "^1.0.0"
1020 | obj-props "^1.0.0"
1021 |
1022 | is-obj@^1.0.0:
1023 | version "1.0.1"
1024 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
1025 |
1026 | is-path-cwd@^1.0.0:
1027 | version "1.0.0"
1028 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1029 |
1030 | is-path-in-cwd@^1.0.0:
1031 | version "1.0.0"
1032 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1033 | dependencies:
1034 | is-path-inside "^1.0.0"
1035 |
1036 | is-path-inside@^1.0.0:
1037 | version "1.0.0"
1038 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1039 | dependencies:
1040 | path-is-inside "^1.0.1"
1041 |
1042 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
1043 | version "1.1.0"
1044 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1045 |
1046 | is-property@^1.0.0, is-property@^1.0.2:
1047 | version "1.0.2"
1048 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1049 |
1050 | is-proto-prop@^1.0.0:
1051 | version "1.0.0"
1052 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.0.tgz#b3951f95c089924fb5d4fcda6542ab3e83e2b220"
1053 | dependencies:
1054 | lowercase-keys "^1.0.0"
1055 | proto-props "^0.2.0"
1056 |
1057 | is-redirect@^1.0.0:
1058 | version "1.0.0"
1059 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
1060 |
1061 | is-resolvable@^1.0.0:
1062 | version "1.0.0"
1063 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1064 | dependencies:
1065 | tryit "^1.0.1"
1066 |
1067 | is-retry-allowed@^1.0.0:
1068 | version "1.1.0"
1069 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
1070 |
1071 | is-stream@^1.0.0, is-stream@^1.1.0:
1072 | version "1.1.0"
1073 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1074 |
1075 | is-utf8@^0.2.0:
1076 | version "0.2.1"
1077 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1078 |
1079 | isarray@^1.0.0, isarray@~1.0.0:
1080 | version "1.0.0"
1081 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1082 |
1083 | isexe@^2.0.0:
1084 | version "2.0.0"
1085 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1086 |
1087 | js-tokens@^3.0.2:
1088 | version "3.0.2"
1089 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1090 |
1091 | js-types@^1.0.0:
1092 | version "1.0.0"
1093 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03"
1094 |
1095 | js-yaml@^3.5.1:
1096 | version "3.13.1"
1097 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
1098 | dependencies:
1099 | argparse "^1.0.7"
1100 | esprima "^4.0.0"
1101 |
1102 | json-parse-better-errors@^1.0.1:
1103 | version "1.0.1"
1104 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a"
1105 |
1106 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1107 | version "1.0.1"
1108 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1109 | dependencies:
1110 | jsonify "~0.0.0"
1111 |
1112 | jsonfile@^4.0.0:
1113 | version "4.0.0"
1114 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
1115 | optionalDependencies:
1116 | graceful-fs "^4.1.6"
1117 |
1118 | jsonify@~0.0.0:
1119 | version "0.0.0"
1120 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1121 |
1122 | jsonpointer@^4.0.0:
1123 | version "4.0.1"
1124 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
1125 |
1126 | latest-version@^3.0.0:
1127 | version "3.1.0"
1128 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
1129 | dependencies:
1130 | package-json "^4.0.0"
1131 |
1132 | lcid@^1.0.0:
1133 | version "1.0.0"
1134 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1135 | dependencies:
1136 | invert-kv "^1.0.0"
1137 |
1138 | levn@^0.3.0, levn@~0.3.0:
1139 | version "0.3.0"
1140 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1141 | dependencies:
1142 | prelude-ls "~1.1.2"
1143 | type-check "~0.3.2"
1144 |
1145 | load-json-file@^1.0.0:
1146 | version "1.1.0"
1147 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1148 | dependencies:
1149 | graceful-fs "^4.1.2"
1150 | parse-json "^2.2.0"
1151 | pify "^2.0.0"
1152 | pinkie-promise "^2.0.0"
1153 | strip-bom "^2.0.0"
1154 |
1155 | load-json-file@^2.0.0:
1156 | version "2.0.0"
1157 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1158 | dependencies:
1159 | graceful-fs "^4.1.2"
1160 | parse-json "^2.2.0"
1161 | pify "^2.0.0"
1162 | strip-bom "^3.0.0"
1163 |
1164 | load-json-file@^4.0.0:
1165 | version "4.0.0"
1166 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
1167 | dependencies:
1168 | graceful-fs "^4.1.2"
1169 | parse-json "^4.0.0"
1170 | pify "^3.0.0"
1171 | strip-bom "^3.0.0"
1172 |
1173 | locate-path@^2.0.0:
1174 | version "2.0.0"
1175 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1176 | dependencies:
1177 | p-locate "^2.0.0"
1178 | path-exists "^3.0.0"
1179 |
1180 | lodash.camelcase@^4.1.1:
1181 | version "4.3.0"
1182 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
1183 |
1184 | lodash.cond@^4.3.0:
1185 | version "4.5.2"
1186 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
1187 |
1188 | lodash.isequal@^4.4.0:
1189 | version "4.5.0"
1190 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
1191 |
1192 | lodash.kebabcase@^4.0.1:
1193 | version "4.1.1"
1194 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36"
1195 |
1196 | lodash.snakecase@^4.0.1:
1197 | version "4.1.1"
1198 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d"
1199 |
1200 | lodash.upperfirst@^4.2.0:
1201 | version "4.3.1"
1202 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce"
1203 |
1204 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.3.0:
1205 | version "4.17.14"
1206 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
1207 |
1208 | log-symbols@^1.0.2:
1209 | version "1.0.2"
1210 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
1211 | dependencies:
1212 | chalk "^1.0.0"
1213 |
1214 | log-symbols@^2.0.0:
1215 | version "2.1.0"
1216 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6"
1217 | dependencies:
1218 | chalk "^2.0.1"
1219 |
1220 | loud-rejection@^1.0.0:
1221 | version "1.6.0"
1222 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1223 | dependencies:
1224 | currently-unhandled "^0.4.1"
1225 | signal-exit "^3.0.0"
1226 |
1227 | lowercase-keys@^1.0.0:
1228 | version "1.0.0"
1229 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
1230 |
1231 | lru-cache@^4.0.1:
1232 | version "4.1.1"
1233 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1234 | dependencies:
1235 | pseudomap "^1.0.2"
1236 | yallist "^2.1.2"
1237 |
1238 | make-dir@^1.0.0:
1239 | version "1.0.0"
1240 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
1241 | dependencies:
1242 | pify "^2.3.0"
1243 |
1244 | map-obj@^1.0.0, map-obj@^1.0.1:
1245 | version "1.0.1"
1246 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1247 |
1248 | map-obj@^2.0.0:
1249 | version "2.0.0"
1250 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
1251 |
1252 | mem@^1.1.0:
1253 | version "1.1.0"
1254 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1255 | dependencies:
1256 | mimic-fn "^1.0.0"
1257 |
1258 | meow@^3.4.2:
1259 | version "3.7.0"
1260 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
1261 | dependencies:
1262 | camelcase-keys "^2.0.0"
1263 | decamelize "^1.1.2"
1264 | loud-rejection "^1.0.0"
1265 | map-obj "^1.0.1"
1266 | minimist "^1.1.3"
1267 | normalize-package-data "^2.3.4"
1268 | object-assign "^4.0.1"
1269 | read-pkg-up "^1.0.1"
1270 | redent "^1.0.0"
1271 | trim-newlines "^1.0.0"
1272 |
1273 | meow@^4.0.0:
1274 | version "4.0.0"
1275 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.0.tgz#fd5855dd008db5b92c552082db1c307cba20b29d"
1276 | dependencies:
1277 | camelcase-keys "^4.0.0"
1278 | decamelize-keys "^1.0.0"
1279 | loud-rejection "^1.0.0"
1280 | minimist "^1.1.3"
1281 | minimist-options "^3.0.1"
1282 | normalize-package-data "^2.3.4"
1283 | read-pkg-up "^3.0.0"
1284 | redent "^2.0.0"
1285 | trim-newlines "^2.0.0"
1286 |
1287 | mimic-fn@^1.0.0:
1288 | version "1.1.0"
1289 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
1290 |
1291 | minimatch@^3.0.0, minimatch@^3.0.3, minimatch@^3.0.4:
1292 | version "3.0.4"
1293 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1294 | dependencies:
1295 | brace-expansion "^1.1.7"
1296 |
1297 | minimist-options@^3.0.1:
1298 | version "3.0.2"
1299 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
1300 | dependencies:
1301 | arrify "^1.0.1"
1302 | is-plain-obj "^1.1.0"
1303 |
1304 | minimist@0.0.8:
1305 | version "0.0.8"
1306 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1307 |
1308 | minimist@^1.1.3, minimist@^1.2.0:
1309 | version "1.2.0"
1310 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1311 |
1312 | mkdirp@^0.5.0, mkdirp@^0.5.1:
1313 | version "0.5.1"
1314 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1315 | dependencies:
1316 | minimist "0.0.8"
1317 |
1318 | ms@2.0.0:
1319 | version "2.0.0"
1320 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1321 |
1322 | multimatch@^2.1.0:
1323 | version "2.1.0"
1324 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
1325 | dependencies:
1326 | array-differ "^1.0.0"
1327 | array-union "^1.0.1"
1328 | arrify "^1.0.0"
1329 | minimatch "^3.0.0"
1330 |
1331 | mute-stream@0.0.5:
1332 | version "0.0.5"
1333 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1334 |
1335 | natural-compare@^1.4.0:
1336 | version "1.4.0"
1337 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1338 |
1339 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
1340 | version "2.4.0"
1341 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1342 | dependencies:
1343 | hosted-git-info "^2.1.4"
1344 | is-builtin-module "^1.0.0"
1345 | semver "2 || 3 || 4 || 5"
1346 | validate-npm-package-license "^3.0.1"
1347 |
1348 | npm-run-path@^2.0.0:
1349 | version "2.0.2"
1350 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1351 | dependencies:
1352 | path-key "^2.0.0"
1353 |
1354 | number-is-nan@^1.0.0:
1355 | version "1.0.1"
1356 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1357 |
1358 | obj-props@^1.0.0:
1359 | version "1.1.0"
1360 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511"
1361 |
1362 | object-assign@^4.0.1, object-assign@^4.1.0:
1363 | version "4.1.1"
1364 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1365 |
1366 | once@^1.3.0:
1367 | version "1.4.0"
1368 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1369 | dependencies:
1370 | wrappy "1"
1371 |
1372 | onetime@^1.0.0:
1373 | version "1.1.0"
1374 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1375 |
1376 | onetime@^2.0.0:
1377 | version "2.0.1"
1378 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
1379 | dependencies:
1380 | mimic-fn "^1.0.0"
1381 |
1382 | optionator@^0.8.2:
1383 | version "0.8.2"
1384 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1385 | dependencies:
1386 | deep-is "~0.1.3"
1387 | fast-levenshtein "~2.0.4"
1388 | levn "~0.3.0"
1389 | prelude-ls "~1.1.2"
1390 | type-check "~0.3.2"
1391 | wordwrap "~1.0.0"
1392 |
1393 | ora@^1.3.0:
1394 | version "1.3.0"
1395 | resolved "https://registry.yarnpkg.com/ora/-/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a"
1396 | dependencies:
1397 | chalk "^1.1.1"
1398 | cli-cursor "^2.1.0"
1399 | cli-spinners "^1.0.0"
1400 | log-symbols "^1.0.2"
1401 |
1402 | os-homedir@^1.0.0:
1403 | version "1.0.2"
1404 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1405 |
1406 | os-locale@^2.0.0:
1407 | version "2.1.0"
1408 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
1409 | dependencies:
1410 | execa "^0.7.0"
1411 | lcid "^1.0.0"
1412 | mem "^1.1.0"
1413 |
1414 | p-finally@^1.0.0:
1415 | version "1.0.0"
1416 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1417 |
1418 | p-limit@^1.1.0:
1419 | version "1.1.0"
1420 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
1421 |
1422 | p-locate@^2.0.0:
1423 | version "2.0.0"
1424 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1425 | dependencies:
1426 | p-limit "^1.1.0"
1427 |
1428 | p-map@^1.1.1:
1429 | version "1.2.0"
1430 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
1431 |
1432 | package-json@^4.0.0:
1433 | version "4.0.1"
1434 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
1435 | dependencies:
1436 | got "^6.7.1"
1437 | registry-auth-token "^3.0.1"
1438 | registry-url "^3.0.3"
1439 | semver "^5.1.0"
1440 |
1441 | parse-json@^2.2.0:
1442 | version "2.2.0"
1443 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1444 | dependencies:
1445 | error-ex "^1.2.0"
1446 |
1447 | parse-json@^4.0.0:
1448 | version "4.0.0"
1449 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
1450 | dependencies:
1451 | error-ex "^1.3.1"
1452 | json-parse-better-errors "^1.0.1"
1453 |
1454 | path-exists@^2.0.0:
1455 | version "2.1.0"
1456 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1457 | dependencies:
1458 | pinkie-promise "^2.0.0"
1459 |
1460 | path-exists@^3.0.0:
1461 | version "3.0.0"
1462 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1463 |
1464 | path-is-absolute@^1.0.0:
1465 | version "1.0.1"
1466 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1467 |
1468 | path-is-inside@^1.0.1:
1469 | version "1.0.2"
1470 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1471 |
1472 | path-key@^2.0.0:
1473 | version "2.0.1"
1474 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1475 |
1476 | path-parse@^1.0.5:
1477 | version "1.0.5"
1478 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
1479 |
1480 | path-type@^1.0.0:
1481 | version "1.1.0"
1482 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
1483 | dependencies:
1484 | graceful-fs "^4.1.2"
1485 | pify "^2.0.0"
1486 | pinkie-promise "^2.0.0"
1487 |
1488 | path-type@^2.0.0:
1489 | version "2.0.0"
1490 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
1491 | dependencies:
1492 | pify "^2.0.0"
1493 |
1494 | path-type@^3.0.0:
1495 | version "3.0.0"
1496 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
1497 | dependencies:
1498 | pify "^3.0.0"
1499 |
1500 | pify@^2.0.0, pify@^2.3.0:
1501 | version "2.3.0"
1502 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1503 |
1504 | pify@^3.0.0:
1505 | version "3.0.0"
1506 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
1507 |
1508 | pinkie-promise@^2.0.0:
1509 | version "2.0.1"
1510 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1511 | dependencies:
1512 | pinkie "^2.0.0"
1513 |
1514 | pinkie@^2.0.0:
1515 | version "2.0.4"
1516 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1517 |
1518 | pkg-conf@^2.0.0:
1519 | version "2.0.0"
1520 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279"
1521 | dependencies:
1522 | find-up "^2.0.0"
1523 | load-json-file "^2.0.0"
1524 |
1525 | pkg-dir@^1.0.0:
1526 | version "1.0.0"
1527 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1528 | dependencies:
1529 | find-up "^1.0.0"
1530 |
1531 | pkg-up@^2.0.0:
1532 | version "2.0.0"
1533 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
1534 | dependencies:
1535 | find-up "^2.1.0"
1536 |
1537 | plur@^2.1.2:
1538 | version "2.1.2"
1539 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a"
1540 | dependencies:
1541 | irregular-plurals "^1.0.0"
1542 |
1543 | pluralize@^1.2.1:
1544 | version "1.2.1"
1545 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1546 |
1547 | prelude-ls@~1.1.2:
1548 | version "1.1.2"
1549 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1550 |
1551 | prepend-http@^1.0.1:
1552 | version "1.0.4"
1553 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
1554 |
1555 | process-nextick-args@~1.0.6:
1556 | version "1.0.7"
1557 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1558 |
1559 | progress@^1.1.8:
1560 | version "1.1.8"
1561 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1562 |
1563 | proto-props@^0.2.0:
1564 | version "0.2.1"
1565 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-0.2.1.tgz#5e01dc2675a0de9abfa76e799dfa334d6f483f4b"
1566 |
1567 | pseudomap@^1.0.2:
1568 | version "1.0.2"
1569 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1570 |
1571 | quick-lru@^1.0.0:
1572 | version "1.1.0"
1573 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
1574 |
1575 | rc@^1.0.1, rc@^1.1.6:
1576 | version "1.2.2"
1577 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"
1578 | dependencies:
1579 | deep-extend "~0.4.0"
1580 | ini "~1.3.0"
1581 | minimist "^1.2.0"
1582 | strip-json-comments "~2.0.1"
1583 |
1584 | read-package@^0.0.1:
1585 | version "0.0.1"
1586 | resolved "https://registry.yarnpkg.com/read-package/-/read-package-0.0.1.tgz#304c5069d008a8a32ff69af511c5399d30f80379"
1587 | dependencies:
1588 | has-package "^0.0.1"
1589 |
1590 | read-pkg-up@^1.0.1:
1591 | version "1.0.1"
1592 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
1593 | dependencies:
1594 | find-up "^1.0.0"
1595 | read-pkg "^1.0.0"
1596 |
1597 | read-pkg-up@^2.0.0:
1598 | version "2.0.0"
1599 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
1600 | dependencies:
1601 | find-up "^2.0.0"
1602 | read-pkg "^2.0.0"
1603 |
1604 | read-pkg-up@^3.0.0:
1605 | version "3.0.0"
1606 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
1607 | dependencies:
1608 | find-up "^2.0.0"
1609 | read-pkg "^3.0.0"
1610 |
1611 | read-pkg@^1.0.0:
1612 | version "1.1.0"
1613 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
1614 | dependencies:
1615 | load-json-file "^1.0.0"
1616 | normalize-package-data "^2.3.2"
1617 | path-type "^1.0.0"
1618 |
1619 | read-pkg@^2.0.0:
1620 | version "2.0.0"
1621 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
1622 | dependencies:
1623 | load-json-file "^2.0.0"
1624 | normalize-package-data "^2.3.2"
1625 | path-type "^2.0.0"
1626 |
1627 | read-pkg@^3.0.0:
1628 | version "3.0.0"
1629 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
1630 | dependencies:
1631 | load-json-file "^4.0.0"
1632 | normalize-package-data "^2.3.2"
1633 | path-type "^3.0.0"
1634 |
1635 | readable-stream@^2.2.2:
1636 | version "2.3.3"
1637 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
1638 | dependencies:
1639 | core-util-is "~1.0.0"
1640 | inherits "~2.0.3"
1641 | isarray "~1.0.0"
1642 | process-nextick-args "~1.0.6"
1643 | safe-buffer "~5.1.1"
1644 | string_decoder "~1.0.3"
1645 | util-deprecate "~1.0.1"
1646 |
1647 | readline2@^1.0.1:
1648 | version "1.0.1"
1649 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1650 | dependencies:
1651 | code-point-at "^1.0.0"
1652 | is-fullwidth-code-point "^1.0.0"
1653 | mute-stream "0.0.5"
1654 |
1655 | rechoir@^0.6.2:
1656 | version "0.6.2"
1657 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1658 | dependencies:
1659 | resolve "^1.1.6"
1660 |
1661 | redent@^1.0.0:
1662 | version "1.0.0"
1663 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
1664 | dependencies:
1665 | indent-string "^2.1.0"
1666 | strip-indent "^1.0.1"
1667 |
1668 | redent@^2.0.0:
1669 | version "2.0.0"
1670 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
1671 | dependencies:
1672 | indent-string "^3.0.0"
1673 | strip-indent "^2.0.0"
1674 |
1675 | registry-auth-token@^3.0.1:
1676 | version "3.3.1"
1677 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006"
1678 | dependencies:
1679 | rc "^1.1.6"
1680 | safe-buffer "^5.0.1"
1681 |
1682 | registry-url@^3.0.3:
1683 | version "3.1.0"
1684 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
1685 | dependencies:
1686 | rc "^1.0.1"
1687 |
1688 | repeating@^2.0.0:
1689 | version "2.0.1"
1690 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
1691 | dependencies:
1692 | is-finite "^1.0.0"
1693 |
1694 | require-directory@^2.1.1:
1695 | version "2.1.1"
1696 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1697 |
1698 | require-main-filename@^1.0.1:
1699 | version "1.0.1"
1700 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
1701 |
1702 | require-uncached@^1.0.2:
1703 | version "1.0.3"
1704 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1705 | dependencies:
1706 | caller-path "^0.1.0"
1707 | resolve-from "^1.0.0"
1708 |
1709 | resolve-cwd@^1.0.0:
1710 | version "1.0.0"
1711 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f"
1712 | dependencies:
1713 | resolve-from "^2.0.0"
1714 |
1715 | resolve-from@^1.0.0:
1716 | version "1.0.1"
1717 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1718 |
1719 | resolve-from@^2.0.0:
1720 | version "2.0.0"
1721 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
1722 |
1723 | resolve@^1.1.6, resolve@^1.2.0:
1724 | version "1.5.0"
1725 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
1726 | dependencies:
1727 | path-parse "^1.0.5"
1728 |
1729 | restore-cursor@^1.0.1:
1730 | version "1.0.1"
1731 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
1732 | dependencies:
1733 | exit-hook "^1.0.0"
1734 | onetime "^1.0.0"
1735 |
1736 | restore-cursor@^2.0.0:
1737 | version "2.0.0"
1738 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
1739 | dependencies:
1740 | onetime "^2.0.0"
1741 | signal-exit "^3.0.2"
1742 |
1743 | rimraf@^2.2.8:
1744 | version "2.6.2"
1745 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1746 | dependencies:
1747 | glob "^7.0.5"
1748 |
1749 | run-async@^0.1.0:
1750 | version "0.1.0"
1751 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
1752 | dependencies:
1753 | once "^1.3.0"
1754 |
1755 | rx-lite@^3.1.2:
1756 | version "3.1.2"
1757 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
1758 |
1759 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1760 | version "5.1.1"
1761 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
1762 |
1763 | semver-diff@^2.0.0:
1764 | version "2.1.0"
1765 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
1766 | dependencies:
1767 | semver "^5.0.3"
1768 |
1769 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0:
1770 | version "5.4.1"
1771 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
1772 |
1773 | set-blocking@^2.0.0:
1774 | version "2.0.0"
1775 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1776 |
1777 | shebang-command@^1.2.0:
1778 | version "1.2.0"
1779 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1780 | dependencies:
1781 | shebang-regex "^1.0.0"
1782 |
1783 | shebang-regex@^1.0.0:
1784 | version "1.0.0"
1785 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1786 |
1787 | shelljs@^0.7.5:
1788 | version "0.7.8"
1789 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
1790 | dependencies:
1791 | glob "^7.0.0"
1792 | interpret "^1.0.0"
1793 | rechoir "^0.6.2"
1794 |
1795 | shout-error@^0.0.2:
1796 | version "0.0.2"
1797 | resolved "https://registry.yarnpkg.com/shout-error/-/shout-error-0.0.2.tgz#d43a43b789ba5b2ef298b362c1110fd70dd9b6b2"
1798 | dependencies:
1799 | chalk "^1.1.3"
1800 |
1801 | shout-success@^0.0.2:
1802 | version "0.0.2"
1803 | resolved "https://registry.yarnpkg.com/shout-success/-/shout-success-0.0.2.tgz#ebf4ab528975066eddc60ca9fa13855e70e2aaa8"
1804 | dependencies:
1805 | chalk "^1.1.3"
1806 |
1807 | showdown@^1.8.2:
1808 | version "1.8.2"
1809 | resolved "https://registry.yarnpkg.com/showdown/-/showdown-1.8.2.tgz#788ced4a57d76ed436cbc404464148c4cd674d89"
1810 | dependencies:
1811 | yargs "^10.0.3"
1812 |
1813 | signal-exit@^3.0.0, signal-exit@^3.0.2:
1814 | version "3.0.2"
1815 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1816 |
1817 | slash@^1.0.0:
1818 | version "1.0.0"
1819 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
1820 |
1821 | slice-ansi@0.0.4:
1822 | version "0.0.4"
1823 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
1824 |
1825 | sort-keys@^1.1.2:
1826 | version "1.1.2"
1827 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
1828 | dependencies:
1829 | is-plain-obj "^1.0.0"
1830 |
1831 | sort-keys@^2.0.0:
1832 | version "2.0.0"
1833 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
1834 | dependencies:
1835 | is-plain-obj "^1.0.0"
1836 |
1837 | spdx-correct@~1.0.0:
1838 | version "1.0.2"
1839 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
1840 | dependencies:
1841 | spdx-license-ids "^1.0.2"
1842 |
1843 | spdx-expression-parse@~1.0.0:
1844 | version "1.0.4"
1845 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
1846 |
1847 | spdx-license-ids@^1.0.2:
1848 | version "1.2.2"
1849 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
1850 |
1851 | sprintf-js@~1.0.2:
1852 | version "1.0.3"
1853 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1854 |
1855 | string-width@^1.0.1:
1856 | version "1.0.2"
1857 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1858 | dependencies:
1859 | code-point-at "^1.0.0"
1860 | is-fullwidth-code-point "^1.0.0"
1861 | strip-ansi "^3.0.0"
1862 |
1863 | string-width@^2.0.0:
1864 | version "2.1.1"
1865 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1866 | dependencies:
1867 | is-fullwidth-code-point "^2.0.0"
1868 | strip-ansi "^4.0.0"
1869 |
1870 | string_decoder@~1.0.3:
1871 | version "1.0.3"
1872 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
1873 | dependencies:
1874 | safe-buffer "~5.1.0"
1875 |
1876 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1877 | version "3.0.1"
1878 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1879 | dependencies:
1880 | ansi-regex "^2.0.0"
1881 |
1882 | strip-ansi@^4.0.0:
1883 | version "4.0.0"
1884 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1885 | dependencies:
1886 | ansi-regex "^3.0.0"
1887 |
1888 | strip-bom@^2.0.0:
1889 | version "2.0.0"
1890 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
1891 | dependencies:
1892 | is-utf8 "^0.2.0"
1893 |
1894 | strip-bom@^3.0.0:
1895 | version "3.0.0"
1896 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1897 |
1898 | strip-eof@^1.0.0:
1899 | version "1.0.0"
1900 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1901 |
1902 | strip-indent@^1.0.1:
1903 | version "1.0.1"
1904 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
1905 | dependencies:
1906 | get-stdin "^4.0.1"
1907 |
1908 | strip-indent@^2.0.0:
1909 | version "2.0.0"
1910 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
1911 |
1912 | strip-json-comments@~2.0.1:
1913 | version "2.0.1"
1914 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1915 |
1916 | supports-color@^2.0.0:
1917 | version "2.0.0"
1918 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1919 |
1920 | supports-color@^4.0.0:
1921 | version "4.5.0"
1922 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
1923 | dependencies:
1924 | has-flag "^2.0.0"
1925 |
1926 | table@^3.7.8:
1927 | version "3.8.3"
1928 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
1929 | dependencies:
1930 | ajv "^4.7.0"
1931 | ajv-keywords "^1.0.0"
1932 | chalk "^1.1.1"
1933 | lodash "^4.0.0"
1934 | slice-ansi "0.0.4"
1935 | string-width "^2.0.0"
1936 |
1937 | term-size@^1.2.0:
1938 | version "1.2.0"
1939 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
1940 | dependencies:
1941 | execa "^0.7.0"
1942 |
1943 | text-table@~0.2.0:
1944 | version "0.2.0"
1945 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1946 |
1947 | the-argv@^1.0.0:
1948 | version "1.0.0"
1949 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522"
1950 |
1951 | through@^2.3.6:
1952 | version "2.3.8"
1953 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1954 |
1955 | timed-out@^4.0.0:
1956 | version "4.0.1"
1957 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
1958 |
1959 | trim-newlines@^1.0.0:
1960 | version "1.0.0"
1961 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
1962 |
1963 | trim-newlines@^2.0.0:
1964 | version "2.0.0"
1965 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
1966 |
1967 | tryit@^1.0.1:
1968 | version "1.0.3"
1969 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
1970 |
1971 | type-check@~0.3.2:
1972 | version "0.3.2"
1973 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1974 | dependencies:
1975 | prelude-ls "~1.1.2"
1976 |
1977 | typedarray@^0.0.6:
1978 | version "0.0.6"
1979 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1980 |
1981 | unique-string@^1.0.0:
1982 | version "1.0.0"
1983 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
1984 | dependencies:
1985 | crypto-random-string "^1.0.0"
1986 |
1987 | universalify@^0.1.0:
1988 | version "0.1.1"
1989 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
1990 |
1991 | unzip-response@^2.0.1:
1992 | version "2.0.1"
1993 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
1994 |
1995 | update-notifier@^2.1.0, update-notifier@^2.3.0:
1996 | version "2.3.0"
1997 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451"
1998 | dependencies:
1999 | boxen "^1.2.1"
2000 | chalk "^2.0.1"
2001 | configstore "^3.0.0"
2002 | import-lazy "^2.1.0"
2003 | is-installed-globally "^0.1.0"
2004 | is-npm "^1.0.0"
2005 | latest-version "^3.0.0"
2006 | semver-diff "^2.0.0"
2007 | xdg-basedir "^3.0.0"
2008 |
2009 | url-parse-lax@^1.0.0:
2010 | version "1.0.0"
2011 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
2012 | dependencies:
2013 | prepend-http "^1.0.1"
2014 |
2015 | user-home@^2.0.0:
2016 | version "2.0.0"
2017 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
2018 | dependencies:
2019 | os-homedir "^1.0.0"
2020 |
2021 | util-deprecate@~1.0.1:
2022 | version "1.0.2"
2023 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2024 |
2025 | validate-npm-package-license@^3.0.1:
2026 | version "3.0.1"
2027 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2028 | dependencies:
2029 | spdx-correct "~1.0.0"
2030 | spdx-expression-parse "~1.0.0"
2031 |
2032 | which-module@^2.0.0:
2033 | version "2.0.0"
2034 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
2035 |
2036 | which@^1.2.9:
2037 | version "1.3.0"
2038 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
2039 | dependencies:
2040 | isexe "^2.0.0"
2041 |
2042 | widest-line@^1.0.0:
2043 | version "1.0.0"
2044 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"
2045 | dependencies:
2046 | string-width "^1.0.1"
2047 |
2048 | wordwrap@~1.0.0:
2049 | version "1.0.0"
2050 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
2051 |
2052 | wrap-ansi@^2.0.0:
2053 | version "2.1.0"
2054 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2055 | dependencies:
2056 | string-width "^1.0.1"
2057 | strip-ansi "^3.0.1"
2058 |
2059 | wrappy@1:
2060 | version "1.0.2"
2061 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2062 |
2063 | write-file-atomic@^2.0.0:
2064 | version "2.3.0"
2065 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
2066 | dependencies:
2067 | graceful-fs "^4.1.11"
2068 | imurmurhash "^0.1.4"
2069 | signal-exit "^3.0.2"
2070 |
2071 | write-json-file@^2.0.0, write-json-file@^2.2.0:
2072 | version "2.3.0"
2073 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f"
2074 | dependencies:
2075 | detect-indent "^5.0.0"
2076 | graceful-fs "^4.1.2"
2077 | make-dir "^1.0.0"
2078 | pify "^3.0.0"
2079 | sort-keys "^2.0.0"
2080 | write-file-atomic "^2.0.0"
2081 |
2082 | write-pkg@^2.0.0:
2083 | version "2.1.0"
2084 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08"
2085 | dependencies:
2086 | sort-keys "^1.1.2"
2087 | write-json-file "^2.0.0"
2088 |
2089 | write-pkg@^3.1.0:
2090 | version "3.1.0"
2091 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9"
2092 | dependencies:
2093 | sort-keys "^2.0.0"
2094 | write-json-file "^2.2.0"
2095 |
2096 | write@^0.2.1:
2097 | version "0.2.1"
2098 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
2099 | dependencies:
2100 | mkdirp "^0.5.1"
2101 |
2102 | xdg-basedir@^3.0.0:
2103 | version "3.0.0"
2104 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
2105 |
2106 | xo-init@^0.5.0:
2107 | version "0.5.0"
2108 | resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.5.0.tgz#8e28dec79676cc5e042fde5fd8f710e2646b0e36"
2109 | dependencies:
2110 | arrify "^1.0.0"
2111 | execa "^0.5.0"
2112 | minimist "^1.1.3"
2113 | path-exists "^3.0.0"
2114 | read-pkg-up "^2.0.0"
2115 | the-argv "^1.0.0"
2116 | write-pkg "^2.0.0"
2117 |
2118 | xo@^0.18.2:
2119 | version "0.18.2"
2120 | resolved "https://registry.yarnpkg.com/xo/-/xo-0.18.2.tgz#92a42eb02a4fb149dfea5518021914f5aac84ff0"
2121 | dependencies:
2122 | arrify "^1.0.0"
2123 | debug "^2.2.0"
2124 | deep-assign "^1.0.0"
2125 | eslint "^3.18.0"
2126 | eslint-config-xo "^0.18.0"
2127 | eslint-formatter-pretty "^1.0.0"
2128 | eslint-plugin-ava "^4.2.0"
2129 | eslint-plugin-import "^2.0.0"
2130 | eslint-plugin-no-use-extend-native "^0.3.2"
2131 | eslint-plugin-promise "^3.4.0"
2132 | eslint-plugin-unicorn "^2.1.0"
2133 | get-stdin "^5.0.0"
2134 | globby "^6.0.0"
2135 | has-flag "^2.0.0"
2136 | ignore "^3.2.6"
2137 | lodash.isequal "^4.4.0"
2138 | meow "^3.4.2"
2139 | multimatch "^2.1.0"
2140 | path-exists "^3.0.0"
2141 | pkg-conf "^2.0.0"
2142 | resolve-cwd "^1.0.0"
2143 | resolve-from "^2.0.0"
2144 | slash "^1.0.0"
2145 | update-notifier "^2.1.0"
2146 | xo-init "^0.5.0"
2147 |
2148 | xtend@^4.0.0:
2149 | version "4.0.1"
2150 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2151 |
2152 | y18n@^3.2.1:
2153 | version "3.2.1"
2154 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2155 |
2156 | yallist@^2.1.2:
2157 | version "2.1.2"
2158 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2159 |
2160 | yargs-parser@^8.0.0:
2161 | version "8.0.0"
2162 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.0.0.tgz#21d476330e5a82279a4b881345bf066102e219c6"
2163 | dependencies:
2164 | camelcase "^4.1.0"
2165 |
2166 | yargs@^10.0.3:
2167 | version "10.0.3"
2168 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae"
2169 | dependencies:
2170 | cliui "^3.2.0"
2171 | decamelize "^1.1.1"
2172 | find-up "^2.1.0"
2173 | get-caller-file "^1.0.1"
2174 | os-locale "^2.0.0"
2175 | require-directory "^2.1.1"
2176 | require-main-filename "^1.0.1"
2177 | set-blocking "^2.0.0"
2178 | string-width "^2.0.0"
2179 | which-module "^2.0.0"
2180 | y18n "^3.2.1"
2181 | yargs-parser "^8.0.0"
2182 |
--------------------------------------------------------------------------------