├── .npmignore ├── .flowconfig ├── __tests__ ├── __mocks__ │ ├── enumOnRoot.flow.js │ ├── typeWithArray.flow.js │ ├── propertyWithDashes.flow.js │ ├── enumOnRoot.swagger.yaml │ ├── propertyWithDashes.swagger.yaml │ ├── mixedTypeArray.flow.js │ ├── nestedObject.flow.js │ ├── typeWithArray.swagger.yaml │ ├── objectInArray.flow.js │ ├── objectInArrayWithExact.flow.js │ ├── additionalProperties.flow.js │ ├── mixedTypeArray.swagger.yaml │ ├── oas3.swagger.flow.js │ ├── expected.json.flow.js │ ├── lowerCamelCase │ │ ├── expected.json.flow.js │ │ └── expected.yaml.flow.js │ ├── exact │ │ ├── expected.json.flow.js │ │ └── expected.yaml.flow.js │ ├── checkRequired │ │ ├── expected.json.flow.js │ │ └── expected.yaml.flow.js │ ├── transformSnakeCaseToCamelCase.flow.js │ ├── objectInArray.swagger.yaml │ ├── nestedObject.swagger.yaml │ ├── additionalProperties.swagger.yaml │ ├── expected.yaml.flow.js │ ├── transformSnakeCaseToCamelCase.swagger.yaml │ ├── oas3.swagger.yaml │ ├── swagger.json │ └── swagger.yaml ├── oas3.test.js ├── nestedObject.test.js ├── objectInArray.test.js ├── typeWithArray.test.js ├── additionalProperties.test.js ├── mixedTypeArray.test.js ├── enumOnRoot.test.js ├── propertyWithDashes.test.js ├── objectInArrayWithExact.test.js ├── transformSnakeCaseToCamelCase.test.js ├── exact.test.js ├── checkRequired.test.js ├── lowerCamelCase.test.js └── index.test.js ├── .gitignore ├── .babelrc ├── .vscode └── settings.json ├── .eslintrc ├── .travis.yml ├── LICENSE ├── package.json ├── README.md ├── src └── index.js └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | __tests__/ 3 | node_modules/ 4 | src/ 5 | .idea 6 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /__tests__/__mocks__/enumOnRoot.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type enumOnRoot = "hoge" | "piyo"; 3 | -------------------------------------------------------------------------------- /__tests__/__mocks__/typeWithArray.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Cat = { parentId: number | null }; 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | yarn-debug.log* 4 | yarn-error.log* 5 | coverage/ 6 | .DS_Store 7 | .idea 8 | -------------------------------------------------------------------------------- /__tests__/__mocks__/propertyWithDashes.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Cat = { "x-dashes-id"?: number }; 3 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "flow", 4 | "es2015" 5 | ], 6 | "plugins": [ 7 | "transform-class-properties" 8 | ] 9 | } -------------------------------------------------------------------------------- /__tests__/__mocks__/enumOnRoot.swagger.yaml: -------------------------------------------------------------------------------- 1 | definitions: 2 | enumOnRoot: 3 | type: string 4 | enum: 5 | - hoge 6 | - piyo 7 | -------------------------------------------------------------------------------- /__tests__/__mocks__/propertyWithDashes.swagger.yaml: -------------------------------------------------------------------------------- 1 | definitions: 2 | Cat: 3 | type: object 4 | properties: 5 | x-dashes-id: 6 | type: integer -------------------------------------------------------------------------------- /__tests__/__mocks__/mixedTypeArray.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Cat = { id?: number, "x-dashes-id"?: string }; 3 | export type MixedTypeArray = Array; 4 | -------------------------------------------------------------------------------- /__tests__/__mocks__/nestedObject.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type NestedObject = { 3 | nestedProperty: { base: Example, special: Example } 4 | }; 5 | export type Example = { value: number, name: string }; 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "eslint.options": { "configFile": ".eslintrc" }, 4 | "flow.useNPMPackagedFlow": true, 5 | "javascript.validate.enable": false 6 | } -------------------------------------------------------------------------------- /__tests__/__mocks__/typeWithArray.swagger.yaml: -------------------------------------------------------------------------------- 1 | definitions: 2 | Cat: 3 | type: object 4 | properties: 5 | parentId: 6 | type: 7 | - integer 8 | - 'null' 9 | required: 10 | - parentId 11 | -------------------------------------------------------------------------------- /__tests__/__mocks__/objectInArray.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type ObjectInArray = { 3 | array: Array<{ 4 | requiredProp: string, 5 | "x-dashes-id": string, 6 | optionalProp?: string, 7 | "x-dashes-optional-id"?: string 8 | }> 9 | }; 10 | -------------------------------------------------------------------------------- /__tests__/__mocks__/objectInArrayWithExact.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type ObjectInArray = {| 3 | array: Array<{| 4 | requiredProp: string, 5 | "x-dashes-id": string, 6 | optionalProp?: string, 7 | "x-dashes-optional-id"?: string 8 | |}> 9 | |}; 10 | -------------------------------------------------------------------------------- /__tests__/__mocks__/additionalProperties.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Simple = { [string]: string }; 3 | export type Complex = { 4 | [string]: { code?: number, text?: string }, 5 | name: string 6 | }; 7 | export type Messages = { [string]: Message }; 8 | export type Message = { code: number, text: string }; 9 | -------------------------------------------------------------------------------- /__tests__/__mocks__/mixedTypeArray.swagger.yaml: -------------------------------------------------------------------------------- 1 | definitions: 2 | Cat: 3 | type: object 4 | properties: 5 | id: 6 | type: integer 7 | x-dashes-id: 8 | type: string 9 | MixedTypeArray: 10 | type: array 11 | items: 12 | oneOf: 13 | - $ref: '#/definitions/Cat' 14 | - type: string 15 | -------------------------------------------------------------------------------- /__tests__/__mocks__/oas3.swagger.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Pet = { 3 | id: ?number, 4 | name: string, 5 | tag?: string, 6 | "x-dashes-id": string, 7 | owner?: Person | Company 8 | }; 9 | export type Pets = Array; 10 | export type Error = { code: number, message: string }; 11 | export type Person = { name?: string }; 12 | export type Company = { "tax-id"?: number }; 13 | -------------------------------------------------------------------------------- /__tests__/__mocks__/expected.json.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Pet = { 3 | id: number, 4 | "x-dashes-id": string, 5 | snake_case_id: string, 6 | objectType: {} 7 | } & NewPet; 8 | export type NewPet = { name: string, tag: string, category: Category }; 9 | export type ErrorModel = { code: number, message: string }; 10 | export type IGenericCollectionPet = { items: Array }; 11 | export type IGenericCollectionString = { items: Array }; 12 | -------------------------------------------------------------------------------- /__tests__/__mocks__/lowerCamelCase/expected.json.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Pet = { 3 | id: number, 4 | xDashesId: string, 5 | snakeCaseId: string, 6 | objectType: {} 7 | } & NewPet; 8 | export type NewPet = { name: string, tag: string, category: Category }; 9 | export type ErrorModel = { code: number, message: string }; 10 | export type IGenericCollectionPet = { items: Array }; 11 | export type IGenericCollectionString = { items: Array }; 12 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "airbnb", 5 | "prettier", 6 | "prettier/flowtype", 7 | "plugin:flowtype/recommended" 8 | ], 9 | "plugins": ["prettier", "flowtype"], 10 | "env": { 11 | "es6": true, 12 | "jest": true 13 | }, 14 | "rules": { 15 | "quotes": ["error", "double"], 16 | "comma-dangle": "off", 17 | "no-console": "off", 18 | "prettier/prettier": "error", 19 | "curly": 0 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /__tests__/__mocks__/exact/expected.json.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Pet = {| 3 | id: number, 4 | "x-dashes-id": string, 5 | snake_case_id: string, 6 | objectType: {} 7 | |} & NewPet; 8 | export type NewPet = {| name: string, tag: string, category: Category |}; 9 | export type ErrorModel = {| code: number, message: string |}; 10 | export type IGenericCollectionPet = {| items: Array |}; 11 | export type IGenericCollectionString = {| items: Array |}; 12 | -------------------------------------------------------------------------------- /__tests__/__mocks__/checkRequired/expected.json.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Pet = { 3 | id: number, 4 | "x-dashes-id"?: string, 5 | snake_case_id?: string, 6 | objectType?: {} 7 | } & NewPet; 8 | export type NewPet = { name: string, tag?: string, category?: Category }; 9 | export type ErrorModel = { code: number, message: string }; 10 | export type IGenericCollectionPet = { items?: Array }; 11 | export type IGenericCollectionString = { items?: Array }; 12 | -------------------------------------------------------------------------------- /__tests__/__mocks__/transformSnakeCaseToCamelCase.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Cat = { 3 | id?: number, 4 | camelCaseId?: string, 5 | xDashesId?: string, 6 | snakeCaseId?: string, 7 | requiredSnakeCaseId: string 8 | }; 9 | export type Dog = { 10 | nestedProperty: { 11 | snakeCaseId?: string, 12 | requiredSnakeCaseId: string, 13 | category?: Category 14 | } 15 | }; 16 | export type Category = { 17 | snakeCaseValue?: number, 18 | requiredSnakeCaseValue: number 19 | }; 20 | -------------------------------------------------------------------------------- /__tests__/__mocks__/objectInArray.swagger.yaml: -------------------------------------------------------------------------------- 1 | definitions: 2 | ObjectInArray: 3 | type: "object" 4 | required: 5 | - array 6 | properties: 7 | array: 8 | type: array 9 | items: 10 | type: "object" 11 | required: 12 | - requiredProp 13 | - x-dashes-id 14 | properties: 15 | requiredProp: 16 | type: string 17 | x-dashes-id: 18 | type: string 19 | optionalProp: 20 | type: string 21 | x-dashes-optional-id: 22 | type: string 23 | -------------------------------------------------------------------------------- /__tests__/__mocks__/nestedObject.swagger.yaml: -------------------------------------------------------------------------------- 1 | components: 2 | schemas: 3 | NestedObject: 4 | type: "object" 5 | required: 6 | - nestedProperty 7 | properties: 8 | nestedProperty: 9 | type: object 10 | required: 11 | - base 12 | - special 13 | properties: 14 | base: 15 | $ref: "#/components/schemas/Example" 16 | special: 17 | $ref: "#/components/schemas/Example" 18 | Example: 19 | type: "object" 20 | required: 21 | - value 22 | - name 23 | properties: 24 | value: 25 | type: number 26 | name: 27 | type: string 28 | -------------------------------------------------------------------------------- /__tests__/__mocks__/additionalProperties.swagger.yaml: -------------------------------------------------------------------------------- 1 | # examples are taken from https://swagger.io/docs/specification/data-models/dictionaries/ 2 | definitions: 3 | Simple: 4 | type: object 5 | additionalProperties: 6 | type: string 7 | Complex: 8 | type: object 9 | required: [ name ] 10 | properties: 11 | name: 12 | type: string 13 | additionalProperties: 14 | type: object 15 | properties: 16 | code: 17 | type: integer 18 | text: 19 | type: string 20 | Messages: 21 | type: object 22 | additionalProperties: 23 | $ref: '#/definitions/Message' 24 | Message: 25 | type: object 26 | required: [ code, text ] 27 | properties: 28 | code: 29 | type: integer 30 | text: 31 | type: string 32 | additionalProperties: false 33 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '6' 4 | - '5' 5 | - '4' 6 | - 4.4.3 7 | deploy: 8 | provider: npm 9 | email: hi@yayoc.com 10 | api_key: 11 | secure: I+FYbYbptDakv6XlWX1lf2Dfuw4e11wvkxEDKvbKqDAzEgDAeq87tbE772kuy7uCC+NlmFznGABkeFcTHEqK5jWvfgBdRDtmijy5yqU6gQ8xbgncrYfZClhwc85TpPyA757usdLu+JRgxNzVXJ5lQFYPLmWXow1RoTFNR+wrY4PEly3ZmrKjV6HyI9URxSm6FBq5Wmh0KwIhVUq8YuMc5M/bDQn6NaOemK7ii8v1Rv+n/LE+Tj73tEqJz35MZe6dn9AjUxeg9N3+ZaEnzRv6xvL/uQ5q5cRNflle73tFVH8155H+vrF7vbHWfzcTG0Di/Ey4OGIxoEQpk/whLuQwrPA1RSjmMb2iW1ISubKL2o2bDEZjMYwL+0lVidbeCqfpbIToBdh+tEjTc3CBShmNxNglz1BPzrcW6vGBlxBtUXAYjrWvZyApSu2Aayx8P4qZz863kzI2oAwG8cs6e1U4Tge2SnR3zyEGvHFbECdcJUZJDtI/S4v+MIoMpHg7Dwk9nfvL55zRz6emhAZHbmcMnbDcjvwg1zmayqXx17CqCfBb0s4AbmAL+KX8hvWnJ0etm5ppj0cv/6Ajp+9wUparItz4KshYum1a7RlqAKPSZz/ZXzCOn05fbPh/sd2cxfMpi4ADFSpPdUrvCNRI9JoBLGd5Pq/zeD80qZ6xEJT1clU= 12 | on: 13 | tags: true 14 | -------------------------------------------------------------------------------- /__tests__/oas3.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse oas3 document", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/oas3.swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join(__dirname, "__mocks__/oas3.swagger.flow.js"); 20 | const expectedString = fs.readFileSync(expected, "utf8"); 21 | expect(generator(content)).toEqual(expectedString); 22 | }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /__tests__/nestedObject.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse objct in array", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/nestedObject.swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join(__dirname, "__mocks__/nestedObject.flow.js"); 20 | const expectedString = fs.readFileSync(expected, "utf8"); 21 | expect(generator(content)).toEqual(expectedString); 22 | }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /__tests__/objectInArray.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse objct in array", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/objectInArray.swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join(__dirname, "__mocks__/objectInArray.flow.js"); 20 | const expectedString = fs.readFileSync(expected, "utf8"); 21 | expect(generator(content)).toEqual(expectedString); 22 | }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /__tests__/typeWithArray.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse property with type array", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/typeWithArray.swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join(__dirname, "__mocks__/typeWithArray.flow.js"); 20 | const expectedString = fs.readFileSync(expected, "utf8"); 21 | expect(generator(content)).toEqual(expectedString); 22 | }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /__tests__/additionalProperties.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse additional properties", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/additionalProperties.swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join(__dirname, "__mocks__/additionalProperties.flow.js"); 20 | const expectedString = fs.readFileSync(expected, "utf8"); 21 | expect(generator(content)).toEqual(expectedString); 22 | }); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /__tests__/mixedTypeArray.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse mixed-type array", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join( 18 | __dirname, 19 | "__mocks__/mixedTypeArray.swagger.yaml" 20 | ); 21 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 22 | const expected = path.join(__dirname, "__mocks__/mixedTypeArray.flow.js"); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /__tests__/enumOnRoot.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { FlowTypeGenerator, generator } from "../src/index"; 5 | 6 | jest.mock('commander', () => { 7 | return { 8 | checkRequired: true, 9 | arguments: jest.fn().mockReturnThis(), 10 | option: jest.fn().mockReturnThis(), 11 | action: jest.fn().mockReturnThis(), 12 | parse: jest.fn().mockReturnThis(), 13 | } 14 | }); 15 | 16 | describe("generate flow types", () => { 17 | describe("parse enum on root element", () => { 18 | it("should generate expected flow types", () => { 19 | const file = path.join(__dirname, "__mocks__/enumOnRoot.swagger.yaml"); 20 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 21 | const expected = path.join(__dirname, "__mocks__/enumOnRoot.flow.js"); 22 | const expectedString = fs.readFileSync(expected, "utf8"); 23 | expect(generator(content)).toEqual(expectedString); 24 | }); 25 | }); 26 | }); 27 | -------------------------------------------------------------------------------- /__tests__/propertyWithDashes.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("parse property with dashes", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join( 18 | __dirname, 19 | "__mocks__/propertyWithDashes.swagger.yaml" 20 | ); 21 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 22 | const expected = path.join(__dirname, "__mocks__/propertyWithDashes.flow.js"); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /__tests__/objectInArrayWithExact.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock('commander', () => { 7 | return { 8 | exact: true, 9 | checkRequired: true, 10 | arguments: jest.fn().mockReturnThis(), 11 | option: jest.fn().mockReturnThis(), 12 | action: jest.fn().mockReturnThis(), 13 | parse: jest.fn().mockReturnThis(), 14 | } 15 | }); 16 | 17 | describe("generate flow types", () => { 18 | describe("parse objct in array", () => { 19 | it("should generate expected flow types", () => { 20 | const file = path.join(__dirname, "__mocks__/objectInArray.swagger.yaml"); 21 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 22 | const expected = path.join(__dirname, "__mocks__/objectInArrayWithExact.flow.js"); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017 yayoc 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /__tests__/transformSnakeCaseToCamelCase.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | lowerCamelCase: true, 9 | arguments: jest.fn().mockReturnThis(), 10 | option: jest.fn().mockReturnThis(), 11 | action: jest.fn().mockReturnThis(), 12 | parse: jest.fn().mockReturnThis() 13 | })); 14 | 15 | describe("generate flow types", () => { 16 | describe("transform key string to lower camel case", () => { 17 | it("should generate expected flow types", () => { 18 | const file = path.join(__dirname, "__mocks__/transformSnakeCaseToCamelCase.swagger.yaml"); 19 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 20 | const expected = path.join(__dirname, "__mocks__/transformSnakeCaseToCamelCase.flow.js"); 21 | const expectedString = fs.readFileSync(expected, "utf8"); 22 | expect(generator(content)).toEqual(expectedString); 23 | }); 24 | }); 25 | }); 26 | -------------------------------------------------------------------------------- /__tests__/__mocks__/expected.yaml.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Order = { 3 | id: number, 4 | petId: number, 5 | quantity: number, 6 | shipDate: string, 7 | status: "placed" | "approved" | "delivered", 8 | complete: boolean 9 | }; 10 | export type Category = { id: number, name: string }; 11 | export type User = { 12 | id: number, 13 | username: string, 14 | firstName: string, 15 | lastName: string, 16 | email: string, 17 | password: string, 18 | phone: string, 19 | userStatus: number 20 | }; 21 | export type Tag = { id: number, name: string }; 22 | export type Pet = { 23 | id: number, 24 | "x-dashes-id": string, 25 | snake_case_id: string, 26 | category: Category, 27 | name: string, 28 | photoUrls: Array, 29 | tags: Array, 30 | status: "available" | "pending" | "sold", 31 | objectType: {} 32 | }; 33 | export type IGenericCollectionPet = { items: Array }; 34 | export type IGenericCollectionString = { items: Array }; 35 | export type ApiResponse = { code: number, type: string, message: string }; 36 | -------------------------------------------------------------------------------- /__tests__/__mocks__/lowerCamelCase/expected.yaml.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Order = { 3 | id: number, 4 | petId: number, 5 | quantity: number, 6 | shipDate: string, 7 | status: "placed" | "approved" | "delivered", 8 | complete: boolean 9 | }; 10 | export type Category = { id: number, name: string }; 11 | export type User = { 12 | id: number, 13 | username: string, 14 | firstName: string, 15 | lastName: string, 16 | email: string, 17 | password: string, 18 | phone: string, 19 | userStatus: number 20 | }; 21 | export type Tag = { id: number, name: string }; 22 | export type Pet = { 23 | id: number, 24 | xDashesId: string, 25 | snakeCaseId: string, 26 | category: Category, 27 | name: string, 28 | photoUrls: Array, 29 | tags: Array, 30 | status: "available" | "pending" | "sold", 31 | objectType: {} 32 | }; 33 | export type IGenericCollectionPet = { items: Array }; 34 | export type IGenericCollectionString = { items: Array }; 35 | export type ApiResponse = { code: number, type: string, message: string }; 36 | -------------------------------------------------------------------------------- /__tests__/__mocks__/exact/expected.yaml.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Order = {| 3 | id: number, 4 | petId: number, 5 | quantity: number, 6 | shipDate: string, 7 | status: "placed" | "approved" | "delivered", 8 | complete: boolean 9 | |}; 10 | export type Category = {| id: number, name: string |}; 11 | export type User = {| 12 | id: number, 13 | username: string, 14 | firstName: string, 15 | lastName: string, 16 | email: string, 17 | password: string, 18 | phone: string, 19 | userStatus: number 20 | |}; 21 | export type Tag = {| id: number, name: string |}; 22 | export type Pet = {| 23 | id: number, 24 | "x-dashes-id": string, 25 | snake_case_id: string, 26 | category: Category, 27 | name: string, 28 | photoUrls: Array, 29 | tags: Array, 30 | status: "available" | "pending" | "sold", 31 | objectType: {} 32 | |}; 33 | export type IGenericCollectionPet = {| items: Array |}; 34 | export type IGenericCollectionString = {| items: Array |}; 35 | export type ApiResponse = {| code: number, type: string, message: string |}; 36 | -------------------------------------------------------------------------------- /__tests__/__mocks__/checkRequired/expected.yaml.flow.js: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | export type Order = { 3 | id?: number, 4 | petId?: number, 5 | quantity?: number, 6 | shipDate?: string, 7 | status?: "placed" | "approved" | "delivered", 8 | complete?: boolean 9 | }; 10 | export type Category = { id?: number, name?: string }; 11 | export type User = { 12 | id?: number, 13 | username?: string, 14 | firstName?: string, 15 | lastName?: string, 16 | email?: string, 17 | password?: string, 18 | phone?: string, 19 | userStatus?: number 20 | }; 21 | export type Tag = { id?: number, name?: string }; 22 | export type Pet = { 23 | id?: number, 24 | "x-dashes-id"?: string, 25 | snake_case_id?: string, 26 | category?: Category, 27 | name: string, 28 | photoUrls: Array, 29 | tags?: Array, 30 | status?: "available" | "pending" | "sold", 31 | objectType?: {} 32 | }; 33 | export type IGenericCollectionPet = { items?: Array }; 34 | export type IGenericCollectionString = { items?: Array }; 35 | export type ApiResponse = { code?: number, type?: string, message?: string }; 36 | -------------------------------------------------------------------------------- /__tests__/__mocks__/transformSnakeCaseToCamelCase.swagger.yaml: -------------------------------------------------------------------------------- 1 | components: 2 | schemas: 3 | Cat: 4 | type: object 5 | required: 6 | - required_snake_case_id 7 | properties: 8 | id: 9 | type: integer 10 | camelCaseId: 11 | type: string 12 | x-dashes-id: 13 | type: string 14 | snake_case_id: 15 | type: string 16 | required_snake_case_id: 17 | type: string 18 | Dog: 19 | type: object 20 | required: 21 | - nested_property 22 | properties: 23 | nested_property: 24 | type: object 25 | required: 26 | - required_snake_case_id 27 | properties: 28 | snake_case_id: 29 | type: string 30 | required_snake_case_id: 31 | type: string 32 | category: 33 | $ref: "#/components/schemas/Category" 34 | Category: 35 | type: object 36 | required: 37 | - required_snake_case_value 38 | properties: 39 | snake_case_value: 40 | type: number 41 | required_snake_case_value: 42 | type: number 43 | -------------------------------------------------------------------------------- /__tests__/exact.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | exact: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("with --exact", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join( 20 | __dirname, 21 | "__mocks__/exact/expected.yaml.flow.js" 22 | ); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | 27 | it("should generate expected flow types from swagger.json", () => { 28 | const file = path.join(__dirname, "__mocks__/swagger.json"); 29 | const content = JSON.parse(fs.readFileSync(file, "utf8")); 30 | const expected = path.join( 31 | __dirname, 32 | "__mocks__/exact/expected.json.flow.js" 33 | ); 34 | const expectedString = fs.readFileSync(expected, "utf8"); 35 | expect(generator(content)).toEqual(expectedString); 36 | }); 37 | }); 38 | }); 39 | -------------------------------------------------------------------------------- /__tests__/checkRequired.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | checkRequired: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("with --check-required", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join( 20 | __dirname, 21 | "__mocks__/checkRequired/expected.yaml.flow.js" 22 | ); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | 27 | it("should generate expected flow types from swagger.json", () => { 28 | const file = path.join(__dirname, "__mocks__/swagger.json"); 29 | const content = JSON.parse(fs.readFileSync(file, "utf8")); 30 | const expected = path.join( 31 | __dirname, 32 | "__mocks__/checkRequired/expected.json.flow.js" 33 | ); 34 | const expectedString = fs.readFileSync(expected, "utf8"); 35 | expect(generator(content)).toEqual(expectedString); 36 | }); 37 | }); 38 | }); 39 | -------------------------------------------------------------------------------- /__tests__/lowerCamelCase.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { generator } from "../src/index"; 5 | 6 | jest.mock("commander", () => ({ 7 | lowerCamelCase: true, 8 | arguments: jest.fn().mockReturnThis(), 9 | option: jest.fn().mockReturnThis(), 10 | action: jest.fn().mockReturnThis(), 11 | parse: jest.fn().mockReturnThis() 12 | })); 13 | 14 | describe("generate flow types", () => { 15 | describe("with --lower-camel-case", () => { 16 | it("should generate expected flow types", () => { 17 | const file = path.join(__dirname, "__mocks__/swagger.yaml"); 18 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 19 | const expected = path.join( 20 | __dirname, 21 | "__mocks__/lowerCamelCase/expected.yaml.flow.js" 22 | ); 23 | const expectedString = fs.readFileSync(expected, "utf8"); 24 | expect(generator(content)).toEqual(expectedString); 25 | }); 26 | 27 | it("should generate expected flow types from swagger.json", () => { 28 | const file = path.join(__dirname, "__mocks__/swagger.json"); 29 | const content = JSON.parse(fs.readFileSync(file, "utf8")); 30 | const expected = path.join( 31 | __dirname, 32 | "__mocks__/lowerCamelCase/expected.json.flow.js" 33 | ); 34 | const expectedString = fs.readFileSync(expected, "utf8"); 35 | expect(generator(content)).toEqual(expectedString); 36 | }); 37 | }); 38 | }); 39 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "swagger-to-flowtype", 3 | "version": "0.4.0", 4 | "description": "Command line tool for generating flow types from swagger", 5 | "main": "./dist/index.js", 6 | "scripts": { 7 | "init": "mkdirp dist", 8 | "clean": "rimraf dist", 9 | "test": "jest", 10 | "test:watch": "jest --watch", 11 | "prebuild": "npm run clean && npm run init", 12 | "build": "babel ./src -d ./dist", 13 | "prepublish": "npm run build", 14 | "flow": "flow", 15 | "prettier": "prettier --write {src,__{tests,mocks}__}/**/*.js" 16 | }, 17 | "author": "yayoc (http://yayoc.com)", 18 | "license": "MIT", 19 | "repository": { 20 | "type": "git", 21 | "url": "git+https://github.com/yayoc/swagger-to-flowtype.git" 22 | }, 23 | "bugs": { 24 | "url": "https://github.com/yayoc/swagger-to-flowtype/issues" 25 | }, 26 | "homepage": "https://github.com/yayoc/swagger-to-flowtype#readme", 27 | "keywords": [ 28 | "flow", 29 | "swagger" 30 | ], 31 | "bin": { 32 | "swagger-to-flowtype": "./dist/index.js" 33 | }, 34 | "dependencies": { 35 | "axios": "^0.21.1", 36 | "camelize": "^1.0.0", 37 | "commander": "^2.9.0", 38 | "js-yaml": "^3.8.4", 39 | "prettier": "^1.11.0" 40 | }, 41 | "devDependencies": { 42 | "babel-cli": "^6.24.1", 43 | "babel-eslint": "^7.2.3", 44 | "babel-plugin-transform-class-properties": "^6.24.1", 45 | "babel-preset-es2015": "^6.24.1", 46 | "babel-preset-flow": "^6.23.0", 47 | "eslint": "^4.18.2", 48 | "eslint-config-airbnb": "^15.0.1", 49 | "eslint-config-prettier": "^2.3.0", 50 | "eslint-plugin-flowtype": "^2.35.0", 51 | "eslint-plugin-import": "^2.3.0", 52 | "eslint-plugin-jsx-a11y": "^5.0.3", 53 | "eslint-plugin-prettier": "^2.1.2", 54 | "eslint-plugin-react": "^7.1.0", 55 | "flow-bin": "^0.48.0", 56 | "jest": "^20.0.4", 57 | "rimraf": "^2.6.2" 58 | }, 59 | "jest": { 60 | "testRegex": "(/__tests__/[^__mocks__].*|(\\.|/)(test|spec))\\.jsx?$", 61 | "collectCoverageFrom": [ 62 | "src/index.js" 63 | ], 64 | "collectCoverage": true 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- 1 | import fs from "fs"; 2 | import path from "path"; 3 | import yaml from "js-yaml"; 4 | import { 5 | generator, 6 | isUrl, 7 | getContentFromUrl, 8 | getContentFromFile 9 | } from "../src/index"; 10 | 11 | jest.mock("commander", () => ({ 12 | checkRequired: false, 13 | arguments: jest.fn().mockReturnThis(), 14 | option: jest.fn().mockReturnThis(), 15 | action: jest.fn().mockReturnThis(), 16 | parse: jest.fn().mockReturnThis() 17 | })); 18 | 19 | describe("generate flow types", () => { 20 | describe("without --check-required", () => { 21 | it("should generate expected flow types", () => { 22 | const file = path.join(__dirname, "__mocks__/swagger.yaml"); 23 | const content = yaml.safeLoad(fs.readFileSync(file, "utf8")); 24 | const expected = path.join(__dirname, "__mocks__/expected.yaml.flow.js"); 25 | const expectedString = fs.readFileSync(expected, "utf8"); 26 | expect(generator(content)).toEqual(expectedString); 27 | }); 28 | 29 | it("should generate expected flow types from swagger.json", () => { 30 | const file = path.join(__dirname, "__mocks__/swagger.json"); 31 | const content = JSON.parse(fs.readFileSync(file, "utf8")); 32 | const expected = path.join(__dirname, "__mocks__/expected.json.flow.js"); 33 | const expectedString = fs.readFileSync(expected, "utf8"); 34 | expect(generator(content)).toEqual(expectedString); 35 | }); 36 | }); 37 | }); 38 | 39 | describe("Utility functions", () => { 40 | describe("isURL", () => { 41 | it("should return true when value is URL", () => { 42 | expect(isUrl("https://sample.com/json")).toEqual(true); 43 | }); 44 | 45 | it("should return false when value is not URL", () => { 46 | expect(isUrl("/Users/foo/sample.json")).toEqual(false); 47 | }); 48 | }); 49 | }); 50 | 51 | describe("Get content from URL or file", () => { 52 | describe("Get content from URL", () => { 53 | it("should return object from JSON response", () => { 54 | const url = 55 | "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v2.0/json/uber.json"; 56 | return getContentFromUrl(url).then(res => { 57 | expect(res.swagger).toEqual("2.0"); 58 | }); 59 | }); 60 | it("should return object from yaml response", () => { 61 | const url = 62 | "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v2.0/yaml/uber.yaml"; 63 | return getContentFromUrl(url).then(res => { 64 | expect(res.swagger).toEqual("2.0"); 65 | }); 66 | }); 67 | }); 68 | 69 | describe("Get content from file", () => { 70 | it("should return object from JSON file", () => { 71 | const file = path.join(__dirname, "__mocks__/swagger.json"); 72 | const content = getContentFromFile(file); 73 | expect(content.swagger).toEqual("2.0"); 74 | }); 75 | it("should return object from yaml file", () => { 76 | const file = path.join(__dirname, "__mocks__/swagger.yaml"); 77 | const content = getContentFromFile(file); 78 | expect(content.swagger).toEqual("2.0"); 79 | }); 80 | }); 81 | }); 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # swagger-to-flowtype 2 | 3 | `swagger-to-flowtype` is a tool for generating type definitions of [Flow](https://flow.org/) from swagger file. 4 | 5 | ## Getting started 6 | 7 | #### Install package 8 | 9 | `npm i -g swagger-to-flowtype` 10 | 11 | #### Generating flow type definitions 12 | 13 | `$swagger-to-flowtype ` 14 | 15 | This command generates a file named **flowtype.js** includes type definitions as default. 16 | 17 | ##### Options 18 | 19 | *`Specify an output path`* 20 | 21 | You can also specify an output path with `-d option`. 22 | 23 | `$swagger-to-flowtype -d ` 24 | 25 | *`Supporting Maybe type`* 26 | 27 | If you pass a `--check-required` option, `swagger-to-flowtype` will check `required field` on your swagger file, then output flow definitions with Maybe type. 28 | 29 | ```json 30 | "NewPet": { 31 | "type": "object", 32 | "required": [ 33 | "name" 34 | ], 35 | "properties": { 36 | "name": { 37 | "type": "string" 38 | }, 39 | "tag": { 40 | "type": "string" 41 | } 42 | } 43 | } 44 | ``` 45 | 46 | will be 47 | 48 | ```js 49 | export type NewPet = { 50 | name: string, 51 | tag?: string 52 | } 53 | ``` 54 | 55 | *`Transform property key to lower camel case`* 56 | 57 | `--lower-camel-case` option transforms each property keys to lower camel case. 58 | 59 | ```json 60 | "Cat": { 61 | "type": "object", 62 | "properties": { 63 | "long_long_key": { 64 | "type": "string" 65 | } 66 | } 67 | } 68 | ``` 69 | 70 | will be 71 | 72 | ```js 73 | export type Cat = { longLongKey?: string }; 74 | ``` 75 | 76 | ## Example 77 | 78 | swagger file like following 79 | 80 | ```yaml 81 | ... 82 | 83 | definitions: 84 | Order: 85 | type: "object" 86 | properties: 87 | id: 88 | type: "integer" 89 | format: "int64" 90 | petId: 91 | type: "integer" 92 | format: "int64" 93 | quantity: 94 | type: "integer" 95 | format: "int32" 96 | shipDate: 97 | type: "string" 98 | format: "date-time" 99 | status: 100 | type: "string" 101 | description: "Order Status" 102 | enum: 103 | - "placed" 104 | - "approved" 105 | - "delivered" 106 | complete: 107 | type: "boolean" 108 | default: false 109 | xml: 110 | name: "Order" 111 | Category: 112 | type: "object" 113 | properties: 114 | id: 115 | type: "integer" 116 | format: "int64" 117 | name: 118 | type: "string" 119 | xml: 120 | name: "Category" 121 | ... 122 | 123 | ``` 124 | 125 | Output will be like below 126 | 127 | ```js 128 | // @flow 129 | export type Order = { 130 | id: number, 131 | petId: number, 132 | quantity: number, 133 | shipDate: string, 134 | status: 'placed' | 'approved' | 'delivered', 135 | complete: boolean 136 | }; 137 | export type Category = { id: number, name: string }; 138 | 139 | ``` 140 | 141 | ## Requirements 142 | 143 | **Node 4+ is required** 144 | 145 | ## Tests 146 | 147 | `npm test` 148 | 149 | -------------------------------------------------------------------------------- /__tests__/__mocks__/oas3.swagger.yaml: -------------------------------------------------------------------------------- 1 | openapi: "3.0.0" 2 | info: 3 | version: 1.0.0 4 | title: Swagger Petstore 5 | license: 6 | name: MIT 7 | servers: 8 | - url: http://petstore.swagger.io/v1 9 | paths: 10 | /pets: 11 | get: 12 | summary: List all pets 13 | operationId: listPets 14 | tags: 15 | - pets 16 | parameters: 17 | - name: limit 18 | in: query 19 | description: How many items to return at one time (max 100) 20 | required: false 21 | schema: 22 | type: integer 23 | format: int32 24 | responses: 25 | '200': 26 | description: An paged array of pets 27 | headers: 28 | x-next: 29 | description: A link to the next page of responses 30 | schema: 31 | type: string 32 | content: 33 | application/json: 34 | schema: 35 | $ref: "#/components/schemas/Pets" 36 | default: 37 | description: unexpected error 38 | content: 39 | application/json: 40 | schema: 41 | $ref: "#/components/schemas/Error" 42 | post: 43 | summary: Create a pet 44 | operationId: createPets 45 | tags: 46 | - pets 47 | responses: 48 | '201': 49 | description: Null response 50 | default: 51 | description: unexpected error 52 | content: 53 | application/json: 54 | schema: 55 | $ref: "#/components/schemas/Error" 56 | /pets/{petId}: 57 | get: 58 | summary: Info for a specific pet 59 | operationId: showPetById 60 | tags: 61 | - pets 62 | parameters: 63 | - name: petId 64 | in: path 65 | required: true 66 | description: The id of the pet to retrieve 67 | schema: 68 | type: string 69 | responses: 70 | '200': 71 | description: Expected response to a valid request 72 | content: 73 | application/json: 74 | schema: 75 | $ref: "#/components/schemas/Pets" 76 | default: 77 | description: unexpected error 78 | content: 79 | application/json: 80 | schema: 81 | $ref: "#/components/schemas/Error" 82 | components: 83 | schemas: 84 | Pet: 85 | required: 86 | - id 87 | - name 88 | - x-dashes-id 89 | properties: 90 | id: 91 | type: integer 92 | format: int64 93 | nullable: true 94 | name: 95 | type: string 96 | tag: 97 | type: string 98 | x-dashes-id: 99 | type: string 100 | owner: 101 | oneOf: 102 | - $ref: "#/components/schemas/Person" 103 | - $ref: "#/components/schemas/Company" 104 | Pets: 105 | type: array 106 | items: 107 | $ref: "#/components/schemas/Pet" 108 | Error: 109 | required: 110 | - code 111 | - message 112 | properties: 113 | code: 114 | type: integer 115 | format: int32 116 | message: 117 | type: string 118 | Person: 119 | properties: 120 | name: 121 | type: string 122 | Company: 123 | properties: 124 | tax-id: 125 | type: number -------------------------------------------------------------------------------- /__tests__/__mocks__/swagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "swagger": "2.0", 3 | "info": { 4 | "version": "1.0.0", 5 | "title": "Swagger Petstore", 6 | "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", 7 | "termsOfService": "http://swagger.io/terms/", 8 | "contact": { 9 | "name": "Swagger API Team" 10 | }, 11 | "license": { 12 | "name": "MIT" 13 | } 14 | }, 15 | "host": "petstore.swagger.io", 16 | "basePath": "/api", 17 | "schemes": [ 18 | "http" 19 | ], 20 | "consumes": [ 21 | "application/json" 22 | ], 23 | "produces": [ 24 | "application/json" 25 | ], 26 | "paths": { 27 | "/pets": { 28 | "get": { 29 | "description": "Returns all pets from the system that the user has access to", 30 | "operationId": "findPets", 31 | "produces": [ 32 | "application/json", 33 | "application/xml", 34 | "text/xml", 35 | "text/html" 36 | ], 37 | "parameters": [ 38 | { 39 | "name": "tags", 40 | "in": "query", 41 | "description": "tags to filter by", 42 | "required": false, 43 | "type": "array", 44 | "items": { 45 | "type": "string" 46 | }, 47 | "collectionFormat": "csv" 48 | }, 49 | { 50 | "name": "limit", 51 | "in": "query", 52 | "description": "maximum number of results to return", 53 | "required": false, 54 | "type": "integer", 55 | "format": "int32" 56 | } 57 | ], 58 | "responses": { 59 | "200": { 60 | "description": "pet response", 61 | "schema": { 62 | "type": "array", 63 | "items": { 64 | "$ref": "#/definitions/Pet" 65 | } 66 | } 67 | }, 68 | "default": { 69 | "description": "unexpected error", 70 | "schema": { 71 | "$ref": "#/definitions/ErrorModel" 72 | } 73 | } 74 | } 75 | }, 76 | "post": { 77 | "description": "Creates a new pet in the store. Duplicates are allowed", 78 | "operationId": "addPet", 79 | "produces": [ 80 | "application/json" 81 | ], 82 | "parameters": [ 83 | { 84 | "name": "pet", 85 | "in": "body", 86 | "description": "Pet to add to the store", 87 | "required": true, 88 | "schema": { 89 | "$ref": "#/definitions/NewPet" 90 | } 91 | } 92 | ], 93 | "responses": { 94 | "200": { 95 | "description": "pet response", 96 | "schema": { 97 | "$ref": "#/definitions/Pet" 98 | } 99 | }, 100 | "default": { 101 | "description": "unexpected error", 102 | "schema": { 103 | "$ref": "#/definitions/ErrorModel" 104 | } 105 | } 106 | } 107 | } 108 | }, 109 | "/pets/{id}": { 110 | "get": { 111 | "description": "Returns a user based on a single ID, if the user does not have access to the pet", 112 | "operationId": "findPetById", 113 | "produces": [ 114 | "application/json", 115 | "application/xml", 116 | "text/xml", 117 | "text/html" 118 | ], 119 | "parameters": [ 120 | { 121 | "name": "id", 122 | "in": "path", 123 | "description": "ID of pet to fetch", 124 | "required": true, 125 | "type": "integer", 126 | "format": "int64" 127 | } 128 | ], 129 | "responses": { 130 | "200": { 131 | "description": "pet response", 132 | "schema": { 133 | "$ref": "#/definitions/Pet" 134 | } 135 | }, 136 | "default": { 137 | "description": "unexpected error", 138 | "schema": { 139 | "$ref": "#/definitions/ErrorModel" 140 | } 141 | } 142 | } 143 | }, 144 | "delete": { 145 | "description": "deletes a single pet based on the ID supplied", 146 | "operationId": "deletePet", 147 | "parameters": [ 148 | { 149 | "name": "id", 150 | "in": "path", 151 | "description": "ID of pet to delete", 152 | "required": true, 153 | "type": "integer", 154 | "format": "int64" 155 | } 156 | ], 157 | "responses": { 158 | "204": { 159 | "description": "pet deleted" 160 | }, 161 | "default": { 162 | "description": "unexpected error", 163 | "schema": { 164 | "$ref": "#/definitions/ErrorModel" 165 | } 166 | } 167 | } 168 | } 169 | } 170 | }, 171 | "definitions": { 172 | "Pet": { 173 | "type": "object", 174 | "allOf": [ 175 | { 176 | "$ref": "#/definitions/NewPet" 177 | }, 178 | { 179 | "required": [ 180 | "id" 181 | ], 182 | "properties": { 183 | "id": { 184 | "type": "integer", 185 | "format": "int64" 186 | }, 187 | "x-dashes-id": { 188 | "type": "string" 189 | }, 190 | "snake_case_id": { 191 | "type": "string" 192 | }, 193 | "objectType": { 194 | "type": "object" 195 | } 196 | } 197 | } 198 | ] 199 | }, 200 | "NewPet": { 201 | "type": "object", 202 | "required": [ 203 | "name" 204 | ], 205 | "properties": { 206 | "name": { 207 | "type": "string" 208 | }, 209 | "tag": { 210 | "type": "string" 211 | }, 212 | "category": { 213 | "$ref": "#/definitions/Category" 214 | } 215 | } 216 | }, 217 | "ErrorModel": { 218 | "type": "object", 219 | "required": [ 220 | "code", 221 | "message" 222 | ], 223 | "properties": { 224 | "code": { 225 | "type": "integer", 226 | "format": "int32" 227 | }, 228 | "message": { 229 | "type": "string" 230 | } 231 | } 232 | }, 233 | "IGenericCollection[Pet]": { 234 | "type": "object", 235 | "properties": { 236 | "items": { 237 | "type": "array", 238 | "items": { 239 | "$ref": "#/definitions/Pet" 240 | } 241 | } 242 | } 243 | }, 244 | "IGenericCollection[String]": { 245 | "type": "object", 246 | "properties": { 247 | "items": { 248 | "type": "array", 249 | "items": { 250 | "type": "string" 251 | }, 252 | "readOnly": true 253 | } 254 | } 255 | } 256 | } 257 | } 258 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | // @flow 3 | import program from "commander"; 4 | import prettier from "prettier"; 5 | import yaml from "js-yaml"; 6 | import fs from "fs"; 7 | import path from "path"; 8 | import axios from "axios"; 9 | import camelize from "camelize"; 10 | 11 | // Swagger data types are base on types supported by the JSON-Scheme Draft4. 12 | const typeMapping = { 13 | array: "Array<*>", 14 | boolean: "boolean", 15 | integer: "number", 16 | number: "number", 17 | null: "null", 18 | object: "Object", 19 | Object: "Object", 20 | string: "string", 21 | enum: "string" 22 | }; 23 | 24 | const definitionTypeName = (ref): string => { 25 | const re = /#\/definitions\/(.*)|#\/components\/schemas\/(.*)/; 26 | const found = ref.match(re); 27 | if (!found) { 28 | return ""; 29 | } 30 | return found[1] || found[2]; 31 | }; 32 | 33 | const stripBrackets = (name: string) => name.replace(/[[\]']+/g, ""); 34 | 35 | const typeFor = (property: any): string => { 36 | if (property.type === "array") { 37 | if ("oneOf" in property.items) { 38 | return `Array<${property.items.oneOf 39 | .map(e => 40 | e.type === "object" 41 | ? propertiesTemplate(propertiesList(e.items)).replace(/"/g, "") 42 | : typeFor(e) 43 | ) 44 | .join(" | ")}>`; 45 | } else if ("$ref" in property.items) { 46 | return `Array<${program.prefix}${definitionTypeName(property.items.$ref)}${program.suffix}>`; 47 | } else if (property.items.type === "object") { 48 | const child = propertiesTemplate(propertiesList(property.items)).replace( 49 | /"/g, 50 | "" 51 | ); 52 | return `Array<${child}>`; 53 | } 54 | return `Array<${typeMapping[property.items.type]}>`; 55 | } else if (property.type === "string" && "enum" in property) { 56 | return property.enum.map(e => `'${e}'`).join(" | "); 57 | } else if (Array.isArray(property.type)) { 58 | return property.type.map(t => typeMapping[t]).join(" | "); 59 | } else if ( 60 | "allOf" in property || 61 | "oneOf" in property || 62 | "anyOf" in property 63 | ) { 64 | const discriminator = Object.keys(property)[0]; 65 | const discriminatorMap = { 66 | allOf: "&", 67 | oneOf: "|", 68 | anyOf: "|" 69 | }; 70 | return property[discriminator] 71 | .map(p => typeFor(p)) 72 | .join(discriminatorMap[discriminator]); 73 | } else if (property.type === "object") { 74 | return propertiesTemplate(propertiesList(property)).replace(/"/g, ""); 75 | } 76 | return typeMapping[property.type] || `${program.prefix}${definitionTypeName(property.$ref)}${program.suffix}`; 77 | }; 78 | 79 | const isRequired = (propertyName: string, definition: Object): boolean => { 80 | const result = 81 | definition.required && definition.required.indexOf(propertyName) >= 0; 82 | return result; 83 | }; 84 | 85 | const isNullable = (property: Object): boolean => property.nullable; 86 | 87 | const propertyKeyForDefinition = ( 88 | propName: string, 89 | definition: Object 90 | ): string => { 91 | let resolvedPropName = 92 | propName.indexOf("-") > 0 ? `'${propName}'` : propName; 93 | if (program.lowerCamelCase) { 94 | resolvedPropName = camelize(resolvedPropName); 95 | } 96 | if (program.checkRequired) { 97 | return `${resolvedPropName}${isRequired(propName, definition) ? "" : "?"}`; 98 | } 99 | return resolvedPropName; 100 | }; 101 | 102 | const propertiesList = (definition: Object) => { 103 | if ("allOf" in definition) { 104 | return definition.allOf.map(propertiesList); 105 | } 106 | 107 | if (definition.$ref) { 108 | return { $ref: definitionTypeName(definition.$ref) }; 109 | } 110 | 111 | if ("type" in definition && definition.type !== "object") { 112 | return typeFor(definition); 113 | } 114 | 115 | let result = {}; 116 | if (definition.additionalProperties) { 117 | result["[string]"] = typeFor(definition.additionalProperties); 118 | } 119 | 120 | if ( 121 | !definition.properties || 122 | Object.keys(definition.properties).length === 0 123 | ) { 124 | return result; 125 | } 126 | return Object.assign.apply( 127 | null, 128 | Object.keys(definition.properties).reduce( 129 | (properties: Array, propName: string) => { 130 | const property = definition.properties[propName]; 131 | const arr = properties.concat({ 132 | [propertyKeyForDefinition(propName, definition)]: `${ 133 | isNullable(property) ? "?" : "" 134 | }${typeFor(property)}` 135 | }); 136 | return arr; 137 | }, 138 | [result] 139 | ) 140 | ); 141 | }; 142 | 143 | const withExact = (property: string): string => { 144 | const result = property.replace(/{[^|}]/g, "{|").replace(/[^|{]}/g, "|}"); 145 | return result; 146 | }; 147 | 148 | const propertiesTemplate = ( 149 | properties: Object | Array | string 150 | ): string => { 151 | if (typeof properties === "string") { 152 | return properties; 153 | } 154 | if (Array.isArray(properties)) { 155 | return properties 156 | .map(property => { 157 | let p = property.$ref ? `& ${property.$ref}` : JSON.stringify(property); 158 | if (!property.$ref && program.exact) { 159 | p = withExact(p); 160 | } 161 | return p; 162 | }) 163 | .sort(a => (a[0] === "&" ? 1 : -1)) 164 | .join(" "); 165 | } 166 | if (program.exact) { 167 | return withExact(JSON.stringify(properties)); 168 | } 169 | return JSON.stringify(properties); 170 | }; 171 | 172 | const generate = (swagger: Object): string => { 173 | let defs; 174 | if (swagger.definitions) { 175 | defs = swagger.definitions; 176 | } else if (swagger.components) { 177 | defs = swagger.components.schemas; 178 | } 179 | if (!defs) { 180 | throw new Error("There is no definition"); 181 | } 182 | 183 | const g = Object.keys(defs) 184 | .reduce((acc: Array, definitionName: string) => { 185 | const arr = acc.concat({ 186 | title: stripBrackets(definitionName), 187 | properties: propertiesList(defs[definitionName]) 188 | }); 189 | return arr; 190 | }, []) 191 | .map(definition => { 192 | const s = `export type ${program.prefix}${definition.title}${program.suffix} = ${propertiesTemplate( 193 | definition.properties 194 | ).replace(/"/g, "")};`; 195 | return s; 196 | }) 197 | .join(" "); 198 | return g; 199 | }; 200 | 201 | export const generator = (content: Object, file: string) => { 202 | const options = prettier.resolveConfig.sync(file) || {}; 203 | const result = `// @flow strict\n${generate(content)}`; 204 | return prettier.format(result, options); 205 | }; 206 | 207 | export const writeToFile = (dist: string = "./flowtype.js", result: string) => { 208 | fs.writeFile(dist, result, err => { 209 | if (err) { 210 | throw err; 211 | } 212 | }); 213 | }; 214 | 215 | export const isUrl = (value: string): boolean => 216 | value.match(/https?:\/\//) !== null; 217 | 218 | export const distFile = (p: Object, inputFileName: string): string => { 219 | if (p.destination) { 220 | return p.destination; 221 | } 222 | if (isUrl(inputFileName)) { 223 | return "./flowtype.js"; 224 | } 225 | 226 | const ext = path.parse(inputFileName).ext; 227 | return inputFileName.replace(ext, ".js"); 228 | }; 229 | 230 | export const getContentFromFile = (file: string): Object => { 231 | const ext = path.extname(file); 232 | const readFile = fs.readFileSync(file, "utf8"); 233 | return ext === ".yaml" || ext === ".yml" 234 | ? yaml.safeLoad(readFile) 235 | : JSON.parse(readFile); 236 | }; 237 | 238 | export const isObject = (value: any): boolean => 239 | typeof value === "object" && value !== null; 240 | 241 | export const getContentFromUrl = (url: string): Promise => 242 | axios({ 243 | method: "get", 244 | url 245 | }).then(response => { 246 | const { data } = response; 247 | return isObject(data) ? data : yaml.safeLoad(data); 248 | }); 249 | 250 | export const getContent = (fileOrUrl: string): Promise => { 251 | if (isUrl(fileOrUrl)) { 252 | return getContentFromUrl(fileOrUrl); 253 | } 254 | const content = getContentFromFile(fileOrUrl); 255 | return Promise.resolve(content); 256 | }; 257 | 258 | program 259 | .arguments("") 260 | .option("-d --destination ", "Destination path") 261 | .option("-cr --check-required", "Add question mark to optional properties") 262 | .option("-e --exact", "Add exact types") 263 | .option("-l --lower-camel-case", "Transform property keys to lower camel case") 264 | .option("-p --prefix ", "Add prefix to type name e.g IUser instead of User", "") 265 | .option("-s --suffix ", "Add suffix to type name e.g UserInterface instead of User", "") 266 | .action(async file => { 267 | try { 268 | const content = await getContent(file); 269 | const result = generator(content, file); 270 | const dist = distFile(program, file); 271 | writeToFile(dist, result); 272 | console.log(`Generated flow types to ${dist}`); 273 | } catch (e) { 274 | console.log(e); 275 | } 276 | }) 277 | .parse(process.argv); 278 | -------------------------------------------------------------------------------- /__tests__/__mocks__/swagger.yaml: -------------------------------------------------------------------------------- 1 | swagger: "2.0" 2 | info: 3 | description: "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters." 4 | version: "1.0.0" 5 | title: "Swagger Petstore" 6 | termsOfService: "http://swagger.io/terms/" 7 | contact: 8 | email: "apiteam@swagger.io" 9 | license: 10 | name: "Apache 2.0" 11 | url: "http://www.apache.org/licenses/LICENSE-2.0.html" 12 | host: "petstore.swagger.io" 13 | basePath: "/v2" 14 | tags: 15 | - name: "pet" 16 | description: "Everything about your Pets" 17 | externalDocs: 18 | description: "Find out more" 19 | url: "http://swagger.io" 20 | - name: "store" 21 | description: "Access to Petstore orders" 22 | - name: "user" 23 | description: "Operations about user" 24 | externalDocs: 25 | description: "Find out more about our store" 26 | url: "http://swagger.io" 27 | schemes: 28 | - "http" 29 | paths: 30 | /pet: 31 | post: 32 | tags: 33 | - "pet" 34 | summary: "Add a new pet to the store" 35 | description: "" 36 | operationId: "addPet" 37 | consumes: 38 | - "application/json" 39 | - "application/xml" 40 | produces: 41 | - "application/xml" 42 | - "application/json" 43 | parameters: 44 | - in: "body" 45 | name: "body" 46 | description: "Pet object that needs to be added to the store" 47 | required: true 48 | schema: 49 | $ref: "#/definitions/Pet" 50 | responses: 51 | 405: 52 | description: "Invalid input" 53 | security: 54 | - petstore_auth: 55 | - "write:pets" 56 | - "read:pets" 57 | put: 58 | tags: 59 | - "pet" 60 | summary: "Update an existing pet" 61 | description: "" 62 | operationId: "updatePet" 63 | consumes: 64 | - "application/json" 65 | - "application/xml" 66 | produces: 67 | - "application/xml" 68 | - "application/json" 69 | parameters: 70 | - in: "body" 71 | name: "body" 72 | description: "Pet object that needs to be added to the store" 73 | required: true 74 | schema: 75 | $ref: "#/definitions/Pet" 76 | responses: 77 | 400: 78 | description: "Invalid ID supplied" 79 | 404: 80 | description: "Pet not found" 81 | 405: 82 | description: "Validation exception" 83 | security: 84 | - petstore_auth: 85 | - "write:pets" 86 | - "read:pets" 87 | /pet/findByStatus: 88 | get: 89 | tags: 90 | - "pet" 91 | summary: "Finds Pets by status" 92 | description: "Multiple status values can be provided with comma separated strings" 93 | operationId: "findPetsByStatus" 94 | produces: 95 | - "application/xml" 96 | - "application/json" 97 | parameters: 98 | - name: "status" 99 | in: "query" 100 | description: "Status values that need to be considered for filter" 101 | required: true 102 | type: "array" 103 | items: 104 | type: "string" 105 | enum: 106 | - "available" 107 | - "pending" 108 | - "sold" 109 | default: "available" 110 | collectionFormat: "multi" 111 | responses: 112 | 200: 113 | description: "successful operation" 114 | schema: 115 | type: "array" 116 | items: 117 | $ref: "#/definitions/Pet" 118 | 400: 119 | description: "Invalid status value" 120 | security: 121 | - petstore_auth: 122 | - "write:pets" 123 | - "read:pets" 124 | /pet/findByTags: 125 | get: 126 | tags: 127 | - "pet" 128 | summary: "Finds Pets by tags" 129 | description: "Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing." 130 | operationId: "findPetsByTags" 131 | produces: 132 | - "application/xml" 133 | - "application/json" 134 | parameters: 135 | - name: "tags" 136 | in: "query" 137 | description: "Tags to filter by" 138 | required: true 139 | type: "array" 140 | items: 141 | type: "string" 142 | collectionFormat: "multi" 143 | responses: 144 | 200: 145 | description: "successful operation" 146 | schema: 147 | type: "array" 148 | items: 149 | $ref: "#/definitions/Pet" 150 | 400: 151 | description: "Invalid tag value" 152 | security: 153 | - petstore_auth: 154 | - "write:pets" 155 | - "read:pets" 156 | deprecated: true 157 | /pet/{petId}: 158 | get: 159 | tags: 160 | - "pet" 161 | summary: "Find pet by ID" 162 | description: "Returns a single pet" 163 | operationId: "getPetById" 164 | produces: 165 | - "application/xml" 166 | - "application/json" 167 | parameters: 168 | - name: "petId" 169 | in: "path" 170 | description: "ID of pet to return" 171 | required: true 172 | type: "integer" 173 | format: "int64" 174 | responses: 175 | 200: 176 | description: "successful operation" 177 | schema: 178 | $ref: "#/definitions/Pet" 179 | 400: 180 | description: "Invalid ID supplied" 181 | 404: 182 | description: "Pet not found" 183 | security: 184 | - api_key: [] 185 | post: 186 | tags: 187 | - "pet" 188 | summary: "Updates a pet in the store with form data" 189 | description: "" 190 | operationId: "updatePetWithForm" 191 | consumes: 192 | - "application/x-www-form-urlencoded" 193 | produces: 194 | - "application/xml" 195 | - "application/json" 196 | parameters: 197 | - name: "petId" 198 | in: "path" 199 | description: "ID of pet that needs to be updated" 200 | required: true 201 | type: "integer" 202 | format: "int64" 203 | - name: "name" 204 | in: "formData" 205 | description: "Updated name of the pet" 206 | required: false 207 | type: "string" 208 | - name: "status" 209 | in: "formData" 210 | description: "Updated status of the pet" 211 | required: false 212 | type: "string" 213 | responses: 214 | 405: 215 | description: "Invalid input" 216 | security: 217 | - petstore_auth: 218 | - "write:pets" 219 | - "read:pets" 220 | delete: 221 | tags: 222 | - "pet" 223 | summary: "Deletes a pet" 224 | description: "" 225 | operationId: "deletePet" 226 | produces: 227 | - "application/xml" 228 | - "application/json" 229 | parameters: 230 | - name: "api_key" 231 | in: "header" 232 | required: false 233 | type: "string" 234 | - name: "petId" 235 | in: "path" 236 | description: "Pet id to delete" 237 | required: true 238 | type: "integer" 239 | format: "int64" 240 | responses: 241 | 400: 242 | description: "Invalid ID supplied" 243 | 404: 244 | description: "Pet not found" 245 | security: 246 | - petstore_auth: 247 | - "write:pets" 248 | - "read:pets" 249 | /pet/{petId}/uploadImage: 250 | post: 251 | tags: 252 | - "pet" 253 | summary: "uploads an image" 254 | description: "" 255 | operationId: "uploadFile" 256 | consumes: 257 | - "multipart/form-data" 258 | produces: 259 | - "application/json" 260 | parameters: 261 | - name: "petId" 262 | in: "path" 263 | description: "ID of pet to update" 264 | required: true 265 | type: "integer" 266 | format: "int64" 267 | - name: "additionalMetadata" 268 | in: "formData" 269 | description: "Additional data to pass to server" 270 | required: false 271 | type: "string" 272 | - name: "file" 273 | in: "formData" 274 | description: "file to upload" 275 | required: false 276 | type: "file" 277 | responses: 278 | 200: 279 | description: "successful operation" 280 | schema: 281 | $ref: "#/definitions/ApiResponse" 282 | security: 283 | - petstore_auth: 284 | - "write:pets" 285 | - "read:pets" 286 | /store/inventory: 287 | get: 288 | tags: 289 | - "store" 290 | summary: "Returns pet inventories by status" 291 | description: "Returns a map of status codes to quantities" 292 | operationId: "getInventory" 293 | produces: 294 | - "application/json" 295 | parameters: [] 296 | responses: 297 | 200: 298 | description: "successful operation" 299 | schema: 300 | type: "object" 301 | additionalProperties: 302 | type: "integer" 303 | format: "int32" 304 | security: 305 | - api_key: [] 306 | /store/order: 307 | post: 308 | tags: 309 | - "store" 310 | summary: "Place an order for a pet" 311 | description: "" 312 | operationId: "placeOrder" 313 | produces: 314 | - "application/xml" 315 | - "application/json" 316 | parameters: 317 | - in: "body" 318 | name: "body" 319 | description: "order placed for purchasing the pet" 320 | required: true 321 | schema: 322 | $ref: "#/definitions/Order" 323 | responses: 324 | 200: 325 | description: "successful operation" 326 | schema: 327 | $ref: "#/definitions/Order" 328 | 400: 329 | description: "Invalid Order" 330 | /store/order/{orderId}: 331 | get: 332 | tags: 333 | - "store" 334 | summary: "Find purchase order by ID" 335 | description: "For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions" 336 | operationId: "getOrderById" 337 | produces: 338 | - "application/xml" 339 | - "application/json" 340 | parameters: 341 | - name: "orderId" 342 | in: "path" 343 | description: "ID of pet that needs to be fetched" 344 | required: true 345 | type: "integer" 346 | maximum: 10.0 347 | minimum: 1.0 348 | format: "int64" 349 | responses: 350 | 200: 351 | description: "successful operation" 352 | schema: 353 | $ref: "#/definitions/Order" 354 | 400: 355 | description: "Invalid ID supplied" 356 | 404: 357 | description: "Order not found" 358 | delete: 359 | tags: 360 | - "store" 361 | summary: "Delete purchase order by ID" 362 | description: "For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors" 363 | operationId: "deleteOrder" 364 | produces: 365 | - "application/xml" 366 | - "application/json" 367 | parameters: 368 | - name: "orderId" 369 | in: "path" 370 | description: "ID of the order that needs to be deleted" 371 | required: true 372 | type: "integer" 373 | minimum: 1.0 374 | format: "int64" 375 | responses: 376 | 400: 377 | description: "Invalid ID supplied" 378 | 404: 379 | description: "Order not found" 380 | /user: 381 | post: 382 | tags: 383 | - "user" 384 | summary: "Create user" 385 | description: "This can only be done by the logged in user." 386 | operationId: "createUser" 387 | produces: 388 | - "application/xml" 389 | - "application/json" 390 | parameters: 391 | - in: "body" 392 | name: "body" 393 | description: "Created user object" 394 | required: true 395 | schema: 396 | $ref: "#/definitions/User" 397 | responses: 398 | default: 399 | description: "successful operation" 400 | /user/createWithArray: 401 | post: 402 | tags: 403 | - "user" 404 | summary: "Creates list of users with given input array" 405 | description: "" 406 | operationId: "createUsersWithArrayInput" 407 | produces: 408 | - "application/xml" 409 | - "application/json" 410 | parameters: 411 | - in: "body" 412 | name: "body" 413 | description: "List of user object" 414 | required: true 415 | schema: 416 | type: "array" 417 | items: 418 | $ref: "#/definitions/User" 419 | responses: 420 | default: 421 | description: "successful operation" 422 | /user/createWithList: 423 | post: 424 | tags: 425 | - "user" 426 | summary: "Creates list of users with given input array" 427 | description: "" 428 | operationId: "createUsersWithListInput" 429 | produces: 430 | - "application/xml" 431 | - "application/json" 432 | parameters: 433 | - in: "body" 434 | name: "body" 435 | description: "List of user object" 436 | required: true 437 | schema: 438 | type: "array" 439 | items: 440 | $ref: "#/definitions/User" 441 | responses: 442 | default: 443 | description: "successful operation" 444 | /user/login: 445 | get: 446 | tags: 447 | - "user" 448 | summary: "Logs user into the system" 449 | description: "" 450 | operationId: "loginUser" 451 | produces: 452 | - "application/xml" 453 | - "application/json" 454 | parameters: 455 | - name: "username" 456 | in: "query" 457 | description: "The user name for login" 458 | required: true 459 | type: "string" 460 | - name: "password" 461 | in: "query" 462 | description: "The password for login in clear text" 463 | required: true 464 | type: "string" 465 | responses: 466 | 200: 467 | description: "successful operation" 468 | schema: 469 | type: "string" 470 | headers: 471 | X-Rate-Limit: 472 | type: "integer" 473 | format: "int32" 474 | description: "calls per hour allowed by the user" 475 | X-Expires-After: 476 | type: "string" 477 | format: "date-time" 478 | description: "date in UTC when token expires" 479 | 400: 480 | description: "Invalid username/password supplied" 481 | /user/logout: 482 | get: 483 | tags: 484 | - "user" 485 | summary: "Logs out current logged in user session" 486 | description: "" 487 | operationId: "logoutUser" 488 | produces: 489 | - "application/xml" 490 | - "application/json" 491 | parameters: [] 492 | responses: 493 | default: 494 | description: "successful operation" 495 | /user/{username}: 496 | get: 497 | tags: 498 | - "user" 499 | summary: "Get user by user name" 500 | description: "" 501 | operationId: "getUserByName" 502 | produces: 503 | - "application/xml" 504 | - "application/json" 505 | parameters: 506 | - name: "username" 507 | in: "path" 508 | description: "The name that needs to be fetched. Use user1 for testing. " 509 | required: true 510 | type: "string" 511 | responses: 512 | 200: 513 | description: "successful operation" 514 | schema: 515 | $ref: "#/definitions/User" 516 | 400: 517 | description: "Invalid username supplied" 518 | 404: 519 | description: "User not found" 520 | put: 521 | tags: 522 | - "user" 523 | summary: "Updated user" 524 | description: "This can only be done by the logged in user." 525 | operationId: "updateUser" 526 | produces: 527 | - "application/xml" 528 | - "application/json" 529 | parameters: 530 | - name: "username" 531 | in: "path" 532 | description: "name that need to be updated" 533 | required: true 534 | type: "string" 535 | - in: "body" 536 | name: "body" 537 | description: "Updated user object" 538 | required: true 539 | schema: 540 | $ref: "#/definitions/User" 541 | responses: 542 | 400: 543 | description: "Invalid user supplied" 544 | 404: 545 | description: "User not found" 546 | delete: 547 | tags: 548 | - "user" 549 | summary: "Delete user" 550 | description: "This can only be done by the logged in user." 551 | operationId: "deleteUser" 552 | produces: 553 | - "application/xml" 554 | - "application/json" 555 | parameters: 556 | - name: "username" 557 | in: "path" 558 | description: "The name that needs to be deleted" 559 | required: true 560 | type: "string" 561 | responses: 562 | 400: 563 | description: "Invalid username supplied" 564 | 404: 565 | description: "User not found" 566 | securityDefinitions: 567 | petstore_auth: 568 | type: "oauth2" 569 | authorizationUrl: "http://petstore.swagger.io/oauth/dialog" 570 | flow: "implicit" 571 | scopes: 572 | write:pets: "modify pets in your account" 573 | read:pets: "read your pets" 574 | api_key: 575 | type: "apiKey" 576 | name: "api_key" 577 | in: "header" 578 | definitions: 579 | Order: 580 | type: "object" 581 | properties: 582 | id: 583 | type: "integer" 584 | format: "int64" 585 | petId: 586 | type: "integer" 587 | format: "int64" 588 | quantity: 589 | type: "integer" 590 | format: "int32" 591 | shipDate: 592 | type: "string" 593 | format: "date-time" 594 | status: 595 | type: "string" 596 | description: "Order Status" 597 | enum: 598 | - "placed" 599 | - "approved" 600 | - "delivered" 601 | complete: 602 | type: "boolean" 603 | default: false 604 | xml: 605 | name: "Order" 606 | Category: 607 | type: "object" 608 | properties: 609 | id: 610 | type: "integer" 611 | format: "int64" 612 | name: 613 | type: "string" 614 | xml: 615 | name: "Category" 616 | User: 617 | type: "object" 618 | properties: 619 | id: 620 | type: "integer" 621 | format: "int64" 622 | username: 623 | type: "string" 624 | firstName: 625 | type: "string" 626 | lastName: 627 | type: "string" 628 | email: 629 | type: "string" 630 | password: 631 | type: "string" 632 | phone: 633 | type: "string" 634 | userStatus: 635 | type: "integer" 636 | format: "int32" 637 | description: "User Status" 638 | xml: 639 | name: "User" 640 | Tag: 641 | type: "object" 642 | properties: 643 | id: 644 | type: "integer" 645 | format: "int64" 646 | name: 647 | type: "string" 648 | xml: 649 | name: "Tag" 650 | Pet: 651 | type: "object" 652 | required: 653 | - "name" 654 | - "photoUrls" 655 | properties: 656 | id: 657 | type: "integer" 658 | format: "int64" 659 | x-dashes-id: 660 | type: "string" 661 | snake_case_id: 662 | type: "string" 663 | category: 664 | $ref: "#/definitions/Category" 665 | name: 666 | type: "string" 667 | example: "doggie" 668 | photoUrls: 669 | type: "array" 670 | xml: 671 | name: "photoUrl" 672 | wrapped: true 673 | items: 674 | type: "string" 675 | tags: 676 | type: "array" 677 | xml: 678 | name: "tag" 679 | wrapped: true 680 | items: 681 | $ref: "#/definitions/Tag" 682 | status: 683 | type: "string" 684 | description: "pet status in the store" 685 | enum: 686 | - "available" 687 | - "pending" 688 | - "sold" 689 | 690 | objectType: 691 | type: "object" 692 | xml: 693 | name: "Pet" 694 | IGenericCollection[Pet]: 695 | type: "object" 696 | properties: 697 | items: 698 | type: "array" 699 | xml: 700 | name: "items" 701 | wrapped: true 702 | items: 703 | $ref: "#/definitions/Pet" 704 | xml: 705 | name: "IGenericCollection[Pet]" 706 | IGenericCollection[String]: 707 | type: "object" 708 | properties: 709 | items: 710 | type: array 711 | items: 712 | type: string 713 | readOnly: true 714 | xml: 715 | name: "IGenericCollection[Pet]" 716 | ApiResponse: 717 | type: "object" 718 | properties: 719 | code: 720 | type: "integer" 721 | format: "int32" 722 | type: 723 | type: "string" 724 | message: 725 | type: "string" 726 | externalDocs: 727 | description: "Find out more about Swagger" 728 | url: "http://swagger.io" 729 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.5.0: 34 | version "5.7.3" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 36 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 37 | 38 | ajv-keywords@^2.1.0: 39 | version "2.1.1" 40 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 41 | integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= 42 | 43 | ajv@^4.9.1: 44 | version "4.11.8" 45 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 46 | dependencies: 47 | co "^4.6.0" 48 | json-stable-stringify "^1.0.1" 49 | 50 | ajv@^5.2.3, ajv@^5.3.0: 51 | version "5.5.2" 52 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 53 | integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= 54 | dependencies: 55 | co "^4.6.0" 56 | fast-deep-equal "^1.0.0" 57 | fast-json-stable-stringify "^2.0.0" 58 | json-schema-traverse "^0.3.0" 59 | 60 | amdefine@>=0.0.4: 61 | version "1.0.1" 62 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 63 | 64 | ansi-escapes@^1.4.0: 65 | version "1.4.0" 66 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 67 | 68 | ansi-escapes@^3.0.0: 69 | version "3.2.0" 70 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 71 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 72 | 73 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 74 | version "2.1.1" 75 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 76 | 77 | ansi-regex@^3.0.0: 78 | version "3.0.0" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 80 | 81 | ansi-styles@^2.2.1: 82 | version "2.2.1" 83 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 84 | 85 | ansi-styles@^3.0.0: 86 | version "3.1.0" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 88 | dependencies: 89 | color-convert "^1.0.0" 90 | 91 | ansi-styles@^3.2.1: 92 | version "3.2.1" 93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 94 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 95 | dependencies: 96 | color-convert "^1.9.0" 97 | 98 | anymatch@^1.3.0: 99 | version "1.3.0" 100 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 101 | dependencies: 102 | arrify "^1.0.0" 103 | micromatch "^2.1.5" 104 | 105 | append-transform@^0.4.0: 106 | version "0.4.0" 107 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 108 | dependencies: 109 | default-require-extensions "^1.0.0" 110 | 111 | aproba@^1.0.3: 112 | version "1.1.2" 113 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 114 | 115 | are-we-there-yet@~1.1.2: 116 | version "1.1.4" 117 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 118 | dependencies: 119 | delegates "^1.0.0" 120 | readable-stream "^2.0.6" 121 | 122 | argparse@^1.0.7: 123 | version "1.0.9" 124 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 125 | dependencies: 126 | sprintf-js "~1.0.2" 127 | 128 | aria-query@^0.5.0: 129 | version "0.5.0" 130 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.5.0.tgz#85e3152cd8cc5bab18dbed61cd9c4fce54fa79c3" 131 | dependencies: 132 | ast-types-flow "0.0.7" 133 | 134 | arr-diff@^2.0.0: 135 | version "2.0.0" 136 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 137 | dependencies: 138 | arr-flatten "^1.0.1" 139 | 140 | arr-flatten@^1.0.1: 141 | version "1.0.3" 142 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 143 | 144 | array-equal@^1.0.0: 145 | version "1.0.0" 146 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 147 | 148 | array-includes@^3.0.3: 149 | version "3.0.3" 150 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 151 | dependencies: 152 | define-properties "^1.1.2" 153 | es-abstract "^1.7.0" 154 | 155 | array-union@^1.0.1: 156 | version "1.0.2" 157 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 158 | dependencies: 159 | array-uniq "^1.0.1" 160 | 161 | array-uniq@^1.0.1: 162 | version "1.0.3" 163 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 164 | 165 | array-unique@^0.2.1: 166 | version "0.2.1" 167 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 168 | 169 | arrify@^1.0.0, arrify@^1.0.1: 170 | version "1.0.1" 171 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 172 | 173 | asn1@~0.2.3: 174 | version "0.2.4" 175 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 176 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 177 | dependencies: 178 | safer-buffer "~2.1.0" 179 | 180 | assert-plus@1.0.0, assert-plus@^1.0.0: 181 | version "1.0.0" 182 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 183 | 184 | assert-plus@^0.2.0: 185 | version "0.2.0" 186 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 187 | 188 | ast-types-flow@0.0.7: 189 | version "0.0.7" 190 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 191 | 192 | async-each@^1.0.0: 193 | version "1.0.1" 194 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 195 | 196 | async@^2.1.4: 197 | version "2.4.1" 198 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 199 | dependencies: 200 | lodash "^4.14.0" 201 | 202 | asynckit@^0.4.0: 203 | version "0.4.0" 204 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 205 | 206 | aws-sign2@~0.6.0: 207 | version "0.6.0" 208 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 209 | 210 | aws4@^1.2.1: 211 | version "1.6.0" 212 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 213 | 214 | axios@^0.21.1: 215 | version "0.21.1" 216 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" 217 | integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== 218 | dependencies: 219 | follow-redirects "^1.10.0" 220 | 221 | axobject-query@^0.1.0: 222 | version "0.1.0" 223 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 224 | dependencies: 225 | ast-types-flow "0.0.7" 226 | 227 | babel-cli@^6.24.1: 228 | version "6.24.1" 229 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 230 | dependencies: 231 | babel-core "^6.24.1" 232 | babel-polyfill "^6.23.0" 233 | babel-register "^6.24.1" 234 | babel-runtime "^6.22.0" 235 | commander "^2.8.1" 236 | convert-source-map "^1.1.0" 237 | fs-readdir-recursive "^1.0.0" 238 | glob "^7.0.0" 239 | lodash "^4.2.0" 240 | output-file-sync "^1.1.0" 241 | path-is-absolute "^1.0.0" 242 | slash "^1.0.0" 243 | source-map "^0.5.0" 244 | v8flags "^2.0.10" 245 | optionalDependencies: 246 | chokidar "^1.6.1" 247 | 248 | babel-code-frame@^6.22.0: 249 | version "6.22.0" 250 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 251 | dependencies: 252 | chalk "^1.1.0" 253 | esutils "^2.0.2" 254 | js-tokens "^3.0.0" 255 | 256 | babel-core@^6.0.0, babel-core@^6.24.1: 257 | version "6.25.0" 258 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 259 | dependencies: 260 | babel-code-frame "^6.22.0" 261 | babel-generator "^6.25.0" 262 | babel-helpers "^6.24.1" 263 | babel-messages "^6.23.0" 264 | babel-register "^6.24.1" 265 | babel-runtime "^6.22.0" 266 | babel-template "^6.25.0" 267 | babel-traverse "^6.25.0" 268 | babel-types "^6.25.0" 269 | babylon "^6.17.2" 270 | convert-source-map "^1.1.0" 271 | debug "^2.1.1" 272 | json5 "^0.5.0" 273 | lodash "^4.2.0" 274 | minimatch "^3.0.2" 275 | path-is-absolute "^1.0.0" 276 | private "^0.1.6" 277 | slash "^1.0.0" 278 | source-map "^0.5.0" 279 | 280 | babel-eslint@^7.2.3: 281 | version "7.2.3" 282 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 283 | dependencies: 284 | babel-code-frame "^6.22.0" 285 | babel-traverse "^6.23.1" 286 | babel-types "^6.23.0" 287 | babylon "^6.17.0" 288 | 289 | babel-generator@^6.18.0, babel-generator@^6.25.0: 290 | version "6.25.0" 291 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 292 | dependencies: 293 | babel-messages "^6.23.0" 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.25.0" 296 | detect-indent "^4.0.0" 297 | jsesc "^1.3.0" 298 | lodash "^4.2.0" 299 | source-map "^0.5.0" 300 | trim-right "^1.0.1" 301 | 302 | babel-helper-call-delegate@^6.24.1: 303 | version "6.24.1" 304 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 305 | dependencies: 306 | babel-helper-hoist-variables "^6.24.1" 307 | babel-runtime "^6.22.0" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-define-map@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 314 | dependencies: 315 | babel-helper-function-name "^6.24.1" 316 | babel-runtime "^6.22.0" 317 | babel-types "^6.24.1" 318 | lodash "^4.2.0" 319 | 320 | babel-helper-function-name@^6.24.1: 321 | version "6.24.1" 322 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 323 | dependencies: 324 | babel-helper-get-function-arity "^6.24.1" 325 | babel-runtime "^6.22.0" 326 | babel-template "^6.24.1" 327 | babel-traverse "^6.24.1" 328 | babel-types "^6.24.1" 329 | 330 | babel-helper-get-function-arity@^6.24.1: 331 | version "6.24.1" 332 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | babel-types "^6.24.1" 336 | 337 | babel-helper-hoist-variables@^6.24.1: 338 | version "6.24.1" 339 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 340 | dependencies: 341 | babel-runtime "^6.22.0" 342 | babel-types "^6.24.1" 343 | 344 | babel-helper-optimise-call-expression@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-types "^6.24.1" 350 | 351 | babel-helper-regex@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | babel-types "^6.24.1" 357 | lodash "^4.2.0" 358 | 359 | babel-helper-replace-supers@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 362 | dependencies: 363 | babel-helper-optimise-call-expression "^6.24.1" 364 | babel-messages "^6.23.0" 365 | babel-runtime "^6.22.0" 366 | babel-template "^6.24.1" 367 | babel-traverse "^6.24.1" 368 | babel-types "^6.24.1" 369 | 370 | babel-helpers@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | babel-template "^6.24.1" 376 | 377 | babel-jest@^20.0.3: 378 | version "20.0.3" 379 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 380 | dependencies: 381 | babel-core "^6.0.0" 382 | babel-plugin-istanbul "^4.0.0" 383 | babel-preset-jest "^20.0.3" 384 | 385 | babel-messages@^6.23.0: 386 | version "6.23.0" 387 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 388 | dependencies: 389 | babel-runtime "^6.22.0" 390 | 391 | babel-plugin-check-es2015-constants@^6.22.0: 392 | version "6.22.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-istanbul@^4.0.0: 398 | version "4.1.4" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 400 | dependencies: 401 | find-up "^2.1.0" 402 | istanbul-lib-instrument "^1.7.2" 403 | test-exclude "^4.1.1" 404 | 405 | babel-plugin-jest-hoist@^20.0.3: 406 | version "20.0.3" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 408 | 409 | babel-plugin-syntax-class-properties@^6.8.0: 410 | version "6.13.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 412 | 413 | babel-plugin-syntax-flow@^6.18.0: 414 | version "6.18.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 416 | 417 | babel-plugin-transform-class-properties@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 420 | dependencies: 421 | babel-helper-function-name "^6.24.1" 422 | babel-plugin-syntax-class-properties "^6.8.0" 423 | babel-runtime "^6.22.0" 424 | babel-template "^6.24.1" 425 | 426 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 427 | version "6.22.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 429 | dependencies: 430 | babel-runtime "^6.22.0" 431 | 432 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 433 | version "6.22.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 435 | dependencies: 436 | babel-runtime "^6.22.0" 437 | 438 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 441 | dependencies: 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 | lodash "^4.2.0" 447 | 448 | babel-plugin-transform-es2015-classes@^6.24.1: 449 | version "6.24.1" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 451 | dependencies: 452 | babel-helper-define-map "^6.24.1" 453 | babel-helper-function-name "^6.24.1" 454 | babel-helper-optimise-call-expression "^6.24.1" 455 | babel-helper-replace-supers "^6.24.1" 456 | babel-messages "^6.23.0" 457 | babel-runtime "^6.22.0" 458 | babel-template "^6.24.1" 459 | babel-traverse "^6.24.1" 460 | babel-types "^6.24.1" 461 | 462 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 465 | dependencies: 466 | babel-runtime "^6.22.0" 467 | babel-template "^6.24.1" 468 | 469 | babel-plugin-transform-es2015-destructuring@^6.22.0: 470 | version "6.23.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 472 | dependencies: 473 | babel-runtime "^6.22.0" 474 | 475 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 476 | version "6.24.1" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-for-of@^6.22.0: 483 | version "6.23.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-function-name@^6.24.1: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 491 | dependencies: 492 | babel-helper-function-name "^6.24.1" 493 | babel-runtime "^6.22.0" 494 | babel-types "^6.24.1" 495 | 496 | babel-plugin-transform-es2015-literals@^6.22.0: 497 | version "6.22.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 499 | dependencies: 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 503 | version "6.24.1" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 505 | dependencies: 506 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 507 | babel-runtime "^6.22.0" 508 | babel-template "^6.24.1" 509 | 510 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 511 | version "6.24.1" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 513 | dependencies: 514 | babel-plugin-transform-strict-mode "^6.24.1" 515 | babel-runtime "^6.22.0" 516 | babel-template "^6.24.1" 517 | babel-types "^6.24.1" 518 | 519 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 520 | version "6.24.1" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 522 | dependencies: 523 | babel-helper-hoist-variables "^6.24.1" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | 527 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 530 | dependencies: 531 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.24.1" 534 | 535 | babel-plugin-transform-es2015-object-super@^6.24.1: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 538 | dependencies: 539 | babel-helper-replace-supers "^6.24.1" 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-parameters@^6.24.1: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 545 | dependencies: 546 | babel-helper-call-delegate "^6.24.1" 547 | babel-helper-get-function-arity "^6.24.1" 548 | babel-runtime "^6.22.0" 549 | babel-template "^6.24.1" 550 | babel-traverse "^6.24.1" 551 | babel-types "^6.24.1" 552 | 553 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 554 | version "6.24.1" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 556 | dependencies: 557 | babel-runtime "^6.22.0" 558 | babel-types "^6.24.1" 559 | 560 | babel-plugin-transform-es2015-spread@^6.22.0: 561 | version "6.22.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | 566 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 569 | dependencies: 570 | babel-helper-regex "^6.24.1" 571 | babel-runtime "^6.22.0" 572 | babel-types "^6.24.1" 573 | 574 | babel-plugin-transform-es2015-template-literals@^6.22.0: 575 | version "6.22.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 577 | dependencies: 578 | babel-runtime "^6.22.0" 579 | 580 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 581 | version "6.23.0" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 583 | dependencies: 584 | babel-runtime "^6.22.0" 585 | 586 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 587 | version "6.24.1" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 589 | dependencies: 590 | babel-helper-regex "^6.24.1" 591 | babel-runtime "^6.22.0" 592 | regexpu-core "^2.0.0" 593 | 594 | babel-plugin-transform-flow-strip-types@^6.22.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 597 | dependencies: 598 | babel-plugin-syntax-flow "^6.18.0" 599 | babel-runtime "^6.22.0" 600 | 601 | babel-plugin-transform-regenerator@^6.24.1: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 604 | dependencies: 605 | regenerator-transform "0.9.11" 606 | 607 | babel-plugin-transform-strict-mode@^6.24.1: 608 | version "6.24.1" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 610 | dependencies: 611 | babel-runtime "^6.22.0" 612 | babel-types "^6.24.1" 613 | 614 | babel-polyfill@^6.23.0: 615 | version "6.23.0" 616 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 617 | dependencies: 618 | babel-runtime "^6.22.0" 619 | core-js "^2.4.0" 620 | regenerator-runtime "^0.10.0" 621 | 622 | babel-preset-es2015@^6.24.1: 623 | version "6.24.1" 624 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 625 | dependencies: 626 | babel-plugin-check-es2015-constants "^6.22.0" 627 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 628 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 629 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 630 | babel-plugin-transform-es2015-classes "^6.24.1" 631 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 632 | babel-plugin-transform-es2015-destructuring "^6.22.0" 633 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 634 | babel-plugin-transform-es2015-for-of "^6.22.0" 635 | babel-plugin-transform-es2015-function-name "^6.24.1" 636 | babel-plugin-transform-es2015-literals "^6.22.0" 637 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 638 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 639 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 640 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 641 | babel-plugin-transform-es2015-object-super "^6.24.1" 642 | babel-plugin-transform-es2015-parameters "^6.24.1" 643 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 644 | babel-plugin-transform-es2015-spread "^6.22.0" 645 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 646 | babel-plugin-transform-es2015-template-literals "^6.22.0" 647 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 648 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 649 | babel-plugin-transform-regenerator "^6.24.1" 650 | 651 | babel-preset-flow@^6.23.0: 652 | version "6.23.0" 653 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 654 | dependencies: 655 | babel-plugin-transform-flow-strip-types "^6.22.0" 656 | 657 | babel-preset-jest@^20.0.3: 658 | version "20.0.3" 659 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 660 | dependencies: 661 | babel-plugin-jest-hoist "^20.0.3" 662 | 663 | babel-register@^6.24.1: 664 | version "6.24.1" 665 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 666 | dependencies: 667 | babel-core "^6.24.1" 668 | babel-runtime "^6.22.0" 669 | core-js "^2.4.0" 670 | home-or-tmp "^2.0.0" 671 | lodash "^4.2.0" 672 | mkdirp "^0.5.1" 673 | source-map-support "^0.4.2" 674 | 675 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 676 | version "6.23.0" 677 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 678 | dependencies: 679 | core-js "^2.4.0" 680 | regenerator-runtime "^0.10.0" 681 | 682 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 683 | version "6.25.0" 684 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | babel-traverse "^6.25.0" 688 | babel-types "^6.25.0" 689 | babylon "^6.17.2" 690 | lodash "^4.2.0" 691 | 692 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 693 | version "6.25.0" 694 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 695 | dependencies: 696 | babel-code-frame "^6.22.0" 697 | babel-messages "^6.23.0" 698 | babel-runtime "^6.22.0" 699 | babel-types "^6.25.0" 700 | babylon "^6.17.2" 701 | debug "^2.2.0" 702 | globals "^9.0.0" 703 | invariant "^2.2.0" 704 | lodash "^4.2.0" 705 | 706 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 707 | version "6.25.0" 708 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 709 | dependencies: 710 | babel-runtime "^6.22.0" 711 | esutils "^2.0.2" 712 | lodash "^4.2.0" 713 | to-fast-properties "^1.0.1" 714 | 715 | babylon@^6.13.0, babylon@^6.17.0, babylon@^6.17.2: 716 | version "6.17.3" 717 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.3.tgz#1327d709950b558f204e5352587fd0290f8d8e48" 718 | 719 | balanced-match@^1.0.0: 720 | version "1.0.0" 721 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 722 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 723 | 724 | bcrypt-pbkdf@^1.0.0: 725 | version "1.0.2" 726 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 727 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 728 | dependencies: 729 | tweetnacl "^0.14.3" 730 | 731 | binary-extensions@^1.0.0: 732 | version "1.8.0" 733 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 734 | 735 | block-stream@*: 736 | version "0.0.9" 737 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 738 | integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= 739 | dependencies: 740 | inherits "~2.0.0" 741 | 742 | boom@2.x.x: 743 | version "2.10.1" 744 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 745 | dependencies: 746 | hoek "2.x.x" 747 | 748 | brace-expansion@^1.1.7: 749 | version "1.1.11" 750 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 751 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 752 | dependencies: 753 | balanced-match "^1.0.0" 754 | concat-map "0.0.1" 755 | 756 | braces@^1.8.2: 757 | version "1.8.5" 758 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 759 | dependencies: 760 | expand-range "^1.8.1" 761 | preserve "^0.2.0" 762 | repeat-element "^1.1.2" 763 | 764 | browser-resolve@^1.11.2: 765 | version "1.11.2" 766 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 767 | dependencies: 768 | resolve "1.1.7" 769 | 770 | bser@1.0.2: 771 | version "1.0.2" 772 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 773 | dependencies: 774 | node-int64 "^0.4.0" 775 | 776 | bser@^2.0.0: 777 | version "2.0.0" 778 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 779 | dependencies: 780 | node-int64 "^0.4.0" 781 | 782 | buffer-from@^1.0.0: 783 | version "1.1.1" 784 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 785 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 786 | 787 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 788 | version "1.1.1" 789 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 790 | 791 | caller-path@^0.1.0: 792 | version "0.1.0" 793 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 794 | dependencies: 795 | callsites "^0.2.0" 796 | 797 | callsites@^0.2.0: 798 | version "0.2.0" 799 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 800 | 801 | callsites@^2.0.0: 802 | version "2.0.0" 803 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 804 | 805 | camelcase@^3.0.0: 806 | version "3.0.0" 807 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 808 | 809 | camelize@^1.0.0: 810 | version "1.0.0" 811 | resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" 812 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= 813 | 814 | caseless@~0.12.0: 815 | version "0.12.0" 816 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 817 | 818 | chalk@^1.1.0, chalk@^1.1.3: 819 | version "1.1.3" 820 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 821 | dependencies: 822 | ansi-styles "^2.2.1" 823 | escape-string-regexp "^1.0.2" 824 | has-ansi "^2.0.0" 825 | strip-ansi "^3.0.0" 826 | supports-color "^2.0.0" 827 | 828 | chalk@^2.0.0, chalk@^2.1.0: 829 | version "2.4.2" 830 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 831 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 832 | dependencies: 833 | ansi-styles "^3.2.1" 834 | escape-string-regexp "^1.0.5" 835 | supports-color "^5.3.0" 836 | 837 | chardet@^0.4.0: 838 | version "0.4.2" 839 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 840 | integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 841 | 842 | chokidar@^1.6.1: 843 | version "1.7.0" 844 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 845 | dependencies: 846 | anymatch "^1.3.0" 847 | async-each "^1.0.0" 848 | glob-parent "^2.0.0" 849 | inherits "^2.0.1" 850 | is-binary-path "^1.0.0" 851 | is-glob "^2.0.0" 852 | path-is-absolute "^1.0.0" 853 | readdirp "^2.0.0" 854 | optionalDependencies: 855 | fsevents "^1.0.0" 856 | 857 | ci-info@^1.0.0: 858 | version "1.0.0" 859 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 860 | 861 | circular-json@^0.3.1: 862 | version "0.3.1" 863 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 864 | 865 | cli-cursor@^2.1.0: 866 | version "2.1.0" 867 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 868 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 869 | dependencies: 870 | restore-cursor "^2.0.0" 871 | 872 | cli-width@^2.0.0: 873 | version "2.1.0" 874 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 875 | 876 | cliui@^3.2.0: 877 | version "3.2.0" 878 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 879 | dependencies: 880 | string-width "^1.0.1" 881 | strip-ansi "^3.0.1" 882 | wrap-ansi "^2.0.0" 883 | 884 | co@^4.6.0: 885 | version "4.6.0" 886 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 887 | 888 | code-point-at@^1.0.0: 889 | version "1.1.0" 890 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 891 | 892 | color-convert@^1.0.0: 893 | version "1.9.0" 894 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 895 | dependencies: 896 | color-name "^1.1.1" 897 | 898 | color-convert@^1.9.0: 899 | version "1.9.3" 900 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 901 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 902 | dependencies: 903 | color-name "1.1.3" 904 | 905 | color-name@1.1.3: 906 | version "1.1.3" 907 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 908 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 909 | 910 | color-name@^1.1.1: 911 | version "1.1.2" 912 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 913 | 914 | combined-stream@^1.0.5, combined-stream@~1.0.5: 915 | version "1.0.5" 916 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 917 | dependencies: 918 | delayed-stream "~1.0.0" 919 | 920 | commander@^2.8.1, commander@^2.9.0: 921 | version "2.9.0" 922 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 923 | dependencies: 924 | graceful-readlink ">= 1.0.0" 925 | 926 | commander@~2.20.3: 927 | version "2.20.3" 928 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 929 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 930 | 931 | concat-map@0.0.1: 932 | version "0.0.1" 933 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 934 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 935 | 936 | concat-stream@^1.6.0: 937 | version "1.6.2" 938 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 939 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 940 | dependencies: 941 | buffer-from "^1.0.0" 942 | inherits "^2.0.3" 943 | readable-stream "^2.2.2" 944 | typedarray "^0.0.6" 945 | 946 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 947 | version "1.1.0" 948 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 949 | 950 | contains-path@^0.1.0: 951 | version "0.1.0" 952 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 953 | 954 | content-type-parser@^1.0.1: 955 | version "1.0.1" 956 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 957 | 958 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 959 | version "1.5.0" 960 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 961 | 962 | core-js@^2.4.0: 963 | version "2.4.1" 964 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 965 | 966 | core-util-is@~1.0.0: 967 | version "1.0.2" 968 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 969 | 970 | cross-spawn@^5.1.0: 971 | version "5.1.0" 972 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 973 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 974 | dependencies: 975 | lru-cache "^4.0.1" 976 | shebang-command "^1.2.0" 977 | which "^1.2.9" 978 | 979 | cryptiles@2.x.x: 980 | version "2.0.5" 981 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 982 | dependencies: 983 | boom "2.x.x" 984 | 985 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 986 | version "0.3.2" 987 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 988 | 989 | "cssstyle@>= 0.2.37 < 0.3.0": 990 | version "0.2.37" 991 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 992 | dependencies: 993 | cssom "0.3.x" 994 | 995 | damerau-levenshtein@^1.0.0: 996 | version "1.0.4" 997 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 998 | 999 | dashdash@^1.12.0: 1000 | version "1.14.1" 1001 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1002 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 1003 | dependencies: 1004 | assert-plus "^1.0.0" 1005 | 1006 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1007 | version "2.6.9" 1008 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1009 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1010 | dependencies: 1011 | ms "2.0.0" 1012 | 1013 | debug@^3.1.0: 1014 | version "3.1.0" 1015 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1016 | dependencies: 1017 | ms "2.0.0" 1018 | 1019 | decamelize@^1.1.1: 1020 | version "1.2.0" 1021 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1022 | 1023 | deep-extend@~0.4.0: 1024 | version "0.4.2" 1025 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1026 | 1027 | deep-is@~0.1.3: 1028 | version "0.1.3" 1029 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1030 | 1031 | default-require-extensions@^1.0.0: 1032 | version "1.0.0" 1033 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1034 | dependencies: 1035 | strip-bom "^2.0.0" 1036 | 1037 | define-properties@^1.1.2: 1038 | version "1.1.2" 1039 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1040 | dependencies: 1041 | foreach "^2.0.5" 1042 | object-keys "^1.0.8" 1043 | 1044 | del@^2.0.2: 1045 | version "2.2.2" 1046 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1047 | dependencies: 1048 | globby "^5.0.0" 1049 | is-path-cwd "^1.0.0" 1050 | is-path-in-cwd "^1.0.0" 1051 | object-assign "^4.0.1" 1052 | pify "^2.0.0" 1053 | pinkie-promise "^2.0.0" 1054 | rimraf "^2.2.8" 1055 | 1056 | delayed-stream@~1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1059 | 1060 | delegates@^1.0.0: 1061 | version "1.0.0" 1062 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1063 | 1064 | detect-indent@^4.0.0: 1065 | version "4.0.0" 1066 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1067 | dependencies: 1068 | repeating "^2.0.0" 1069 | 1070 | diff@^3.2.0: 1071 | version "3.5.0" 1072 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1073 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 1074 | 1075 | doctrine@1.5.0: 1076 | version "1.5.0" 1077 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1078 | dependencies: 1079 | esutils "^2.0.2" 1080 | isarray "^1.0.0" 1081 | 1082 | doctrine@^2.0.0, doctrine@^2.1.0: 1083 | version "2.1.0" 1084 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1085 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1086 | dependencies: 1087 | esutils "^2.0.2" 1088 | 1089 | ecc-jsbn@~0.1.1: 1090 | version "0.1.2" 1091 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1092 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 1093 | dependencies: 1094 | jsbn "~0.1.0" 1095 | safer-buffer "^2.1.0" 1096 | 1097 | emoji-regex@^6.1.0: 1098 | version "6.4.2" 1099 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.4.2.tgz#a30b6fee353d406d96cfb9fa765bdc82897eff6e" 1100 | 1101 | "errno@>=0.1.1 <0.2.0-0": 1102 | version "0.1.4" 1103 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1104 | dependencies: 1105 | prr "~0.0.0" 1106 | 1107 | error-ex@^1.2.0: 1108 | version "1.3.1" 1109 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1110 | dependencies: 1111 | is-arrayish "^0.2.1" 1112 | 1113 | es-abstract@^1.7.0: 1114 | version "1.7.0" 1115 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1116 | dependencies: 1117 | es-to-primitive "^1.1.1" 1118 | function-bind "^1.1.0" 1119 | is-callable "^1.1.3" 1120 | is-regex "^1.0.3" 1121 | 1122 | es-to-primitive@^1.1.1: 1123 | version "1.1.1" 1124 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1125 | dependencies: 1126 | is-callable "^1.1.1" 1127 | is-date-object "^1.0.1" 1128 | is-symbol "^1.0.1" 1129 | 1130 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1131 | version "1.0.5" 1132 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1133 | 1134 | escodegen@^1.6.1: 1135 | version "1.8.1" 1136 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1137 | dependencies: 1138 | esprima "^2.7.1" 1139 | estraverse "^1.9.1" 1140 | esutils "^2.0.2" 1141 | optionator "^0.8.1" 1142 | optionalDependencies: 1143 | source-map "~0.2.0" 1144 | 1145 | eslint-config-airbnb-base@^11.2.0: 1146 | version "11.2.0" 1147 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" 1148 | 1149 | eslint-config-airbnb@^15.0.1: 1150 | version "15.0.1" 1151 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.0.1.tgz#7b5188e5b7c74b9b2ce639fd5e1daba8fd761aed" 1152 | dependencies: 1153 | eslint-config-airbnb-base "^11.2.0" 1154 | 1155 | eslint-config-prettier@^2.3.0: 1156 | version "2.3.0" 1157 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0" 1158 | dependencies: 1159 | get-stdin "^5.0.1" 1160 | 1161 | eslint-import-resolver-node@^0.2.0: 1162 | version "0.2.3" 1163 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1164 | dependencies: 1165 | debug "^2.2.0" 1166 | object-assign "^4.0.1" 1167 | resolve "^1.1.6" 1168 | 1169 | eslint-module-utils@^2.0.0: 1170 | version "2.1.1" 1171 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1172 | dependencies: 1173 | debug "^2.6.8" 1174 | pkg-dir "^1.0.0" 1175 | 1176 | eslint-plugin-flowtype@^2.35.0: 1177 | version "2.35.0" 1178 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.0.tgz#d17494f0ae8b727c632d8b9d4b4a848e7e0c04af" 1179 | dependencies: 1180 | lodash "^4.15.0" 1181 | 1182 | eslint-plugin-import@^2.3.0: 1183 | version "2.6.0" 1184 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.6.0.tgz#2a4bbad36a078e052a3c830ce3dfbd6b8a12c6e5" 1185 | dependencies: 1186 | builtin-modules "^1.1.1" 1187 | contains-path "^0.1.0" 1188 | debug "^2.6.8" 1189 | doctrine "1.5.0" 1190 | eslint-import-resolver-node "^0.2.0" 1191 | eslint-module-utils "^2.0.0" 1192 | has "^1.0.1" 1193 | lodash.cond "^4.3.0" 1194 | minimatch "^3.0.3" 1195 | read-pkg-up "^2.0.0" 1196 | 1197 | eslint-plugin-jsx-a11y@^5.0.3: 1198 | version "5.1.0" 1199 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.0.tgz#4a829634344e7a90391a9fb0fbd19810737d79c5" 1200 | dependencies: 1201 | aria-query "^0.5.0" 1202 | array-includes "^3.0.3" 1203 | ast-types-flow "0.0.7" 1204 | axobject-query "^0.1.0" 1205 | damerau-levenshtein "^1.0.0" 1206 | emoji-regex "^6.1.0" 1207 | jsx-ast-utils "^1.4.0" 1208 | 1209 | eslint-plugin-prettier@^2.1.2: 1210 | version "2.1.2" 1211 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.1.2.tgz#4b90f4ee7f92bfbe2e926017e1ca40eb628965ea" 1212 | dependencies: 1213 | fast-diff "^1.1.1" 1214 | jest-docblock "^20.0.1" 1215 | 1216 | eslint-plugin-react@^7.1.0: 1217 | version "7.1.0" 1218 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.1.0.tgz#27770acf39f5fd49cd0af4083ce58104eb390d4c" 1219 | dependencies: 1220 | doctrine "^2.0.0" 1221 | has "^1.0.1" 1222 | jsx-ast-utils "^1.4.1" 1223 | 1224 | eslint-scope@^3.7.1: 1225 | version "3.7.3" 1226 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 1227 | integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== 1228 | dependencies: 1229 | esrecurse "^4.1.0" 1230 | estraverse "^4.1.1" 1231 | 1232 | eslint-visitor-keys@^1.0.0: 1233 | version "1.0.0" 1234 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1235 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== 1236 | 1237 | eslint@^4.18.2: 1238 | version "4.18.2" 1239 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" 1240 | integrity sha512-qy4i3wODqKMYfz9LUI8N2qYDkHkoieTbiHpMrYUI/WbjhXJQr7lI4VngixTgaG+yHX+NBCv7nW4hA0ShbvaNKw== 1241 | dependencies: 1242 | ajv "^5.3.0" 1243 | babel-code-frame "^6.22.0" 1244 | chalk "^2.1.0" 1245 | concat-stream "^1.6.0" 1246 | cross-spawn "^5.1.0" 1247 | debug "^3.1.0" 1248 | doctrine "^2.1.0" 1249 | eslint-scope "^3.7.1" 1250 | eslint-visitor-keys "^1.0.0" 1251 | espree "^3.5.2" 1252 | esquery "^1.0.0" 1253 | esutils "^2.0.2" 1254 | file-entry-cache "^2.0.0" 1255 | functional-red-black-tree "^1.0.1" 1256 | glob "^7.1.2" 1257 | globals "^11.0.1" 1258 | ignore "^3.3.3" 1259 | imurmurhash "^0.1.4" 1260 | inquirer "^3.0.6" 1261 | is-resolvable "^1.0.0" 1262 | js-yaml "^3.9.1" 1263 | json-stable-stringify-without-jsonify "^1.0.1" 1264 | levn "^0.3.0" 1265 | lodash "^4.17.4" 1266 | minimatch "^3.0.2" 1267 | mkdirp "^0.5.1" 1268 | natural-compare "^1.4.0" 1269 | optionator "^0.8.2" 1270 | path-is-inside "^1.0.2" 1271 | pluralize "^7.0.0" 1272 | progress "^2.0.0" 1273 | require-uncached "^1.0.3" 1274 | semver "^5.3.0" 1275 | strip-ansi "^4.0.0" 1276 | strip-json-comments "~2.0.1" 1277 | table "4.0.2" 1278 | text-table "~0.2.0" 1279 | 1280 | espree@^3.5.2: 1281 | version "3.5.4" 1282 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1283 | integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== 1284 | dependencies: 1285 | acorn "^5.5.0" 1286 | acorn-jsx "^3.0.0" 1287 | 1288 | esprima@^2.7.1: 1289 | version "2.7.3" 1290 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1291 | 1292 | esprima@^4.0.0: 1293 | version "4.0.1" 1294 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1295 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1296 | 1297 | esquery@^1.0.0: 1298 | version "1.0.0" 1299 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1300 | dependencies: 1301 | estraverse "^4.0.0" 1302 | 1303 | esrecurse@^4.1.0: 1304 | version "4.2.0" 1305 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1306 | dependencies: 1307 | estraverse "^4.1.0" 1308 | object-assign "^4.0.1" 1309 | 1310 | estraverse@^1.9.1: 1311 | version "1.9.3" 1312 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1313 | 1314 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1315 | version "4.2.0" 1316 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1317 | 1318 | esutils@^2.0.2: 1319 | version "2.0.2" 1320 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1321 | 1322 | exec-sh@^0.2.0: 1323 | version "0.2.0" 1324 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1325 | dependencies: 1326 | merge "^1.1.3" 1327 | 1328 | expand-brackets@^0.1.4: 1329 | version "0.1.5" 1330 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1331 | dependencies: 1332 | is-posix-bracket "^0.1.0" 1333 | 1334 | expand-range@^1.8.1: 1335 | version "1.8.2" 1336 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1337 | dependencies: 1338 | fill-range "^2.1.0" 1339 | 1340 | extend@~3.0.0: 1341 | version "3.0.2" 1342 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1343 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1344 | 1345 | external-editor@^2.0.4: 1346 | version "2.2.0" 1347 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1348 | integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== 1349 | dependencies: 1350 | chardet "^0.4.0" 1351 | iconv-lite "^0.4.17" 1352 | tmp "^0.0.33" 1353 | 1354 | extglob@^0.3.1: 1355 | version "0.3.2" 1356 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1357 | dependencies: 1358 | is-extglob "^1.0.0" 1359 | 1360 | extsprintf@1.0.2: 1361 | version "1.0.2" 1362 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1363 | 1364 | fast-deep-equal@^1.0.0: 1365 | version "1.1.0" 1366 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1367 | integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= 1368 | 1369 | fast-diff@^1.1.1: 1370 | version "1.1.1" 1371 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" 1372 | 1373 | fast-json-stable-stringify@^2.0.0: 1374 | version "2.0.0" 1375 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1376 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1377 | 1378 | fast-levenshtein@~2.0.4: 1379 | version "2.0.6" 1380 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1381 | 1382 | fb-watchman@^1.8.0: 1383 | version "1.9.2" 1384 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1385 | dependencies: 1386 | bser "1.0.2" 1387 | 1388 | fb-watchman@^2.0.0: 1389 | version "2.0.0" 1390 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1391 | dependencies: 1392 | bser "^2.0.0" 1393 | 1394 | figures@^2.0.0: 1395 | version "2.0.0" 1396 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1397 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1398 | dependencies: 1399 | escape-string-regexp "^1.0.5" 1400 | 1401 | file-entry-cache@^2.0.0: 1402 | version "2.0.0" 1403 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1404 | dependencies: 1405 | flat-cache "^1.2.1" 1406 | object-assign "^4.0.1" 1407 | 1408 | filename-regex@^2.0.0: 1409 | version "2.0.1" 1410 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1411 | 1412 | fileset@^2.0.2: 1413 | version "2.0.3" 1414 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1415 | dependencies: 1416 | glob "^7.0.3" 1417 | minimatch "^3.0.3" 1418 | 1419 | fill-range@^2.1.0: 1420 | version "2.2.3" 1421 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1422 | dependencies: 1423 | is-number "^2.1.0" 1424 | isobject "^2.0.0" 1425 | randomatic "^1.1.3" 1426 | repeat-element "^1.1.2" 1427 | repeat-string "^1.5.2" 1428 | 1429 | find-up@^1.0.0: 1430 | version "1.1.2" 1431 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1432 | dependencies: 1433 | path-exists "^2.0.0" 1434 | pinkie-promise "^2.0.0" 1435 | 1436 | find-up@^2.0.0, find-up@^2.1.0: 1437 | version "2.1.0" 1438 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1439 | dependencies: 1440 | locate-path "^2.0.0" 1441 | 1442 | flat-cache@^1.2.1: 1443 | version "1.2.2" 1444 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1445 | dependencies: 1446 | circular-json "^0.3.1" 1447 | del "^2.0.2" 1448 | graceful-fs "^4.1.2" 1449 | write "^0.2.1" 1450 | 1451 | flow-bin@^0.48.0: 1452 | version "0.48.0" 1453 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.48.0.tgz#72d075143524358db8901525e3c784dc13a7c7ee" 1454 | 1455 | follow-redirects@^1.10.0: 1456 | version "1.13.1" 1457 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" 1458 | integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== 1459 | 1460 | for-in@^1.0.1: 1461 | version "1.0.2" 1462 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1463 | 1464 | for-own@^0.1.4: 1465 | version "0.1.5" 1466 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1467 | dependencies: 1468 | for-in "^1.0.1" 1469 | 1470 | foreach@^2.0.5: 1471 | version "2.0.5" 1472 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1473 | 1474 | forever-agent@~0.6.1: 1475 | version "0.6.1" 1476 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1477 | 1478 | form-data@~2.1.1: 1479 | version "2.1.4" 1480 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1481 | dependencies: 1482 | asynckit "^0.4.0" 1483 | combined-stream "^1.0.5" 1484 | mime-types "^2.1.12" 1485 | 1486 | fs-readdir-recursive@^1.0.0: 1487 | version "1.0.0" 1488 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1489 | 1490 | fs.realpath@^1.0.0: 1491 | version "1.0.0" 1492 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1493 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1494 | 1495 | fsevents@^1.0.0: 1496 | version "1.1.2" 1497 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1498 | dependencies: 1499 | nan "^2.3.0" 1500 | node-pre-gyp "^0.6.36" 1501 | 1502 | fstream-ignore@^1.0.5: 1503 | version "1.0.5" 1504 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1505 | dependencies: 1506 | fstream "^1.0.0" 1507 | inherits "2" 1508 | minimatch "^3.0.0" 1509 | 1510 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1511 | version "1.0.12" 1512 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1513 | integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== 1514 | dependencies: 1515 | graceful-fs "^4.1.2" 1516 | inherits "~2.0.0" 1517 | mkdirp ">=0.5 0" 1518 | rimraf "2" 1519 | 1520 | function-bind@^1.0.2, function-bind@^1.1.0: 1521 | version "1.1.0" 1522 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1523 | 1524 | functional-red-black-tree@^1.0.1: 1525 | version "1.0.1" 1526 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1527 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1528 | 1529 | gauge@~2.7.3: 1530 | version "2.7.4" 1531 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1532 | dependencies: 1533 | aproba "^1.0.3" 1534 | console-control-strings "^1.0.0" 1535 | has-unicode "^2.0.0" 1536 | object-assign "^4.1.0" 1537 | signal-exit "^3.0.0" 1538 | string-width "^1.0.1" 1539 | strip-ansi "^3.0.1" 1540 | wide-align "^1.1.0" 1541 | 1542 | get-caller-file@^1.0.1: 1543 | version "1.0.2" 1544 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1545 | 1546 | get-stdin@^5.0.1: 1547 | version "5.0.1" 1548 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1549 | 1550 | getpass@^0.1.1: 1551 | version "0.1.7" 1552 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1553 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1554 | dependencies: 1555 | assert-plus "^1.0.0" 1556 | 1557 | glob-base@^0.3.0: 1558 | version "0.3.0" 1559 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1560 | dependencies: 1561 | glob-parent "^2.0.0" 1562 | is-glob "^2.0.0" 1563 | 1564 | glob-parent@^2.0.0: 1565 | version "2.0.0" 1566 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1567 | dependencies: 1568 | is-glob "^2.0.0" 1569 | 1570 | glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: 1571 | version "7.1.4" 1572 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1573 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1574 | dependencies: 1575 | fs.realpath "^1.0.0" 1576 | inflight "^1.0.4" 1577 | inherits "2" 1578 | minimatch "^3.0.4" 1579 | once "^1.3.0" 1580 | path-is-absolute "^1.0.0" 1581 | 1582 | globals@^11.0.1: 1583 | version "11.12.0" 1584 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1585 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1586 | 1587 | globals@^9.0.0: 1588 | version "9.18.0" 1589 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1590 | 1591 | globby@^5.0.0: 1592 | version "5.0.0" 1593 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1594 | dependencies: 1595 | array-union "^1.0.1" 1596 | arrify "^1.0.0" 1597 | glob "^7.0.3" 1598 | object-assign "^4.0.1" 1599 | pify "^2.0.0" 1600 | pinkie-promise "^2.0.0" 1601 | 1602 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1603 | version "4.2.0" 1604 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" 1605 | integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== 1606 | 1607 | "graceful-readlink@>= 1.0.0": 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1610 | 1611 | growly@^1.3.0: 1612 | version "1.3.0" 1613 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1614 | 1615 | handlebars@^4.0.3: 1616 | version "4.5.3" 1617 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.3.tgz#5cf75bd8714f7605713511a56be7c349becb0482" 1618 | integrity sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA== 1619 | dependencies: 1620 | neo-async "^2.6.0" 1621 | optimist "^0.6.1" 1622 | source-map "^0.6.1" 1623 | optionalDependencies: 1624 | uglify-js "^3.1.4" 1625 | 1626 | har-schema@^1.0.5: 1627 | version "1.0.5" 1628 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1629 | 1630 | har-validator@~4.2.1: 1631 | version "4.2.1" 1632 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1633 | dependencies: 1634 | ajv "^4.9.1" 1635 | har-schema "^1.0.5" 1636 | 1637 | has-ansi@^2.0.0: 1638 | version "2.0.0" 1639 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1640 | dependencies: 1641 | ansi-regex "^2.0.0" 1642 | 1643 | has-flag@^1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1646 | 1647 | has-flag@^3.0.0: 1648 | version "3.0.0" 1649 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1650 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1651 | 1652 | has-unicode@^2.0.0: 1653 | version "2.0.1" 1654 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1655 | 1656 | has@^1.0.1: 1657 | version "1.0.1" 1658 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1659 | dependencies: 1660 | function-bind "^1.0.2" 1661 | 1662 | hawk@~3.1.3: 1663 | version "3.1.3" 1664 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1665 | dependencies: 1666 | boom "2.x.x" 1667 | cryptiles "2.x.x" 1668 | hoek "2.x.x" 1669 | sntp "1.x.x" 1670 | 1671 | hoek@2.x.x: 1672 | version "2.16.3" 1673 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1674 | 1675 | home-or-tmp@^2.0.0: 1676 | version "2.0.0" 1677 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1678 | dependencies: 1679 | os-homedir "^1.0.0" 1680 | os-tmpdir "^1.0.1" 1681 | 1682 | hosted-git-info@^2.1.4: 1683 | version "2.4.2" 1684 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1685 | 1686 | html-encoding-sniffer@^1.0.1: 1687 | version "1.0.1" 1688 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1689 | dependencies: 1690 | whatwg-encoding "^1.0.1" 1691 | 1692 | http-signature@~1.1.0: 1693 | version "1.1.1" 1694 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1695 | dependencies: 1696 | assert-plus "^0.2.0" 1697 | jsprim "^1.2.2" 1698 | sshpk "^1.7.0" 1699 | 1700 | iconv-lite@0.4.13: 1701 | version "0.4.13" 1702 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1703 | 1704 | iconv-lite@^0.4.17: 1705 | version "0.4.24" 1706 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1707 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1708 | dependencies: 1709 | safer-buffer ">= 2.1.2 < 3" 1710 | 1711 | ignore@^3.3.3: 1712 | version "3.3.10" 1713 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1714 | integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== 1715 | 1716 | imurmurhash@^0.1.4: 1717 | version "0.1.4" 1718 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1719 | 1720 | inflight@^1.0.4: 1721 | version "1.0.6" 1722 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1723 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1724 | dependencies: 1725 | once "^1.3.0" 1726 | wrappy "1" 1727 | 1728 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1729 | version "2.0.4" 1730 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1731 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1732 | 1733 | ini@~1.3.0: 1734 | version "1.3.7" 1735 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1736 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 1737 | 1738 | inquirer@^3.0.6: 1739 | version "3.3.0" 1740 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1741 | integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 1742 | dependencies: 1743 | ansi-escapes "^3.0.0" 1744 | chalk "^2.0.0" 1745 | cli-cursor "^2.1.0" 1746 | cli-width "^2.0.0" 1747 | external-editor "^2.0.4" 1748 | figures "^2.0.0" 1749 | lodash "^4.3.0" 1750 | mute-stream "0.0.7" 1751 | run-async "^2.2.0" 1752 | rx-lite "^4.0.8" 1753 | rx-lite-aggregates "^4.0.8" 1754 | string-width "^2.1.0" 1755 | strip-ansi "^4.0.0" 1756 | through "^2.3.6" 1757 | 1758 | invariant@^2.2.0: 1759 | version "2.2.2" 1760 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1761 | dependencies: 1762 | loose-envify "^1.0.0" 1763 | 1764 | invert-kv@^1.0.0: 1765 | version "1.0.0" 1766 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1767 | 1768 | is-arrayish@^0.2.1: 1769 | version "0.2.1" 1770 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1771 | 1772 | is-binary-path@^1.0.0: 1773 | version "1.0.1" 1774 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1775 | dependencies: 1776 | binary-extensions "^1.0.0" 1777 | 1778 | is-buffer@^1.1.5: 1779 | version "1.1.5" 1780 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1781 | 1782 | is-builtin-module@^1.0.0: 1783 | version "1.0.0" 1784 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1785 | dependencies: 1786 | builtin-modules "^1.0.0" 1787 | 1788 | is-callable@^1.1.1, is-callable@^1.1.3: 1789 | version "1.1.3" 1790 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1791 | 1792 | is-ci@^1.0.10: 1793 | version "1.0.10" 1794 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1795 | dependencies: 1796 | ci-info "^1.0.0" 1797 | 1798 | is-date-object@^1.0.1: 1799 | version "1.0.1" 1800 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1801 | 1802 | is-dotfile@^1.0.0: 1803 | version "1.0.3" 1804 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1805 | 1806 | is-equal-shallow@^0.1.3: 1807 | version "0.1.3" 1808 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1809 | dependencies: 1810 | is-primitive "^2.0.0" 1811 | 1812 | is-extendable@^0.1.1: 1813 | version "0.1.1" 1814 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1815 | 1816 | is-extglob@^1.0.0: 1817 | version "1.0.0" 1818 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1819 | 1820 | is-finite@^1.0.0: 1821 | version "1.0.2" 1822 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1823 | dependencies: 1824 | number-is-nan "^1.0.0" 1825 | 1826 | is-fullwidth-code-point@^1.0.0: 1827 | version "1.0.0" 1828 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1829 | dependencies: 1830 | number-is-nan "^1.0.0" 1831 | 1832 | is-fullwidth-code-point@^2.0.0: 1833 | version "2.0.0" 1834 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1835 | 1836 | is-glob@^2.0.0, is-glob@^2.0.1: 1837 | version "2.0.1" 1838 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1839 | dependencies: 1840 | is-extglob "^1.0.0" 1841 | 1842 | is-number@^2.1.0: 1843 | version "2.1.0" 1844 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1845 | dependencies: 1846 | kind-of "^3.0.2" 1847 | 1848 | is-number@^3.0.0: 1849 | version "3.0.0" 1850 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1851 | dependencies: 1852 | kind-of "^3.0.2" 1853 | 1854 | is-path-cwd@^1.0.0: 1855 | version "1.0.0" 1856 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1857 | 1858 | is-path-in-cwd@^1.0.0: 1859 | version "1.0.0" 1860 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1861 | dependencies: 1862 | is-path-inside "^1.0.0" 1863 | 1864 | is-path-inside@^1.0.0: 1865 | version "1.0.0" 1866 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1867 | dependencies: 1868 | path-is-inside "^1.0.1" 1869 | 1870 | is-posix-bracket@^0.1.0: 1871 | version "0.1.1" 1872 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1873 | 1874 | is-primitive@^2.0.0: 1875 | version "2.0.0" 1876 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1877 | 1878 | is-promise@^2.1.0: 1879 | version "2.1.0" 1880 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1881 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1882 | 1883 | is-regex@^1.0.3: 1884 | version "1.0.4" 1885 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1886 | dependencies: 1887 | has "^1.0.1" 1888 | 1889 | is-resolvable@^1.0.0: 1890 | version "1.0.0" 1891 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1892 | dependencies: 1893 | tryit "^1.0.1" 1894 | 1895 | is-symbol@^1.0.1: 1896 | version "1.0.1" 1897 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1898 | 1899 | is-typedarray@~1.0.0: 1900 | version "1.0.0" 1901 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1902 | 1903 | is-utf8@^0.2.0: 1904 | version "0.2.1" 1905 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1906 | 1907 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1908 | version "1.0.0" 1909 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1910 | 1911 | isexe@^2.0.0: 1912 | version "2.0.0" 1913 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1914 | 1915 | isobject@^2.0.0: 1916 | version "2.1.0" 1917 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1918 | dependencies: 1919 | isarray "1.0.0" 1920 | 1921 | isstream@~0.1.2: 1922 | version "0.1.2" 1923 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1924 | 1925 | istanbul-api@^1.1.1: 1926 | version "1.1.9" 1927 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.9.tgz#2827920d380d4286d857d57a2968a841db8a7ec8" 1928 | dependencies: 1929 | async "^2.1.4" 1930 | fileset "^2.0.2" 1931 | istanbul-lib-coverage "^1.1.1" 1932 | istanbul-lib-hook "^1.0.7" 1933 | istanbul-lib-instrument "^1.7.2" 1934 | istanbul-lib-report "^1.1.1" 1935 | istanbul-lib-source-maps "^1.2.1" 1936 | istanbul-reports "^1.1.1" 1937 | js-yaml "^3.7.0" 1938 | mkdirp "^0.5.1" 1939 | once "^1.4.0" 1940 | 1941 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1942 | version "1.1.1" 1943 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1944 | 1945 | istanbul-lib-hook@^1.0.7: 1946 | version "1.0.7" 1947 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1948 | dependencies: 1949 | append-transform "^0.4.0" 1950 | 1951 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2: 1952 | version "1.7.2" 1953 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 1954 | dependencies: 1955 | babel-generator "^6.18.0" 1956 | babel-template "^6.16.0" 1957 | babel-traverse "^6.18.0" 1958 | babel-types "^6.18.0" 1959 | babylon "^6.13.0" 1960 | istanbul-lib-coverage "^1.1.1" 1961 | semver "^5.3.0" 1962 | 1963 | istanbul-lib-report@^1.1.1: 1964 | version "1.1.1" 1965 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1966 | dependencies: 1967 | istanbul-lib-coverage "^1.1.1" 1968 | mkdirp "^0.5.1" 1969 | path-parse "^1.0.5" 1970 | supports-color "^3.1.2" 1971 | 1972 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1973 | version "1.2.1" 1974 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1975 | dependencies: 1976 | debug "^2.6.3" 1977 | istanbul-lib-coverage "^1.1.1" 1978 | mkdirp "^0.5.1" 1979 | rimraf "^2.6.1" 1980 | source-map "^0.5.3" 1981 | 1982 | istanbul-reports@^1.1.1: 1983 | version "1.1.1" 1984 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1985 | dependencies: 1986 | handlebars "^4.0.3" 1987 | 1988 | jest-changed-files@^20.0.3: 1989 | version "20.0.3" 1990 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1991 | 1992 | jest-cli@^20.0.4: 1993 | version "20.0.4" 1994 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1995 | dependencies: 1996 | ansi-escapes "^1.4.0" 1997 | callsites "^2.0.0" 1998 | chalk "^1.1.3" 1999 | graceful-fs "^4.1.11" 2000 | is-ci "^1.0.10" 2001 | istanbul-api "^1.1.1" 2002 | istanbul-lib-coverage "^1.0.1" 2003 | istanbul-lib-instrument "^1.4.2" 2004 | istanbul-lib-source-maps "^1.1.0" 2005 | jest-changed-files "^20.0.3" 2006 | jest-config "^20.0.4" 2007 | jest-docblock "^20.0.3" 2008 | jest-environment-jsdom "^20.0.3" 2009 | jest-haste-map "^20.0.4" 2010 | jest-jasmine2 "^20.0.4" 2011 | jest-message-util "^20.0.3" 2012 | jest-regex-util "^20.0.3" 2013 | jest-resolve-dependencies "^20.0.3" 2014 | jest-runtime "^20.0.4" 2015 | jest-snapshot "^20.0.3" 2016 | jest-util "^20.0.3" 2017 | micromatch "^2.3.11" 2018 | node-notifier "^5.0.2" 2019 | pify "^2.3.0" 2020 | slash "^1.0.0" 2021 | string-length "^1.0.1" 2022 | throat "^3.0.0" 2023 | which "^1.2.12" 2024 | worker-farm "^1.3.1" 2025 | yargs "^7.0.2" 2026 | 2027 | jest-config@^20.0.4: 2028 | version "20.0.4" 2029 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2030 | dependencies: 2031 | chalk "^1.1.3" 2032 | glob "^7.1.1" 2033 | jest-environment-jsdom "^20.0.3" 2034 | jest-environment-node "^20.0.3" 2035 | jest-jasmine2 "^20.0.4" 2036 | jest-matcher-utils "^20.0.3" 2037 | jest-regex-util "^20.0.3" 2038 | jest-resolve "^20.0.4" 2039 | jest-validate "^20.0.3" 2040 | pretty-format "^20.0.3" 2041 | 2042 | jest-diff@^20.0.3: 2043 | version "20.0.3" 2044 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2045 | dependencies: 2046 | chalk "^1.1.3" 2047 | diff "^3.2.0" 2048 | jest-matcher-utils "^20.0.3" 2049 | pretty-format "^20.0.3" 2050 | 2051 | jest-docblock@^20.0.1, jest-docblock@^20.0.3: 2052 | version "20.0.3" 2053 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2054 | 2055 | jest-environment-jsdom@^20.0.3: 2056 | version "20.0.3" 2057 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2058 | dependencies: 2059 | jest-mock "^20.0.3" 2060 | jest-util "^20.0.3" 2061 | jsdom "^9.12.0" 2062 | 2063 | jest-environment-node@^20.0.3: 2064 | version "20.0.3" 2065 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2066 | dependencies: 2067 | jest-mock "^20.0.3" 2068 | jest-util "^20.0.3" 2069 | 2070 | jest-haste-map@^20.0.4: 2071 | version "20.0.4" 2072 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 2073 | dependencies: 2074 | fb-watchman "^2.0.0" 2075 | graceful-fs "^4.1.11" 2076 | jest-docblock "^20.0.3" 2077 | micromatch "^2.3.11" 2078 | sane "~1.6.0" 2079 | worker-farm "^1.3.1" 2080 | 2081 | jest-jasmine2@^20.0.4: 2082 | version "20.0.4" 2083 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2084 | dependencies: 2085 | chalk "^1.1.3" 2086 | graceful-fs "^4.1.11" 2087 | jest-diff "^20.0.3" 2088 | jest-matcher-utils "^20.0.3" 2089 | jest-matchers "^20.0.3" 2090 | jest-message-util "^20.0.3" 2091 | jest-snapshot "^20.0.3" 2092 | once "^1.4.0" 2093 | p-map "^1.1.1" 2094 | 2095 | jest-matcher-utils@^20.0.3: 2096 | version "20.0.3" 2097 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2098 | dependencies: 2099 | chalk "^1.1.3" 2100 | pretty-format "^20.0.3" 2101 | 2102 | jest-matchers@^20.0.3: 2103 | version "20.0.3" 2104 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2105 | dependencies: 2106 | jest-diff "^20.0.3" 2107 | jest-matcher-utils "^20.0.3" 2108 | jest-message-util "^20.0.3" 2109 | jest-regex-util "^20.0.3" 2110 | 2111 | jest-message-util@^20.0.3: 2112 | version "20.0.3" 2113 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2114 | dependencies: 2115 | chalk "^1.1.3" 2116 | micromatch "^2.3.11" 2117 | slash "^1.0.0" 2118 | 2119 | jest-mock@^20.0.3: 2120 | version "20.0.3" 2121 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2122 | 2123 | jest-regex-util@^20.0.3: 2124 | version "20.0.3" 2125 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2126 | 2127 | jest-resolve-dependencies@^20.0.3: 2128 | version "20.0.3" 2129 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2130 | dependencies: 2131 | jest-regex-util "^20.0.3" 2132 | 2133 | jest-resolve@^20.0.4: 2134 | version "20.0.4" 2135 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2136 | dependencies: 2137 | browser-resolve "^1.11.2" 2138 | is-builtin-module "^1.0.0" 2139 | resolve "^1.3.2" 2140 | 2141 | jest-runtime@^20.0.4: 2142 | version "20.0.4" 2143 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2144 | dependencies: 2145 | babel-core "^6.0.0" 2146 | babel-jest "^20.0.3" 2147 | babel-plugin-istanbul "^4.0.0" 2148 | chalk "^1.1.3" 2149 | convert-source-map "^1.4.0" 2150 | graceful-fs "^4.1.11" 2151 | jest-config "^20.0.4" 2152 | jest-haste-map "^20.0.4" 2153 | jest-regex-util "^20.0.3" 2154 | jest-resolve "^20.0.4" 2155 | jest-util "^20.0.3" 2156 | json-stable-stringify "^1.0.1" 2157 | micromatch "^2.3.11" 2158 | strip-bom "3.0.0" 2159 | yargs "^7.0.2" 2160 | 2161 | jest-snapshot@^20.0.3: 2162 | version "20.0.3" 2163 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2164 | dependencies: 2165 | chalk "^1.1.3" 2166 | jest-diff "^20.0.3" 2167 | jest-matcher-utils "^20.0.3" 2168 | jest-util "^20.0.3" 2169 | natural-compare "^1.4.0" 2170 | pretty-format "^20.0.3" 2171 | 2172 | jest-util@^20.0.3: 2173 | version "20.0.3" 2174 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2175 | dependencies: 2176 | chalk "^1.1.3" 2177 | graceful-fs "^4.1.11" 2178 | jest-message-util "^20.0.3" 2179 | jest-mock "^20.0.3" 2180 | jest-validate "^20.0.3" 2181 | leven "^2.1.0" 2182 | mkdirp "^0.5.1" 2183 | 2184 | jest-validate@^20.0.3: 2185 | version "20.0.3" 2186 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2187 | dependencies: 2188 | chalk "^1.1.3" 2189 | jest-matcher-utils "^20.0.3" 2190 | leven "^2.1.0" 2191 | pretty-format "^20.0.3" 2192 | 2193 | jest@^20.0.4: 2194 | version "20.0.4" 2195 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2196 | dependencies: 2197 | jest-cli "^20.0.4" 2198 | 2199 | js-tokens@^3.0.0: 2200 | version "3.0.1" 2201 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2202 | 2203 | js-yaml@^3.7.0, js-yaml@^3.8.4, js-yaml@^3.9.1: 2204 | version "3.13.1" 2205 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2206 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 2207 | dependencies: 2208 | argparse "^1.0.7" 2209 | esprima "^4.0.0" 2210 | 2211 | jsbn@~0.1.0: 2212 | version "0.1.1" 2213 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2214 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 2215 | 2216 | jsdom@^9.12.0: 2217 | version "9.12.0" 2218 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2219 | dependencies: 2220 | abab "^1.0.3" 2221 | acorn "^4.0.4" 2222 | acorn-globals "^3.1.0" 2223 | array-equal "^1.0.0" 2224 | content-type-parser "^1.0.1" 2225 | cssom ">= 0.3.2 < 0.4.0" 2226 | cssstyle ">= 0.2.37 < 0.3.0" 2227 | escodegen "^1.6.1" 2228 | html-encoding-sniffer "^1.0.1" 2229 | nwmatcher ">= 1.3.9 < 2.0.0" 2230 | parse5 "^1.5.1" 2231 | request "^2.79.0" 2232 | sax "^1.2.1" 2233 | symbol-tree "^3.2.1" 2234 | tough-cookie "^2.3.2" 2235 | webidl-conversions "^4.0.0" 2236 | whatwg-encoding "^1.0.1" 2237 | whatwg-url "^4.3.0" 2238 | xml-name-validator "^2.0.1" 2239 | 2240 | jsesc@^1.3.0: 2241 | version "1.3.0" 2242 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2243 | 2244 | jsesc@~0.5.0: 2245 | version "0.5.0" 2246 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2247 | 2248 | json-schema-traverse@^0.3.0: 2249 | version "0.3.1" 2250 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2251 | integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= 2252 | 2253 | json-schema@0.2.3: 2254 | version "0.2.3" 2255 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2256 | 2257 | json-stable-stringify-without-jsonify@^1.0.1: 2258 | version "1.0.1" 2259 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2260 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 2261 | 2262 | json-stable-stringify@^1.0.1: 2263 | version "1.0.1" 2264 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2265 | dependencies: 2266 | jsonify "~0.0.0" 2267 | 2268 | json-stringify-safe@~5.0.1: 2269 | version "5.0.1" 2270 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2271 | 2272 | json5@^0.5.0: 2273 | version "0.5.1" 2274 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2275 | 2276 | jsonify@~0.0.0: 2277 | version "0.0.0" 2278 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2279 | 2280 | jsprim@^1.2.2: 2281 | version "1.4.0" 2282 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2283 | dependencies: 2284 | assert-plus "1.0.0" 2285 | extsprintf "1.0.2" 2286 | json-schema "0.2.3" 2287 | verror "1.3.6" 2288 | 2289 | jsx-ast-utils@^1.4.0, jsx-ast-utils@^1.4.1: 2290 | version "1.4.1" 2291 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2292 | 2293 | kind-of@^3.0.2: 2294 | version "3.2.2" 2295 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2296 | dependencies: 2297 | is-buffer "^1.1.5" 2298 | 2299 | kind-of@^4.0.0: 2300 | version "4.0.0" 2301 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2302 | dependencies: 2303 | is-buffer "^1.1.5" 2304 | 2305 | lcid@^1.0.0: 2306 | version "1.0.0" 2307 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2308 | dependencies: 2309 | invert-kv "^1.0.0" 2310 | 2311 | leven@^2.1.0: 2312 | version "2.1.0" 2313 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2314 | 2315 | levn@^0.3.0, levn@~0.3.0: 2316 | version "0.3.0" 2317 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2318 | dependencies: 2319 | prelude-ls "~1.1.2" 2320 | type-check "~0.3.2" 2321 | 2322 | load-json-file@^1.0.0: 2323 | version "1.1.0" 2324 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2325 | dependencies: 2326 | graceful-fs "^4.1.2" 2327 | parse-json "^2.2.0" 2328 | pify "^2.0.0" 2329 | pinkie-promise "^2.0.0" 2330 | strip-bom "^2.0.0" 2331 | 2332 | load-json-file@^2.0.0: 2333 | version "2.0.0" 2334 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2335 | dependencies: 2336 | graceful-fs "^4.1.2" 2337 | parse-json "^2.2.0" 2338 | pify "^2.0.0" 2339 | strip-bom "^3.0.0" 2340 | 2341 | locate-path@^2.0.0: 2342 | version "2.0.0" 2343 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2344 | dependencies: 2345 | p-locate "^2.0.0" 2346 | path-exists "^3.0.0" 2347 | 2348 | lodash.cond@^4.3.0: 2349 | version "4.5.2" 2350 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2351 | 2352 | lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2353 | version "4.17.14" 2354 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" 2355 | integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== 2356 | 2357 | loose-envify@^1.0.0: 2358 | version "1.3.1" 2359 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2360 | dependencies: 2361 | js-tokens "^3.0.0" 2362 | 2363 | lru-cache@^4.0.1: 2364 | version "4.1.5" 2365 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2366 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 2367 | dependencies: 2368 | pseudomap "^1.0.2" 2369 | yallist "^2.1.2" 2370 | 2371 | makeerror@1.0.x: 2372 | version "1.0.11" 2373 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2374 | dependencies: 2375 | tmpl "1.0.x" 2376 | 2377 | merge@^1.1.3: 2378 | version "1.2.1" 2379 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2380 | integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== 2381 | 2382 | micromatch@^2.1.5, micromatch@^2.3.11: 2383 | version "2.3.11" 2384 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2385 | dependencies: 2386 | arr-diff "^2.0.0" 2387 | array-unique "^0.2.1" 2388 | braces "^1.8.2" 2389 | expand-brackets "^0.1.4" 2390 | extglob "^0.3.1" 2391 | filename-regex "^2.0.0" 2392 | is-extglob "^1.0.0" 2393 | is-glob "^2.0.1" 2394 | kind-of "^3.0.2" 2395 | normalize-path "^2.0.1" 2396 | object.omit "^2.0.0" 2397 | parse-glob "^3.0.4" 2398 | regex-cache "^0.4.2" 2399 | 2400 | mime-db@~1.27.0: 2401 | version "1.27.0" 2402 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2403 | 2404 | mime-types@^2.1.12, mime-types@~2.1.7: 2405 | version "2.1.15" 2406 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2407 | dependencies: 2408 | mime-db "~1.27.0" 2409 | 2410 | mimic-fn@^1.0.0: 2411 | version "1.2.0" 2412 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2413 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 2414 | 2415 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2416 | version "3.0.4" 2417 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2418 | dependencies: 2419 | brace-expansion "^1.1.7" 2420 | 2421 | minimist@0.0.8: 2422 | version "0.0.8" 2423 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2424 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2425 | 2426 | minimist@^1.1.1, minimist@^1.2.0: 2427 | version "1.2.0" 2428 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2429 | 2430 | minimist@~0.0.1: 2431 | version "0.0.10" 2432 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2433 | integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= 2434 | 2435 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2436 | version "0.5.1" 2437 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2438 | dependencies: 2439 | minimist "0.0.8" 2440 | 2441 | ms@2.0.0: 2442 | version "2.0.0" 2443 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2444 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2445 | 2446 | mute-stream@0.0.7: 2447 | version "0.0.7" 2448 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2449 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 2450 | 2451 | nan@^2.3.0: 2452 | version "2.6.2" 2453 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2454 | 2455 | natural-compare@^1.4.0: 2456 | version "1.4.0" 2457 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2458 | 2459 | neo-async@^2.6.0: 2460 | version "2.6.1" 2461 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2462 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 2463 | 2464 | node-int64@^0.4.0: 2465 | version "0.4.0" 2466 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2467 | 2468 | node-notifier@^5.0.2: 2469 | version "5.1.2" 2470 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2471 | dependencies: 2472 | growly "^1.3.0" 2473 | semver "^5.3.0" 2474 | shellwords "^0.1.0" 2475 | which "^1.2.12" 2476 | 2477 | node-pre-gyp@^0.6.36: 2478 | version "0.6.36" 2479 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2480 | dependencies: 2481 | mkdirp "^0.5.1" 2482 | nopt "^4.0.1" 2483 | npmlog "^4.0.2" 2484 | rc "^1.1.7" 2485 | request "^2.81.0" 2486 | rimraf "^2.6.1" 2487 | semver "^5.3.0" 2488 | tar "^2.2.1" 2489 | tar-pack "^3.4.0" 2490 | 2491 | nopt@^4.0.1: 2492 | version "4.0.1" 2493 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2494 | dependencies: 2495 | abbrev "1" 2496 | osenv "^0.1.4" 2497 | 2498 | normalize-package-data@^2.3.2: 2499 | version "2.3.8" 2500 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2501 | dependencies: 2502 | hosted-git-info "^2.1.4" 2503 | is-builtin-module "^1.0.0" 2504 | semver "2 || 3 || 4 || 5" 2505 | validate-npm-package-license "^3.0.1" 2506 | 2507 | normalize-path@^2.0.1: 2508 | version "2.1.1" 2509 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2510 | dependencies: 2511 | remove-trailing-separator "^1.0.1" 2512 | 2513 | npmlog@^4.0.2: 2514 | version "4.1.0" 2515 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2516 | dependencies: 2517 | are-we-there-yet "~1.1.2" 2518 | console-control-strings "~1.1.0" 2519 | gauge "~2.7.3" 2520 | set-blocking "~2.0.0" 2521 | 2522 | number-is-nan@^1.0.0: 2523 | version "1.0.1" 2524 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2525 | 2526 | "nwmatcher@>= 1.3.9 < 2.0.0": 2527 | version "1.4.0" 2528 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.0.tgz#b4389362170e7ef9798c3c7716d80ebc0106fccf" 2529 | 2530 | oauth-sign@~0.8.1: 2531 | version "0.8.2" 2532 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2533 | 2534 | object-assign@^4.0.1, object-assign@^4.1.0: 2535 | version "4.1.1" 2536 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2537 | 2538 | object-keys@^1.0.8: 2539 | version "1.0.11" 2540 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2541 | 2542 | object.omit@^2.0.0: 2543 | version "2.0.1" 2544 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2545 | dependencies: 2546 | for-own "^0.1.4" 2547 | is-extendable "^0.1.1" 2548 | 2549 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2550 | version "1.4.0" 2551 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2552 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2553 | dependencies: 2554 | wrappy "1" 2555 | 2556 | onetime@^2.0.0: 2557 | version "2.0.1" 2558 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2559 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2560 | dependencies: 2561 | mimic-fn "^1.0.0" 2562 | 2563 | optimist@^0.6.1: 2564 | version "0.6.1" 2565 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2566 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 2567 | dependencies: 2568 | minimist "~0.0.1" 2569 | wordwrap "~0.0.2" 2570 | 2571 | optionator@^0.8.1, optionator@^0.8.2: 2572 | version "0.8.2" 2573 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2574 | dependencies: 2575 | deep-is "~0.1.3" 2576 | fast-levenshtein "~2.0.4" 2577 | levn "~0.3.0" 2578 | prelude-ls "~1.1.2" 2579 | type-check "~0.3.2" 2580 | wordwrap "~1.0.0" 2581 | 2582 | os-homedir@^1.0.0: 2583 | version "1.0.2" 2584 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2585 | 2586 | os-locale@^1.4.0: 2587 | version "1.4.0" 2588 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2589 | dependencies: 2590 | lcid "^1.0.0" 2591 | 2592 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2593 | version "1.0.2" 2594 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2595 | 2596 | osenv@^0.1.4: 2597 | version "0.1.4" 2598 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2599 | dependencies: 2600 | os-homedir "^1.0.0" 2601 | os-tmpdir "^1.0.0" 2602 | 2603 | output-file-sync@^1.1.0: 2604 | version "1.1.2" 2605 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2606 | dependencies: 2607 | graceful-fs "^4.1.4" 2608 | mkdirp "^0.5.1" 2609 | object-assign "^4.1.0" 2610 | 2611 | p-limit@^1.1.0: 2612 | version "1.1.0" 2613 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2614 | 2615 | p-locate@^2.0.0: 2616 | version "2.0.0" 2617 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2618 | dependencies: 2619 | p-limit "^1.1.0" 2620 | 2621 | p-map@^1.1.1: 2622 | version "1.1.1" 2623 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2624 | 2625 | parse-glob@^3.0.4: 2626 | version "3.0.4" 2627 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2628 | dependencies: 2629 | glob-base "^0.3.0" 2630 | is-dotfile "^1.0.0" 2631 | is-extglob "^1.0.0" 2632 | is-glob "^2.0.0" 2633 | 2634 | parse-json@^2.2.0: 2635 | version "2.2.0" 2636 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2637 | dependencies: 2638 | error-ex "^1.2.0" 2639 | 2640 | parse5@^1.5.1: 2641 | version "1.5.1" 2642 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2643 | 2644 | path-exists@^2.0.0: 2645 | version "2.1.0" 2646 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2647 | dependencies: 2648 | pinkie-promise "^2.0.0" 2649 | 2650 | path-exists@^3.0.0: 2651 | version "3.0.0" 2652 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2653 | 2654 | path-is-absolute@^1.0.0: 2655 | version "1.0.1" 2656 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2657 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2658 | 2659 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2660 | version "1.0.2" 2661 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2662 | 2663 | path-parse@^1.0.5: 2664 | version "1.0.5" 2665 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2666 | 2667 | path-type@^1.0.0: 2668 | version "1.1.0" 2669 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2670 | dependencies: 2671 | graceful-fs "^4.1.2" 2672 | pify "^2.0.0" 2673 | pinkie-promise "^2.0.0" 2674 | 2675 | path-type@^2.0.0: 2676 | version "2.0.0" 2677 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2678 | dependencies: 2679 | pify "^2.0.0" 2680 | 2681 | performance-now@^0.2.0: 2682 | version "0.2.0" 2683 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2684 | 2685 | pify@^2.0.0, pify@^2.3.0: 2686 | version "2.3.0" 2687 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2688 | 2689 | pinkie-promise@^2.0.0: 2690 | version "2.0.1" 2691 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2692 | dependencies: 2693 | pinkie "^2.0.0" 2694 | 2695 | pinkie@^2.0.0: 2696 | version "2.0.4" 2697 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2698 | 2699 | pkg-dir@^1.0.0: 2700 | version "1.0.0" 2701 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2702 | dependencies: 2703 | find-up "^1.0.0" 2704 | 2705 | pluralize@^7.0.0: 2706 | version "7.0.0" 2707 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2708 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 2709 | 2710 | prelude-ls@~1.1.2: 2711 | version "1.1.2" 2712 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2713 | 2714 | preserve@^0.2.0: 2715 | version "0.2.0" 2716 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2717 | 2718 | prettier@^1.11.0: 2719 | version "1.11.0" 2720 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.0.tgz#c024f70cab158c993f50fc0c25ffe738cb8b0f85" 2721 | 2722 | pretty-format@^20.0.3: 2723 | version "20.0.3" 2724 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2725 | dependencies: 2726 | ansi-regex "^2.1.1" 2727 | ansi-styles "^3.0.0" 2728 | 2729 | private@^0.1.6: 2730 | version "0.1.7" 2731 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2732 | 2733 | process-nextick-args@~1.0.6: 2734 | version "1.0.7" 2735 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2736 | 2737 | progress@^2.0.0: 2738 | version "2.0.3" 2739 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2740 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2741 | 2742 | prr@~0.0.0: 2743 | version "0.0.0" 2744 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2745 | 2746 | pseudomap@^1.0.2: 2747 | version "1.0.2" 2748 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2749 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2750 | 2751 | punycode@^1.4.1: 2752 | version "1.4.1" 2753 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2754 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2755 | 2756 | qs@~6.4.0: 2757 | version "6.4.0" 2758 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2759 | 2760 | randomatic@^1.1.3: 2761 | version "1.1.7" 2762 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2763 | dependencies: 2764 | is-number "^3.0.0" 2765 | kind-of "^4.0.0" 2766 | 2767 | rc@^1.1.7: 2768 | version "1.2.1" 2769 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2770 | dependencies: 2771 | deep-extend "~0.4.0" 2772 | ini "~1.3.0" 2773 | minimist "^1.2.0" 2774 | strip-json-comments "~2.0.1" 2775 | 2776 | read-pkg-up@^1.0.1: 2777 | version "1.0.1" 2778 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2779 | dependencies: 2780 | find-up "^1.0.0" 2781 | read-pkg "^1.0.0" 2782 | 2783 | read-pkg-up@^2.0.0: 2784 | version "2.0.0" 2785 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2786 | dependencies: 2787 | find-up "^2.0.0" 2788 | read-pkg "^2.0.0" 2789 | 2790 | read-pkg@^1.0.0: 2791 | version "1.1.0" 2792 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2793 | dependencies: 2794 | load-json-file "^1.0.0" 2795 | normalize-package-data "^2.3.2" 2796 | path-type "^1.0.0" 2797 | 2798 | read-pkg@^2.0.0: 2799 | version "2.0.0" 2800 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2801 | dependencies: 2802 | load-json-file "^2.0.0" 2803 | normalize-package-data "^2.3.2" 2804 | path-type "^2.0.0" 2805 | 2806 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2807 | version "2.2.11" 2808 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" 2809 | dependencies: 2810 | core-util-is "~1.0.0" 2811 | inherits "~2.0.1" 2812 | isarray "~1.0.0" 2813 | process-nextick-args "~1.0.6" 2814 | safe-buffer "~5.0.1" 2815 | string_decoder "~1.0.0" 2816 | util-deprecate "~1.0.1" 2817 | 2818 | readdirp@^2.0.0: 2819 | version "2.1.0" 2820 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2821 | dependencies: 2822 | graceful-fs "^4.1.2" 2823 | minimatch "^3.0.2" 2824 | readable-stream "^2.0.2" 2825 | set-immediate-shim "^1.0.1" 2826 | 2827 | regenerate@^1.2.1: 2828 | version "1.3.2" 2829 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2830 | 2831 | regenerator-runtime@^0.10.0: 2832 | version "0.10.5" 2833 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2834 | 2835 | regenerator-transform@0.9.11: 2836 | version "0.9.11" 2837 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2838 | dependencies: 2839 | babel-runtime "^6.18.0" 2840 | babel-types "^6.19.0" 2841 | private "^0.1.6" 2842 | 2843 | regex-cache@^0.4.2: 2844 | version "0.4.3" 2845 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2846 | dependencies: 2847 | is-equal-shallow "^0.1.3" 2848 | is-primitive "^2.0.0" 2849 | 2850 | regexpu-core@^2.0.0: 2851 | version "2.0.0" 2852 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2853 | dependencies: 2854 | regenerate "^1.2.1" 2855 | regjsgen "^0.2.0" 2856 | regjsparser "^0.1.4" 2857 | 2858 | regjsgen@^0.2.0: 2859 | version "0.2.0" 2860 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2861 | 2862 | regjsparser@^0.1.4: 2863 | version "0.1.5" 2864 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2865 | dependencies: 2866 | jsesc "~0.5.0" 2867 | 2868 | remove-trailing-separator@^1.0.1: 2869 | version "1.0.2" 2870 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2871 | 2872 | repeat-element@^1.1.2: 2873 | version "1.1.2" 2874 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2875 | 2876 | repeat-string@^1.5.2: 2877 | version "1.6.1" 2878 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2879 | 2880 | repeating@^2.0.0: 2881 | version "2.0.1" 2882 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2883 | dependencies: 2884 | is-finite "^1.0.0" 2885 | 2886 | request@^2.79.0, request@^2.81.0: 2887 | version "2.81.0" 2888 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2889 | dependencies: 2890 | aws-sign2 "~0.6.0" 2891 | aws4 "^1.2.1" 2892 | caseless "~0.12.0" 2893 | combined-stream "~1.0.5" 2894 | extend "~3.0.0" 2895 | forever-agent "~0.6.1" 2896 | form-data "~2.1.1" 2897 | har-validator "~4.2.1" 2898 | hawk "~3.1.3" 2899 | http-signature "~1.1.0" 2900 | is-typedarray "~1.0.0" 2901 | isstream "~0.1.2" 2902 | json-stringify-safe "~5.0.1" 2903 | mime-types "~2.1.7" 2904 | oauth-sign "~0.8.1" 2905 | performance-now "^0.2.0" 2906 | qs "~6.4.0" 2907 | safe-buffer "^5.0.1" 2908 | stringstream "~0.0.4" 2909 | tough-cookie "~2.3.0" 2910 | tunnel-agent "^0.6.0" 2911 | uuid "^3.0.0" 2912 | 2913 | require-directory@^2.1.1: 2914 | version "2.1.1" 2915 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2916 | 2917 | require-main-filename@^1.0.1: 2918 | version "1.0.1" 2919 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2920 | 2921 | require-uncached@^1.0.3: 2922 | version "1.0.3" 2923 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2924 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 2925 | dependencies: 2926 | caller-path "^0.1.0" 2927 | resolve-from "^1.0.0" 2928 | 2929 | resolve-from@^1.0.0: 2930 | version "1.0.1" 2931 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2932 | 2933 | resolve@1.1.7: 2934 | version "1.1.7" 2935 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2936 | 2937 | resolve@^1.1.6, resolve@^1.3.2: 2938 | version "1.3.3" 2939 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2940 | dependencies: 2941 | path-parse "^1.0.5" 2942 | 2943 | restore-cursor@^2.0.0: 2944 | version "2.0.0" 2945 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2946 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2947 | dependencies: 2948 | onetime "^2.0.0" 2949 | signal-exit "^3.0.2" 2950 | 2951 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1, rimraf@^2.6.2: 2952 | version "2.6.3" 2953 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2954 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2955 | dependencies: 2956 | glob "^7.1.3" 2957 | 2958 | run-async@^2.2.0: 2959 | version "2.3.0" 2960 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2961 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2962 | dependencies: 2963 | is-promise "^2.1.0" 2964 | 2965 | rx-lite-aggregates@^4.0.8: 2966 | version "4.0.8" 2967 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2968 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 2969 | dependencies: 2970 | rx-lite "*" 2971 | 2972 | rx-lite@*, rx-lite@^4.0.8: 2973 | version "4.0.8" 2974 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2975 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 2976 | 2977 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 2978 | version "5.0.1" 2979 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2980 | 2981 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2982 | version "2.1.2" 2983 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2984 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2985 | 2986 | sane@~1.6.0: 2987 | version "1.6.0" 2988 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2989 | dependencies: 2990 | anymatch "^1.3.0" 2991 | exec-sh "^0.2.0" 2992 | fb-watchman "^1.8.0" 2993 | minimatch "^3.0.2" 2994 | minimist "^1.1.1" 2995 | walker "~1.0.5" 2996 | watch "~0.10.0" 2997 | 2998 | sax@^1.2.1: 2999 | version "1.2.2" 3000 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3001 | 3002 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3003 | version "5.3.0" 3004 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3005 | 3006 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3007 | version "2.0.0" 3008 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3009 | 3010 | set-immediate-shim@^1.0.1: 3011 | version "1.0.1" 3012 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3013 | 3014 | shebang-command@^1.2.0: 3015 | version "1.2.0" 3016 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3017 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3018 | dependencies: 3019 | shebang-regex "^1.0.0" 3020 | 3021 | shebang-regex@^1.0.0: 3022 | version "1.0.0" 3023 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3024 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3025 | 3026 | shellwords@^0.1.0: 3027 | version "0.1.0" 3028 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3029 | 3030 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3031 | version "3.0.2" 3032 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3033 | 3034 | slash@^1.0.0: 3035 | version "1.0.0" 3036 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3037 | 3038 | slice-ansi@1.0.0: 3039 | version "1.0.0" 3040 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3041 | integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== 3042 | dependencies: 3043 | is-fullwidth-code-point "^2.0.0" 3044 | 3045 | sntp@1.x.x: 3046 | version "1.0.9" 3047 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3048 | dependencies: 3049 | hoek "2.x.x" 3050 | 3051 | source-map-support@^0.4.2: 3052 | version "0.4.15" 3053 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3054 | dependencies: 3055 | source-map "^0.5.6" 3056 | 3057 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: 3058 | version "0.5.6" 3059 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3060 | 3061 | source-map@^0.6.1, source-map@~0.6.1: 3062 | version "0.6.1" 3063 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3064 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3065 | 3066 | source-map@~0.2.0: 3067 | version "0.2.0" 3068 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3069 | dependencies: 3070 | amdefine ">=0.0.4" 3071 | 3072 | spdx-correct@~1.0.0: 3073 | version "1.0.2" 3074 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3075 | dependencies: 3076 | spdx-license-ids "^1.0.2" 3077 | 3078 | spdx-expression-parse@~1.0.0: 3079 | version "1.0.4" 3080 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3081 | 3082 | spdx-license-ids@^1.0.2: 3083 | version "1.2.2" 3084 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3085 | 3086 | sprintf-js@~1.0.2: 3087 | version "1.0.3" 3088 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3089 | 3090 | sshpk@^1.7.0: 3091 | version "1.16.1" 3092 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3093 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 3094 | dependencies: 3095 | asn1 "~0.2.3" 3096 | assert-plus "^1.0.0" 3097 | bcrypt-pbkdf "^1.0.0" 3098 | dashdash "^1.12.0" 3099 | ecc-jsbn "~0.1.1" 3100 | getpass "^0.1.1" 3101 | jsbn "~0.1.0" 3102 | safer-buffer "^2.0.2" 3103 | tweetnacl "~0.14.0" 3104 | 3105 | string-length@^1.0.1: 3106 | version "1.0.1" 3107 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3108 | dependencies: 3109 | strip-ansi "^3.0.0" 3110 | 3111 | string-width@^1.0.1, string-width@^1.0.2: 3112 | version "1.0.2" 3113 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3114 | dependencies: 3115 | code-point-at "^1.0.0" 3116 | is-fullwidth-code-point "^1.0.0" 3117 | strip-ansi "^3.0.0" 3118 | 3119 | string-width@^2.1.0, string-width@^2.1.1: 3120 | version "2.1.1" 3121 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3122 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3123 | dependencies: 3124 | is-fullwidth-code-point "^2.0.0" 3125 | strip-ansi "^4.0.0" 3126 | 3127 | string_decoder@~1.0.0: 3128 | version "1.0.2" 3129 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 3130 | dependencies: 3131 | safe-buffer "~5.0.1" 3132 | 3133 | stringstream@~0.0.4: 3134 | version "0.0.6" 3135 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3136 | integrity sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA== 3137 | 3138 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3139 | version "3.0.1" 3140 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3141 | dependencies: 3142 | ansi-regex "^2.0.0" 3143 | 3144 | strip-ansi@^4.0.0: 3145 | version "4.0.0" 3146 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3147 | dependencies: 3148 | ansi-regex "^3.0.0" 3149 | 3150 | strip-bom@3.0.0, strip-bom@^3.0.0: 3151 | version "3.0.0" 3152 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3153 | 3154 | strip-bom@^2.0.0: 3155 | version "2.0.0" 3156 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3157 | dependencies: 3158 | is-utf8 "^0.2.0" 3159 | 3160 | strip-json-comments@~2.0.1: 3161 | version "2.0.1" 3162 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3163 | 3164 | supports-color@^2.0.0: 3165 | version "2.0.0" 3166 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3167 | 3168 | supports-color@^3.1.2: 3169 | version "3.2.3" 3170 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3171 | dependencies: 3172 | has-flag "^1.0.0" 3173 | 3174 | supports-color@^5.3.0: 3175 | version "5.5.0" 3176 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3177 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3178 | dependencies: 3179 | has-flag "^3.0.0" 3180 | 3181 | symbol-tree@^3.2.1: 3182 | version "3.2.2" 3183 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3184 | 3185 | table@4.0.2: 3186 | version "4.0.2" 3187 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3188 | integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== 3189 | dependencies: 3190 | ajv "^5.2.3" 3191 | ajv-keywords "^2.1.0" 3192 | chalk "^2.1.0" 3193 | lodash "^4.17.4" 3194 | slice-ansi "1.0.0" 3195 | string-width "^2.1.1" 3196 | 3197 | tar-pack@^3.4.0: 3198 | version "3.4.0" 3199 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3200 | dependencies: 3201 | debug "^2.2.0" 3202 | fstream "^1.0.10" 3203 | fstream-ignore "^1.0.5" 3204 | once "^1.3.3" 3205 | readable-stream "^2.1.4" 3206 | rimraf "^2.5.1" 3207 | tar "^2.2.1" 3208 | uid-number "^0.0.6" 3209 | 3210 | tar@^2.2.1: 3211 | version "2.2.2" 3212 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3213 | integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== 3214 | dependencies: 3215 | block-stream "*" 3216 | fstream "^1.0.12" 3217 | inherits "2" 3218 | 3219 | test-exclude@^4.1.1: 3220 | version "4.1.1" 3221 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3222 | dependencies: 3223 | arrify "^1.0.1" 3224 | micromatch "^2.3.11" 3225 | object-assign "^4.1.0" 3226 | read-pkg-up "^1.0.1" 3227 | require-main-filename "^1.0.1" 3228 | 3229 | text-table@~0.2.0: 3230 | version "0.2.0" 3231 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3232 | 3233 | throat@^3.0.0: 3234 | version "3.2.0" 3235 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3236 | 3237 | through@^2.3.6: 3238 | version "2.3.8" 3239 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3240 | 3241 | tmp@^0.0.33: 3242 | version "0.0.33" 3243 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3244 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3245 | dependencies: 3246 | os-tmpdir "~1.0.2" 3247 | 3248 | tmpl@1.0.x: 3249 | version "1.0.4" 3250 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3251 | 3252 | to-fast-properties@^1.0.1: 3253 | version "1.0.3" 3254 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3255 | 3256 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3257 | version "2.3.4" 3258 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3259 | integrity sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA== 3260 | dependencies: 3261 | punycode "^1.4.1" 3262 | 3263 | tr46@~0.0.3: 3264 | version "0.0.3" 3265 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3266 | 3267 | trim-right@^1.0.1: 3268 | version "1.0.1" 3269 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3270 | 3271 | tryit@^1.0.1: 3272 | version "1.0.3" 3273 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3274 | 3275 | tunnel-agent@^0.6.0: 3276 | version "0.6.0" 3277 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3278 | dependencies: 3279 | safe-buffer "^5.0.1" 3280 | 3281 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3282 | version "0.14.5" 3283 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3284 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 3285 | 3286 | type-check@~0.3.2: 3287 | version "0.3.2" 3288 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3289 | dependencies: 3290 | prelude-ls "~1.1.2" 3291 | 3292 | typedarray@^0.0.6: 3293 | version "0.0.6" 3294 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3295 | 3296 | uglify-js@^3.1.4: 3297 | version "3.7.3" 3298 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.3.tgz#f918fce9182f466d5140f24bb0ff35c2d32dcc6a" 3299 | integrity sha512-7tINm46/3puUA4hCkKYo4Xdts+JDaVC9ZPRcG8Xw9R4nhO/gZgUM3TENq8IF4Vatk8qCig4MzP/c8G4u2BkVQg== 3300 | dependencies: 3301 | commander "~2.20.3" 3302 | source-map "~0.6.1" 3303 | 3304 | uid-number@^0.0.6: 3305 | version "0.0.6" 3306 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3307 | 3308 | user-home@^1.1.1: 3309 | version "1.1.1" 3310 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3311 | 3312 | util-deprecate@~1.0.1: 3313 | version "1.0.2" 3314 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3315 | 3316 | uuid@^3.0.0: 3317 | version "3.1.0" 3318 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3319 | 3320 | v8flags@^2.0.10: 3321 | version "2.1.1" 3322 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3323 | dependencies: 3324 | user-home "^1.1.1" 3325 | 3326 | validate-npm-package-license@^3.0.1: 3327 | version "3.0.1" 3328 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3329 | dependencies: 3330 | spdx-correct "~1.0.0" 3331 | spdx-expression-parse "~1.0.0" 3332 | 3333 | verror@1.3.6: 3334 | version "1.3.6" 3335 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3336 | dependencies: 3337 | extsprintf "1.0.2" 3338 | 3339 | walker@~1.0.5: 3340 | version "1.0.7" 3341 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3342 | dependencies: 3343 | makeerror "1.0.x" 3344 | 3345 | watch@~0.10.0: 3346 | version "0.10.0" 3347 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3348 | 3349 | webidl-conversions@^3.0.0: 3350 | version "3.0.1" 3351 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3352 | 3353 | webidl-conversions@^4.0.0: 3354 | version "4.0.1" 3355 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3356 | 3357 | whatwg-encoding@^1.0.1: 3358 | version "1.0.1" 3359 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3360 | dependencies: 3361 | iconv-lite "0.4.13" 3362 | 3363 | whatwg-url@^4.3.0: 3364 | version "4.8.0" 3365 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3366 | dependencies: 3367 | tr46 "~0.0.3" 3368 | webidl-conversions "^3.0.0" 3369 | 3370 | which-module@^1.0.0: 3371 | version "1.0.0" 3372 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3373 | 3374 | which@^1.2.12: 3375 | version "1.2.14" 3376 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3377 | dependencies: 3378 | isexe "^2.0.0" 3379 | 3380 | which@^1.2.9: 3381 | version "1.3.1" 3382 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3383 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3384 | dependencies: 3385 | isexe "^2.0.0" 3386 | 3387 | wide-align@^1.1.0: 3388 | version "1.1.2" 3389 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3390 | dependencies: 3391 | string-width "^1.0.2" 3392 | 3393 | wordwrap@~0.0.2: 3394 | version "0.0.3" 3395 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3396 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 3397 | 3398 | wordwrap@~1.0.0: 3399 | version "1.0.0" 3400 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3401 | 3402 | worker-farm@^1.3.1: 3403 | version "1.3.1" 3404 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3405 | dependencies: 3406 | errno ">=0.1.1 <0.2.0-0" 3407 | xtend ">=4.0.0 <4.1.0-0" 3408 | 3409 | wrap-ansi@^2.0.0: 3410 | version "2.1.0" 3411 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3412 | dependencies: 3413 | string-width "^1.0.1" 3414 | strip-ansi "^3.0.1" 3415 | 3416 | wrappy@1: 3417 | version "1.0.2" 3418 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3419 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3420 | 3421 | write@^0.2.1: 3422 | version "0.2.1" 3423 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3424 | dependencies: 3425 | mkdirp "^0.5.1" 3426 | 3427 | xml-name-validator@^2.0.1: 3428 | version "2.0.1" 3429 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3430 | 3431 | "xtend@>=4.0.0 <4.1.0-0": 3432 | version "4.0.1" 3433 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3434 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 3435 | 3436 | y18n@^3.2.1: 3437 | version "3.2.1" 3438 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3439 | 3440 | yallist@^2.1.2: 3441 | version "2.1.2" 3442 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3443 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3444 | 3445 | yargs-parser@^5.0.0: 3446 | version "5.0.0" 3447 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3448 | dependencies: 3449 | camelcase "^3.0.0" 3450 | 3451 | yargs@^7.0.2: 3452 | version "7.1.0" 3453 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3454 | dependencies: 3455 | camelcase "^3.0.0" 3456 | cliui "^3.2.0" 3457 | decamelize "^1.1.1" 3458 | get-caller-file "^1.0.1" 3459 | os-locale "^1.4.0" 3460 | read-pkg-up "^1.0.1" 3461 | require-directory "^2.1.1" 3462 | require-main-filename "^1.0.1" 3463 | set-blocking "^2.0.0" 3464 | string-width "^1.0.2" 3465 | which-module "^1.0.0" 3466 | y18n "^3.2.1" 3467 | yargs-parser "^5.0.0" 3468 | --------------------------------------------------------------------------------