├── .gitignore ├── screenshot.png ├── src ├── __tests__ │ ├── __snapshots__ │ │ ├── bin.js.snap │ │ └── bin.js.md │ ├── bin.ts │ └── index.ts ├── types.graphql └── index.ts ├── examples ├── source.graphql └── hackernews.graphql ├── changelog.md ├── tsconfig.json ├── package.json ├── bin.js ├── readme.md ├── doc └── schema.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachenmayer/graphql-scraper/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/bin.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachenmayer/graphql-scraper/HEAD/src/__tests__/__snapshots__/bin.js.snap -------------------------------------------------------------------------------- /examples/source.graphql: -------------------------------------------------------------------------------- 1 | { 2 | page(source: "

you can pass in HTML!

") { 3 | text(selector: "p") 4 | } 5 | } -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.2.1 4 | 5 | - `graphql` was incorrectly listed as a dev dependency. 6 | 7 | ## 1.2.0 8 | 9 | - Fixed CLI. 10 | 11 | ## 1.1.0 12 | 13 | - Added `childNodes` field 14 | - Added TypeScript declaration file 15 | 16 | ## 1.0.0 17 | 18 | Initial release -------------------------------------------------------------------------------- /examples/hackernews.graphql: -------------------------------------------------------------------------------- 1 | { 2 | page(url: "http://news.ycombinator.com") { 3 | items: queryAll(selector: "tr.athing") { 4 | rank: text(selector: "td span.rank") 5 | title: text(selector: "td.title a") 6 | sitebit: text(selector: "span.comhead a") 7 | url: attr(selector: "td.title a", name: "href") 8 | attrs: next { 9 | score: text(selector: "span.score") 10 | user: text(selector: "a:first-of-type") 11 | comments: text(selector: "a:nth-of-type(3)") 12 | } 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "declaration": true, 5 | "module": "commonjs", 6 | "moduleResolution": "node", 7 | "noImplicitAny": true, 8 | "noUnusedLocals": true, 9 | "outDir": "./build", 10 | "preserveConstEnums": true, 11 | "removeComments": false, 12 | "sourceMap": true, 13 | "strictNullChecks": true, 14 | "suppressImplicitAnyIndexErrors": true, 15 | "target": "es2015" 16 | }, 17 | "include": ["src/**/*"], 18 | "exclude": ["node_modules"] 19 | } 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-scraper", 3 | "version": "1.2.1", 4 | "description": "Extract structured data from the web using GraphQL.", 5 | "author": "harry lachenmayer ", 6 | "license": "MIT", 7 | "main": "build/index.js", 8 | "bin": "bin.js", 9 | "scripts": { 10 | "build": "tsc", 11 | "dev": "tsc -w", 12 | "test": "tsc; ava build/__tests__/", 13 | "generate-docs": "graphql-markdown ./build/index.js > doc/schema.md" 14 | }, 15 | "dependencies": { 16 | "chalk": "^2.3.0", 17 | "execa": "^0.9.0", 18 | "get-stdin": "^5.0.1", 19 | "graphql": "^0.12.3", 20 | "isomorphic-fetch": "^2.2.1", 21 | "jsdom": "^11.5.1", 22 | "minimist": "^1.2.0" 23 | }, 24 | "devDependencies": { 25 | "@types/graphql": "^0.12.0", 26 | "@types/jsdom": "^11.0.4", 27 | "ava": "^0.24.0", 28 | "graphql-markdown": "^3.2.0", 29 | "typescript": "^2.6.2" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/__tests__/bin.ts: -------------------------------------------------------------------------------- 1 | import test from 'ava' 2 | import { createServer } from 'http' 3 | const execa = require('execa') 4 | 5 | test('it runs a query from stdin', async t => { 6 | const server = createServer((req, res) => 7 | res.end(` 8 | 9 | 10 | some test site 11 | 12 | 13 |
looking good
14 | 15 | 16 | `) 17 | ) 18 | server.listen(13338) 19 | 20 | const query = ` 21 | { 22 | page(url: "http://localhost:13338") { 23 | title: text(selector: "title") 24 | main: text(selector: "main") 25 | } 26 | } 27 | ` 28 | 29 | const output = await execa.stdout('./bin.js', ['--json'], { input: query }) 30 | t.snapshot(output) 31 | 32 | server.close() 33 | }) 34 | 35 | test('it runs a query from a file', async t => { 36 | const output = await execa.stdout('./bin.js', [ 37 | 'examples/source.graphql', 38 | '--json', 39 | ]) 40 | t.snapshot(output) 41 | }) 42 | 43 | test('it formats output nicely', async t => { 44 | const output = await execa.stdout('./bin.js', ['examples/source.graphql']) 45 | t.snapshot(output) 46 | }) 47 | 48 | test('it formats errors nicely', async t => { 49 | const output = await execa.stdout('./bin.js', { input: 'garbage' }) 50 | t.snapshot(output) 51 | }) 52 | -------------------------------------------------------------------------------- /src/types.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | page(url: String, html: String): Document 3 | } 4 | 5 | # A DOM Node 6 | interface Node { 7 | # The HTML representation of the subnodes 8 | content(selector: String): String 9 | # The HTML representation of the selected DOM node 10 | html(selector: String): String 11 | # The text content of the selected DOM node 12 | text(selector: String): String 13 | # The tag name of the selected DOM node 14 | tag(selector: String): String 15 | # The attribute with the given name of the selected DOM node 16 | attr(selector: String, name: String!): String 17 | # Returns true if the DOM matches the selector 18 | has(selector: String!): Boolean 19 | 20 | query(selector: String!): [Element] 21 | children: [Element] 22 | parent: Element 23 | siblings: [Element] 24 | # The immediately following sibling 25 | next(selector: String): Element 26 | # All following siblings 27 | nextAll(selector: String): [Element] 28 | # The immediately previous sibling 29 | previous(selector: String): Element 30 | # All previous siblings 31 | previousAll(selector: String): [Element] 32 | } 33 | 34 | type Document implements Node { 35 | title: String 36 | } 37 | 38 | type Element implements Node { 39 | # If the element is a link, visit the page linked to in the href attribute. 40 | visit: Document 41 | } -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/bin.js.md: -------------------------------------------------------------------------------- 1 | # Snapshot report for `build/__tests__/bin.js` 2 | 3 | The actual snapshot is saved in `bin.js.snap`. 4 | 5 | Generated by [AVA](https://ava.li). 6 | 7 | ## it formats errors nicely 8 | 9 | > Snapshot 1 10 | 11 | `Errors:␊ 12 | { GraphQLError: Syntax Error: Unexpected Name "garbage"␊ 13 | at syntaxError (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/error/syntaxError.js:24:10)␊ 14 | at unexpected (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/language/parser.js:1312:33)␊ 15 | at parseDefinition (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/language/parser.js:152:9)␊ 16 | at parseDocument (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/language/parser.js:110:22)␊ 17 | at parse (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/language/parser.js:38:10)␊ 18 | at graphqlImpl (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/graphql.js:100:34)␊ 19 | at /Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/graphql.js:66:223␊ 20 | at new Promise ()␊ 21 | at graphql (/Users/harry/Documents/Projects/graphql-scraper/node_modules/graphql/graphql.js:63:10)␊ 22 | at main (/Users/harry/Documents/Projects/graphql-scraper/bin.js:78:24)␊ 23 | message: 'Syntax Error: Unexpected Name "garbage"',␊ 24 | locations: [ { line: 1, column: 1 } ],␊ 25 | path: undefined }␊ 26 | Your query has errors, see above.` 27 | 28 | ## it formats output nicely 29 | 30 | > Snapshot 1 31 | 32 | `Data:␊ 33 | { page: { text: 'you can pass in HTML!' } }` 34 | 35 | ## it runs a query from a file 36 | 37 | > Snapshot 1 38 | 39 | '{"data":{"page":{"text":"you can pass in HTML!"}}}' 40 | 41 | ## it runs a query from stdin 42 | 43 | > Snapshot 1 44 | 45 | '{"data":{"page":{"title":"some test site","main":"looking good"}}}' 46 | -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const argv = require('minimist')(process.argv.slice(2)) 3 | 4 | const colors = require('chalk') 5 | const fs = require('fs') 6 | const getStdin = require('get-stdin') 7 | const GraphQL = require('graphql') 8 | const { graphql } = GraphQL 9 | const util = require('util') 10 | 11 | const schema = require('./build') 12 | 13 | const package = require('./package.json') 14 | const usage = `graphql-scraper v${package.version} 15 | 16 | Usage: graphql-scraper [query-file] [--json] [--=value] 17 | 18 | Reads a GraphQL query from query-file, and prints the result. 19 | 20 | If query-file is not given, reads a query from stdin. 21 | 22 | Options: 23 | \t--json\tSerialize the result as parseable JSON. 24 | 25 | Example: 26 | > graphql-scraper query.graphql --json --url="https://news.ycombinator.com/" --page=2 27 | ` 28 | 29 | function die() { 30 | console.log(usage) 31 | process.exit(1) 32 | } 33 | 34 | const formatters = { 35 | json: function(result) { 36 | console.log(JSON.stringify(result)) 37 | }, 38 | pretty: function(result) { 39 | if (result.data) { 40 | console.log(colors.green('Data:')) 41 | printObject(result.data) 42 | } 43 | if (Array.isArray(result.errors)) { 44 | console.log(colors.red('Errors:')) 45 | result.errors.forEach(error => { 46 | printObject(error) 47 | }) 48 | console.log(colors.red('Your query has errors, see above.')) 49 | } 50 | function printObject(obj) { 51 | console.log(util.inspect(obj, { depth: null, colors: true })) 52 | } 53 | }, 54 | } 55 | 56 | async function main() { 57 | if (argv.help) { 58 | console.log(usage) 59 | return 60 | } 61 | 62 | const formatter = argv.json ? 'json' : 'pretty' 63 | delete argv.json 64 | 65 | let query 66 | if (argv._.length === 0) { 67 | query = await getStdin() 68 | if (query === '') { 69 | die() 70 | } 71 | } else if (argv._.length === 1) { 72 | query = fs.readFileSync(argv._[0], { encoding: 'utf8' }) 73 | } else { 74 | die() 75 | } 76 | delete argv._ 77 | 78 | const result = await graphql(schema, query, {}, {}, argv) 79 | formatters[formatter](result) 80 | } 81 | main() 82 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # graphql-scraper 2 | 3 | ![](screenshot.png) 4 | 5 | [GraphQL](http://graphql.org/) lets us query all sorts of graph-shaped data - so why not use it to query the world's most useful graph, **the web**? 6 | 7 | `graphql-scraper` is a command-line tool and reusable GraphQL schema which lets you easily extract data from HTML. 8 | 9 | [**Check out a live demo here.**](https://graphqlbin.com/W6nkfX) You can easily spin up your own by using [`graphql-scraper-server`](https://github.com/lachenmayer/graphql-scraper-server). 10 | 11 | ## The command-line tool 12 | 13 | ``` 14 | npx graphql-scraper 15 | ``` 16 | 17 | or 18 | 19 | ``` 20 | npm install -g graphql-scraper 21 | graphql-scraper 22 | ``` 23 | 24 | Reads a GraphQL query from the path `query-file`, and prints the result. 25 | 26 | If `query-file` is not given, reads the query from stdin. 27 | 28 | ### Command-line options 29 | 30 | - `--json` Returns the result in JSON format, for use in other tools. 31 | - `--help` Prints a help string. 32 | 33 | ### Variables 34 | 35 | Any other named options you pass to the CLI will be used as a [query variable](http://graphql.org/learn/queries/#variables). 36 | 37 | For example, if you want to reuse the same query on several pages, you could write the following query file (`query.graphql`): 38 | 39 | ```graphql 40 | query ExampleQueryWithVariable($page: String) { 41 | page(url: $page) { 42 | items: queryAll(selector: "tr.athing") { 43 | rank: text(selector: "td span.rank") 44 | title: text(selector: "td.title a") 45 | sitebit: text(selector: "span.comhead a") 46 | url: attr(selector: "td.title a", name: "href") 47 | attrs: next { 48 | score: text(selector: "span.score") 49 | user: text(selector: "a:first-of-type") 50 | comments: text(selector: "a:nth-of-type(3)") 51 | } 52 | } 53 | } 54 | } 55 | ``` 56 | 57 | ...and execute the query like this: 58 | 59 | ```bash 60 | graphql-scraper query.graphql --page="https://news.ycombinator.com/" 61 | ``` 62 | 63 | ## The schema 64 | 65 | You can check out an [auto-generated schema description here](doc/schema.md), but I recommend trying out the [graphql-scraper-server](https://github.com/lachenmayer/graphql-scraper-server) example and exploring the types interactively. You can also play around with the schema in the [live demo](https://graphqlbin.com/W6nkfX). 66 | 67 | ## Re-using the schema in your own projects 68 | 69 | The npm package exports the GraphQL schema which is used by the command-line tool. This an instance of graphql-js [`GraphQLSchema`](http://graphql.org/graphql-js/type/#graphqlschema), which you can use anywhere that expects a schema, for example [`apollo-server`](https://www.apollographql.com/docs/apollo-server/) or [`graphql-yoga`](https://github.com/graphcool/graphql-yoga). 70 | 71 | Use `npm install graphql-scraper` or `yarn add graphql-scraper` to add the schema to your project. 72 | 73 | ### Basic example with `graphql` 74 | 75 | ```js 76 | import { graphql } from 'graphql' 77 | import schema from 'graphql-scraper' 78 | // You can also import it as follows: 79 | // const schema = require('graphql-scraper') 80 | 81 | 82 | const query = ` 83 | { 84 | page(url: "http://news.ycombinator.com") { 85 | items: queryAll(selector: "tr.athing") { 86 | rank: text(selector: "td span.rank") 87 | title: text(selector: "td.title a") 88 | sitebit: text(selector: "span.comhead a") 89 | url: attr(selector: "td.title a", name: "href") 90 | attrs: next { 91 | score: text(selector: "span.score") 92 | user: text(selector: "a:first-of-type") 93 | comments: text(selector: "a:nth-of-type(3)") 94 | } 95 | } 96 | } 97 | } 98 | ` 99 | 100 | graphql(schema, query).then(response => { 101 | console.log(response) 102 | }) 103 | ``` 104 | 105 | ## Background 106 | 107 | This project was inspired by [`gdom`](https://github.com/syrusakbary/gdom), which is written in Python and uses the [Graphene](http://graphene-python.org/) GraphQL library. 108 | 109 | If you want to switch over from `gdom`, please note some schema changes: 110 | 111 | - `query(selector: String!)` now only returns a single `Element`, rather than a list (like `document.querySelector`). Added a new `queryAll(selector: String!): [Element]` field, which behaves like `document.querySelectorAll`. 112 | - `is(selector: String!)` is renamed to `has(selector: String!)`. 113 | - `children`, `parent`, `siblings`, `next` etc. no longer have a `selector` argument. If you need to select children with a specific selector, use [child selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Child_selectors) (`.foo > .bar`). 114 | - `parents` is removed. 115 | - `prev[All]` is renamed to `previous[All]`. 116 | 117 | ## Maintainers 118 | 119 | [@lachenmayer](https://github.com/lachenmayer) 120 | 121 | ## Contribute 122 | 123 | PRs accepted. 124 | 125 | ## License 126 | 127 | MIT © 2018 harry lachenmayer 128 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLSchema, 3 | GraphQLString, 4 | GraphQLBoolean, 5 | GraphQLObjectType, 6 | GraphQLNonNull, 7 | GraphQLInterfaceType, 8 | GraphQLList, 9 | GraphQLFieldConfigMap, 10 | GraphQLObjectTypeConfig, 11 | GraphQLInterfaceTypeConfig, 12 | } from 'graphql' 13 | import { JSDOM } from 'jsdom' 14 | import { resolve } from 'url' 15 | 16 | function sharedFields(): GraphQLFieldConfigMap { 17 | const selector = { 18 | type: GraphQLString, 19 | description: 20 | 'A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors).', 21 | } 22 | return { 23 | content: { 24 | type: GraphQLString, 25 | description: 'The HTML content of the subnodes', 26 | args: { selector }, 27 | resolve(element, { selector }) { 28 | element = selector ? element.querySelector(selector) : element 29 | return element && element.innerHTML 30 | }, 31 | }, 32 | html: { 33 | type: GraphQLString, 34 | description: 'The HTML content of the selected DOM node', 35 | args: { selector }, 36 | resolve(element, { selector }) { 37 | element = selector ? element.querySelector(selector) : element 38 | return element && element.outerHTML 39 | }, 40 | }, 41 | text: { 42 | type: GraphQLString, 43 | description: 'The text content of the selected DOM node', 44 | args: { selector }, 45 | resolve(element, { selector }) { 46 | element = selector ? element.querySelector(selector) : element 47 | return element && element.textContent 48 | }, 49 | }, 50 | tag: { 51 | type: GraphQLString, 52 | description: 'The tag name of the selected DOM node', 53 | args: { selector }, 54 | resolve(element, { selector }) { 55 | element = selector ? element.querySelector(selector) : element 56 | return element && element.tagName 57 | }, 58 | }, 59 | attr: { 60 | type: GraphQLString, 61 | description: 62 | 'An attribute of the selected node (eg. `href`, `src`, etc.).', 63 | args: { 64 | selector, 65 | name: { 66 | type: new GraphQLNonNull(GraphQLString), 67 | description: 'The name of the attribute', 68 | }, 69 | }, 70 | resolve(element, { selector, name }) { 71 | element = selector ? element.querySelector(selector) : element 72 | if (element == null) return null 73 | const attribute = element.attributes[name] 74 | if (attribute == null) return null 75 | return attribute.value 76 | }, 77 | }, 78 | has: { 79 | type: GraphQLBoolean, 80 | description: 'Returns true if an element with the given selector exists.', 81 | args: { selector }, 82 | resolve(element, { selector }) { 83 | return !!element.querySelector(selector) 84 | }, 85 | }, 86 | query: { 87 | type: ElementType, 88 | description: 89 | 'Equivalent to [Element.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector). The selectors of any nested queries will be scoped to the resulting element.', 90 | args: { selector }, 91 | resolve(element, { selector }) { 92 | return element.querySelector(selector) 93 | }, 94 | }, 95 | queryAll: { 96 | type: new GraphQLList(ElementType), 97 | description: 98 | 'Equivalent to [Element.querySelectorAll](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll). The selectors of any nested queries will be scoped to the resulting elements.', 99 | args: { selector }, 100 | resolve(element, { selector }) { 101 | return Array.from(element.querySelectorAll(selector)) 102 | }, 103 | }, 104 | children: { 105 | type: new GraphQLList(ElementType), 106 | description: "An element's child elements.", 107 | resolve(element) { 108 | return Array.from(element.children) 109 | }, 110 | }, 111 | childNodes: { 112 | type: new GraphQLList(ElementType), 113 | description: "An element's child nodes. Includes text nodes.", 114 | resolve(element) { 115 | return Array.from(element.childNodes) 116 | } 117 | }, 118 | parent: { 119 | type: ElementType, 120 | description: "An element's parent element.", 121 | resolve(element) { 122 | return element.parentElement 123 | }, 124 | }, 125 | siblings: { 126 | type: new GraphQLList(ElementType), 127 | description: 128 | "All elements which are at the same level in the tree as the current element, ie. the children of the current element's parent. Includes the current element.", 129 | resolve(element) { 130 | const parent = element.parentElement 131 | if (parent == null) return [element] 132 | return Array.from(parent.children) 133 | }, 134 | }, 135 | next: { 136 | type: ElementType, 137 | description: 138 | "The current element's next sibling. Includes text nodes. Equivalent to [Node.nextSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling).", 139 | resolve(element) { 140 | return element.nextSibling 141 | }, 142 | }, 143 | nextAll: { 144 | type: new GraphQLList(ElementType), 145 | description: "All of the current element's next siblings", 146 | resolve(element, { selector }) { 147 | const siblings = [] 148 | for ( 149 | let next = element.nextSibling; 150 | next != null; 151 | next = next.nextSibling 152 | ) { 153 | siblings.push(next) 154 | } 155 | return siblings 156 | }, 157 | }, 158 | previous: { 159 | type: ElementType, 160 | description: 161 | "The current element's previous sibling. Includes text nodes. Equivalent to [Node.previousSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling).", 162 | resolve(element) { 163 | return element.previousSibling 164 | }, 165 | }, 166 | previousAll: { 167 | type: new GraphQLList(ElementType), 168 | description: "All of the current element's previous siblings", 169 | resolve(element, { selector }) { 170 | const siblings = [] 171 | for ( 172 | let previous = element.previousSibling; 173 | previous != null; 174 | previous = previous.previousSibling 175 | ) { 176 | siblings.push(previous) 177 | } 178 | siblings.reverse() 179 | return siblings 180 | }, 181 | }, 182 | } 183 | } 184 | 185 | const NodeType = new GraphQLInterfaceType(>{ 189 | name: 'Node', 190 | description: 'A DOM node (either an Element or a Document).', 191 | fields: sharedFields, 192 | }) 193 | 194 | const DocumentType = new GraphQLObjectType(>{ 198 | name: 'Document', 199 | description: 'A DOM document.', 200 | interfaces: [NodeType], 201 | fields: () => ({ 202 | ...sharedFields(), 203 | title: { 204 | type: GraphQLString, 205 | description: 'The page title', 206 | resolve(element) { 207 | return element.ownerDocument.title 208 | }, 209 | }, 210 | }), 211 | }) 212 | 213 | const ElementType = new GraphQLObjectType(>{ 217 | name: 'Element', 218 | description: 'A DOM element.', 219 | interfaces: [NodeType], 220 | fields: () => ({ 221 | ...sharedFields(), 222 | visit: { 223 | type: DocumentType, 224 | description: 225 | 'If the element is a link, visit the page linked to in the href attribute.', 226 | async resolve(element) { 227 | const href = element.attributes['href'] 228 | if (href == null) { 229 | return null 230 | } 231 | const url = resolve(element.ownerDocument.location.href, href.value) // handle relative links. 232 | const dom = await JSDOM.fromURL(url) 233 | return dom.window.document.documentElement 234 | }, 235 | }, 236 | }), 237 | }) 238 | 239 | const schema = new GraphQLSchema({ 240 | query: new GraphQLObjectType(>{ 241 | name: 'Query', 242 | fields: () => ({ 243 | page: { 244 | type: DocumentType, 245 | args: { 246 | url: { 247 | type: GraphQLString, 248 | description: 'A URL to fetch the HTML source from.', 249 | }, 250 | source: { 251 | type: GraphQLString, 252 | description: 253 | 'A string containing HTML to be used as the source document.', 254 | }, 255 | }, 256 | async resolve(_, { url, source }) { 257 | if (url == null && source == null) { 258 | throw new Error( 259 | 'You need to provide either a URL or a HTML source string.' 260 | ) 261 | } 262 | const dom = url != null ? await JSDOM.fromURL(url) : new JSDOM(source) 263 | return dom.window.document.documentElement 264 | }, 265 | }, 266 | }), 267 | }), 268 | }) 269 | 270 | // Make this importable with ES6 271 | schema['default'] = schema 272 | export = schema 273 | -------------------------------------------------------------------------------- /src/__tests__/index.ts: -------------------------------------------------------------------------------- 1 | import test from 'ava' 2 | import * as GraphQL from 'graphql' 3 | const { graphql } = GraphQL 4 | import { createServer } from 'http' 5 | 6 | import schema from '../' 7 | const requiredSchema = require('../') 8 | 9 | test('es6 & commonjs imports work', t => { 10 | t.is(schema, requiredSchema) 11 | }) 12 | 13 | test('no args throws errors', async t => { 14 | const query = `{ page { title } }` 15 | const response = await graphql(schema, query) 16 | t.is( 17 | response && response.errors && response.errors[0].message, 18 | 'You need to provide either a URL or a HTML source string.' 19 | ) 20 | }) 21 | 22 | test('title', async t => { 23 | const html = `some title` 24 | const query = `{ page(source: "${html}") { title } }` 25 | const response = await graphql(schema, query) 26 | t.false('errors' in response) 27 | t.is(response.data && response.data.page.title, 'some title') 28 | }) 29 | 30 | test('from url', async t => { 31 | const server = createServer((req, res) => { 32 | res.end(`some title`) 33 | }) 34 | server.listen(13337) 35 | const query = `{ page(url: "http://localhost:13337/") { title } }` 36 | const response = await graphql(schema, query) 37 | t.false('errors' in response) 38 | t.is(response.data && response.data.page.title, 'some title') 39 | server.close() 40 | }) 41 | 42 | test('content', async t => { 43 | const html = `some titlesome body` 44 | const query = `{ page(source: "${html}") { content } }` 45 | const response = await graphql(schema, query) 46 | t.false('errors' in response) 47 | t.is( 48 | response.data && response.data.page.content, 49 | 'some titlesome body' 50 | ) 51 | }) 52 | 53 | test('content with selector', async t => { 54 | const html = `some title
bad
` 55 | const query = `{ 56 | page(source: "${html}") { 57 | content(selector: ".selectme") 58 | } 59 | }` 60 | const response = await graphql(schema, query) 61 | t.false('errors' in response) 62 | t.is(response.data && response.data.page.content, 'bad') 63 | }) 64 | 65 | test('not existing selector', async t => { 66 | const html = `some title
bad
` 67 | const query = `{ 68 | page(source: "${html}") { 69 | content(selector: ".selectmenot") 70 | } 71 | }` 72 | const response = await graphql(schema, query) 73 | t.false('errors' in response) 74 | t.is(response.data && response.data.page.content, null) 75 | }) 76 | 77 | test('html', async t => { 78 | const html = `some titlesome body` 79 | const query = `{ page(source: "${html}") { html } }` 80 | const response = await graphql(schema, query) 81 | t.false('errors' in response) 82 | t.is(response.data && response.data.page.html, html) 83 | }) 84 | 85 | test('html with selector', async t => { 86 | const html = `some title
bad
` 87 | const query = `{ 88 | page(source: "${html}") { 89 | html(selector: ".selectme") 90 | } 91 | }` 92 | const response = await graphql(schema, query) 93 | t.false('errors' in response) 94 | t.is( 95 | response.data && response.data.page.html, 96 | '
bad
' 97 | ) 98 | }) 99 | 100 | test('text', async t => { 101 | const html = `some title
bad
` 102 | const query = `{ 103 | page(source: "${html}") { 104 | text 105 | } 106 | }` 107 | const response = await graphql(schema, query) 108 | t.false('errors' in response) 109 | t.is(response.data && response.data.page.text, 'some titlebad') 110 | }) 111 | 112 | test('text with selector', async t => { 113 | const html = `some title
bad
` 114 | const query = `{ 115 | page(source: "${html}") { 116 | text(selector: ".selectme") 117 | } 118 | }` 119 | const response = await graphql(schema, query) 120 | t.false('errors' in response) 121 | t.is(response.data && response.data.page.text, 'bad') 122 | }) 123 | 124 | test('tag', async t => { 125 | const html = `some title
bad
` 126 | const query = `{ 127 | page(source: "${html}") { 128 | tag 129 | } 130 | }` 131 | const response = await graphql(schema, query) 132 | t.false('errors' in response) 133 | t.is(response.data && response.data.page.tag, 'HTML') 134 | }) 135 | 136 | test('tag with selector', async t => { 137 | const html = `some title
bad
` 138 | const query = `{ 139 | page(source: "${html}") { 140 | tag(selector: ".selectme") 141 | } 142 | }` 143 | const response = await graphql(schema, query) 144 | t.false('errors' in response) 145 | t.is(response.data && response.data.page.tag, 'DIV') 146 | }) 147 | 148 | test('attr', async t => { 149 | const html = `some title
bad
` 150 | const query = `{ 151 | page(source: "${html}") { 152 | attr(name: "style") 153 | } 154 | }` 155 | const response = await graphql(schema, query) 156 | t.false('errors' in response) 157 | t.is(response.data && response.data.page.attr, 'background: red;') 158 | }) 159 | 160 | test('wacky attr', async t => { 161 | const html = `some title
bad
` 162 | const query = `{ 163 | page(source: "${html}") { 164 | attr(name: "asdf") 165 | } 166 | }` 167 | const response = await graphql(schema, query) 168 | t.false('errors' in response) 169 | t.is(response.data && response.data.page.attr, null) 170 | }) 171 | 172 | test('attr with selector', async t => { 173 | const html = `some title
bad
` 174 | const query = `{ 175 | page(source: "${html}") { 176 | attr(selector: ".selectme", name: "class") 177 | } 178 | }` 179 | const response = await graphql(schema, query) 180 | t.false('errors' in response) 181 | t.is(response.data && response.data.page.attr, 'selectme') 182 | }) 183 | 184 | test('has', async t => { 185 | const html = `some title
one
two
` 186 | const query = `{ 187 | page(source: "${html}") { 188 | firstDiv: query(selector: "div") { 189 | isStrong: has(selector: "strong") 190 | } 191 | } 192 | }` 193 | const response = await graphql(schema, query) 194 | t.false('errors' in response) 195 | t.true(response.data && response.data.page.firstDiv.isStrong) 196 | }) 197 | 198 | test('has not', async t => { 199 | const html = `some title
one
two
` 200 | const query = `{ 201 | page(source: "${html}") { 202 | firstDiv: query(selector: "div") { 203 | isWeak: has(selector: "weak") 204 | } 205 | } 206 | }` 207 | const response = await graphql(schema, query) 208 | t.false('errors' in response) 209 | t.true(response.data && !response.data.page.firstDiv.isWeak) 210 | }) 211 | 212 | test('query', async t => { 213 | const html = `some title
one
two
` 214 | const query = `{ 215 | page(source: "${html}") { 216 | firstDiv: query(selector: "div") { 217 | text 218 | } 219 | } 220 | }` 221 | const response = await graphql(schema, query) 222 | t.false('errors' in response) 223 | t.deepEqual(response.data && response.data.page.firstDiv, { text: 'one' }) 224 | }) 225 | 226 | test('queryAll', async t => { 227 | const html = `some title
one
two
` 228 | const query = `{ 229 | page(source: "${html}") { 230 | divs: queryAll(selector: "div") { 231 | text 232 | } 233 | } 234 | }` 235 | const response = await graphql(schema, query) 236 | t.false('errors' in response) 237 | t.deepEqual(response.data && response.data.page.divs, [ 238 | { text: 'one' }, 239 | { text: 'two' }, 240 | ]) 241 | }) 242 | 243 | test('children', async t => { 244 | const html = `some title
onetwo
twothree
` 245 | const query = `{ 246 | page(source: "${html}") { 247 | kids: queryAll(selector: "div") { 248 | children { 249 | text 250 | } 251 | } 252 | } 253 | }` 254 | const response = await graphql(schema, query) 255 | t.false('errors' in response) 256 | t.deepEqual(response.data && response.data.page.kids, [ 257 | { 258 | children: [{ text: 'one' }, { text: 'two' }], 259 | }, 260 | { 261 | children: [{ text: 'two' }, { text: 'three' }], 262 | }, 263 | ]) 264 | }) 265 | 266 | test('childNodes', async t => { 267 | const html = `some title
onetwo
twoamazingthree
` 268 | const query = `{ 269 | page(source: "${html}") { 270 | kids: queryAll(selector: "div") { 271 | childNodes { 272 | text 273 | } 274 | } 275 | } 276 | }` 277 | const response = await graphql(schema, query) 278 | t.false('errors' in response) 279 | t.deepEqual(response.data && response.data.page.kids, [ 280 | { 281 | childNodes: [{ text: 'one' }, { text: 'two' }], 282 | }, 283 | { 284 | childNodes: [{ text: 'two' }, {text: 'amazing'}, { text: 'three' }], 285 | }, 286 | ]) 287 | }) 288 | 289 | test('parent', async t => { 290 | const html = `some title
bad
` 291 | const query = `{ 292 | page(source: "${html}") { 293 | query(selector: "strong") { 294 | parent { 295 | attr(name: "class") 296 | } 297 | } 298 | } 299 | }` 300 | const response = await graphql(schema, query) 301 | t.false('errors' in response) 302 | t.is(response.data && response.data.page.query.parent.attr, 'selectme') 303 | }) 304 | 305 | test('siblings', async t => { 306 | const html = `some title
bad

boom

bap
` 307 | const query = `{ 308 | page(source: "${html}") { 309 | query(selector: "strong") { 310 | siblings { 311 | text 312 | } 313 | } 314 | } 315 | }` 316 | const response = await graphql(schema, query) 317 | t.false('errors' in response) 318 | t.deepEqual(response.data && response.data.page.query.siblings, [ 319 | { text: 'bad' }, 320 | { text: 'boom' }, 321 | { text: 'bap' }, 322 | ]) 323 | }) 324 | 325 | test('siblings of root is only html', async t => { 326 | const html = `nothing to see here` 327 | const query = `{ 328 | page(source: "${html}") { 329 | siblings { 330 | tag 331 | } 332 | } 333 | }` 334 | const response = await graphql(schema, query) 335 | t.false('errors' in response) 336 | t.deepEqual(response.data && response.data.page.siblings, [{ tag: 'HTML' }]) 337 | }) 338 | 339 | test('next', async t => { 340 | const html = `some title
bad

boom

bap
` 341 | const query = `{ 342 | page(source: "${html}") { 343 | query(selector: "strong") { 344 | next { 345 | text 346 | } 347 | } 348 | } 349 | }` 350 | const response = await graphql(schema, query) 351 | t.false('errors' in response) 352 | t.is(response.data && response.data.page.query.next.text, 'boom') 353 | }) 354 | 355 | test('next - bare text', async t => { 356 | const html = `some title
badbare textbap
` 357 | const query = `{ 358 | page(source: "${html}") { 359 | query(selector: "strong") { 360 | next { 361 | tag 362 | text 363 | } 364 | } 365 | } 366 | }` 367 | const response = await graphql(schema, query) 368 | t.false('errors' in response) 369 | t.is(response.data && response.data.page.query.next.tag, null) 370 | t.is(response.data && response.data.page.query.next.text, 'bare text') 371 | }) 372 | 373 | test('nextAll', async t => { 374 | const html = `some title
badbare textbap
` 375 | const query = `{ 376 | page(source: "${html}") { 377 | query(selector: "strong") { 378 | nextAll { 379 | tag 380 | text 381 | } 382 | } 383 | } 384 | }` 385 | const response = await graphql(schema, query) 386 | t.false('errors' in response) 387 | t.deepEqual(response.data && response.data.page.query.nextAll, [ 388 | { tag: null, text: 'bare text' }, 389 | { tag: 'SPAN', text: 'bap' }, 390 | ]) 391 | }) 392 | 393 | test('previous', async t => { 394 | const html = `some title
bad

boom

bap
` 395 | const query = `{ 396 | page(source: "${html}") { 397 | query(selector: "span") { 398 | previous { 399 | text 400 | } 401 | } 402 | } 403 | }` 404 | const response = await graphql(schema, query) 405 | t.false('errors' in response) 406 | t.is(response.data && response.data.page.query.previous.text, 'boom') 407 | }) 408 | 409 | test('previousAll', async t => { 410 | const html = `some title
badbare textbap
` 411 | const query = `{ 412 | page(source: "${html}") { 413 | query(selector: "span") { 414 | previousAll { 415 | tag 416 | text 417 | } 418 | } 419 | } 420 | }` 421 | const response = await graphql(schema, query) 422 | t.false('errors' in response) 423 | t.deepEqual(response.data && response.data.page.query.previousAll, [ 424 | { tag: 'STRONG', text: 'bad' }, 425 | { tag: null, text: 'bare text' }, 426 | ]) 427 | }) 428 | 429 | test('visit', async t => { 430 | const server = createServer((req, res) => { 431 | if (req.url === '/link') { 432 | res.end( 433 | `we managed to visit the link!` 434 | ) 435 | } else { 436 | res.end(`come on in`) 437 | } 438 | }) 439 | server.listen(13339) 440 | 441 | const query = `{ 442 | page(url: "http://localhost:13339/") { 443 | link: query(selector: "a") { 444 | visit { 445 | text(selector: "strong") 446 | } 447 | } 448 | } 449 | }` 450 | const response = await graphql(schema, query) 451 | t.false('errors' in response) 452 | t.is( 453 | response.data && response.data.page.link.visit.text, 454 | 'we managed to visit the link!' 455 | ) 456 | server.close() 457 | }) 458 | -------------------------------------------------------------------------------- /doc/schema.md: -------------------------------------------------------------------------------- 1 | # Schema Types 2 | 3 |
4 | Table of Contents 5 | 6 | * [Query](#query) 7 | * [Objects](#objects) 8 | * [Document](#document) 9 | * [Element](#element) 10 | * [Scalars](#scalars) 11 | * [Boolean](#boolean) 12 | * [String](#string) 13 | * [Interfaces](#interfaces) 14 | * [Node](#node) 15 | 16 |
17 | 18 | ## Query 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 42 | 43 | 44 | 45 | 46 | 51 | 52 | 53 |
FieldArgumentTypeDescription
pageDocument
urlString 38 | 39 | A URL to fetch the HTML source from. 40 | 41 |
sourceString 47 | 48 | A string containing HTML to be used as the source document. 49 | 50 |
54 | 55 | ## Objects 56 | 57 | ### Document 58 | 59 | A DOM document. 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 79 | 80 | 81 | 82 | 83 | 88 | 89 | 90 | 91 | 92 | 97 | 98 | 99 | 100 | 101 | 106 | 107 | 108 | 109 | 110 | 115 | 116 | 117 | 118 | 119 | 124 | 125 | 126 | 127 | 128 | 133 | 134 | 135 | 136 | 137 | 142 | 143 | 144 | 145 | 146 | 151 | 152 | 153 | 154 | 155 | 160 | 161 | 162 | 163 | 164 | 169 | 170 | 171 | 172 | 173 | 178 | 179 | 180 | 181 | 182 | 187 | 188 | 189 | 190 | 191 | 196 | 197 | 198 | 199 | 200 | 205 | 206 | 207 | 208 | 209 | 214 | 215 | 216 | 217 | 218 | 223 | 224 | 225 | 226 | 227 | 232 | 233 | 234 | 235 | 236 | 241 | 242 | 243 | 244 | 245 | 250 | 251 | 252 | 253 | 254 | 259 | 260 | 261 | 262 | 263 | 268 | 269 | 270 | 271 | 272 | 277 | 278 | 279 | 280 | 281 | 286 | 287 | 288 | 289 | 290 | 295 | 296 | 297 |
FieldArgumentTypeDescription
contentString 75 | 76 | The HTML content of the subnodes 77 | 78 |
selectorString 84 | 85 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 86 | 87 |
htmlString 93 | 94 | The HTML content of the selected DOM node 95 | 96 |
selectorString 102 | 103 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 104 | 105 |
textString 111 | 112 | The text content of the selected DOM node 113 | 114 |
selectorString 120 | 121 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 122 | 123 |
tagString 129 | 130 | The tag name of the selected DOM node 131 | 132 |
selectorString 138 | 139 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 140 | 141 |
attrString 147 | 148 | An attribute of the selected node (eg. `href`, `src`, etc.). 149 | 150 |
selectorString 156 | 157 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 158 | 159 |
nameString! 165 | 166 | The name of the attribute 167 | 168 |
hasBoolean 174 | 175 | Returns true if an element with the given selector exists. 176 | 177 |
selectorString 183 | 184 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 185 | 186 |
queryElement 192 | 193 | Equivalent to [Element.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector). The selectors of any nested queries will be scoped to the resulting element. 194 | 195 |
selectorString 201 | 202 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 203 | 204 |
queryAll[Element] 210 | 211 | Equivalent to [Element.querySelectorAll](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll). The selectors of any nested queries will be scoped to the resulting elements. 212 | 213 |
selectorString 219 | 220 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 221 | 222 |
children[Element] 228 | 229 | An element's child elements. 230 | 231 |
parentElement 237 | 238 | An element's parent element. 239 | 240 |
siblings[Element] 246 | 247 | All elements which are at the same level in the tree as the current element, ie. the children of the current element's parent. Includes the current element. 248 | 249 |
nextElement 255 | 256 | The current element's next sibling. Includes text nodes. Equivalent to [Node.nextSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 257 | 258 |
nextAll[Element] 264 | 265 | All of the current element's next siblings 266 | 267 |
previousElement 273 | 274 | The current element's previous sibling. Includes text nodes. Equivalent to [Node.previousSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 275 | 276 |
previousAll[Element] 282 | 283 | All of the current element's previous siblings 284 | 285 |
titleString 291 | 292 | The page title 293 | 294 |
298 | 299 | ### Element 300 | 301 | A DOM element. 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 321 | 322 | 323 | 324 | 325 | 330 | 331 | 332 | 333 | 334 | 339 | 340 | 341 | 342 | 343 | 348 | 349 | 350 | 351 | 352 | 357 | 358 | 359 | 360 | 361 | 366 | 367 | 368 | 369 | 370 | 375 | 376 | 377 | 378 | 379 | 384 | 385 | 386 | 387 | 388 | 393 | 394 | 395 | 396 | 397 | 402 | 403 | 404 | 405 | 406 | 411 | 412 | 413 | 414 | 415 | 420 | 421 | 422 | 423 | 424 | 429 | 430 | 431 | 432 | 433 | 438 | 439 | 440 | 441 | 442 | 447 | 448 | 449 | 450 | 451 | 456 | 457 | 458 | 459 | 460 | 465 | 466 | 467 | 468 | 469 | 474 | 475 | 476 | 477 | 478 | 483 | 484 | 485 | 486 | 487 | 492 | 493 | 494 | 495 | 496 | 501 | 502 | 503 | 504 | 505 | 510 | 511 | 512 | 513 | 514 | 519 | 520 | 521 | 522 | 523 | 528 | 529 | 530 | 531 | 532 | 537 | 538 | 539 |
FieldArgumentTypeDescription
contentString 317 | 318 | The HTML content of the subnodes 319 | 320 |
selectorString 326 | 327 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 328 | 329 |
htmlString 335 | 336 | The HTML content of the selected DOM node 337 | 338 |
selectorString 344 | 345 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 346 | 347 |
textString 353 | 354 | The text content of the selected DOM node 355 | 356 |
selectorString 362 | 363 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 364 | 365 |
tagString 371 | 372 | The tag name of the selected DOM node 373 | 374 |
selectorString 380 | 381 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 382 | 383 |
attrString 389 | 390 | An attribute of the selected node (eg. `href`, `src`, etc.). 391 | 392 |
selectorString 398 | 399 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 400 | 401 |
nameString! 407 | 408 | The name of the attribute 409 | 410 |
hasBoolean 416 | 417 | Returns true if an element with the given selector exists. 418 | 419 |
selectorString 425 | 426 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 427 | 428 |
queryElement 434 | 435 | Equivalent to [Element.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector). The selectors of any nested queries will be scoped to the resulting element. 436 | 437 |
selectorString 443 | 444 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 445 | 446 |
queryAll[Element] 452 | 453 | Equivalent to [Element.querySelectorAll](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll). The selectors of any nested queries will be scoped to the resulting elements. 454 | 455 |
selectorString 461 | 462 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 463 | 464 |
children[Element] 470 | 471 | An element's child elements. 472 | 473 |
parentElement 479 | 480 | An element's parent element. 481 | 482 |
siblings[Element] 488 | 489 | All elements which are at the same level in the tree as the current element, ie. the children of the current element's parent. Includes the current element. 490 | 491 |
nextElement 497 | 498 | The current element's next sibling. Includes text nodes. Equivalent to [Node.nextSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 499 | 500 |
nextAll[Element] 506 | 507 | All of the current element's next siblings 508 | 509 |
previousElement 515 | 516 | The current element's previous sibling. Includes text nodes. Equivalent to [Node.previousSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 517 | 518 |
previousAll[Element] 524 | 525 | All of the current element's previous siblings 526 | 527 |
visitDocument 533 | 534 | If the element is a link, visit the page linked to in the href attribute. 535 | 536 |
540 | 541 | ## Scalars 542 | 543 | ### Boolean 544 | 545 | The `Boolean` scalar type represents `true` or `false`. 546 | 547 | ### String 548 | 549 | The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. 550 | 551 | 552 | ## Interfaces 553 | 554 | 555 | ### Node 556 | 557 | A DOM node (either an Element or a Document). 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 577 | 578 | 579 | 580 | 581 | 586 | 587 | 588 | 589 | 590 | 595 | 596 | 597 | 598 | 599 | 604 | 605 | 606 | 607 | 608 | 613 | 614 | 615 | 616 | 617 | 622 | 623 | 624 | 625 | 626 | 631 | 632 | 633 | 634 | 635 | 640 | 641 | 642 | 643 | 644 | 649 | 650 | 651 | 652 | 653 | 658 | 659 | 660 | 661 | 662 | 667 | 668 | 669 | 670 | 671 | 676 | 677 | 678 | 679 | 680 | 685 | 686 | 687 | 688 | 689 | 694 | 695 | 696 | 697 | 698 | 703 | 704 | 705 | 706 | 707 | 712 | 713 | 714 | 715 | 716 | 721 | 722 | 723 | 724 | 725 | 730 | 731 | 732 | 733 | 734 | 739 | 740 | 741 | 742 | 743 | 748 | 749 | 750 | 751 | 752 | 757 | 758 | 759 | 760 | 761 | 766 | 767 | 768 | 769 | 770 | 775 | 776 | 777 | 778 | 779 | 784 | 785 | 786 |
FieldArgumentTypeDescription
contentString 573 | 574 | The HTML content of the subnodes 575 | 576 |
selectorString 582 | 583 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 584 | 585 |
htmlString 591 | 592 | The HTML content of the selected DOM node 593 | 594 |
selectorString 600 | 601 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 602 | 603 |
textString 609 | 610 | The text content of the selected DOM node 611 | 612 |
selectorString 618 | 619 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 620 | 621 |
tagString 627 | 628 | The tag name of the selected DOM node 629 | 630 |
selectorString 636 | 637 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 638 | 639 |
attrString 645 | 646 | An attribute of the selected node (eg. `href`, `src`, etc.). 647 | 648 |
selectorString 654 | 655 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 656 | 657 |
nameString! 663 | 664 | The name of the attribute 665 | 666 |
hasBoolean 672 | 673 | Returns true if an element with the given selector exists. 674 | 675 |
selectorString 681 | 682 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 683 | 684 |
queryElement 690 | 691 | Equivalent to [Element.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector). The selectors of any nested queries will be scoped to the resulting element. 692 | 693 |
selectorString 699 | 700 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 701 | 702 |
queryAll[Element] 708 | 709 | Equivalent to [Element.querySelectorAll](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll). The selectors of any nested queries will be scoped to the resulting elements. 710 | 711 |
selectorString 717 | 718 | A [CSS selector](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Selectors). 719 | 720 |
children[Element] 726 | 727 | An element's child elements. 728 | 729 |
parentElement 735 | 736 | An element's parent element. 737 | 738 |
siblings[Element] 744 | 745 | All elements which are at the same level in the tree as the current element, ie. the children of the current element's parent. Includes the current element. 746 | 747 |
nextElement 753 | 754 | The current element's next sibling. Includes text nodes. Equivalent to [Node.nextSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 755 | 756 |
nextAll[Element] 762 | 763 | All of the current element's next siblings 764 | 765 |
previousElement 771 | 772 | The current element's previous sibling. Includes text nodes. Equivalent to [Node.previousSibling](https://developer.mozilla.org/en-US/docs/Web/API/Node/nextSibling). 773 | 774 |
previousAll[Element] 780 | 781 | All of the current element's previous siblings 782 | 783 |
787 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.1.0": 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/write-file-atomic@^2.2.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" 36 | dependencies: 37 | graceful-fs "^4.1.11" 38 | imurmurhash "^0.1.4" 39 | slide "^1.1.5" 40 | 41 | "@concordance/react@^1.0.0": 42 | version "1.0.0" 43 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" 44 | dependencies: 45 | arrify "^1.0.1" 46 | 47 | "@types/graphql@^0.12.0": 48 | version "0.12.0" 49 | resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.12.0.tgz#dc620cd2d24d4e52f3ed5a900a94193dc1b2eb40" 50 | 51 | "@types/jsdom@^11.0.4": 52 | version "11.0.4" 53 | resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-11.0.4.tgz#a645db4704cf7e4f811f583926ad12525c719400" 54 | dependencies: 55 | "@types/node" "*" 56 | "@types/tough-cookie" "*" 57 | parse5 "^3.0.2" 58 | 59 | "@types/node@*": 60 | version "9.3.0" 61 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" 62 | 63 | "@types/tough-cookie@*": 64 | version "2.3.2" 65 | resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.2.tgz#e0d481d8bb282ad8a8c9e100ceb72c995fb5e709" 66 | 67 | abab@^1.0.3: 68 | version "1.0.4" 69 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 70 | 71 | abbrev@1: 72 | version "1.1.1" 73 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 74 | 75 | acorn-globals@^4.0.0: 76 | version "4.1.0" 77 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 78 | dependencies: 79 | acorn "^5.0.0" 80 | 81 | acorn@^5.0.0, acorn@^5.1.2: 82 | version "5.3.0" 83 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 84 | 85 | ajv@^4.9.1: 86 | version "4.11.8" 87 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 88 | dependencies: 89 | co "^4.6.0" 90 | json-stable-stringify "^1.0.1" 91 | 92 | ajv@^5.1.0: 93 | version "5.5.2" 94 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 95 | dependencies: 96 | co "^4.6.0" 97 | fast-deep-equal "^1.0.0" 98 | fast-json-stable-stringify "^2.0.0" 99 | json-schema-traverse "^0.3.0" 100 | 101 | ansi-align@^2.0.0: 102 | version "2.0.0" 103 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 104 | dependencies: 105 | string-width "^2.0.0" 106 | 107 | ansi-escapes@^3.0.0: 108 | version "3.0.0" 109 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 110 | 111 | ansi-regex@^2.0.0: 112 | version "2.1.1" 113 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 114 | 115 | ansi-regex@^3.0.0: 116 | version "3.0.0" 117 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 118 | 119 | ansi-styles@^2.2.1: 120 | version "2.2.1" 121 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 122 | 123 | ansi-styles@^3.1.0: 124 | version "3.2.0" 125 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 126 | dependencies: 127 | color-convert "^1.9.0" 128 | 129 | ansi-styles@~1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 132 | 133 | anymatch@^1.3.0: 134 | version "1.3.2" 135 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 136 | dependencies: 137 | micromatch "^2.1.5" 138 | normalize-path "^2.0.0" 139 | 140 | aproba@^1.0.3: 141 | version "1.2.0" 142 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 143 | 144 | are-we-there-yet@~1.1.2: 145 | version "1.1.4" 146 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 147 | dependencies: 148 | delegates "^1.0.0" 149 | readable-stream "^2.0.6" 150 | 151 | argparse@^1.0.7: 152 | version "1.0.9" 153 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 154 | dependencies: 155 | sprintf-js "~1.0.2" 156 | 157 | arr-diff@^2.0.0: 158 | version "2.0.0" 159 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 160 | dependencies: 161 | arr-flatten "^1.0.1" 162 | 163 | arr-exclude@^1.0.0: 164 | version "1.0.0" 165 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 166 | 167 | arr-flatten@^1.0.1: 168 | version "1.1.0" 169 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 170 | 171 | array-differ@^1.0.0: 172 | version "1.0.0" 173 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 174 | 175 | array-equal@^1.0.0: 176 | version "1.0.0" 177 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 178 | 179 | array-find-index@^1.0.1: 180 | version "1.0.2" 181 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 182 | 183 | array-union@^1.0.1: 184 | version "1.0.2" 185 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 186 | dependencies: 187 | array-uniq "^1.0.1" 188 | 189 | array-uniq@^1.0.1, array-uniq@^1.0.2: 190 | version "1.0.3" 191 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 192 | 193 | array-unique@^0.2.1: 194 | version "0.2.1" 195 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 196 | 197 | arrify@^1.0.0, arrify@^1.0.1: 198 | version "1.0.1" 199 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 200 | 201 | asn1@~0.2.3: 202 | version "0.2.3" 203 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 204 | 205 | assert-plus@1.0.0, assert-plus@^1.0.0: 206 | version "1.0.0" 207 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 208 | 209 | assert-plus@^0.2.0: 210 | version "0.2.0" 211 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 212 | 213 | async-each@^1.0.0: 214 | version "1.0.1" 215 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 216 | 217 | asynckit@^0.4.0: 218 | version "0.4.0" 219 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 220 | 221 | auto-bind@^1.1.0: 222 | version "1.1.0" 223 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 224 | 225 | ava-init@^0.2.0: 226 | version "0.2.1" 227 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.1.tgz#75ac4c8553326290d2866e63b62fa7035684bd58" 228 | dependencies: 229 | arr-exclude "^1.0.0" 230 | execa "^0.7.0" 231 | has-yarn "^1.0.0" 232 | read-pkg-up "^2.0.0" 233 | write-pkg "^3.1.0" 234 | 235 | ava@^0.24.0: 236 | version "0.24.0" 237 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.24.0.tgz#dd0ab33a0b3ad2ac582f55e9a61caf8bcf7a9af1" 238 | dependencies: 239 | "@ava/babel-preset-stage-4" "^1.1.0" 240 | "@ava/babel-preset-transform-test-files" "^3.0.0" 241 | "@ava/write-file-atomic" "^2.2.0" 242 | "@concordance/react" "^1.0.0" 243 | ansi-escapes "^3.0.0" 244 | ansi-styles "^3.1.0" 245 | arr-flatten "^1.0.1" 246 | array-union "^1.0.1" 247 | array-uniq "^1.0.2" 248 | arrify "^1.0.0" 249 | auto-bind "^1.1.0" 250 | ava-init "^0.2.0" 251 | babel-core "^6.17.0" 252 | babel-generator "^6.26.0" 253 | babel-plugin-syntax-object-rest-spread "^6.13.0" 254 | bluebird "^3.0.0" 255 | caching-transform "^1.0.0" 256 | chalk "^2.0.1" 257 | chokidar "^1.4.2" 258 | clean-stack "^1.1.1" 259 | clean-yaml-object "^0.1.0" 260 | cli-cursor "^2.1.0" 261 | cli-spinners "^1.0.0" 262 | cli-truncate "^1.0.0" 263 | co-with-promise "^4.6.0" 264 | code-excerpt "^2.1.0" 265 | common-path-prefix "^1.0.0" 266 | concordance "^3.0.0" 267 | convert-source-map "^1.2.0" 268 | core-assert "^0.2.0" 269 | currently-unhandled "^0.4.1" 270 | debug "^3.0.1" 271 | dot-prop "^4.1.0" 272 | empower-core "^0.6.1" 273 | equal-length "^1.0.0" 274 | figures "^2.0.0" 275 | find-cache-dir "^1.0.0" 276 | fn-name "^2.0.0" 277 | get-port "^3.0.0" 278 | globby "^6.0.0" 279 | has-flag "^2.0.0" 280 | hullabaloo-config-manager "^1.1.0" 281 | ignore-by-default "^1.0.0" 282 | import-local "^0.1.1" 283 | indent-string "^3.0.0" 284 | is-ci "^1.0.7" 285 | is-generator-fn "^1.0.0" 286 | is-obj "^1.0.0" 287 | is-observable "^1.0.0" 288 | is-promise "^2.1.0" 289 | js-yaml "^3.8.2" 290 | last-line-stream "^1.0.0" 291 | lodash.clonedeepwith "^4.5.0" 292 | lodash.debounce "^4.0.3" 293 | lodash.difference "^4.3.0" 294 | lodash.flatten "^4.2.0" 295 | loud-rejection "^1.2.0" 296 | make-dir "^1.0.0" 297 | matcher "^1.0.0" 298 | md5-hex "^2.0.0" 299 | meow "^3.7.0" 300 | ms "^2.0.0" 301 | multimatch "^2.1.0" 302 | observable-to-promise "^0.5.0" 303 | option-chain "^1.0.0" 304 | package-hash "^2.0.0" 305 | pkg-conf "^2.0.0" 306 | plur "^2.0.0" 307 | pretty-ms "^3.0.0" 308 | require-precompiled "^0.1.0" 309 | resolve-cwd "^2.0.0" 310 | safe-buffer "^5.1.1" 311 | semver "^5.4.1" 312 | slash "^1.0.0" 313 | source-map-support "^0.5.0" 314 | stack-utils "^1.0.1" 315 | strip-ansi "^4.0.0" 316 | strip-bom-buf "^1.0.0" 317 | supports-color "^5.0.0" 318 | time-require "^0.1.2" 319 | trim-off-newlines "^1.0.1" 320 | unique-temp-dir "^1.0.0" 321 | update-notifier "^2.3.0" 322 | 323 | aws-sign2@~0.6.0: 324 | version "0.6.0" 325 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 326 | 327 | aws-sign2@~0.7.0: 328 | version "0.7.0" 329 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 330 | 331 | aws4@^1.2.1, aws4@^1.6.0: 332 | version "1.6.0" 333 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 334 | 335 | babel-code-frame@^6.26.0: 336 | version "6.26.0" 337 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 338 | dependencies: 339 | chalk "^1.1.3" 340 | esutils "^2.0.2" 341 | js-tokens "^3.0.2" 342 | 343 | babel-core@^6.17.0, babel-core@^6.26.0: 344 | version "6.26.0" 345 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 346 | dependencies: 347 | babel-code-frame "^6.26.0" 348 | babel-generator "^6.26.0" 349 | babel-helpers "^6.24.1" 350 | babel-messages "^6.23.0" 351 | babel-register "^6.26.0" 352 | babel-runtime "^6.26.0" 353 | babel-template "^6.26.0" 354 | babel-traverse "^6.26.0" 355 | babel-types "^6.26.0" 356 | babylon "^6.18.0" 357 | convert-source-map "^1.5.0" 358 | debug "^2.6.8" 359 | json5 "^0.5.1" 360 | lodash "^4.17.4" 361 | minimatch "^3.0.4" 362 | path-is-absolute "^1.0.1" 363 | private "^0.1.7" 364 | slash "^1.0.0" 365 | source-map "^0.5.6" 366 | 367 | babel-generator@^6.1.0, babel-generator@^6.26.0: 368 | version "6.26.0" 369 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 370 | dependencies: 371 | babel-messages "^6.23.0" 372 | babel-runtime "^6.26.0" 373 | babel-types "^6.26.0" 374 | detect-indent "^4.0.0" 375 | jsesc "^1.3.0" 376 | lodash "^4.17.4" 377 | source-map "^0.5.6" 378 | trim-right "^1.0.1" 379 | 380 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 383 | dependencies: 384 | babel-helper-explode-assignable-expression "^6.24.1" 385 | babel-runtime "^6.22.0" 386 | babel-types "^6.24.1" 387 | 388 | babel-helper-call-delegate@^6.24.1: 389 | version "6.24.1" 390 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 391 | dependencies: 392 | babel-helper-hoist-variables "^6.24.1" 393 | babel-runtime "^6.22.0" 394 | babel-traverse "^6.24.1" 395 | babel-types "^6.24.1" 396 | 397 | babel-helper-explode-assignable-expression@^6.24.1: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | babel-traverse "^6.24.1" 403 | babel-types "^6.24.1" 404 | 405 | babel-helper-function-name@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 408 | dependencies: 409 | babel-helper-get-function-arity "^6.24.1" 410 | babel-runtime "^6.22.0" 411 | babel-template "^6.24.1" 412 | babel-traverse "^6.24.1" 413 | babel-types "^6.24.1" 414 | 415 | babel-helper-get-function-arity@^6.24.1: 416 | version "6.24.1" 417 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 418 | dependencies: 419 | babel-runtime "^6.22.0" 420 | babel-types "^6.24.1" 421 | 422 | babel-helper-hoist-variables@^6.24.1: 423 | version "6.24.1" 424 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | babel-types "^6.24.1" 428 | 429 | babel-helper-regex@^6.24.1: 430 | version "6.26.0" 431 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 432 | dependencies: 433 | babel-runtime "^6.26.0" 434 | babel-types "^6.26.0" 435 | lodash "^4.17.4" 436 | 437 | babel-helper-remap-async-to-generator@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 440 | dependencies: 441 | babel-helper-function-name "^6.24.1" 442 | babel-runtime "^6.22.0" 443 | babel-template "^6.24.1" 444 | babel-traverse "^6.24.1" 445 | babel-types "^6.24.1" 446 | 447 | babel-helpers@^6.24.1: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-template "^6.24.1" 453 | 454 | babel-messages@^6.23.0: 455 | version "6.23.0" 456 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-check-es2015-constants@^6.8.0: 461 | version "6.22.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 463 | dependencies: 464 | babel-runtime "^6.22.0" 465 | 466 | babel-plugin-espower@^2.3.2: 467 | version "2.4.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.4.0.tgz#9f92c080e9adfe73f69baed7ab3e24f649009373" 469 | dependencies: 470 | babel-generator "^6.1.0" 471 | babylon "^6.1.0" 472 | call-matcher "^1.0.0" 473 | core-js "^2.0.0" 474 | espower-location-detector "^1.0.0" 475 | espurify "^1.6.0" 476 | estraverse "^4.1.1" 477 | 478 | babel-plugin-syntax-async-functions@^6.8.0: 479 | version "6.13.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 481 | 482 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 483 | version "6.13.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 485 | 486 | babel-plugin-syntax-object-rest-spread@^6.13.0: 487 | version "6.13.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 489 | 490 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 491 | version "6.22.0" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 493 | 494 | babel-plugin-transform-async-to-generator@^6.16.0: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 497 | dependencies: 498 | babel-helper-remap-async-to-generator "^6.24.1" 499 | babel-plugin-syntax-async-functions "^6.8.0" 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-destructuring@^6.19.0: 503 | version "6.23.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-function-name@^6.9.0: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 511 | dependencies: 512 | babel-helper-function-name "^6.24.1" 513 | babel-runtime "^6.22.0" 514 | babel-types "^6.24.1" 515 | 516 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 517 | version "6.26.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 519 | dependencies: 520 | babel-plugin-transform-strict-mode "^6.24.1" 521 | babel-runtime "^6.26.0" 522 | babel-template "^6.26.0" 523 | babel-types "^6.26.0" 524 | 525 | babel-plugin-transform-es2015-parameters@^6.21.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 528 | dependencies: 529 | babel-helper-call-delegate "^6.24.1" 530 | babel-helper-get-function-arity "^6.24.1" 531 | babel-runtime "^6.22.0" 532 | babel-template "^6.24.1" 533 | babel-traverse "^6.24.1" 534 | babel-types "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-spread@^6.8.0: 537 | version "6.22.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 539 | dependencies: 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 545 | dependencies: 546 | babel-helper-regex "^6.24.1" 547 | babel-runtime "^6.22.0" 548 | babel-types "^6.24.1" 549 | 550 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 551 | version "6.24.1" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 553 | dependencies: 554 | babel-helper-regex "^6.24.1" 555 | babel-runtime "^6.22.0" 556 | regexpu-core "^2.0.0" 557 | 558 | babel-plugin-transform-exponentiation-operator@^6.8.0: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 561 | dependencies: 562 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 563 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 564 | babel-runtime "^6.22.0" 565 | 566 | babel-plugin-transform-strict-mode@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | babel-types "^6.24.1" 572 | 573 | babel-register@^6.26.0: 574 | version "6.26.0" 575 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 576 | dependencies: 577 | babel-core "^6.26.0" 578 | babel-runtime "^6.26.0" 579 | core-js "^2.5.0" 580 | home-or-tmp "^2.0.0" 581 | lodash "^4.17.4" 582 | mkdirp "^0.5.1" 583 | source-map-support "^0.4.15" 584 | 585 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 586 | version "6.26.0" 587 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 588 | dependencies: 589 | core-js "^2.4.0" 590 | regenerator-runtime "^0.11.0" 591 | 592 | babel-template@^6.24.1, babel-template@^6.26.0: 593 | version "6.26.0" 594 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 595 | dependencies: 596 | babel-runtime "^6.26.0" 597 | babel-traverse "^6.26.0" 598 | babel-types "^6.26.0" 599 | babylon "^6.18.0" 600 | lodash "^4.17.4" 601 | 602 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 603 | version "6.26.0" 604 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 605 | dependencies: 606 | babel-code-frame "^6.26.0" 607 | babel-messages "^6.23.0" 608 | babel-runtime "^6.26.0" 609 | babel-types "^6.26.0" 610 | babylon "^6.18.0" 611 | debug "^2.6.8" 612 | globals "^9.18.0" 613 | invariant "^2.2.2" 614 | lodash "^4.17.4" 615 | 616 | babel-types@^6.24.1, babel-types@^6.26.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 619 | dependencies: 620 | babel-runtime "^6.26.0" 621 | esutils "^2.0.2" 622 | lodash "^4.17.4" 623 | to-fast-properties "^1.0.3" 624 | 625 | babylon@^6.1.0, babylon@^6.18.0: 626 | version "6.18.0" 627 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 628 | 629 | balanced-match@^1.0.0: 630 | version "1.0.0" 631 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 632 | 633 | bcrypt-pbkdf@^1.0.0: 634 | version "1.0.1" 635 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 636 | dependencies: 637 | tweetnacl "^0.14.3" 638 | 639 | binary-extensions@^1.0.0: 640 | version "1.11.0" 641 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 642 | 643 | block-stream@*: 644 | version "0.0.9" 645 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 646 | dependencies: 647 | inherits "~2.0.0" 648 | 649 | bluebird@^3.0.0: 650 | version "3.5.1" 651 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 652 | 653 | boom@2.x.x: 654 | version "2.10.1" 655 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 656 | dependencies: 657 | hoek "2.x.x" 658 | 659 | boom@4.x.x: 660 | version "4.3.1" 661 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 662 | dependencies: 663 | hoek "4.x.x" 664 | 665 | boom@5.x.x: 666 | version "5.2.0" 667 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 668 | dependencies: 669 | hoek "4.x.x" 670 | 671 | boxen@^1.2.1: 672 | version "1.3.0" 673 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 674 | dependencies: 675 | ansi-align "^2.0.0" 676 | camelcase "^4.0.0" 677 | chalk "^2.0.1" 678 | cli-boxes "^1.0.0" 679 | string-width "^2.0.0" 680 | term-size "^1.2.0" 681 | widest-line "^2.0.0" 682 | 683 | brace-expansion@^1.1.7: 684 | version "1.1.8" 685 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 686 | dependencies: 687 | balanced-match "^1.0.0" 688 | concat-map "0.0.1" 689 | 690 | braces@^1.8.2: 691 | version "1.8.5" 692 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 693 | dependencies: 694 | expand-range "^1.8.1" 695 | preserve "^0.2.0" 696 | repeat-element "^1.1.2" 697 | 698 | browser-process-hrtime@^0.1.2: 699 | version "0.1.2" 700 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 701 | 702 | buf-compare@^1.0.0: 703 | version "1.0.1" 704 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 705 | 706 | builtin-modules@^1.0.0: 707 | version "1.1.1" 708 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 709 | 710 | caching-transform@^1.0.0: 711 | version "1.0.1" 712 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 713 | dependencies: 714 | md5-hex "^1.2.0" 715 | mkdirp "^0.5.1" 716 | write-file-atomic "^1.1.4" 717 | 718 | call-matcher@^1.0.0: 719 | version "1.0.1" 720 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 721 | dependencies: 722 | core-js "^2.0.0" 723 | deep-equal "^1.0.0" 724 | espurify "^1.6.0" 725 | estraverse "^4.0.0" 726 | 727 | call-signature@0.0.2: 728 | version "0.0.2" 729 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 730 | 731 | camelcase-keys@^2.0.0: 732 | version "2.1.0" 733 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 734 | dependencies: 735 | camelcase "^2.0.0" 736 | map-obj "^1.0.0" 737 | 738 | camelcase@^2.0.0: 739 | version "2.1.1" 740 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 741 | 742 | camelcase@^4.0.0: 743 | version "4.1.0" 744 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 745 | 746 | capture-stack-trace@^1.0.0: 747 | version "1.0.0" 748 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 749 | 750 | caseless@~0.12.0: 751 | version "0.12.0" 752 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 753 | 754 | chalk@^0.4.0: 755 | version "0.4.0" 756 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 757 | dependencies: 758 | ansi-styles "~1.0.0" 759 | has-color "~0.1.0" 760 | strip-ansi "~0.1.0" 761 | 762 | chalk@^1.1.3: 763 | version "1.1.3" 764 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 765 | dependencies: 766 | ansi-styles "^2.2.1" 767 | escape-string-regexp "^1.0.2" 768 | has-ansi "^2.0.0" 769 | strip-ansi "^3.0.0" 770 | supports-color "^2.0.0" 771 | 772 | chalk@^2.0.1, chalk@^2.3.0: 773 | version "2.3.0" 774 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 775 | dependencies: 776 | ansi-styles "^3.1.0" 777 | escape-string-regexp "^1.0.5" 778 | supports-color "^4.0.0" 779 | 780 | chokidar@^1.4.2: 781 | version "1.7.0" 782 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 783 | dependencies: 784 | anymatch "^1.3.0" 785 | async-each "^1.0.0" 786 | glob-parent "^2.0.0" 787 | inherits "^2.0.1" 788 | is-binary-path "^1.0.0" 789 | is-glob "^2.0.0" 790 | path-is-absolute "^1.0.0" 791 | readdirp "^2.0.0" 792 | optionalDependencies: 793 | fsevents "^1.0.0" 794 | 795 | ci-info@^1.0.0: 796 | version "1.1.2" 797 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 798 | 799 | clean-stack@^1.1.1: 800 | version "1.3.0" 801 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 802 | 803 | clean-yaml-object@^0.1.0: 804 | version "0.1.0" 805 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 806 | 807 | cli-boxes@^1.0.0: 808 | version "1.0.0" 809 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 810 | 811 | cli-cursor@^2.1.0: 812 | version "2.1.0" 813 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 814 | dependencies: 815 | restore-cursor "^2.0.0" 816 | 817 | cli-spinners@^1.0.0: 818 | version "1.1.0" 819 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06" 820 | 821 | cli-truncate@^1.0.0: 822 | version "1.1.0" 823 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" 824 | dependencies: 825 | slice-ansi "^1.0.0" 826 | string-width "^2.0.0" 827 | 828 | co-with-promise@^4.6.0: 829 | version "4.6.0" 830 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 831 | dependencies: 832 | pinkie-promise "^1.0.0" 833 | 834 | co@^4.6.0: 835 | version "4.6.0" 836 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 837 | 838 | code-excerpt@^2.1.0: 839 | version "2.1.0" 840 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 841 | dependencies: 842 | convert-to-spaces "^1.0.1" 843 | 844 | code-point-at@^1.0.0: 845 | version "1.1.0" 846 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 847 | 848 | color-convert@^1.9.0: 849 | version "1.9.1" 850 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 851 | dependencies: 852 | color-name "^1.1.1" 853 | 854 | color-name@^1.1.1: 855 | version "1.1.3" 856 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 857 | 858 | combined-stream@^1.0.5, combined-stream@~1.0.5: 859 | version "1.0.5" 860 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 861 | dependencies: 862 | delayed-stream "~1.0.0" 863 | 864 | common-path-prefix@^1.0.0: 865 | version "1.0.0" 866 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 867 | 868 | commondir@^1.0.1: 869 | version "1.0.1" 870 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 871 | 872 | concat-map@0.0.1: 873 | version "0.0.1" 874 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 875 | 876 | concordance@^3.0.0: 877 | version "3.0.0" 878 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" 879 | dependencies: 880 | date-time "^2.1.0" 881 | esutils "^2.0.2" 882 | fast-diff "^1.1.1" 883 | function-name-support "^0.2.0" 884 | js-string-escape "^1.0.1" 885 | lodash.clonedeep "^4.5.0" 886 | lodash.flattendeep "^4.4.0" 887 | lodash.merge "^4.6.0" 888 | md5-hex "^2.0.0" 889 | semver "^5.3.0" 890 | well-known-symbols "^1.0.0" 891 | 892 | configstore@^3.0.0: 893 | version "3.1.1" 894 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 895 | dependencies: 896 | dot-prop "^4.1.0" 897 | graceful-fs "^4.1.2" 898 | make-dir "^1.0.0" 899 | unique-string "^1.0.0" 900 | write-file-atomic "^2.0.0" 901 | xdg-basedir "^3.0.0" 902 | 903 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 904 | version "1.1.0" 905 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 906 | 907 | content-type-parser@^1.0.1: 908 | version "1.0.2" 909 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 910 | 911 | convert-source-map@^1.2.0, convert-source-map@^1.5.0: 912 | version "1.5.1" 913 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 914 | 915 | convert-to-spaces@^1.0.1: 916 | version "1.0.2" 917 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 918 | 919 | core-assert@^0.2.0: 920 | version "0.2.1" 921 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 922 | dependencies: 923 | buf-compare "^1.0.0" 924 | is-error "^2.2.0" 925 | 926 | core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: 927 | version "2.5.3" 928 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 929 | 930 | core-util-is@1.0.2, core-util-is@~1.0.0: 931 | version "1.0.2" 932 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 933 | 934 | create-error-class@^3.0.0: 935 | version "3.0.2" 936 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 937 | dependencies: 938 | capture-stack-trace "^1.0.0" 939 | 940 | cross-spawn@^5.0.1: 941 | version "5.1.0" 942 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 943 | dependencies: 944 | lru-cache "^4.0.1" 945 | shebang-command "^1.2.0" 946 | which "^1.2.9" 947 | 948 | cryptiles@2.x.x: 949 | version "2.0.5" 950 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 951 | dependencies: 952 | boom "2.x.x" 953 | 954 | cryptiles@3.x.x: 955 | version "3.1.2" 956 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 957 | dependencies: 958 | boom "5.x.x" 959 | 960 | crypto-random-string@^1.0.0: 961 | version "1.0.0" 962 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 963 | 964 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 965 | version "0.3.2" 966 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 967 | 968 | "cssstyle@>= 0.2.37 < 0.3.0": 969 | version "0.2.37" 970 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 971 | dependencies: 972 | cssom "0.3.x" 973 | 974 | currently-unhandled@^0.4.1: 975 | version "0.4.1" 976 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 977 | dependencies: 978 | array-find-index "^1.0.1" 979 | 980 | dashdash@^1.12.0: 981 | version "1.14.1" 982 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 983 | dependencies: 984 | assert-plus "^1.0.0" 985 | 986 | date-time@^0.1.1: 987 | version "0.1.1" 988 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 989 | 990 | date-time@^2.1.0: 991 | version "2.1.0" 992 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" 993 | dependencies: 994 | time-zone "^1.0.0" 995 | 996 | debug@^2.2.0, debug@^2.6.8: 997 | version "2.6.9" 998 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 999 | dependencies: 1000 | ms "2.0.0" 1001 | 1002 | debug@^3.0.1: 1003 | version "3.1.0" 1004 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1005 | dependencies: 1006 | ms "2.0.0" 1007 | 1008 | decamelize@^1.1.2: 1009 | version "1.2.0" 1010 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1011 | 1012 | deep-diff@^0.3.8: 1013 | version "0.3.8" 1014 | resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-0.3.8.tgz#c01de63efb0eec9798801d40c7e0dae25b582c84" 1015 | 1016 | deep-equal@^1.0.0: 1017 | version "1.0.1" 1018 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1019 | 1020 | deep-extend@~0.4.0: 1021 | version "0.4.2" 1022 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1023 | 1024 | deep-is@~0.1.3: 1025 | version "0.1.3" 1026 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1027 | 1028 | delayed-stream@~1.0.0: 1029 | version "1.0.0" 1030 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1031 | 1032 | delegates@^1.0.0: 1033 | version "1.0.0" 1034 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1035 | 1036 | detect-indent@^4.0.0: 1037 | version "4.0.0" 1038 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1039 | dependencies: 1040 | repeating "^2.0.0" 1041 | 1042 | detect-indent@^5.0.0: 1043 | version "5.0.0" 1044 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 1045 | 1046 | detect-libc@^1.0.2: 1047 | version "1.0.3" 1048 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1049 | 1050 | domexception@^1.0.0: 1051 | version "1.0.0" 1052 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.0.tgz#81fe5df81b3f057052cde3a9fa9bf536a85b9ab0" 1053 | 1054 | dot-prop@^4.1.0: 1055 | version "4.2.0" 1056 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1057 | dependencies: 1058 | is-obj "^1.0.0" 1059 | 1060 | duplexer3@^0.1.4: 1061 | version "0.1.4" 1062 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1063 | 1064 | ecc-jsbn@~0.1.1: 1065 | version "0.1.1" 1066 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1067 | dependencies: 1068 | jsbn "~0.1.0" 1069 | 1070 | empower-core@^0.6.1: 1071 | version "0.6.2" 1072 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 1073 | dependencies: 1074 | call-signature "0.0.2" 1075 | core-js "^2.0.0" 1076 | 1077 | encoding@^0.1.11: 1078 | version "0.1.12" 1079 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1080 | dependencies: 1081 | iconv-lite "~0.4.13" 1082 | 1083 | equal-length@^1.0.0: 1084 | version "1.0.1" 1085 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1086 | 1087 | error-ex@^1.2.0, error-ex@^1.3.1: 1088 | version "1.3.1" 1089 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1090 | dependencies: 1091 | is-arrayish "^0.2.1" 1092 | 1093 | es6-error@^4.0.1, es6-error@^4.0.2: 1094 | version "4.1.1" 1095 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 1096 | 1097 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1098 | version "1.0.5" 1099 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1100 | 1101 | escodegen@^1.9.0: 1102 | version "1.9.0" 1103 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1104 | dependencies: 1105 | esprima "^3.1.3" 1106 | estraverse "^4.2.0" 1107 | esutils "^2.0.2" 1108 | optionator "^0.8.1" 1109 | optionalDependencies: 1110 | source-map "~0.5.6" 1111 | 1112 | espower-location-detector@^1.0.0: 1113 | version "1.0.0" 1114 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1115 | dependencies: 1116 | is-url "^1.2.1" 1117 | path-is-absolute "^1.0.0" 1118 | source-map "^0.5.0" 1119 | xtend "^4.0.0" 1120 | 1121 | esprima@^3.1.3: 1122 | version "3.1.3" 1123 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1124 | 1125 | esprima@^4.0.0: 1126 | version "4.0.0" 1127 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1128 | 1129 | espurify@^1.6.0: 1130 | version "1.7.0" 1131 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1132 | dependencies: 1133 | core-js "^2.0.0" 1134 | 1135 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1136 | version "4.2.0" 1137 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1138 | 1139 | esutils@^2.0.2: 1140 | version "2.0.2" 1141 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1142 | 1143 | execa@^0.7.0: 1144 | version "0.7.0" 1145 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1146 | dependencies: 1147 | cross-spawn "^5.0.1" 1148 | get-stream "^3.0.0" 1149 | is-stream "^1.1.0" 1150 | npm-run-path "^2.0.0" 1151 | p-finally "^1.0.0" 1152 | signal-exit "^3.0.0" 1153 | strip-eof "^1.0.0" 1154 | 1155 | execa@^0.9.0: 1156 | version "0.9.0" 1157 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1158 | dependencies: 1159 | cross-spawn "^5.0.1" 1160 | get-stream "^3.0.0" 1161 | is-stream "^1.1.0" 1162 | npm-run-path "^2.0.0" 1163 | p-finally "^1.0.0" 1164 | signal-exit "^3.0.0" 1165 | strip-eof "^1.0.0" 1166 | 1167 | expand-brackets@^0.1.4: 1168 | version "0.1.5" 1169 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1170 | dependencies: 1171 | is-posix-bracket "^0.1.0" 1172 | 1173 | expand-range@^1.8.1: 1174 | version "1.8.2" 1175 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1176 | dependencies: 1177 | fill-range "^2.1.0" 1178 | 1179 | extend@~3.0.0, extend@~3.0.1: 1180 | version "3.0.1" 1181 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1182 | 1183 | extglob@^0.3.1: 1184 | version "0.3.2" 1185 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1186 | dependencies: 1187 | is-extglob "^1.0.0" 1188 | 1189 | extsprintf@1.3.0: 1190 | version "1.3.0" 1191 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1192 | 1193 | extsprintf@^1.2.0: 1194 | version "1.4.0" 1195 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1196 | 1197 | fast-deep-equal@^1.0.0: 1198 | version "1.0.0" 1199 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1200 | 1201 | fast-diff@^1.1.1: 1202 | version "1.1.2" 1203 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1204 | 1205 | fast-json-stable-stringify@^2.0.0: 1206 | version "2.0.0" 1207 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1208 | 1209 | fast-levenshtein@~2.0.4: 1210 | version "2.0.6" 1211 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1212 | 1213 | figures@^2.0.0: 1214 | version "2.0.0" 1215 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1216 | dependencies: 1217 | escape-string-regexp "^1.0.5" 1218 | 1219 | filename-regex@^2.0.0: 1220 | version "2.0.1" 1221 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1222 | 1223 | fill-range@^2.1.0: 1224 | version "2.2.3" 1225 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1226 | dependencies: 1227 | is-number "^2.1.0" 1228 | isobject "^2.0.0" 1229 | randomatic "^1.1.3" 1230 | repeat-element "^1.1.2" 1231 | repeat-string "^1.5.2" 1232 | 1233 | find-cache-dir@^1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1236 | dependencies: 1237 | commondir "^1.0.1" 1238 | make-dir "^1.0.0" 1239 | pkg-dir "^2.0.0" 1240 | 1241 | find-up@^1.0.0: 1242 | version "1.1.2" 1243 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1244 | dependencies: 1245 | path-exists "^2.0.0" 1246 | pinkie-promise "^2.0.0" 1247 | 1248 | find-up@^2.0.0, find-up@^2.1.0: 1249 | version "2.1.0" 1250 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1251 | dependencies: 1252 | locate-path "^2.0.0" 1253 | 1254 | fn-name@^2.0.0: 1255 | version "2.0.1" 1256 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1257 | 1258 | for-in@^1.0.1: 1259 | version "1.0.2" 1260 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1261 | 1262 | for-own@^0.1.4: 1263 | version "0.1.5" 1264 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1265 | dependencies: 1266 | for-in "^1.0.1" 1267 | 1268 | forever-agent@~0.6.1: 1269 | version "0.6.1" 1270 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1271 | 1272 | form-data@~2.1.1: 1273 | version "2.1.4" 1274 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1275 | dependencies: 1276 | asynckit "^0.4.0" 1277 | combined-stream "^1.0.5" 1278 | mime-types "^2.1.12" 1279 | 1280 | form-data@~2.3.1: 1281 | version "2.3.1" 1282 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1283 | dependencies: 1284 | asynckit "^0.4.0" 1285 | combined-stream "^1.0.5" 1286 | mime-types "^2.1.12" 1287 | 1288 | fs.realpath@^1.0.0: 1289 | version "1.0.0" 1290 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1291 | 1292 | fsevents@^1.0.0: 1293 | version "1.1.3" 1294 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1295 | dependencies: 1296 | nan "^2.3.0" 1297 | node-pre-gyp "^0.6.39" 1298 | 1299 | fstream-ignore@^1.0.5: 1300 | version "1.0.5" 1301 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1302 | dependencies: 1303 | fstream "^1.0.0" 1304 | inherits "2" 1305 | minimatch "^3.0.0" 1306 | 1307 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1308 | version "1.0.11" 1309 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1310 | dependencies: 1311 | graceful-fs "^4.1.2" 1312 | inherits "~2.0.0" 1313 | mkdirp ">=0.5 0" 1314 | rimraf "2" 1315 | 1316 | function-name-support@^0.2.0: 1317 | version "0.2.0" 1318 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" 1319 | 1320 | gauge@~2.7.3: 1321 | version "2.7.4" 1322 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1323 | dependencies: 1324 | aproba "^1.0.3" 1325 | console-control-strings "^1.0.0" 1326 | has-unicode "^2.0.0" 1327 | object-assign "^4.1.0" 1328 | signal-exit "^3.0.0" 1329 | string-width "^1.0.1" 1330 | strip-ansi "^3.0.1" 1331 | wide-align "^1.1.0" 1332 | 1333 | get-port@^3.0.0: 1334 | version "3.2.0" 1335 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 1336 | 1337 | get-stdin@^4.0.1: 1338 | version "4.0.1" 1339 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1340 | 1341 | get-stdin@^5.0.1: 1342 | version "5.0.1" 1343 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1344 | 1345 | get-stream@^3.0.0: 1346 | version "3.0.0" 1347 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1348 | 1349 | getpass@^0.1.1: 1350 | version "0.1.7" 1351 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1352 | dependencies: 1353 | assert-plus "^1.0.0" 1354 | 1355 | glob-base@^0.3.0: 1356 | version "0.3.0" 1357 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1358 | dependencies: 1359 | glob-parent "^2.0.0" 1360 | is-glob "^2.0.0" 1361 | 1362 | glob-parent@^2.0.0: 1363 | version "2.0.0" 1364 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1365 | dependencies: 1366 | is-glob "^2.0.0" 1367 | 1368 | glob@^7.0.3, glob@^7.0.5: 1369 | version "7.1.2" 1370 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1371 | dependencies: 1372 | fs.realpath "^1.0.0" 1373 | inflight "^1.0.4" 1374 | inherits "2" 1375 | minimatch "^3.0.4" 1376 | once "^1.3.0" 1377 | path-is-absolute "^1.0.0" 1378 | 1379 | global-dirs@^0.1.0: 1380 | version "0.1.1" 1381 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1382 | dependencies: 1383 | ini "^1.3.4" 1384 | 1385 | globals@^9.18.0: 1386 | version "9.18.0" 1387 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1388 | 1389 | globby@^6.0.0: 1390 | version "6.1.0" 1391 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1392 | dependencies: 1393 | array-union "^1.0.1" 1394 | glob "^7.0.3" 1395 | object-assign "^4.0.1" 1396 | pify "^2.0.0" 1397 | pinkie-promise "^2.0.0" 1398 | 1399 | got@^6.7.1: 1400 | version "6.7.1" 1401 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1402 | dependencies: 1403 | create-error-class "^3.0.0" 1404 | duplexer3 "^0.1.4" 1405 | get-stream "^3.0.0" 1406 | is-redirect "^1.0.0" 1407 | is-retry-allowed "^1.0.0" 1408 | is-stream "^1.0.0" 1409 | lowercase-keys "^1.0.0" 1410 | safe-buffer "^5.0.1" 1411 | timed-out "^4.0.0" 1412 | unzip-response "^2.0.1" 1413 | url-parse-lax "^1.0.0" 1414 | 1415 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1416 | version "4.1.11" 1417 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1418 | 1419 | graphql-markdown@^3.2.0: 1420 | version "3.2.0" 1421 | resolved "https://registry.yarnpkg.com/graphql-markdown/-/graphql-markdown-3.2.0.tgz#108638359c1dc1d6ea388a033ab13b9d66eb84af" 1422 | dependencies: 1423 | deep-diff "^0.3.8" 1424 | graphql "^0.11.7" 1425 | minimist "^1.2.0" 1426 | node-fetch "^1.7.1" 1427 | resolve-from "^4.0.0" 1428 | 1429 | graphql@^0.11.7: 1430 | version "0.11.7" 1431 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" 1432 | dependencies: 1433 | iterall "1.1.3" 1434 | 1435 | graphql@^0.12.3: 1436 | version "0.12.3" 1437 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.12.3.tgz#11668458bbe28261c0dcb6e265f515ba79f6ce07" 1438 | dependencies: 1439 | iterall "1.1.3" 1440 | 1441 | har-schema@^1.0.5: 1442 | version "1.0.5" 1443 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1444 | 1445 | har-schema@^2.0.0: 1446 | version "2.0.0" 1447 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1448 | 1449 | har-validator@~4.2.1: 1450 | version "4.2.1" 1451 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1452 | dependencies: 1453 | ajv "^4.9.1" 1454 | har-schema "^1.0.5" 1455 | 1456 | har-validator@~5.0.3: 1457 | version "5.0.3" 1458 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1459 | dependencies: 1460 | ajv "^5.1.0" 1461 | har-schema "^2.0.0" 1462 | 1463 | has-ansi@^2.0.0: 1464 | version "2.0.0" 1465 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1466 | dependencies: 1467 | ansi-regex "^2.0.0" 1468 | 1469 | has-color@~0.1.0: 1470 | version "0.1.7" 1471 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1472 | 1473 | has-flag@^2.0.0: 1474 | version "2.0.0" 1475 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1476 | 1477 | has-unicode@^2.0.0: 1478 | version "2.0.1" 1479 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1480 | 1481 | has-yarn@^1.0.0: 1482 | version "1.0.0" 1483 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1484 | 1485 | hawk@3.1.3, hawk@~3.1.3: 1486 | version "3.1.3" 1487 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1488 | dependencies: 1489 | boom "2.x.x" 1490 | cryptiles "2.x.x" 1491 | hoek "2.x.x" 1492 | sntp "1.x.x" 1493 | 1494 | hawk@~6.0.2: 1495 | version "6.0.2" 1496 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1497 | dependencies: 1498 | boom "4.x.x" 1499 | cryptiles "3.x.x" 1500 | hoek "4.x.x" 1501 | sntp "2.x.x" 1502 | 1503 | hoek@2.x.x: 1504 | version "2.16.3" 1505 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1506 | 1507 | hoek@4.x.x: 1508 | version "4.2.0" 1509 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1510 | 1511 | home-or-tmp@^2.0.0: 1512 | version "2.0.0" 1513 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1514 | dependencies: 1515 | os-homedir "^1.0.0" 1516 | os-tmpdir "^1.0.1" 1517 | 1518 | hosted-git-info@^2.1.4: 1519 | version "2.5.0" 1520 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1521 | 1522 | html-encoding-sniffer@^1.0.1: 1523 | version "1.0.2" 1524 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1525 | dependencies: 1526 | whatwg-encoding "^1.0.1" 1527 | 1528 | http-signature@~1.1.0: 1529 | version "1.1.1" 1530 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1531 | dependencies: 1532 | assert-plus "^0.2.0" 1533 | jsprim "^1.2.2" 1534 | sshpk "^1.7.0" 1535 | 1536 | http-signature@~1.2.0: 1537 | version "1.2.0" 1538 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1539 | dependencies: 1540 | assert-plus "^1.0.0" 1541 | jsprim "^1.2.2" 1542 | sshpk "^1.7.0" 1543 | 1544 | hullabaloo-config-manager@^1.1.0: 1545 | version "1.1.1" 1546 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" 1547 | dependencies: 1548 | dot-prop "^4.1.0" 1549 | es6-error "^4.0.2" 1550 | graceful-fs "^4.1.11" 1551 | indent-string "^3.1.0" 1552 | json5 "^0.5.1" 1553 | lodash.clonedeep "^4.5.0" 1554 | lodash.clonedeepwith "^4.5.0" 1555 | lodash.isequal "^4.5.0" 1556 | lodash.merge "^4.6.0" 1557 | md5-hex "^2.0.0" 1558 | package-hash "^2.0.0" 1559 | pkg-dir "^2.0.0" 1560 | resolve-from "^3.0.0" 1561 | safe-buffer "^5.0.1" 1562 | 1563 | iconv-lite@0.4.19, iconv-lite@~0.4.13: 1564 | version "0.4.19" 1565 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1566 | 1567 | ignore-by-default@^1.0.0: 1568 | version "1.0.1" 1569 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1570 | 1571 | import-lazy@^2.1.0: 1572 | version "2.1.0" 1573 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1574 | 1575 | import-local@^0.1.1: 1576 | version "0.1.1" 1577 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" 1578 | dependencies: 1579 | pkg-dir "^2.0.0" 1580 | resolve-cwd "^2.0.0" 1581 | 1582 | imurmurhash@^0.1.4: 1583 | version "0.1.4" 1584 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1585 | 1586 | indent-string@^2.1.0: 1587 | version "2.1.0" 1588 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1589 | dependencies: 1590 | repeating "^2.0.0" 1591 | 1592 | indent-string@^3.0.0, indent-string@^3.1.0: 1593 | version "3.2.0" 1594 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1595 | 1596 | inflight@^1.0.4: 1597 | version "1.0.6" 1598 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1599 | dependencies: 1600 | once "^1.3.0" 1601 | wrappy "1" 1602 | 1603 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1604 | version "2.0.3" 1605 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1606 | 1607 | ini@^1.3.4, ini@~1.3.0: 1608 | version "1.3.5" 1609 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1610 | 1611 | invariant@^2.2.2: 1612 | version "2.2.2" 1613 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1614 | dependencies: 1615 | loose-envify "^1.0.0" 1616 | 1617 | irregular-plurals@^1.0.0: 1618 | version "1.4.0" 1619 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1620 | 1621 | is-arrayish@^0.2.1: 1622 | version "0.2.1" 1623 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1624 | 1625 | is-binary-path@^1.0.0: 1626 | version "1.0.1" 1627 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1628 | dependencies: 1629 | binary-extensions "^1.0.0" 1630 | 1631 | is-buffer@^1.1.5: 1632 | version "1.1.6" 1633 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1634 | 1635 | is-builtin-module@^1.0.0: 1636 | version "1.0.0" 1637 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1638 | dependencies: 1639 | builtin-modules "^1.0.0" 1640 | 1641 | is-ci@^1.0.7: 1642 | version "1.1.0" 1643 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1644 | dependencies: 1645 | ci-info "^1.0.0" 1646 | 1647 | is-dotfile@^1.0.0: 1648 | version "1.0.3" 1649 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1650 | 1651 | is-equal-shallow@^0.1.3: 1652 | version "0.1.3" 1653 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1654 | dependencies: 1655 | is-primitive "^2.0.0" 1656 | 1657 | is-error@^2.2.0: 1658 | version "2.2.1" 1659 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1660 | 1661 | is-extendable@^0.1.1: 1662 | version "0.1.1" 1663 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1664 | 1665 | is-extglob@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1668 | 1669 | is-finite@^1.0.0: 1670 | version "1.0.2" 1671 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1672 | dependencies: 1673 | number-is-nan "^1.0.0" 1674 | 1675 | is-fullwidth-code-point@^1.0.0: 1676 | version "1.0.0" 1677 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1678 | dependencies: 1679 | number-is-nan "^1.0.0" 1680 | 1681 | is-fullwidth-code-point@^2.0.0: 1682 | version "2.0.0" 1683 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1684 | 1685 | is-generator-fn@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1688 | 1689 | is-glob@^2.0.0, is-glob@^2.0.1: 1690 | version "2.0.1" 1691 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1692 | dependencies: 1693 | is-extglob "^1.0.0" 1694 | 1695 | is-installed-globally@^0.1.0: 1696 | version "0.1.0" 1697 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1698 | dependencies: 1699 | global-dirs "^0.1.0" 1700 | is-path-inside "^1.0.0" 1701 | 1702 | is-npm@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1705 | 1706 | is-number@^2.1.0: 1707 | version "2.1.0" 1708 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1709 | dependencies: 1710 | kind-of "^3.0.2" 1711 | 1712 | is-number@^3.0.0: 1713 | version "3.0.0" 1714 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1715 | dependencies: 1716 | kind-of "^3.0.2" 1717 | 1718 | is-obj@^1.0.0: 1719 | version "1.0.1" 1720 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1721 | 1722 | is-observable@^0.2.0: 1723 | version "0.2.0" 1724 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1725 | dependencies: 1726 | symbol-observable "^0.2.2" 1727 | 1728 | is-observable@^1.0.0: 1729 | version "1.1.0" 1730 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1731 | dependencies: 1732 | symbol-observable "^1.1.0" 1733 | 1734 | is-path-inside@^1.0.0: 1735 | version "1.0.1" 1736 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1737 | dependencies: 1738 | path-is-inside "^1.0.1" 1739 | 1740 | is-plain-obj@^1.0.0: 1741 | version "1.1.0" 1742 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1743 | 1744 | is-posix-bracket@^0.1.0: 1745 | version "0.1.1" 1746 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1747 | 1748 | is-primitive@^2.0.0: 1749 | version "2.0.0" 1750 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1751 | 1752 | is-promise@^2.1.0: 1753 | version "2.1.0" 1754 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1755 | 1756 | is-redirect@^1.0.0: 1757 | version "1.0.0" 1758 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1759 | 1760 | is-retry-allowed@^1.0.0: 1761 | version "1.1.0" 1762 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1763 | 1764 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 1765 | version "1.1.0" 1766 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1767 | 1768 | is-typedarray@~1.0.0: 1769 | version "1.0.0" 1770 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1771 | 1772 | is-url@^1.2.1: 1773 | version "1.2.2" 1774 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 1775 | 1776 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1777 | version "0.2.1" 1778 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1779 | 1780 | isarray@1.0.0, isarray@~1.0.0: 1781 | version "1.0.0" 1782 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1783 | 1784 | isexe@^2.0.0: 1785 | version "2.0.0" 1786 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1787 | 1788 | isobject@^2.0.0: 1789 | version "2.1.0" 1790 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1791 | dependencies: 1792 | isarray "1.0.0" 1793 | 1794 | isomorphic-fetch@^2.2.1: 1795 | version "2.2.1" 1796 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1797 | dependencies: 1798 | node-fetch "^1.0.1" 1799 | whatwg-fetch ">=0.10.0" 1800 | 1801 | isstream@~0.1.2: 1802 | version "0.1.2" 1803 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1804 | 1805 | iterall@1.1.3: 1806 | version "1.1.3" 1807 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" 1808 | 1809 | js-string-escape@^1.0.1: 1810 | version "1.0.1" 1811 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 1812 | 1813 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1814 | version "3.0.2" 1815 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1816 | 1817 | js-yaml@^3.8.2: 1818 | version "3.10.0" 1819 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1820 | dependencies: 1821 | argparse "^1.0.7" 1822 | esprima "^4.0.0" 1823 | 1824 | jsbn@~0.1.0: 1825 | version "0.1.1" 1826 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1827 | 1828 | jsdom@^11.5.1: 1829 | version "11.5.1" 1830 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.5.1.tgz#5df753b8d0bca20142ce21f4f6c039f99a992929" 1831 | dependencies: 1832 | abab "^1.0.3" 1833 | acorn "^5.1.2" 1834 | acorn-globals "^4.0.0" 1835 | array-equal "^1.0.0" 1836 | browser-process-hrtime "^0.1.2" 1837 | content-type-parser "^1.0.1" 1838 | cssom ">= 0.3.2 < 0.4.0" 1839 | cssstyle ">= 0.2.37 < 0.3.0" 1840 | domexception "^1.0.0" 1841 | escodegen "^1.9.0" 1842 | html-encoding-sniffer "^1.0.1" 1843 | left-pad "^1.2.0" 1844 | nwmatcher "^1.4.3" 1845 | parse5 "^3.0.2" 1846 | pn "^1.0.0" 1847 | request "^2.83.0" 1848 | request-promise-native "^1.0.3" 1849 | sax "^1.2.1" 1850 | symbol-tree "^3.2.1" 1851 | tough-cookie "^2.3.3" 1852 | webidl-conversions "^4.0.2" 1853 | whatwg-encoding "^1.0.1" 1854 | whatwg-url "^6.3.0" 1855 | xml-name-validator "^2.0.1" 1856 | 1857 | jsesc@^1.3.0: 1858 | version "1.3.0" 1859 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1860 | 1861 | jsesc@~0.5.0: 1862 | version "0.5.0" 1863 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1864 | 1865 | json-parse-better-errors@^1.0.1: 1866 | version "1.0.1" 1867 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1868 | 1869 | json-schema-traverse@^0.3.0: 1870 | version "0.3.1" 1871 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1872 | 1873 | json-schema@0.2.3: 1874 | version "0.2.3" 1875 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1876 | 1877 | json-stable-stringify@^1.0.1: 1878 | version "1.0.1" 1879 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1880 | dependencies: 1881 | jsonify "~0.0.0" 1882 | 1883 | json-stringify-safe@~5.0.1: 1884 | version "5.0.1" 1885 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1886 | 1887 | json5@^0.5.1: 1888 | version "0.5.1" 1889 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1890 | 1891 | jsonify@~0.0.0: 1892 | version "0.0.0" 1893 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1894 | 1895 | jsprim@^1.2.2: 1896 | version "1.4.1" 1897 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1898 | dependencies: 1899 | assert-plus "1.0.0" 1900 | extsprintf "1.3.0" 1901 | json-schema "0.2.3" 1902 | verror "1.10.0" 1903 | 1904 | kind-of@^3.0.2: 1905 | version "3.2.2" 1906 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1907 | dependencies: 1908 | is-buffer "^1.1.5" 1909 | 1910 | kind-of@^4.0.0: 1911 | version "4.0.0" 1912 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1913 | dependencies: 1914 | is-buffer "^1.1.5" 1915 | 1916 | last-line-stream@^1.0.0: 1917 | version "1.0.0" 1918 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1919 | dependencies: 1920 | through2 "^2.0.0" 1921 | 1922 | latest-version@^3.0.0: 1923 | version "3.1.0" 1924 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1925 | dependencies: 1926 | package-json "^4.0.0" 1927 | 1928 | left-pad@^1.2.0: 1929 | version "1.2.0" 1930 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 1931 | 1932 | levn@~0.3.0: 1933 | version "0.3.0" 1934 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1935 | dependencies: 1936 | prelude-ls "~1.1.2" 1937 | type-check "~0.3.2" 1938 | 1939 | load-json-file@^1.0.0: 1940 | version "1.1.0" 1941 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1942 | dependencies: 1943 | graceful-fs "^4.1.2" 1944 | parse-json "^2.2.0" 1945 | pify "^2.0.0" 1946 | pinkie-promise "^2.0.0" 1947 | strip-bom "^2.0.0" 1948 | 1949 | load-json-file@^2.0.0: 1950 | version "2.0.0" 1951 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1952 | dependencies: 1953 | graceful-fs "^4.1.2" 1954 | parse-json "^2.2.0" 1955 | pify "^2.0.0" 1956 | strip-bom "^3.0.0" 1957 | 1958 | load-json-file@^4.0.0: 1959 | version "4.0.0" 1960 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1961 | dependencies: 1962 | graceful-fs "^4.1.2" 1963 | parse-json "^4.0.0" 1964 | pify "^3.0.0" 1965 | strip-bom "^3.0.0" 1966 | 1967 | locate-path@^2.0.0: 1968 | version "2.0.0" 1969 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1970 | dependencies: 1971 | p-locate "^2.0.0" 1972 | path-exists "^3.0.0" 1973 | 1974 | lodash.clonedeep@^4.5.0: 1975 | version "4.5.0" 1976 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1977 | 1978 | lodash.clonedeepwith@^4.5.0: 1979 | version "4.5.0" 1980 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 1981 | 1982 | lodash.debounce@^4.0.3: 1983 | version "4.0.8" 1984 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1985 | 1986 | lodash.difference@^4.3.0: 1987 | version "4.5.0" 1988 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1989 | 1990 | lodash.flatten@^4.2.0: 1991 | version "4.4.0" 1992 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1993 | 1994 | lodash.flattendeep@^4.4.0: 1995 | version "4.4.0" 1996 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 1997 | 1998 | lodash.isequal@^4.5.0: 1999 | version "4.5.0" 2000 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2001 | 2002 | lodash.merge@^4.6.0: 2003 | version "4.6.0" 2004 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2005 | 2006 | lodash.sortby@^4.7.0: 2007 | version "4.7.0" 2008 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2009 | 2010 | lodash@^4.13.1, lodash@^4.17.4: 2011 | version "4.17.4" 2012 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2013 | 2014 | loose-envify@^1.0.0: 2015 | version "1.3.1" 2016 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2017 | dependencies: 2018 | js-tokens "^3.0.0" 2019 | 2020 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2021 | version "1.6.0" 2022 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2023 | dependencies: 2024 | currently-unhandled "^0.4.1" 2025 | signal-exit "^3.0.0" 2026 | 2027 | lowercase-keys@^1.0.0: 2028 | version "1.0.0" 2029 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2030 | 2031 | lru-cache@^4.0.1: 2032 | version "4.1.1" 2033 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2034 | dependencies: 2035 | pseudomap "^1.0.2" 2036 | yallist "^2.1.2" 2037 | 2038 | make-dir@^1.0.0: 2039 | version "1.1.0" 2040 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2041 | dependencies: 2042 | pify "^3.0.0" 2043 | 2044 | map-obj@^1.0.0, map-obj@^1.0.1: 2045 | version "1.0.1" 2046 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2047 | 2048 | matcher@^1.0.0: 2049 | version "1.0.0" 2050 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19" 2051 | dependencies: 2052 | escape-string-regexp "^1.0.4" 2053 | 2054 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2055 | version "1.3.0" 2056 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2057 | dependencies: 2058 | md5-o-matic "^0.1.1" 2059 | 2060 | md5-hex@^2.0.0: 2061 | version "2.0.0" 2062 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2063 | dependencies: 2064 | md5-o-matic "^0.1.1" 2065 | 2066 | md5-o-matic@^0.1.1: 2067 | version "0.1.1" 2068 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2069 | 2070 | meow@^3.7.0: 2071 | version "3.7.0" 2072 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2073 | dependencies: 2074 | camelcase-keys "^2.0.0" 2075 | decamelize "^1.1.2" 2076 | loud-rejection "^1.0.0" 2077 | map-obj "^1.0.1" 2078 | minimist "^1.1.3" 2079 | normalize-package-data "^2.3.4" 2080 | object-assign "^4.0.1" 2081 | read-pkg-up "^1.0.1" 2082 | redent "^1.0.0" 2083 | trim-newlines "^1.0.0" 2084 | 2085 | micromatch@^2.1.5: 2086 | version "2.3.11" 2087 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2088 | dependencies: 2089 | arr-diff "^2.0.0" 2090 | array-unique "^0.2.1" 2091 | braces "^1.8.2" 2092 | expand-brackets "^0.1.4" 2093 | extglob "^0.3.1" 2094 | filename-regex "^2.0.0" 2095 | is-extglob "^1.0.0" 2096 | is-glob "^2.0.1" 2097 | kind-of "^3.0.2" 2098 | normalize-path "^2.0.1" 2099 | object.omit "^2.0.0" 2100 | parse-glob "^3.0.4" 2101 | regex-cache "^0.4.2" 2102 | 2103 | mime-db@~1.30.0: 2104 | version "1.30.0" 2105 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2106 | 2107 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2108 | version "2.1.17" 2109 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2110 | dependencies: 2111 | mime-db "~1.30.0" 2112 | 2113 | mimic-fn@^1.0.0: 2114 | version "1.1.0" 2115 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2116 | 2117 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2118 | version "3.0.4" 2119 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2120 | dependencies: 2121 | brace-expansion "^1.1.7" 2122 | 2123 | minimist@0.0.8: 2124 | version "0.0.8" 2125 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2126 | 2127 | minimist@^1.1.3, minimist@^1.2.0: 2128 | version "1.2.0" 2129 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2130 | 2131 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2132 | version "0.5.1" 2133 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2134 | dependencies: 2135 | minimist "0.0.8" 2136 | 2137 | ms@2.0.0: 2138 | version "2.0.0" 2139 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2140 | 2141 | ms@^2.0.0: 2142 | version "2.1.1" 2143 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2144 | 2145 | multimatch@^2.1.0: 2146 | version "2.1.0" 2147 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2148 | dependencies: 2149 | array-differ "^1.0.0" 2150 | array-union "^1.0.1" 2151 | arrify "^1.0.0" 2152 | minimatch "^3.0.0" 2153 | 2154 | nan@^2.3.0: 2155 | version "2.8.0" 2156 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2157 | 2158 | node-fetch@^1.0.1, node-fetch@^1.7.1: 2159 | version "1.7.3" 2160 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2161 | dependencies: 2162 | encoding "^0.1.11" 2163 | is-stream "^1.0.1" 2164 | 2165 | node-pre-gyp@^0.6.39: 2166 | version "0.6.39" 2167 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2168 | dependencies: 2169 | detect-libc "^1.0.2" 2170 | hawk "3.1.3" 2171 | mkdirp "^0.5.1" 2172 | nopt "^4.0.1" 2173 | npmlog "^4.0.2" 2174 | rc "^1.1.7" 2175 | request "2.81.0" 2176 | rimraf "^2.6.1" 2177 | semver "^5.3.0" 2178 | tar "^2.2.1" 2179 | tar-pack "^3.4.0" 2180 | 2181 | nopt@^4.0.1: 2182 | version "4.0.1" 2183 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2184 | dependencies: 2185 | abbrev "1" 2186 | osenv "^0.1.4" 2187 | 2188 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2189 | version "2.4.0" 2190 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2191 | dependencies: 2192 | hosted-git-info "^2.1.4" 2193 | is-builtin-module "^1.0.0" 2194 | semver "2 || 3 || 4 || 5" 2195 | validate-npm-package-license "^3.0.1" 2196 | 2197 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2198 | version "2.1.1" 2199 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2200 | dependencies: 2201 | remove-trailing-separator "^1.0.1" 2202 | 2203 | npm-run-path@^2.0.0: 2204 | version "2.0.2" 2205 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2206 | dependencies: 2207 | path-key "^2.0.0" 2208 | 2209 | npmlog@^4.0.2: 2210 | version "4.1.2" 2211 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2212 | dependencies: 2213 | are-we-there-yet "~1.1.2" 2214 | console-control-strings "~1.1.0" 2215 | gauge "~2.7.3" 2216 | set-blocking "~2.0.0" 2217 | 2218 | number-is-nan@^1.0.0: 2219 | version "1.0.1" 2220 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2221 | 2222 | nwmatcher@^1.4.3: 2223 | version "1.4.3" 2224 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 2225 | 2226 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2227 | version "0.8.2" 2228 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2229 | 2230 | object-assign@^4.0.1, object-assign@^4.1.0: 2231 | version "4.1.1" 2232 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2233 | 2234 | object.omit@^2.0.0: 2235 | version "2.0.1" 2236 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2237 | dependencies: 2238 | for-own "^0.1.4" 2239 | is-extendable "^0.1.1" 2240 | 2241 | observable-to-promise@^0.5.0: 2242 | version "0.5.0" 2243 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 2244 | dependencies: 2245 | is-observable "^0.2.0" 2246 | symbol-observable "^1.0.4" 2247 | 2248 | once@^1.3.0, once@^1.3.3: 2249 | version "1.4.0" 2250 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2251 | dependencies: 2252 | wrappy "1" 2253 | 2254 | onetime@^2.0.0: 2255 | version "2.0.1" 2256 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2257 | dependencies: 2258 | mimic-fn "^1.0.0" 2259 | 2260 | option-chain@^1.0.0: 2261 | version "1.0.0" 2262 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" 2263 | 2264 | optionator@^0.8.1: 2265 | version "0.8.2" 2266 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2267 | dependencies: 2268 | deep-is "~0.1.3" 2269 | fast-levenshtein "~2.0.4" 2270 | levn "~0.3.0" 2271 | prelude-ls "~1.1.2" 2272 | type-check "~0.3.2" 2273 | wordwrap "~1.0.0" 2274 | 2275 | os-homedir@^1.0.0: 2276 | version "1.0.2" 2277 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2278 | 2279 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2280 | version "1.0.2" 2281 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2282 | 2283 | osenv@^0.1.4: 2284 | version "0.1.4" 2285 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2286 | dependencies: 2287 | os-homedir "^1.0.0" 2288 | os-tmpdir "^1.0.0" 2289 | 2290 | p-finally@^1.0.0: 2291 | version "1.0.0" 2292 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2293 | 2294 | p-limit@^1.1.0: 2295 | version "1.2.0" 2296 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2297 | dependencies: 2298 | p-try "^1.0.0" 2299 | 2300 | p-locate@^2.0.0: 2301 | version "2.0.0" 2302 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2303 | dependencies: 2304 | p-limit "^1.1.0" 2305 | 2306 | p-try@^1.0.0: 2307 | version "1.0.0" 2308 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2309 | 2310 | package-hash@^1.2.0: 2311 | version "1.2.0" 2312 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2313 | dependencies: 2314 | md5-hex "^1.3.0" 2315 | 2316 | package-hash@^2.0.0: 2317 | version "2.0.0" 2318 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2319 | dependencies: 2320 | graceful-fs "^4.1.11" 2321 | lodash.flattendeep "^4.4.0" 2322 | md5-hex "^2.0.0" 2323 | release-zalgo "^1.0.0" 2324 | 2325 | package-json@^4.0.0: 2326 | version "4.0.1" 2327 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2328 | dependencies: 2329 | got "^6.7.1" 2330 | registry-auth-token "^3.0.1" 2331 | registry-url "^3.0.3" 2332 | semver "^5.1.0" 2333 | 2334 | parse-glob@^3.0.4: 2335 | version "3.0.4" 2336 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2337 | dependencies: 2338 | glob-base "^0.3.0" 2339 | is-dotfile "^1.0.0" 2340 | is-extglob "^1.0.0" 2341 | is-glob "^2.0.0" 2342 | 2343 | parse-json@^2.2.0: 2344 | version "2.2.0" 2345 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2346 | dependencies: 2347 | error-ex "^1.2.0" 2348 | 2349 | parse-json@^4.0.0: 2350 | version "4.0.0" 2351 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2352 | dependencies: 2353 | error-ex "^1.3.1" 2354 | json-parse-better-errors "^1.0.1" 2355 | 2356 | parse-ms@^0.1.0: 2357 | version "0.1.2" 2358 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2359 | 2360 | parse-ms@^1.0.0: 2361 | version "1.0.1" 2362 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2363 | 2364 | parse5@^3.0.2: 2365 | version "3.0.3" 2366 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 2367 | dependencies: 2368 | "@types/node" "*" 2369 | 2370 | path-exists@^2.0.0: 2371 | version "2.1.0" 2372 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2373 | dependencies: 2374 | pinkie-promise "^2.0.0" 2375 | 2376 | path-exists@^3.0.0: 2377 | version "3.0.0" 2378 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2379 | 2380 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2381 | version "1.0.1" 2382 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2383 | 2384 | path-is-inside@^1.0.1: 2385 | version "1.0.2" 2386 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2387 | 2388 | path-key@^2.0.0: 2389 | version "2.0.1" 2390 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2391 | 2392 | path-type@^1.0.0: 2393 | version "1.1.0" 2394 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2395 | dependencies: 2396 | graceful-fs "^4.1.2" 2397 | pify "^2.0.0" 2398 | pinkie-promise "^2.0.0" 2399 | 2400 | path-type@^2.0.0: 2401 | version "2.0.0" 2402 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2403 | dependencies: 2404 | pify "^2.0.0" 2405 | 2406 | performance-now@^0.2.0: 2407 | version "0.2.0" 2408 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2409 | 2410 | performance-now@^2.1.0: 2411 | version "2.1.0" 2412 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2413 | 2414 | pify@^2.0.0: 2415 | version "2.3.0" 2416 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2417 | 2418 | pify@^3.0.0: 2419 | version "3.0.0" 2420 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2421 | 2422 | pinkie-promise@^1.0.0: 2423 | version "1.0.0" 2424 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2425 | dependencies: 2426 | pinkie "^1.0.0" 2427 | 2428 | pinkie-promise@^2.0.0: 2429 | version "2.0.1" 2430 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2431 | dependencies: 2432 | pinkie "^2.0.0" 2433 | 2434 | pinkie@^1.0.0: 2435 | version "1.0.0" 2436 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2437 | 2438 | pinkie@^2.0.0: 2439 | version "2.0.4" 2440 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2441 | 2442 | pkg-conf@^2.0.0: 2443 | version "2.1.0" 2444 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 2445 | dependencies: 2446 | find-up "^2.0.0" 2447 | load-json-file "^4.0.0" 2448 | 2449 | pkg-dir@^2.0.0: 2450 | version "2.0.0" 2451 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2452 | dependencies: 2453 | find-up "^2.1.0" 2454 | 2455 | plur@^2.0.0, plur@^2.1.2: 2456 | version "2.1.2" 2457 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2458 | dependencies: 2459 | irregular-plurals "^1.0.0" 2460 | 2461 | pn@^1.0.0: 2462 | version "1.1.0" 2463 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2464 | 2465 | prelude-ls@~1.1.2: 2466 | version "1.1.2" 2467 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2468 | 2469 | prepend-http@^1.0.1: 2470 | version "1.0.4" 2471 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2472 | 2473 | preserve@^0.2.0: 2474 | version "0.2.0" 2475 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2476 | 2477 | pretty-ms@^0.2.1: 2478 | version "0.2.2" 2479 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2480 | dependencies: 2481 | parse-ms "^0.1.0" 2482 | 2483 | pretty-ms@^3.0.0: 2484 | version "3.1.0" 2485 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-3.1.0.tgz#e9cac9c76bf6ee52fe942dd9c6c4213153b12881" 2486 | dependencies: 2487 | parse-ms "^1.0.0" 2488 | plur "^2.1.2" 2489 | 2490 | private@^0.1.7: 2491 | version "0.1.8" 2492 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2493 | 2494 | process-nextick-args@~1.0.6: 2495 | version "1.0.7" 2496 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2497 | 2498 | pseudomap@^1.0.2: 2499 | version "1.0.2" 2500 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2501 | 2502 | punycode@^1.4.1: 2503 | version "1.4.1" 2504 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2505 | 2506 | punycode@^2.1.0: 2507 | version "2.1.0" 2508 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2509 | 2510 | qs@~6.4.0: 2511 | version "6.4.0" 2512 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2513 | 2514 | qs@~6.5.1: 2515 | version "6.5.1" 2516 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2517 | 2518 | randomatic@^1.1.3: 2519 | version "1.1.7" 2520 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2521 | dependencies: 2522 | is-number "^3.0.0" 2523 | kind-of "^4.0.0" 2524 | 2525 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2526 | version "1.2.4" 2527 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3" 2528 | dependencies: 2529 | deep-extend "~0.4.0" 2530 | ini "~1.3.0" 2531 | minimist "^1.2.0" 2532 | strip-json-comments "~2.0.1" 2533 | 2534 | read-pkg-up@^1.0.1: 2535 | version "1.0.1" 2536 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2537 | dependencies: 2538 | find-up "^1.0.0" 2539 | read-pkg "^1.0.0" 2540 | 2541 | read-pkg-up@^2.0.0: 2542 | version "2.0.0" 2543 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2544 | dependencies: 2545 | find-up "^2.0.0" 2546 | read-pkg "^2.0.0" 2547 | 2548 | read-pkg@^1.0.0: 2549 | version "1.1.0" 2550 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2551 | dependencies: 2552 | load-json-file "^1.0.0" 2553 | normalize-package-data "^2.3.2" 2554 | path-type "^1.0.0" 2555 | 2556 | read-pkg@^2.0.0: 2557 | version "2.0.0" 2558 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2559 | dependencies: 2560 | load-json-file "^2.0.0" 2561 | normalize-package-data "^2.3.2" 2562 | path-type "^2.0.0" 2563 | 2564 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2565 | version "2.3.3" 2566 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2567 | dependencies: 2568 | core-util-is "~1.0.0" 2569 | inherits "~2.0.3" 2570 | isarray "~1.0.0" 2571 | process-nextick-args "~1.0.6" 2572 | safe-buffer "~5.1.1" 2573 | string_decoder "~1.0.3" 2574 | util-deprecate "~1.0.1" 2575 | 2576 | readdirp@^2.0.0: 2577 | version "2.1.0" 2578 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2579 | dependencies: 2580 | graceful-fs "^4.1.2" 2581 | minimatch "^3.0.2" 2582 | readable-stream "^2.0.2" 2583 | set-immediate-shim "^1.0.1" 2584 | 2585 | redent@^1.0.0: 2586 | version "1.0.0" 2587 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2588 | dependencies: 2589 | indent-string "^2.1.0" 2590 | strip-indent "^1.0.1" 2591 | 2592 | regenerate@^1.2.1: 2593 | version "1.3.3" 2594 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2595 | 2596 | regenerator-runtime@^0.11.0: 2597 | version "0.11.1" 2598 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2599 | 2600 | regex-cache@^0.4.2: 2601 | version "0.4.4" 2602 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2603 | dependencies: 2604 | is-equal-shallow "^0.1.3" 2605 | 2606 | regexpu-core@^2.0.0: 2607 | version "2.0.0" 2608 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2609 | dependencies: 2610 | regenerate "^1.2.1" 2611 | regjsgen "^0.2.0" 2612 | regjsparser "^0.1.4" 2613 | 2614 | registry-auth-token@^3.0.1: 2615 | version "3.3.1" 2616 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2617 | dependencies: 2618 | rc "^1.1.6" 2619 | safe-buffer "^5.0.1" 2620 | 2621 | registry-url@^3.0.3: 2622 | version "3.1.0" 2623 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2624 | dependencies: 2625 | rc "^1.0.1" 2626 | 2627 | regjsgen@^0.2.0: 2628 | version "0.2.0" 2629 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2630 | 2631 | regjsparser@^0.1.4: 2632 | version "0.1.5" 2633 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2634 | dependencies: 2635 | jsesc "~0.5.0" 2636 | 2637 | release-zalgo@^1.0.0: 2638 | version "1.0.0" 2639 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 2640 | dependencies: 2641 | es6-error "^4.0.1" 2642 | 2643 | remove-trailing-separator@^1.0.1: 2644 | version "1.1.0" 2645 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2646 | 2647 | repeat-element@^1.1.2: 2648 | version "1.1.2" 2649 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2650 | 2651 | repeat-string@^1.5.2: 2652 | version "1.6.1" 2653 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2654 | 2655 | repeating@^2.0.0: 2656 | version "2.0.1" 2657 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2658 | dependencies: 2659 | is-finite "^1.0.0" 2660 | 2661 | request-promise-core@1.1.1: 2662 | version "1.1.1" 2663 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2664 | dependencies: 2665 | lodash "^4.13.1" 2666 | 2667 | request-promise-native@^1.0.3: 2668 | version "1.0.5" 2669 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2670 | dependencies: 2671 | request-promise-core "1.1.1" 2672 | stealthy-require "^1.1.0" 2673 | tough-cookie ">=2.3.3" 2674 | 2675 | request@2.81.0: 2676 | version "2.81.0" 2677 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2678 | dependencies: 2679 | aws-sign2 "~0.6.0" 2680 | aws4 "^1.2.1" 2681 | caseless "~0.12.0" 2682 | combined-stream "~1.0.5" 2683 | extend "~3.0.0" 2684 | forever-agent "~0.6.1" 2685 | form-data "~2.1.1" 2686 | har-validator "~4.2.1" 2687 | hawk "~3.1.3" 2688 | http-signature "~1.1.0" 2689 | is-typedarray "~1.0.0" 2690 | isstream "~0.1.2" 2691 | json-stringify-safe "~5.0.1" 2692 | mime-types "~2.1.7" 2693 | oauth-sign "~0.8.1" 2694 | performance-now "^0.2.0" 2695 | qs "~6.4.0" 2696 | safe-buffer "^5.0.1" 2697 | stringstream "~0.0.4" 2698 | tough-cookie "~2.3.0" 2699 | tunnel-agent "^0.6.0" 2700 | uuid "^3.0.0" 2701 | 2702 | request@^2.83.0: 2703 | version "2.83.0" 2704 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2705 | dependencies: 2706 | aws-sign2 "~0.7.0" 2707 | aws4 "^1.6.0" 2708 | caseless "~0.12.0" 2709 | combined-stream "~1.0.5" 2710 | extend "~3.0.1" 2711 | forever-agent "~0.6.1" 2712 | form-data "~2.3.1" 2713 | har-validator "~5.0.3" 2714 | hawk "~6.0.2" 2715 | http-signature "~1.2.0" 2716 | is-typedarray "~1.0.0" 2717 | isstream "~0.1.2" 2718 | json-stringify-safe "~5.0.1" 2719 | mime-types "~2.1.17" 2720 | oauth-sign "~0.8.2" 2721 | performance-now "^2.1.0" 2722 | qs "~6.5.1" 2723 | safe-buffer "^5.1.1" 2724 | stringstream "~0.0.5" 2725 | tough-cookie "~2.3.3" 2726 | tunnel-agent "^0.6.0" 2727 | uuid "^3.1.0" 2728 | 2729 | require-precompiled@^0.1.0: 2730 | version "0.1.0" 2731 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2732 | 2733 | resolve-cwd@^2.0.0: 2734 | version "2.0.0" 2735 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2736 | dependencies: 2737 | resolve-from "^3.0.0" 2738 | 2739 | resolve-from@^3.0.0: 2740 | version "3.0.0" 2741 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2742 | 2743 | resolve-from@^4.0.0: 2744 | version "4.0.0" 2745 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2746 | 2747 | restore-cursor@^2.0.0: 2748 | version "2.0.0" 2749 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2750 | dependencies: 2751 | onetime "^2.0.0" 2752 | signal-exit "^3.0.2" 2753 | 2754 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2755 | version "2.6.2" 2756 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2757 | dependencies: 2758 | glob "^7.0.5" 2759 | 2760 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2761 | version "5.1.1" 2762 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2763 | 2764 | sax@^1.2.1: 2765 | version "1.2.4" 2766 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2767 | 2768 | semver-diff@^2.0.0: 2769 | version "2.1.0" 2770 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2771 | dependencies: 2772 | semver "^5.0.3" 2773 | 2774 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 2775 | version "5.5.0" 2776 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2777 | 2778 | set-blocking@~2.0.0: 2779 | version "2.0.0" 2780 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2781 | 2782 | set-immediate-shim@^1.0.1: 2783 | version "1.0.1" 2784 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2785 | 2786 | shebang-command@^1.2.0: 2787 | version "1.2.0" 2788 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2789 | dependencies: 2790 | shebang-regex "^1.0.0" 2791 | 2792 | shebang-regex@^1.0.0: 2793 | version "1.0.0" 2794 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2795 | 2796 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2797 | version "3.0.2" 2798 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2799 | 2800 | slash@^1.0.0: 2801 | version "1.0.0" 2802 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2803 | 2804 | slice-ansi@^1.0.0: 2805 | version "1.0.0" 2806 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2807 | dependencies: 2808 | is-fullwidth-code-point "^2.0.0" 2809 | 2810 | slide@^1.1.5: 2811 | version "1.1.6" 2812 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2813 | 2814 | sntp@1.x.x: 2815 | version "1.0.9" 2816 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2817 | dependencies: 2818 | hoek "2.x.x" 2819 | 2820 | sntp@2.x.x: 2821 | version "2.1.0" 2822 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2823 | dependencies: 2824 | hoek "4.x.x" 2825 | 2826 | sort-keys@^2.0.0: 2827 | version "2.0.0" 2828 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2829 | dependencies: 2830 | is-plain-obj "^1.0.0" 2831 | 2832 | source-map-support@^0.4.15: 2833 | version "0.4.18" 2834 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2835 | dependencies: 2836 | source-map "^0.5.6" 2837 | 2838 | source-map-support@^0.5.0: 2839 | version "0.5.1" 2840 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.1.tgz#72291517d1fd0cb9542cee6c27520884b5da1a07" 2841 | dependencies: 2842 | source-map "^0.6.0" 2843 | 2844 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.6: 2845 | version "0.5.7" 2846 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2847 | 2848 | source-map@^0.6.0: 2849 | version "0.6.1" 2850 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2851 | 2852 | spdx-correct@~1.0.0: 2853 | version "1.0.2" 2854 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2855 | dependencies: 2856 | spdx-license-ids "^1.0.2" 2857 | 2858 | spdx-expression-parse@~1.0.0: 2859 | version "1.0.4" 2860 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2861 | 2862 | spdx-license-ids@^1.0.2: 2863 | version "1.2.2" 2864 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2865 | 2866 | sprintf-js@~1.0.2: 2867 | version "1.0.3" 2868 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2869 | 2870 | sshpk@^1.7.0: 2871 | version "1.13.1" 2872 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2873 | dependencies: 2874 | asn1 "~0.2.3" 2875 | assert-plus "^1.0.0" 2876 | dashdash "^1.12.0" 2877 | getpass "^0.1.1" 2878 | optionalDependencies: 2879 | bcrypt-pbkdf "^1.0.0" 2880 | ecc-jsbn "~0.1.1" 2881 | jsbn "~0.1.0" 2882 | tweetnacl "~0.14.0" 2883 | 2884 | stack-utils@^1.0.1: 2885 | version "1.0.1" 2886 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2887 | 2888 | stealthy-require@^1.1.0: 2889 | version "1.1.1" 2890 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2891 | 2892 | string-width@^1.0.1, string-width@^1.0.2: 2893 | version "1.0.2" 2894 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2895 | dependencies: 2896 | code-point-at "^1.0.0" 2897 | is-fullwidth-code-point "^1.0.0" 2898 | strip-ansi "^3.0.0" 2899 | 2900 | string-width@^2.0.0, string-width@^2.1.1: 2901 | version "2.1.1" 2902 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2903 | dependencies: 2904 | is-fullwidth-code-point "^2.0.0" 2905 | strip-ansi "^4.0.0" 2906 | 2907 | string_decoder@~1.0.3: 2908 | version "1.0.3" 2909 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2910 | dependencies: 2911 | safe-buffer "~5.1.0" 2912 | 2913 | stringstream@~0.0.4, stringstream@~0.0.5: 2914 | version "0.0.5" 2915 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2916 | 2917 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2918 | version "3.0.1" 2919 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2920 | dependencies: 2921 | ansi-regex "^2.0.0" 2922 | 2923 | strip-ansi@^4.0.0: 2924 | version "4.0.0" 2925 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2926 | dependencies: 2927 | ansi-regex "^3.0.0" 2928 | 2929 | strip-ansi@~0.1.0: 2930 | version "0.1.1" 2931 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2932 | 2933 | strip-bom-buf@^1.0.0: 2934 | version "1.0.0" 2935 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 2936 | dependencies: 2937 | is-utf8 "^0.2.1" 2938 | 2939 | strip-bom@^2.0.0: 2940 | version "2.0.0" 2941 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2942 | dependencies: 2943 | is-utf8 "^0.2.0" 2944 | 2945 | strip-bom@^3.0.0: 2946 | version "3.0.0" 2947 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2948 | 2949 | strip-eof@^1.0.0: 2950 | version "1.0.0" 2951 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2952 | 2953 | strip-indent@^1.0.1: 2954 | version "1.0.1" 2955 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2956 | dependencies: 2957 | get-stdin "^4.0.1" 2958 | 2959 | strip-json-comments@~2.0.1: 2960 | version "2.0.1" 2961 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2962 | 2963 | supports-color@^2.0.0: 2964 | version "2.0.0" 2965 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2966 | 2967 | supports-color@^4.0.0: 2968 | version "4.5.0" 2969 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2970 | dependencies: 2971 | has-flag "^2.0.0" 2972 | 2973 | supports-color@^5.0.0: 2974 | version "5.1.0" 2975 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" 2976 | dependencies: 2977 | has-flag "^2.0.0" 2978 | 2979 | symbol-observable@^0.2.2: 2980 | version "0.2.4" 2981 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2982 | 2983 | symbol-observable@^1.0.4, symbol-observable@^1.1.0: 2984 | version "1.1.0" 2985 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.1.0.tgz#5c68fd8d54115d9dfb72a84720549222e8db9b32" 2986 | 2987 | symbol-tree@^3.2.1: 2988 | version "3.2.2" 2989 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2990 | 2991 | tar-pack@^3.4.0: 2992 | version "3.4.1" 2993 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2994 | dependencies: 2995 | debug "^2.2.0" 2996 | fstream "^1.0.10" 2997 | fstream-ignore "^1.0.5" 2998 | once "^1.3.3" 2999 | readable-stream "^2.1.4" 3000 | rimraf "^2.5.1" 3001 | tar "^2.2.1" 3002 | uid-number "^0.0.6" 3003 | 3004 | tar@^2.2.1: 3005 | version "2.2.1" 3006 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3007 | dependencies: 3008 | block-stream "*" 3009 | fstream "^1.0.2" 3010 | inherits "2" 3011 | 3012 | term-size@^1.2.0: 3013 | version "1.2.0" 3014 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3015 | dependencies: 3016 | execa "^0.7.0" 3017 | 3018 | text-table@^0.2.0: 3019 | version "0.2.0" 3020 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3021 | 3022 | through2@^2.0.0: 3023 | version "2.0.3" 3024 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3025 | dependencies: 3026 | readable-stream "^2.1.5" 3027 | xtend "~4.0.1" 3028 | 3029 | time-require@^0.1.2: 3030 | version "0.1.2" 3031 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3032 | dependencies: 3033 | chalk "^0.4.0" 3034 | date-time "^0.1.1" 3035 | pretty-ms "^0.2.1" 3036 | text-table "^0.2.0" 3037 | 3038 | time-zone@^1.0.0: 3039 | version "1.0.0" 3040 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" 3041 | 3042 | timed-out@^4.0.0: 3043 | version "4.0.1" 3044 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3045 | 3046 | to-fast-properties@^1.0.3: 3047 | version "1.0.3" 3048 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3049 | 3050 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3051 | version "2.3.3" 3052 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3053 | dependencies: 3054 | punycode "^1.4.1" 3055 | 3056 | tr46@^1.0.0: 3057 | version "1.0.1" 3058 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3059 | dependencies: 3060 | punycode "^2.1.0" 3061 | 3062 | trim-newlines@^1.0.0: 3063 | version "1.0.0" 3064 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3065 | 3066 | trim-off-newlines@^1.0.1: 3067 | version "1.0.1" 3068 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 3069 | 3070 | trim-right@^1.0.1: 3071 | version "1.0.1" 3072 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3073 | 3074 | tunnel-agent@^0.6.0: 3075 | version "0.6.0" 3076 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3077 | dependencies: 3078 | safe-buffer "^5.0.1" 3079 | 3080 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3081 | version "0.14.5" 3082 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3083 | 3084 | type-check@~0.3.2: 3085 | version "0.3.2" 3086 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3087 | dependencies: 3088 | prelude-ls "~1.1.2" 3089 | 3090 | typescript@^2.6.2: 3091 | version "2.6.2" 3092 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 3093 | 3094 | uid-number@^0.0.6: 3095 | version "0.0.6" 3096 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3097 | 3098 | uid2@0.0.3: 3099 | version "0.0.3" 3100 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3101 | 3102 | unique-string@^1.0.0: 3103 | version "1.0.0" 3104 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3105 | dependencies: 3106 | crypto-random-string "^1.0.0" 3107 | 3108 | unique-temp-dir@^1.0.0: 3109 | version "1.0.0" 3110 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3111 | dependencies: 3112 | mkdirp "^0.5.1" 3113 | os-tmpdir "^1.0.1" 3114 | uid2 "0.0.3" 3115 | 3116 | unzip-response@^2.0.1: 3117 | version "2.0.1" 3118 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3119 | 3120 | update-notifier@^2.3.0: 3121 | version "2.3.0" 3122 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 3123 | dependencies: 3124 | boxen "^1.2.1" 3125 | chalk "^2.0.1" 3126 | configstore "^3.0.0" 3127 | import-lazy "^2.1.0" 3128 | is-installed-globally "^0.1.0" 3129 | is-npm "^1.0.0" 3130 | latest-version "^3.0.0" 3131 | semver-diff "^2.0.0" 3132 | xdg-basedir "^3.0.0" 3133 | 3134 | url-parse-lax@^1.0.0: 3135 | version "1.0.0" 3136 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3137 | dependencies: 3138 | prepend-http "^1.0.1" 3139 | 3140 | util-deprecate@~1.0.1: 3141 | version "1.0.2" 3142 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3143 | 3144 | uuid@^3.0.0, uuid@^3.1.0: 3145 | version "3.2.1" 3146 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3147 | 3148 | validate-npm-package-license@^3.0.1: 3149 | version "3.0.1" 3150 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3151 | dependencies: 3152 | spdx-correct "~1.0.0" 3153 | spdx-expression-parse "~1.0.0" 3154 | 3155 | verror@1.10.0: 3156 | version "1.10.0" 3157 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3158 | dependencies: 3159 | assert-plus "^1.0.0" 3160 | core-util-is "1.0.2" 3161 | extsprintf "^1.2.0" 3162 | 3163 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 3164 | version "4.0.2" 3165 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3166 | 3167 | well-known-symbols@^1.0.0: 3168 | version "1.0.0" 3169 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" 3170 | 3171 | whatwg-encoding@^1.0.1: 3172 | version "1.0.3" 3173 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3174 | dependencies: 3175 | iconv-lite "0.4.19" 3176 | 3177 | whatwg-fetch@>=0.10.0: 3178 | version "2.0.3" 3179 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3180 | 3181 | whatwg-url@^6.3.0: 3182 | version "6.4.0" 3183 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 3184 | dependencies: 3185 | lodash.sortby "^4.7.0" 3186 | tr46 "^1.0.0" 3187 | webidl-conversions "^4.0.1" 3188 | 3189 | which@^1.2.9: 3190 | version "1.3.0" 3191 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3192 | dependencies: 3193 | isexe "^2.0.0" 3194 | 3195 | wide-align@^1.1.0: 3196 | version "1.1.2" 3197 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3198 | dependencies: 3199 | string-width "^1.0.2" 3200 | 3201 | widest-line@^2.0.0: 3202 | version "2.0.0" 3203 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 3204 | dependencies: 3205 | string-width "^2.1.1" 3206 | 3207 | wordwrap@~1.0.0: 3208 | version "1.0.0" 3209 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3210 | 3211 | wrappy@1: 3212 | version "1.0.2" 3213 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3214 | 3215 | write-file-atomic@^1.1.4: 3216 | version "1.3.4" 3217 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3218 | dependencies: 3219 | graceful-fs "^4.1.11" 3220 | imurmurhash "^0.1.4" 3221 | slide "^1.1.5" 3222 | 3223 | write-file-atomic@^2.0.0: 3224 | version "2.3.0" 3225 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3226 | dependencies: 3227 | graceful-fs "^4.1.11" 3228 | imurmurhash "^0.1.4" 3229 | signal-exit "^3.0.2" 3230 | 3231 | write-json-file@^2.2.0: 3232 | version "2.3.0" 3233 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 3234 | dependencies: 3235 | detect-indent "^5.0.0" 3236 | graceful-fs "^4.1.2" 3237 | make-dir "^1.0.0" 3238 | pify "^3.0.0" 3239 | sort-keys "^2.0.0" 3240 | write-file-atomic "^2.0.0" 3241 | 3242 | write-pkg@^3.1.0: 3243 | version "3.1.0" 3244 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9" 3245 | dependencies: 3246 | sort-keys "^2.0.0" 3247 | write-json-file "^2.2.0" 3248 | 3249 | xdg-basedir@^3.0.0: 3250 | version "3.0.0" 3251 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3252 | 3253 | xml-name-validator@^2.0.1: 3254 | version "2.0.1" 3255 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3256 | 3257 | xtend@^4.0.0, xtend@~4.0.1: 3258 | version "4.0.1" 3259 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3260 | 3261 | yallist@^2.1.2: 3262 | version "2.1.2" 3263 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3264 | --------------------------------------------------------------------------------