├── .npmignore ├── .gitignore ├── src ├── index.ts ├── file.ts └── plugin.ts ├── vendor ├── main.d.ts └── serverless.d.ts ├── tslint.json ├── tsconfig.json ├── LICENSE.md ├── test ├── file.spec.ts └── plugin.spec.ts ├── package.json ├── CODE_OF_CONDUCT.md ├── .circleci └── config.yml ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | !dist 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import Plugin from './plugin' 2 | 3 | module.exports = Plugin 4 | -------------------------------------------------------------------------------- /vendor/main.d.ts: -------------------------------------------------------------------------------- 1 | declare interface StackOutputPair { 2 | OutputKey: string 3 | OutputValue: string 4 | } 5 | 6 | declare interface StackDescription { 7 | Outputs: StackOutputPair[] 8 | } 9 | 10 | declare interface StackDescriptionList { 11 | Stacks: StackDescription[] 12 | } 13 | 14 | declare interface OutputConfig { 15 | handler: string 16 | file: string 17 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "error", 3 | "extends": [ 4 | "tslint:recommended" 5 | ], 6 | "jsRules": {}, 7 | "rules": { 8 | "no-console": [ false, "error" ], 9 | "quotemark": [ true, "single", "avoid-escape" ], 10 | "semicolon": [ true, "never" ], 11 | "trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ], 12 | "space-before-function-paren": [ true, { "anonymous": "always", "named": "never", "asyncArrow": "always" } ], 13 | "indent": [ true, "spaces", 2 ], 14 | "interface-name": [ true, "never-prefix" ] 15 | }, 16 | "rulesDirectory": [] 17 | } 18 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es5", 5 | "sourceMap": false, 6 | "allowJs": false, 7 | "moduleResolution": "node", 8 | "rootDir": "./src", 9 | "outDir": "./dist", 10 | "forceConsistentCasingInFileNames": true, 11 | "noImplicitReturns": true, 12 | "noImplicitThis": true, 13 | "noImplicitAny": true, 14 | "strict": true, 15 | "suppressImplicitAnyIndexErrors": true, 16 | "noUnusedLocals": true, 17 | "allowSyntheticDefaultImports": true, 18 | "lib": [ 19 | "es2015", 20 | "es2016" 21 | ], 22 | "declaration": false 23 | }, 24 | "include": [ 25 | "src/**/*", 26 | "vendor/**/*" 27 | ], 28 | "exclude": [ 29 | "node_modules/**/*", 30 | "src/**/*.spec.ts" 31 | ] 32 | } -------------------------------------------------------------------------------- /src/file.ts: -------------------------------------------------------------------------------- 1 | import * as fs from 'fs' 2 | 3 | export default class StackOutputFile { 4 | constructor ( 5 | public path: string 6 | ) { } 7 | 8 | public format (data: object) { 9 | const ext = this.path.split('.').pop() || '' 10 | 11 | switch (ext.toUpperCase()) { 12 | case 'JSON': 13 | return JSON.stringify(data, null, 2) 14 | case 'TOML': 15 | return require('tomlify-j0.4')(data, null, 0) 16 | case 'YAML': 17 | case 'YML': 18 | return require('yamljs').stringify(data) 19 | default: 20 | throw new Error('No formatter found for `' + ext + '` extension') 21 | } 22 | } 23 | 24 | public save (data: object) { 25 | const content = this.format(data) 26 | 27 | try { 28 | fs.writeFileSync(this.path, content) 29 | } catch (e) { 30 | throw new Error('Cannot write to file: ' + this.path) 31 | } 32 | 33 | return Promise.resolve() 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | 3 | Copyright © 2017 Sebastian Müller 4 | 5 | Permission is hereby granted, free of charge, to any person 6 | obtaining a copy of this software and associated documentation 7 | files (the “Software”), to deal in the Software without 8 | restriction, including without limitation the rights to use, 9 | copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the 11 | Software is furnished to do so, subject to the following 12 | conditions: 13 | 14 | The above copyright notice and this permission notice shall be 15 | included in all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 19 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 21 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 22 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 23 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 24 | OTHER DEALINGS IN THE SOFTWARE. 25 | -------------------------------------------------------------------------------- /vendor/serverless.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace Serverless { 2 | interface Options { 3 | stage: string | null 4 | region: string | null 5 | noDeploy?: boolean 6 | } 7 | 8 | namespace Provider { 9 | class Aws { 10 | constructor(serverless: Serverless, options: Serverless.Options) 11 | 12 | getProviderName: () => string 13 | getRegion: () => string 14 | getServerlessDeploymentBucketName: () => string 15 | getStage: () => string 16 | 17 | request: (service: string, method: string, data: {}, stage: string, region: string) => Promise 18 | } 19 | } 20 | } 21 | 22 | declare interface Serverless { 23 | init(): Promise 24 | run(): Promise 25 | 26 | setProvider(name: string, provider: Serverless.Provider.Aws): null 27 | getProvider(name: string): Serverless.Provider.Aws 28 | 29 | getVersion(): string 30 | 31 | cli: { 32 | log(message: string): null 33 | } 34 | 35 | config: { 36 | servicePath: string 37 | } 38 | 39 | service: { 40 | getServiceName(): string 41 | getAllFunctions(): string[] 42 | 43 | custom: { 44 | output: OutputConfig 45 | } 46 | 47 | provider: { 48 | name: string 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /test/file.spec.ts: -------------------------------------------------------------------------------- 1 | import using from 'jasmine-data-provider' 2 | import util from 'util' 3 | 4 | import File from '../src/file' 5 | 6 | describe('File', () => { 7 | describe('Constructor', () => { 8 | it('pass path', () => { 9 | const f = new File(__dirname) 10 | expect(f.path).toBe(__dirname) 11 | }) 12 | }) 13 | 14 | describe('Format', () => { 15 | using( 16 | [ 17 | {file: 'test.yaml', valid: true, type: 'yaml', data: `foo: bar\n`}, 18 | {file: 'test.yml', valid: true, type: 'yaml', data: `foo: bar\n`}, 19 | {file: 'test.json', valid: true, type: 'json', data: `{\n "foo": "bar"\n}`}, 20 | {file: 'test.toml', valid: true, type: 'toml', data: 'foo = "bar"'}, 21 | {file: 'test.zip', valid: false} 22 | ], 23 | (data) => { 24 | const name = util.format( 25 | 'detects %s %s', 26 | data.valid ? 'valid' : 'invalid', 27 | data.file 28 | ) 29 | 30 | it(name, () => { 31 | const f = new File(data.file) 32 | const output = { foo: 'bar' } 33 | 34 | if (data.valid) { 35 | expect(f.format(output)).toBe(data.data) 36 | } else { 37 | expect(() => f.format(output)).toThrow() 38 | } 39 | }) 40 | } 41 | ) 42 | }) 43 | }) 44 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "serverless-stack-output", 3 | "description": "Serverless plugin to process AWS CloudFormation Stack Output", 4 | "license": "MIT", 5 | "author": "Sebastian Müller ", 6 | "main": "dist", 7 | "scripts": { 8 | "clean": "rimraf dist", 9 | "test": "jest", 10 | "test:cover": "jest --coverage", 11 | "coveralls": "cat ./coverage/lcov.info | coveralls", 12 | "lint": "tslint {src,test}/**/*.ts", 13 | "prebuild": "yarn clean", 14 | "build": "tsc" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "git+https://github.com/sbstjn/serverless-stack-output.git" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/sbstjn/serverless-stack-output/issues" 22 | }, 23 | "homepage": "https://github.com/sbstjn/serverless-stack-output#readme", 24 | "keywords": [ 25 | "serverless", 26 | "plugin", 27 | "aws", 28 | "cloudformation", 29 | "stack", 30 | "output" 31 | ], 32 | "dependencies": { 33 | "tomlify-j0.4": "^2.0.0", 34 | "yamljs": "^0.3.0" 35 | }, 36 | "devDependencies": { 37 | "@types/jest": "^20.0.5", 38 | "@types/node": "^8.0.19", 39 | "coveralls": "^2.13.1", 40 | "dot-json": "^1.0.3", 41 | "jasmine-data-provider": "^2.2.0", 42 | "jest": "^20.0.4", 43 | "rimraf": "^2.6.2", 44 | "sinon": "^2.3.6", 45 | "ts-jest": "^20.0.7", 46 | "tslint": "^5.5.0", 47 | "typescript": "^2.4.2" 48 | }, 49 | "jest": { 50 | "transform": { 51 | ".*": "/node_modules/ts-jest/preprocessor.js" 52 | }, 53 | "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$", 54 | "moduleFileExtensions": [ 55 | "ts", 56 | "js" 57 | ] 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /test/plugin.spec.ts: -------------------------------------------------------------------------------- 1 | import sinon from 'sinon' 2 | 3 | import Plugin from '../src/plugin' 4 | 5 | describe('Plugin', () => { 6 | let providerMock = null 7 | let getProvider = null 8 | const provider = { 9 | request: () => true, 10 | sdk: { 11 | VERSION: '2.21.0' 12 | } 13 | } 14 | 15 | beforeEach(() => { 16 | providerMock = sinon.mock(provider) 17 | getProvider = sinon.stub().returns(provider) 18 | }) 19 | 20 | afterEach(() => { 21 | providerMock.restore() 22 | }) 23 | 24 | describe('Configuration', () => { 25 | it('hasHandler', () => { 26 | const config = { 27 | cli: { log: () => null }, 28 | config: { 29 | servicePath: '' 30 | }, 31 | getProvider, 32 | region: 'us-east-1', 33 | service: { 34 | custom: { 35 | output: { 36 | handler: 'foo/bar.baz' 37 | } 38 | }, 39 | provider: { 40 | name: 'aws' 41 | } 42 | } 43 | } 44 | 45 | const test = new Plugin(config, { serverless: true }, { options: true }) 46 | 47 | expect(test.hasHandler()).toBe(true) 48 | expect(test.hasFile()).toBe(false) 49 | 50 | expect(test.handler).toContain('foo/bar.baz') 51 | }) 52 | }) 53 | 54 | describe('Configuration', () => { 55 | it('hasFile', () => { 56 | const config = { 57 | cli: { log: () => null }, 58 | config: { 59 | servicePath: '' 60 | }, 61 | getProvider, 62 | region: 'us-east-1', 63 | service: { 64 | custom: { 65 | output: { 66 | file: 'foo/bar.toml' 67 | } 68 | }, 69 | provider: { 70 | name: 'aws' 71 | } 72 | } 73 | } 74 | 75 | const test = new Plugin(config) 76 | 77 | expect(test.hasHandler()).toBe(false) 78 | expect(test.hasFile()).toBe(true) 79 | 80 | expect(test.file).toContain('foo/bar.toml') 81 | }) 82 | }) 83 | }) 84 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting our team at **code@sbstjn.com**. As an alternative 59 | feel free to reach out to any of us personally. All 60 | complaints will be reviewed and investigated and will result in a response that 61 | is deemed necessary and appropriate to the circumstances. The project team is 62 | obligated to maintain confidentiality with regard to the reporter of an incident. 63 | Further details of specific enforcement policies may be posted separately. 64 | 65 | Project maintainers who do not follow or enforce the Code of Conduct in good 66 | faith may face temporary or permanent repercussions as determined by other 67 | members of the project's leadership. 68 | 69 | ## Attribution 70 | 71 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 72 | available at [http://contributor-covenant.org/version/1/4][version] 73 | 74 | [homepage]: http://contributor-covenant.org 75 | [version]: http://contributor-covenant.org/version/1/4/ 76 | -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- 1 | import * as assert from 'assert' 2 | import * as util from 'util' 3 | 4 | import StackOutputFile from './file' 5 | 6 | export default class StackOutputPlugin { 7 | public hooks: {} 8 | private output: OutputConfig 9 | 10 | constructor ( 11 | private serverless: Serverless, 12 | private options: Serverless.Options 13 | ) { 14 | this.hooks = { 15 | 'after:deploy:deploy': this.process.bind(this) 16 | } 17 | 18 | this.output = this.serverless.service.custom.output 19 | } 20 | 21 | get file () { 22 | return this.getConfig('file') 23 | } 24 | 25 | get handler () { 26 | return this.getConfig('handler') 27 | } 28 | 29 | get stackName () { 30 | return util.format('%s-%s', 31 | this.serverless.service.getServiceName(), 32 | this.serverless.getProvider('aws').getStage() 33 | ) 34 | } 35 | 36 | private hasConfig (key: string) { 37 | return !!this.output && !!this.output[key] 38 | } 39 | 40 | private hasHandler () { 41 | return this.hasConfig('handler') 42 | } 43 | 44 | private hasFile () { 45 | return this.hasConfig('file') 46 | } 47 | 48 | private getConfig (key: string) { 49 | return util.format('%s/%s', 50 | this.serverless.config.servicePath, 51 | this.output[key] 52 | ) 53 | } 54 | 55 | private callHandler (data: object) { 56 | const splits = this.handler.split('.') 57 | const func = splits.pop() || '' 58 | const file = splits.join('.') 59 | 60 | require(file)[func]( 61 | data, 62 | this.serverless, 63 | this.options 64 | ) 65 | 66 | return Promise.resolve() 67 | } 68 | 69 | private saveFile (data: object) { 70 | const f = new StackOutputFile(this.file) 71 | 72 | return f.save(data) 73 | } 74 | 75 | private fetch (): Promise { 76 | return this.serverless.getProvider('aws').request( 77 | 'CloudFormation', 78 | 'describeStacks', 79 | { StackName: this.stackName }, 80 | this.serverless.getProvider('aws').getStage(), 81 | this.serverless.getProvider('aws').getRegion() 82 | ) 83 | } 84 | 85 | private beautify (data: {Stacks: Array<{ Outputs: StackOutputPair[] }>}) { 86 | const stack = data.Stacks.pop() || { Outputs: [] } 87 | const output = stack.Outputs || [] 88 | 89 | return output.reduce( 90 | (obj, item: StackOutputPair) => ( 91 | Object.assign(obj, { [item.OutputKey]: item.OutputValue }) 92 | ), {} 93 | ) 94 | } 95 | 96 | private handle (data: object) { 97 | return Promise.all( 98 | [ 99 | this.handleHandler(data), 100 | this.handleFile(data) 101 | ] 102 | ) 103 | } 104 | 105 | private handleHandler(data: object) { 106 | return this.hasHandler() ? ( 107 | this.callHandler( 108 | data 109 | ).then( 110 | () => this.serverless.cli.log( 111 | util.format('Stack Output processed with handler: %s', this.output.handler) 112 | ) 113 | ) 114 | ) : Promise.resolve() 115 | } 116 | 117 | private handleFile(data: object) { 118 | return this.hasFile() ? ( 119 | this.saveFile( 120 | data 121 | ).then( 122 | () => this.serverless.cli.log( 123 | util.format('Stack Output saved to file: %s', this.output.file) 124 | ) 125 | ) 126 | ) : Promise.resolve() 127 | } 128 | 129 | private validate () { 130 | assert(this.serverless, 'Invalid serverless configuration') 131 | assert(this.serverless.service, 'Invalid serverless configuration') 132 | assert(this.serverless.service.provider, 'Invalid serverless configuration') 133 | assert(this.serverless.service.provider.name, 'Invalid serverless configuration') 134 | assert(this.serverless.service.provider.name === 'aws', 'Only supported for AWS provider') 135 | 136 | assert(this.options && !this.options.noDeploy, 'Skipping deployment with --noDeploy flag') 137 | } 138 | 139 | private process () { 140 | Promise.resolve() 141 | .then( 142 | () => this.validate() 143 | ).then( 144 | () => this.fetch() 145 | ).then( 146 | (res) => this.beautify(res) 147 | ).then( 148 | (res) => this.handle(res) 149 | ).catch( 150 | (err) => this.serverless.cli.log( 151 | util.format('Cannot process Stack Output: %s!', err.message) 152 | ) 153 | ) 154 | } 155 | } 156 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | defaults: &defaults 2 | working_directory: ~/repo 3 | docker: 4 | - image: circleci/node:8.0 5 | 6 | whitelist: &whitelist 7 | paths: 8 | - .npmignore 9 | - coverage/* 10 | - dist/* 11 | - node_modules/* 12 | - src/* 13 | - test/* 14 | - vendor/* 15 | - CODE_OF_CONDUCT.md 16 | - LICENSE.md 17 | - package.json 18 | - README.md 19 | - tsconfig.json 20 | - tslint.json 21 | - yarn.lock 22 | version: 2 23 | jobs: 24 | checkout: 25 | <<: *defaults 26 | 27 | steps: 28 | - checkout 29 | 30 | - restore_cache: 31 | keys: 32 | - v1-dependencies-{{ checksum "package.json" }} 33 | - v1-dependencies- 34 | 35 | - run: 36 | name: Install Dependencies 37 | command: yarn install 38 | 39 | - save_cache: 40 | paths: 41 | - node_modules 42 | key: v1-dependencies-{{ checksum "package.json" }} 43 | 44 | - persist_to_workspace: 45 | root: ~/repo 46 | <<: *whitelist 47 | 48 | lint: 49 | <<: *defaults 50 | 51 | steps: 52 | - attach_workspace: 53 | at: ~/repo 54 | 55 | - run: 56 | name: Lint TypeScript code 57 | command: yarn lint 58 | 59 | test: 60 | <<: *defaults 61 | 62 | steps: 63 | - attach_workspace: 64 | at: ~/repo 65 | 66 | - run: 67 | name: Test TypeScript code 68 | command: yarn test:cover 69 | 70 | - persist_to_workspace: 71 | root: ~/repo 72 | <<: *whitelist 73 | 74 | coveralls: 75 | <<: *defaults 76 | 77 | steps: 78 | - attach_workspace: 79 | at: ~/repo 80 | 81 | - run: 82 | name: Submit coverage report to Coveralls.io 83 | command: yarn coveralls 84 | 85 | build: 86 | <<: *defaults 87 | 88 | steps: 89 | - attach_workspace: 90 | at: ~/repo 91 | 92 | - run: 93 | name: Build TypeScript code 94 | command: yarn build 95 | 96 | - persist_to_workspace: 97 | root: ~/repo 98 | <<: *whitelist 99 | 100 | deploy: 101 | <<: *defaults 102 | 103 | steps: 104 | - attach_workspace: 105 | at: ~/repo 106 | 107 | - run: 108 | name: Write NPM Token to ~/.npmrc 109 | command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc 110 | 111 | - run: 112 | name: Install dot-json package 113 | command: npm install dot-json 114 | 115 | - run: 116 | name: Write version to package.json 117 | command: $(yarn bin)/dot-json package.json version ${CIRCLE_TAG:1} 118 | 119 | - run: 120 | name: Publish to NPM 121 | command: npm publish --access=public 122 | 123 | workflows: 124 | version: 2 125 | 126 | build: 127 | jobs: 128 | - checkout 129 | - test: 130 | requires: 131 | - checkout 132 | - lint: 133 | requires: 134 | - checkout 135 | - coveralls: 136 | requires: 137 | - test 138 | - build: 139 | requires: 140 | - test 141 | - lint 142 | 143 | release: 144 | jobs: 145 | - checkout: 146 | filters: 147 | tags: 148 | only: /v[0-9]+(\.[0-9]+)*/ 149 | branches: 150 | ignore: /.*/ 151 | - test: 152 | filters: 153 | tags: 154 | only: /v[0-9]+(\.[0-9]+)*/ 155 | branches: 156 | ignore: /.*/ 157 | requires: 158 | - checkout 159 | - lint: 160 | filters: 161 | tags: 162 | only: /v[0-9]+(\.[0-9]+)*/ 163 | branches: 164 | ignore: /.*/ 165 | requires: 166 | - checkout 167 | - coveralls: 168 | filters: 169 | tags: 170 | only: /v[0-9]+(\.[0-9]+)*/ 171 | branches: 172 | ignore: /.*/ 173 | requires: 174 | - test 175 | - build: 176 | filters: 177 | tags: 178 | only: /v[0-9]+(\.[0-9]+)*/ 179 | branches: 180 | ignore: /.*/ 181 | requires: 182 | - test 183 | - lint 184 | - deploy: 185 | filters: 186 | tags: 187 | only: /v[0-9]+(\.[0-9]+)*/ 188 | branches: 189 | ignore: /.*/ 190 | requires: 191 | - build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Serverless Stack Output Plugin 2 | 3 | [![npm](https://img.shields.io/npm/v/serverless-stack-output.svg)](https://www.npmjs.com/package/serverless-stack-output) 4 | [![license](https://img.shields.io/github/license/sbstjn/serverless-stack-output.svg)](https://github.com/sbstjn/serverless-stack-output/blob/master/LICENSE.md) 5 | [![CircleCI](https://img.shields.io/circleci/project/github/sbstjn/serverless-stack-output.svg)](https://circleci.com/gh/sbstjn/serverless-stack-output) 6 | [![Coveralls](https://img.shields.io/coveralls/sbstjn/serverless-stack-output.svg)](https://coveralls.io/github/sbstjn/serverless-stack-output) 7 | 8 | A [serverless](https://serverless.com) plugin to store output from your AWS CloudFormation Stack in JSON/YAML/TOML files, or to pass the output to a JavaScript function for further processing. 9 | 10 | ## Usage 11 | 12 | ### Install 13 | 14 | ```bash 15 | $ > yarn add serverless-stack-output 16 | ``` 17 | 18 | ```bash 19 | $ > npm install serverless-stack-output 20 | ``` 21 | 22 | ### Configuration 23 | 24 | ```yaml 25 | plugins: 26 | - serverless-stack-output 27 | 28 | custom: 29 | output: 30 | handler: scripts/output.handler # Same syntax as you already know 31 | file: .build/stack.toml # toml, yaml, yml, and json format is available 32 | ``` 33 | 34 | ### Handler 35 | 36 | Based on the configuration above the plugin will search for a file `scripts/output.js` with the following content: 37 | 38 | ```js 39 | function handler (data, serverless, options) { 40 | console.log('Received Stack Output', data) 41 | } 42 | 43 | module.exports = { handler } 44 | ``` 45 | 46 | ### File Formats 47 | 48 | Just name your file with a `.json`, `.toml`, `.yaml`, or `.yml` extension, and the plugin will take care of formatting your output. Please make sure the location where you want to save the file exists! 49 | 50 | ## License 51 | 52 | Feel free to use the code, it's released using the [MIT license](LICENSE.md). 53 | 54 | ## Contribution 55 | 56 | You are more than welcome to contribute to this project! 😘 🙆 57 | 58 | To make sure you have a pleasant experience, please read the [code of conduct](CODE_OF_CONDUCT.md). It outlines core values and believes and will make working together a happier experience. 59 | 60 | ## Example 61 | 62 | The plugins works fine with serverless functions, as well as when using custom CloudFormation resources. The following example configuration will deploy an AWS Lambda function, API Gateway, SQS Queue, IAM User with AccessKey and SecretKey, and a static value: 63 | 64 | ### Serverless.yml 65 | 66 | ```yaml 67 | service: sls-stack-output-example 68 | 69 | plugins: 70 | - serverless-stack-output 71 | 72 | package: 73 | exclude: 74 | - node_modules/** 75 | 76 | custom: 77 | output: 78 | handler: scripts/output.handler 79 | file: .build/stack.toml 80 | 81 | provider: 82 | name: aws 83 | runtime: nodejs6.10 84 | 85 | functions: 86 | example: 87 | handler: functions/example.handle 88 | events: 89 | - http: 90 | path: example 91 | method: get 92 | cors: true 93 | 94 | resources: 95 | Resources: 96 | ExampleQueue: 97 | Type: AWS::SQS::Queue 98 | Properties: 99 | QueueName: example-queue 100 | ExampleUser: 101 | Type: "AWS::IAM::User" 102 | Properties: 103 | UserName: example-user 104 | Policies: 105 | - PolicyName: ExampleUserSQSPolicy 106 | PolicyDocument: 107 | Version: '2012-10-17' 108 | Statement: 109 | - Effect: "Allow" 110 | Action: 111 | - sqs:SendMessage 112 | Resource: 113 | - {"Fn::Join": [":", ["arn:aws:sqs:*", {"Ref": "AWS::AccountId"}, "example-queue"]]} 114 | ExampleUserKey: 115 | Type: AWS::IAM::AccessKey 116 | Properties: 117 | UserName: 118 | Ref: ExampleUser 119 | Outputs: 120 | ExampleUserKey: 121 | Value: 122 | Ref: ExampleUserKey 123 | ExampleUserSecret: 124 | Value: {"Fn::GetAtt": ["ExampleUserKey", "SecretAccessKey"]} 125 | ExampleStaticValue: 126 | Value: example-static-value 127 | ``` 128 | 129 | ### Stack Output 130 | 131 | #### TOML 132 | 133 | ```toml 134 | ExampleUserSecret = "YourUserSecretKey" 135 | ExampleUserKey = "YourUserAccessKey" 136 | ExampleLambdaFunctionQualifiedArn = "arn:aws:lambda:us-east-1:AccountID:function:sls-stack-output-example-dev-example:9" 137 | ExampleStaticValue = "example-static-value" 138 | ServiceEndpoint = "https://APIGatewayID.execute-api.us-east-1.amazonaws.com/dev" 139 | ServerlessDeploymentBucketName = "sls-stack-output-example-serverlessdeploymentbuck-BucketID" 140 | ``` 141 | 142 | #### YAML 143 | 144 | ```yaml 145 | ExampleUserSecret: YourUserSecretKey 146 | ExampleUserKey: YourUserAccessKey 147 | ExampleLambdaFunctionQualifiedArn: 'arn:aws:lambda:us-east-1:AccountID:function:sls-stack-output-example-dev-example:9' 148 | ExampleStaticValue: example-static-value 149 | ServiceEndpoint: 'https://APIGatewayID.execute-api.us-east-1.amazonaws.com/dev' 150 | ServerlessDeploymentBucketName: sls-stack-output-example-serverlessdeploymentbuck-BucketID 151 | ``` 152 | 153 | #### JSON 154 | 155 | ```json 156 | { 157 | "ExampleUserSecret": "YourUserSecretKey", 158 | "ExampleUserKey": "YourUserAccessKey", 159 | "ExampleLambdaFunctionQualifiedArn": "arn:aws:lambda:us-east-1:AccountID:function:sls-stack-output-example-dev-example:9", 160 | "ExampleStaticValue": "example-static-value", 161 | "ServiceEndpoint": "https://APIGatewayID.execute-api.us-east-1.amazonaws.com/dev", 162 | "ServerlessDeploymentBucketName": "sls-stack-output-example-serverlessdeploymentbuck-BucketID" 163 | } 164 | ``` -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/babel-core@^6.7.14": 6 | version "6.25.0" 7 | resolved "https://registry.yarnpkg.com/@types/babel-core/-/babel-core-6.25.0.tgz#e6439b193c3644cf3fbd24b05620876f76017313" 8 | dependencies: 9 | "@types/babel-template" "*" 10 | "@types/babel-traverse" "*" 11 | "@types/babel-types" "*" 12 | 13 | "@types/babel-template@*": 14 | version "6.25.0" 15 | resolved "https://registry.yarnpkg.com/@types/babel-template/-/babel-template-6.25.0.tgz#2505d7b55b88f821d98048b4fdf07b3b22563d30" 16 | dependencies: 17 | "@types/babel-types" "*" 18 | "@types/babylon" "*" 19 | 20 | "@types/babel-traverse@*": 21 | version "6.25.0" 22 | resolved "https://registry.yarnpkg.com/@types/babel-traverse/-/babel-traverse-6.25.0.tgz#fff48b65c7ce77072d567ec9b400fd55b206b337" 23 | dependencies: 24 | "@types/babel-types" "*" 25 | 26 | "@types/babel-types@*": 27 | version "6.25.1" 28 | resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-6.25.1.tgz#ce8f126a4403e11e1b0033a424f11638afac7889" 29 | 30 | "@types/babylon@*": 31 | version "6.16.2" 32 | resolved "https://registry.yarnpkg.com/@types/babylon/-/babylon-6.16.2.tgz#062ce63b693d9af1c246f5aedf928bc9c30589c8" 33 | dependencies: 34 | "@types/babel-types" "*" 35 | 36 | "@types/jest@^20.0.5": 37 | version "20.0.5" 38 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-20.0.5.tgz#f463e58b2de6e801f40e33b05db894babdbad98c" 39 | 40 | "@types/node@^8.0.19": 41 | version "8.0.19" 42 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.19.tgz#e46e2b0243de7d03f15b26b45c59ebb84f657a4e" 43 | 44 | abab@^1.0.3: 45 | version "1.0.3" 46 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 47 | 48 | acorn-globals@^3.1.0: 49 | version "3.1.0" 50 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 51 | dependencies: 52 | acorn "^4.0.4" 53 | 54 | acorn@^4.0.4: 55 | version "4.0.13" 56 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 57 | 58 | ajv@^4.9.1: 59 | version "4.11.8" 60 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 61 | dependencies: 62 | co "^4.6.0" 63 | json-stable-stringify "^1.0.1" 64 | 65 | align-text@^0.1.1, align-text@^0.1.3: 66 | version "0.1.4" 67 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 68 | dependencies: 69 | kind-of "^3.0.2" 70 | longest "^1.0.1" 71 | repeat-string "^1.5.2" 72 | 73 | amdefine@>=0.0.4: 74 | version "1.0.1" 75 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 76 | 77 | ansi-escapes@^1.4.0: 78 | version "1.4.0" 79 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 80 | 81 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 82 | version "2.1.1" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 84 | 85 | ansi-regex@^3.0.0: 86 | version "3.0.0" 87 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 88 | 89 | ansi-styles@^2.2.1: 90 | version "2.2.1" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 92 | 93 | ansi-styles@^3.0.0: 94 | version "3.2.0" 95 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 96 | dependencies: 97 | color-convert "^1.9.0" 98 | 99 | anymatch@^1.3.0: 100 | version "1.3.2" 101 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 102 | dependencies: 103 | micromatch "^2.1.5" 104 | normalize-path "^2.0.0" 105 | 106 | append-transform@^0.4.0: 107 | version "0.4.0" 108 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 109 | dependencies: 110 | default-require-extensions "^1.0.0" 111 | 112 | argparse@^1.0.7: 113 | version "1.0.9" 114 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 115 | dependencies: 116 | sprintf-js "~1.0.2" 117 | 118 | arr-diff@^2.0.0: 119 | version "2.0.0" 120 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 121 | dependencies: 122 | arr-flatten "^1.0.1" 123 | 124 | arr-flatten@^1.0.1: 125 | version "1.1.0" 126 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 127 | 128 | array-equal@^1.0.0: 129 | version "1.0.0" 130 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 131 | 132 | array-unique@^0.2.1: 133 | version "0.2.1" 134 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 135 | 136 | arrify@^1.0.1: 137 | version "1.0.1" 138 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 139 | 140 | asn1@~0.2.3: 141 | version "0.2.3" 142 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 143 | 144 | assert-plus@1.0.0, assert-plus@^1.0.0: 145 | version "1.0.0" 146 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 147 | 148 | assert-plus@^0.2.0: 149 | version "0.2.0" 150 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 151 | 152 | async@^1.4.0: 153 | version "1.5.2" 154 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 155 | 156 | async@^2.1.4: 157 | version "2.5.0" 158 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 159 | dependencies: 160 | lodash "^4.14.0" 161 | 162 | asynckit@^0.4.0: 163 | version "0.4.0" 164 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 165 | 166 | aws-sign2@~0.6.0: 167 | version "0.6.0" 168 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 169 | 170 | aws4@^1.2.1: 171 | version "1.6.0" 172 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 173 | 174 | babel-code-frame@^6.22.0: 175 | version "6.22.0" 176 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 177 | dependencies: 178 | chalk "^1.1.0" 179 | esutils "^2.0.2" 180 | js-tokens "^3.0.0" 181 | 182 | babel-core@^6.0.0, babel-core@^6.24.1: 183 | version "6.25.0" 184 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 185 | dependencies: 186 | babel-code-frame "^6.22.0" 187 | babel-generator "^6.25.0" 188 | babel-helpers "^6.24.1" 189 | babel-messages "^6.23.0" 190 | babel-register "^6.24.1" 191 | babel-runtime "^6.22.0" 192 | babel-template "^6.25.0" 193 | babel-traverse "^6.25.0" 194 | babel-types "^6.25.0" 195 | babylon "^6.17.2" 196 | convert-source-map "^1.1.0" 197 | debug "^2.1.1" 198 | json5 "^0.5.0" 199 | lodash "^4.2.0" 200 | minimatch "^3.0.2" 201 | path-is-absolute "^1.0.0" 202 | private "^0.1.6" 203 | slash "^1.0.0" 204 | source-map "^0.5.0" 205 | 206 | babel-generator@^6.18.0, babel-generator@^6.25.0: 207 | version "6.25.0" 208 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 209 | dependencies: 210 | babel-messages "^6.23.0" 211 | babel-runtime "^6.22.0" 212 | babel-types "^6.25.0" 213 | detect-indent "^4.0.0" 214 | jsesc "^1.3.0" 215 | lodash "^4.2.0" 216 | source-map "^0.5.0" 217 | trim-right "^1.0.1" 218 | 219 | babel-helpers@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 222 | dependencies: 223 | babel-runtime "^6.22.0" 224 | babel-template "^6.24.1" 225 | 226 | babel-jest@^20.0.3: 227 | version "20.0.3" 228 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 229 | dependencies: 230 | babel-core "^6.0.0" 231 | babel-plugin-istanbul "^4.0.0" 232 | babel-preset-jest "^20.0.3" 233 | 234 | babel-messages@^6.23.0: 235 | version "6.23.0" 236 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 237 | dependencies: 238 | babel-runtime "^6.22.0" 239 | 240 | babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.4: 241 | version "4.1.4" 242 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 243 | dependencies: 244 | find-up "^2.1.0" 245 | istanbul-lib-instrument "^1.7.2" 246 | test-exclude "^4.1.1" 247 | 248 | babel-plugin-jest-hoist@^20.0.3: 249 | version "20.0.3" 250 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 251 | 252 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 255 | dependencies: 256 | babel-plugin-transform-strict-mode "^6.24.1" 257 | babel-runtime "^6.22.0" 258 | babel-template "^6.24.1" 259 | babel-types "^6.24.1" 260 | 261 | babel-plugin-transform-strict-mode@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 264 | dependencies: 265 | babel-runtime "^6.22.0" 266 | babel-types "^6.24.1" 267 | 268 | babel-preset-jest@^20.0.3: 269 | version "20.0.3" 270 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 271 | dependencies: 272 | babel-plugin-jest-hoist "^20.0.3" 273 | 274 | babel-register@^6.24.1: 275 | version "6.24.1" 276 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 277 | dependencies: 278 | babel-core "^6.24.1" 279 | babel-runtime "^6.22.0" 280 | core-js "^2.4.0" 281 | home-or-tmp "^2.0.0" 282 | lodash "^4.2.0" 283 | mkdirp "^0.5.1" 284 | source-map-support "^0.4.2" 285 | 286 | babel-runtime@^6.22.0: 287 | version "6.25.0" 288 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 289 | dependencies: 290 | core-js "^2.4.0" 291 | regenerator-runtime "^0.10.0" 292 | 293 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 294 | version "6.25.0" 295 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 296 | dependencies: 297 | babel-runtime "^6.22.0" 298 | babel-traverse "^6.25.0" 299 | babel-types "^6.25.0" 300 | babylon "^6.17.2" 301 | lodash "^4.2.0" 302 | 303 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 304 | version "6.25.0" 305 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 306 | dependencies: 307 | babel-code-frame "^6.22.0" 308 | babel-messages "^6.23.0" 309 | babel-runtime "^6.22.0" 310 | babel-types "^6.25.0" 311 | babylon "^6.17.2" 312 | debug "^2.2.0" 313 | globals "^9.0.0" 314 | invariant "^2.2.0" 315 | lodash "^4.2.0" 316 | 317 | babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.25.0: 318 | version "6.25.0" 319 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | esutils "^2.0.2" 323 | lodash "^4.2.0" 324 | to-fast-properties "^1.0.1" 325 | 326 | babylon@^6.17.2, babylon@^6.17.4: 327 | version "6.17.4" 328 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 329 | 330 | balanced-match@^1.0.0: 331 | version "1.0.0" 332 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 333 | 334 | bcrypt-pbkdf@^1.0.0: 335 | version "1.0.1" 336 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 337 | dependencies: 338 | tweetnacl "^0.14.3" 339 | 340 | boom@2.x.x: 341 | version "2.10.1" 342 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 343 | dependencies: 344 | hoek "2.x.x" 345 | 346 | brace-expansion@^1.1.7: 347 | version "1.1.8" 348 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 349 | dependencies: 350 | balanced-match "^1.0.0" 351 | concat-map "0.0.1" 352 | 353 | braces@^1.8.2: 354 | version "1.8.5" 355 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 356 | dependencies: 357 | expand-range "^1.8.1" 358 | preserve "^0.2.0" 359 | repeat-element "^1.1.2" 360 | 361 | browser-resolve@^1.11.2: 362 | version "1.11.2" 363 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 364 | dependencies: 365 | resolve "1.1.7" 366 | 367 | bser@1.0.2: 368 | version "1.0.2" 369 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 370 | dependencies: 371 | node-int64 "^0.4.0" 372 | 373 | bser@^2.0.0: 374 | version "2.0.0" 375 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 376 | dependencies: 377 | node-int64 "^0.4.0" 378 | 379 | builtin-modules@^1.0.0: 380 | version "1.1.1" 381 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 382 | 383 | callsites@^2.0.0: 384 | version "2.0.0" 385 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 386 | 387 | camelcase@^1.0.2: 388 | version "1.2.1" 389 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 390 | 391 | camelcase@^3.0.0: 392 | version "3.0.0" 393 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 394 | 395 | camelcase@^4.1.0: 396 | version "4.1.0" 397 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 398 | 399 | caseless@~0.11.0: 400 | version "0.11.0" 401 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 402 | 403 | caseless@~0.12.0: 404 | version "0.12.0" 405 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 406 | 407 | center-align@^0.1.1: 408 | version "0.1.3" 409 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 410 | dependencies: 411 | align-text "^0.1.3" 412 | lazy-cache "^1.0.3" 413 | 414 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 415 | version "1.1.3" 416 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 417 | dependencies: 418 | ansi-styles "^2.2.1" 419 | escape-string-regexp "^1.0.2" 420 | has-ansi "^2.0.0" 421 | strip-ansi "^3.0.0" 422 | supports-color "^2.0.0" 423 | 424 | ci-info@^1.0.0: 425 | version "1.0.0" 426 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 427 | 428 | cliui@^2.1.0: 429 | version "2.1.0" 430 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 431 | dependencies: 432 | center-align "^0.1.1" 433 | right-align "^0.1.1" 434 | wordwrap "0.0.2" 435 | 436 | cliui@^3.2.0: 437 | version "3.2.0" 438 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 439 | dependencies: 440 | string-width "^1.0.1" 441 | strip-ansi "^3.0.1" 442 | wrap-ansi "^2.0.0" 443 | 444 | co@^4.6.0: 445 | version "4.6.0" 446 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 447 | 448 | code-point-at@^1.0.0: 449 | version "1.1.0" 450 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 451 | 452 | color-convert@^1.9.0: 453 | version "1.9.0" 454 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 455 | dependencies: 456 | color-name "^1.1.1" 457 | 458 | color-name@^1.1.1: 459 | version "1.1.3" 460 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 461 | 462 | colors@^1.1.2: 463 | version "1.1.2" 464 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 465 | 466 | combined-stream@^1.0.5, combined-stream@~1.0.5: 467 | version "1.0.5" 468 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 469 | dependencies: 470 | delayed-stream "~1.0.0" 471 | 472 | commander@^2.9.0: 473 | version "2.11.0" 474 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 475 | 476 | concat-map@0.0.1: 477 | version "0.0.1" 478 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 479 | 480 | content-type-parser@^1.0.1: 481 | version "1.0.1" 482 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 483 | 484 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 485 | version "1.5.0" 486 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 487 | 488 | core-js@^2.4.0: 489 | version "2.4.1" 490 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 491 | 492 | core-util-is@1.0.2: 493 | version "1.0.2" 494 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 495 | 496 | coveralls@^2.13.1: 497 | version "2.13.1" 498 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 499 | dependencies: 500 | js-yaml "3.6.1" 501 | lcov-parse "0.0.10" 502 | log-driver "1.2.5" 503 | minimist "1.2.0" 504 | request "2.79.0" 505 | 506 | cross-spawn@^5.0.1: 507 | version "5.1.0" 508 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 509 | dependencies: 510 | lru-cache "^4.0.1" 511 | shebang-command "^1.2.0" 512 | which "^1.2.9" 513 | 514 | cryptiles@2.x.x: 515 | version "2.0.5" 516 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 517 | dependencies: 518 | boom "2.x.x" 519 | 520 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 521 | version "0.3.2" 522 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 523 | 524 | "cssstyle@>= 0.2.37 < 0.3.0": 525 | version "0.2.37" 526 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 527 | dependencies: 528 | cssom "0.3.x" 529 | 530 | dashdash@^1.12.0: 531 | version "1.14.1" 532 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 533 | dependencies: 534 | assert-plus "^1.0.0" 535 | 536 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 537 | version "2.6.8" 538 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 539 | dependencies: 540 | ms "2.0.0" 541 | 542 | decamelize@^1.0.0, decamelize@^1.1.1: 543 | version "1.2.0" 544 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 545 | 546 | deep-is@~0.1.3: 547 | version "0.1.3" 548 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 549 | 550 | default-require-extensions@^1.0.0: 551 | version "1.0.0" 552 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 553 | dependencies: 554 | strip-bom "^2.0.0" 555 | 556 | delayed-stream@~1.0.0: 557 | version "1.0.0" 558 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 559 | 560 | detect-indent@^4.0.0: 561 | version "4.0.0" 562 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 563 | dependencies: 564 | repeating "^2.0.0" 565 | 566 | diff@^3.1.0, diff@^3.2.0: 567 | version "3.3.0" 568 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 569 | 570 | docopt@~0.6.2: 571 | version "0.6.2" 572 | resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" 573 | 574 | dot-json@^1.0.3: 575 | version "1.0.3" 576 | resolved "https://registry.yarnpkg.com/dot-json/-/dot-json-1.0.3.tgz#ddcfedaa3d95cbe93e2b1e45bfbdec1b93bc90e4" 577 | dependencies: 578 | docopt "~0.6.2" 579 | underscore-keypath "~0.0.22" 580 | 581 | ecc-jsbn@~0.1.1: 582 | version "0.1.1" 583 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 584 | dependencies: 585 | jsbn "~0.1.0" 586 | 587 | errno@^0.1.4: 588 | version "0.1.4" 589 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 590 | dependencies: 591 | prr "~0.0.0" 592 | 593 | error-ex@^1.2.0: 594 | version "1.3.1" 595 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 596 | dependencies: 597 | is-arrayish "^0.2.1" 598 | 599 | escape-string-regexp@^1.0.2: 600 | version "1.0.5" 601 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 602 | 603 | escodegen@^1.6.1: 604 | version "1.8.1" 605 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 606 | dependencies: 607 | esprima "^2.7.1" 608 | estraverse "^1.9.1" 609 | esutils "^2.0.2" 610 | optionator "^0.8.1" 611 | optionalDependencies: 612 | source-map "~0.2.0" 613 | 614 | esprima@^2.6.0, esprima@^2.7.1: 615 | version "2.7.3" 616 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 617 | 618 | esprima@^4.0.0: 619 | version "4.0.0" 620 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 621 | 622 | estraverse@^1.9.1: 623 | version "1.9.3" 624 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 625 | 626 | esutils@^2.0.2: 627 | version "2.0.2" 628 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 629 | 630 | exec-sh@^0.2.0: 631 | version "0.2.0" 632 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 633 | dependencies: 634 | merge "^1.1.3" 635 | 636 | execa@^0.7.0: 637 | version "0.7.0" 638 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 639 | dependencies: 640 | cross-spawn "^5.0.1" 641 | get-stream "^3.0.0" 642 | is-stream "^1.1.0" 643 | npm-run-path "^2.0.0" 644 | p-finally "^1.0.0" 645 | signal-exit "^3.0.0" 646 | strip-eof "^1.0.0" 647 | 648 | expand-brackets@^0.1.4: 649 | version "0.1.5" 650 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 651 | dependencies: 652 | is-posix-bracket "^0.1.0" 653 | 654 | expand-range@^1.8.1: 655 | version "1.8.2" 656 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 657 | dependencies: 658 | fill-range "^2.1.0" 659 | 660 | extend@~3.0.0: 661 | version "3.0.1" 662 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 663 | 664 | extglob@^0.3.1: 665 | version "0.3.2" 666 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 667 | dependencies: 668 | is-extglob "^1.0.0" 669 | 670 | extsprintf@1.3.0, extsprintf@^1.2.0: 671 | version "1.3.0" 672 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 673 | 674 | fast-levenshtein@~2.0.4: 675 | version "2.0.6" 676 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 677 | 678 | fb-watchman@^1.8.0: 679 | version "1.9.2" 680 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 681 | dependencies: 682 | bser "1.0.2" 683 | 684 | fb-watchman@^2.0.0: 685 | version "2.0.0" 686 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 687 | dependencies: 688 | bser "^2.0.0" 689 | 690 | filename-regex@^2.0.0: 691 | version "2.0.1" 692 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 693 | 694 | fileset@^2.0.2: 695 | version "2.0.3" 696 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 697 | dependencies: 698 | glob "^7.0.3" 699 | minimatch "^3.0.3" 700 | 701 | fill-range@^2.1.0: 702 | version "2.2.3" 703 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 704 | dependencies: 705 | is-number "^2.1.0" 706 | isobject "^2.0.0" 707 | randomatic "^1.1.3" 708 | repeat-element "^1.1.2" 709 | repeat-string "^1.5.2" 710 | 711 | find-up@^1.0.0: 712 | version "1.1.2" 713 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 714 | dependencies: 715 | path-exists "^2.0.0" 716 | pinkie-promise "^2.0.0" 717 | 718 | find-up@^2.0.0, find-up@^2.1.0: 719 | version "2.1.0" 720 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 721 | dependencies: 722 | locate-path "^2.0.0" 723 | 724 | for-in@^1.0.1: 725 | version "1.0.2" 726 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 727 | 728 | for-own@^0.1.4: 729 | version "0.1.5" 730 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 731 | dependencies: 732 | for-in "^1.0.1" 733 | 734 | forever-agent@~0.6.1: 735 | version "0.6.1" 736 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 737 | 738 | form-data@~2.1.1: 739 | version "2.1.4" 740 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 741 | dependencies: 742 | asynckit "^0.4.0" 743 | combined-stream "^1.0.5" 744 | mime-types "^2.1.12" 745 | 746 | formatio@1.2.0: 747 | version "1.2.0" 748 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 749 | dependencies: 750 | samsam "1.x" 751 | 752 | fs-extra@^3.0.0: 753 | version "3.0.1" 754 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" 755 | dependencies: 756 | graceful-fs "^4.1.2" 757 | jsonfile "^3.0.0" 758 | universalify "^0.1.0" 759 | 760 | fs.realpath@^1.0.0: 761 | version "1.0.0" 762 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 763 | 764 | generate-function@^2.0.0: 765 | version "2.0.0" 766 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 767 | 768 | generate-object-property@^1.1.0: 769 | version "1.2.0" 770 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 771 | dependencies: 772 | is-property "^1.0.0" 773 | 774 | get-caller-file@^1.0.1: 775 | version "1.0.2" 776 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 777 | 778 | get-stream@^3.0.0: 779 | version "3.0.0" 780 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 781 | 782 | getpass@^0.1.1: 783 | version "0.1.7" 784 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 785 | dependencies: 786 | assert-plus "^1.0.0" 787 | 788 | glob-base@^0.3.0: 789 | version "0.3.0" 790 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 791 | dependencies: 792 | glob-parent "^2.0.0" 793 | is-glob "^2.0.0" 794 | 795 | glob-parent@^2.0.0: 796 | version "2.0.0" 797 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 798 | dependencies: 799 | is-glob "^2.0.0" 800 | 801 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 802 | version "7.1.2" 803 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 804 | dependencies: 805 | fs.realpath "^1.0.0" 806 | inflight "^1.0.4" 807 | inherits "2" 808 | minimatch "^3.0.4" 809 | once "^1.3.0" 810 | path-is-absolute "^1.0.0" 811 | 812 | globals@^9.0.0: 813 | version "9.18.0" 814 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 815 | 816 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 817 | version "4.1.11" 818 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 819 | 820 | growly@^1.3.0: 821 | version "1.3.0" 822 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 823 | 824 | handlebars@^4.0.3: 825 | version "4.0.10" 826 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 827 | dependencies: 828 | async "^1.4.0" 829 | optimist "^0.6.1" 830 | source-map "^0.4.4" 831 | optionalDependencies: 832 | uglify-js "^2.6" 833 | 834 | har-schema@^1.0.5: 835 | version "1.0.5" 836 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 837 | 838 | har-validator@~2.0.6: 839 | version "2.0.6" 840 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 841 | dependencies: 842 | chalk "^1.1.1" 843 | commander "^2.9.0" 844 | is-my-json-valid "^2.12.4" 845 | pinkie-promise "^2.0.0" 846 | 847 | har-validator@~4.2.1: 848 | version "4.2.1" 849 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 850 | dependencies: 851 | ajv "^4.9.1" 852 | har-schema "^1.0.5" 853 | 854 | has-ansi@^2.0.0: 855 | version "2.0.0" 856 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 857 | dependencies: 858 | ansi-regex "^2.0.0" 859 | 860 | has-flag@^1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 863 | 864 | hawk@~3.1.3: 865 | version "3.1.3" 866 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 867 | dependencies: 868 | boom "2.x.x" 869 | cryptiles "2.x.x" 870 | hoek "2.x.x" 871 | sntp "1.x.x" 872 | 873 | hoek@2.x.x: 874 | version "2.16.3" 875 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 876 | 877 | home-or-tmp@^2.0.0: 878 | version "2.0.0" 879 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 880 | dependencies: 881 | os-homedir "^1.0.0" 882 | os-tmpdir "^1.0.1" 883 | 884 | hosted-git-info@^2.1.4: 885 | version "2.5.0" 886 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 887 | 888 | html-encoding-sniffer@^1.0.1: 889 | version "1.0.1" 890 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 891 | dependencies: 892 | whatwg-encoding "^1.0.1" 893 | 894 | http-signature@~1.1.0: 895 | version "1.1.1" 896 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 897 | dependencies: 898 | assert-plus "^0.2.0" 899 | jsprim "^1.2.2" 900 | sshpk "^1.7.0" 901 | 902 | iconv-lite@0.4.13: 903 | version "0.4.13" 904 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 905 | 906 | inflight@^1.0.4: 907 | version "1.0.6" 908 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 909 | dependencies: 910 | once "^1.3.0" 911 | wrappy "1" 912 | 913 | inherits@2: 914 | version "2.0.3" 915 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 916 | 917 | invariant@^2.2.0: 918 | version "2.2.2" 919 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 920 | dependencies: 921 | loose-envify "^1.0.0" 922 | 923 | invert-kv@^1.0.0: 924 | version "1.0.0" 925 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 926 | 927 | is-arrayish@^0.2.1: 928 | version "0.2.1" 929 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 930 | 931 | is-buffer@^1.1.5: 932 | version "1.1.5" 933 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 934 | 935 | is-builtin-module@^1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 938 | dependencies: 939 | builtin-modules "^1.0.0" 940 | 941 | is-ci@^1.0.10: 942 | version "1.0.10" 943 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 944 | dependencies: 945 | ci-info "^1.0.0" 946 | 947 | is-dotfile@^1.0.0: 948 | version "1.0.3" 949 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 950 | 951 | is-equal-shallow@^0.1.3: 952 | version "0.1.3" 953 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 954 | dependencies: 955 | is-primitive "^2.0.0" 956 | 957 | is-extendable@^0.1.1: 958 | version "0.1.1" 959 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 960 | 961 | is-extglob@^1.0.0: 962 | version "1.0.0" 963 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 964 | 965 | is-finite@^1.0.0: 966 | version "1.0.2" 967 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 968 | dependencies: 969 | number-is-nan "^1.0.0" 970 | 971 | is-fullwidth-code-point@^1.0.0: 972 | version "1.0.0" 973 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 974 | dependencies: 975 | number-is-nan "^1.0.0" 976 | 977 | is-fullwidth-code-point@^2.0.0: 978 | version "2.0.0" 979 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 980 | 981 | is-glob@^2.0.0, is-glob@^2.0.1: 982 | version "2.0.1" 983 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 984 | dependencies: 985 | is-extglob "^1.0.0" 986 | 987 | is-my-json-valid@^2.12.4: 988 | version "2.16.0" 989 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 990 | dependencies: 991 | generate-function "^2.0.0" 992 | generate-object-property "^1.1.0" 993 | jsonpointer "^4.0.0" 994 | xtend "^4.0.0" 995 | 996 | is-number@^2.1.0: 997 | version "2.1.0" 998 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 999 | dependencies: 1000 | kind-of "^3.0.2" 1001 | 1002 | is-number@^3.0.0: 1003 | version "3.0.0" 1004 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1005 | dependencies: 1006 | kind-of "^3.0.2" 1007 | 1008 | is-posix-bracket@^0.1.0: 1009 | version "0.1.1" 1010 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1011 | 1012 | is-primitive@^2.0.0: 1013 | version "2.0.0" 1014 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1015 | 1016 | is-property@^1.0.0: 1017 | version "1.0.2" 1018 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1019 | 1020 | is-stream@^1.1.0: 1021 | version "1.1.0" 1022 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1023 | 1024 | is-typedarray@~1.0.0: 1025 | version "1.0.0" 1026 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1027 | 1028 | is-utf8@^0.2.0: 1029 | version "0.2.1" 1030 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1031 | 1032 | isarray@0.0.1: 1033 | version "0.0.1" 1034 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1035 | 1036 | isarray@1.0.0: 1037 | version "1.0.0" 1038 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1039 | 1040 | isexe@^2.0.0: 1041 | version "2.0.0" 1042 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1043 | 1044 | isobject@^2.0.0: 1045 | version "2.1.0" 1046 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1047 | dependencies: 1048 | isarray "1.0.0" 1049 | 1050 | isstream@~0.1.2: 1051 | version "0.1.2" 1052 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1053 | 1054 | istanbul-api@^1.1.1: 1055 | version "1.1.11" 1056 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.11.tgz#fcc0b461e2b3bda71e305155138238768257d9de" 1057 | dependencies: 1058 | async "^2.1.4" 1059 | fileset "^2.0.2" 1060 | istanbul-lib-coverage "^1.1.1" 1061 | istanbul-lib-hook "^1.0.7" 1062 | istanbul-lib-instrument "^1.7.4" 1063 | istanbul-lib-report "^1.1.1" 1064 | istanbul-lib-source-maps "^1.2.1" 1065 | istanbul-reports "^1.1.1" 1066 | js-yaml "^3.7.0" 1067 | mkdirp "^0.5.1" 1068 | once "^1.4.0" 1069 | 1070 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1071 | version "1.1.1" 1072 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1073 | 1074 | istanbul-lib-hook@^1.0.7: 1075 | version "1.0.7" 1076 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1077 | dependencies: 1078 | append-transform "^0.4.0" 1079 | 1080 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4: 1081 | version "1.7.4" 1082 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8" 1083 | dependencies: 1084 | babel-generator "^6.18.0" 1085 | babel-template "^6.16.0" 1086 | babel-traverse "^6.18.0" 1087 | babel-types "^6.18.0" 1088 | babylon "^6.17.4" 1089 | istanbul-lib-coverage "^1.1.1" 1090 | semver "^5.3.0" 1091 | 1092 | istanbul-lib-report@^1.1.1: 1093 | version "1.1.1" 1094 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1095 | dependencies: 1096 | istanbul-lib-coverage "^1.1.1" 1097 | mkdirp "^0.5.1" 1098 | path-parse "^1.0.5" 1099 | supports-color "^3.1.2" 1100 | 1101 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1102 | version "1.2.1" 1103 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1104 | dependencies: 1105 | debug "^2.6.3" 1106 | istanbul-lib-coverage "^1.1.1" 1107 | mkdirp "^0.5.1" 1108 | rimraf "^2.6.1" 1109 | source-map "^0.5.3" 1110 | 1111 | istanbul-reports@^1.1.1: 1112 | version "1.1.1" 1113 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1114 | dependencies: 1115 | handlebars "^4.0.3" 1116 | 1117 | jasmine-data-provider@^2.2.0: 1118 | version "2.2.0" 1119 | resolved "https://registry.yarnpkg.com/jasmine-data-provider/-/jasmine-data-provider-2.2.0.tgz#5f029b2c5fbcdaafbfa5b910ca627eac48cdbb66" 1120 | 1121 | jest-changed-files@^20.0.3: 1122 | version "20.0.3" 1123 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1124 | 1125 | jest-cli@^20.0.4: 1126 | version "20.0.4" 1127 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1128 | dependencies: 1129 | ansi-escapes "^1.4.0" 1130 | callsites "^2.0.0" 1131 | chalk "^1.1.3" 1132 | graceful-fs "^4.1.11" 1133 | is-ci "^1.0.10" 1134 | istanbul-api "^1.1.1" 1135 | istanbul-lib-coverage "^1.0.1" 1136 | istanbul-lib-instrument "^1.4.2" 1137 | istanbul-lib-source-maps "^1.1.0" 1138 | jest-changed-files "^20.0.3" 1139 | jest-config "^20.0.4" 1140 | jest-docblock "^20.0.3" 1141 | jest-environment-jsdom "^20.0.3" 1142 | jest-haste-map "^20.0.4" 1143 | jest-jasmine2 "^20.0.4" 1144 | jest-message-util "^20.0.3" 1145 | jest-regex-util "^20.0.3" 1146 | jest-resolve-dependencies "^20.0.3" 1147 | jest-runtime "^20.0.4" 1148 | jest-snapshot "^20.0.3" 1149 | jest-util "^20.0.3" 1150 | micromatch "^2.3.11" 1151 | node-notifier "^5.0.2" 1152 | pify "^2.3.0" 1153 | slash "^1.0.0" 1154 | string-length "^1.0.1" 1155 | throat "^3.0.0" 1156 | which "^1.2.12" 1157 | worker-farm "^1.3.1" 1158 | yargs "^7.0.2" 1159 | 1160 | jest-config@^20.0.0, jest-config@^20.0.4: 1161 | version "20.0.4" 1162 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1163 | dependencies: 1164 | chalk "^1.1.3" 1165 | glob "^7.1.1" 1166 | jest-environment-jsdom "^20.0.3" 1167 | jest-environment-node "^20.0.3" 1168 | jest-jasmine2 "^20.0.4" 1169 | jest-matcher-utils "^20.0.3" 1170 | jest-regex-util "^20.0.3" 1171 | jest-resolve "^20.0.4" 1172 | jest-validate "^20.0.3" 1173 | pretty-format "^20.0.3" 1174 | 1175 | jest-diff@^20.0.3: 1176 | version "20.0.3" 1177 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1178 | dependencies: 1179 | chalk "^1.1.3" 1180 | diff "^3.2.0" 1181 | jest-matcher-utils "^20.0.3" 1182 | pretty-format "^20.0.3" 1183 | 1184 | jest-docblock@^20.0.3: 1185 | version "20.0.3" 1186 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1187 | 1188 | jest-environment-jsdom@^20.0.3: 1189 | version "20.0.3" 1190 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1191 | dependencies: 1192 | jest-mock "^20.0.3" 1193 | jest-util "^20.0.3" 1194 | jsdom "^9.12.0" 1195 | 1196 | jest-environment-node@^20.0.3: 1197 | version "20.0.3" 1198 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1199 | dependencies: 1200 | jest-mock "^20.0.3" 1201 | jest-util "^20.0.3" 1202 | 1203 | jest-haste-map@^20.0.4: 1204 | version "20.0.5" 1205 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1206 | dependencies: 1207 | fb-watchman "^2.0.0" 1208 | graceful-fs "^4.1.11" 1209 | jest-docblock "^20.0.3" 1210 | micromatch "^2.3.11" 1211 | sane "~1.6.0" 1212 | worker-farm "^1.3.1" 1213 | 1214 | jest-jasmine2@^20.0.4: 1215 | version "20.0.4" 1216 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1217 | dependencies: 1218 | chalk "^1.1.3" 1219 | graceful-fs "^4.1.11" 1220 | jest-diff "^20.0.3" 1221 | jest-matcher-utils "^20.0.3" 1222 | jest-matchers "^20.0.3" 1223 | jest-message-util "^20.0.3" 1224 | jest-snapshot "^20.0.3" 1225 | once "^1.4.0" 1226 | p-map "^1.1.1" 1227 | 1228 | jest-matcher-utils@^20.0.3: 1229 | version "20.0.3" 1230 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1231 | dependencies: 1232 | chalk "^1.1.3" 1233 | pretty-format "^20.0.3" 1234 | 1235 | jest-matchers@^20.0.3: 1236 | version "20.0.3" 1237 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1238 | dependencies: 1239 | jest-diff "^20.0.3" 1240 | jest-matcher-utils "^20.0.3" 1241 | jest-message-util "^20.0.3" 1242 | jest-regex-util "^20.0.3" 1243 | 1244 | jest-message-util@^20.0.3: 1245 | version "20.0.3" 1246 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1247 | dependencies: 1248 | chalk "^1.1.3" 1249 | micromatch "^2.3.11" 1250 | slash "^1.0.0" 1251 | 1252 | jest-mock@^20.0.3: 1253 | version "20.0.3" 1254 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1255 | 1256 | jest-regex-util@^20.0.3: 1257 | version "20.0.3" 1258 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1259 | 1260 | jest-resolve-dependencies@^20.0.3: 1261 | version "20.0.3" 1262 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1263 | dependencies: 1264 | jest-regex-util "^20.0.3" 1265 | 1266 | jest-resolve@^20.0.4: 1267 | version "20.0.4" 1268 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1269 | dependencies: 1270 | browser-resolve "^1.11.2" 1271 | is-builtin-module "^1.0.0" 1272 | resolve "^1.3.2" 1273 | 1274 | jest-runtime@^20.0.4: 1275 | version "20.0.4" 1276 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1277 | dependencies: 1278 | babel-core "^6.0.0" 1279 | babel-jest "^20.0.3" 1280 | babel-plugin-istanbul "^4.0.0" 1281 | chalk "^1.1.3" 1282 | convert-source-map "^1.4.0" 1283 | graceful-fs "^4.1.11" 1284 | jest-config "^20.0.4" 1285 | jest-haste-map "^20.0.4" 1286 | jest-regex-util "^20.0.3" 1287 | jest-resolve "^20.0.4" 1288 | jest-util "^20.0.3" 1289 | json-stable-stringify "^1.0.1" 1290 | micromatch "^2.3.11" 1291 | strip-bom "3.0.0" 1292 | yargs "^7.0.2" 1293 | 1294 | jest-snapshot@^20.0.3: 1295 | version "20.0.3" 1296 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1297 | dependencies: 1298 | chalk "^1.1.3" 1299 | jest-diff "^20.0.3" 1300 | jest-matcher-utils "^20.0.3" 1301 | jest-util "^20.0.3" 1302 | natural-compare "^1.4.0" 1303 | pretty-format "^20.0.3" 1304 | 1305 | jest-util@^20.0.0, jest-util@^20.0.3: 1306 | version "20.0.3" 1307 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1308 | dependencies: 1309 | chalk "^1.1.3" 1310 | graceful-fs "^4.1.11" 1311 | jest-message-util "^20.0.3" 1312 | jest-mock "^20.0.3" 1313 | jest-validate "^20.0.3" 1314 | leven "^2.1.0" 1315 | mkdirp "^0.5.1" 1316 | 1317 | jest-validate@^20.0.3: 1318 | version "20.0.3" 1319 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1320 | dependencies: 1321 | chalk "^1.1.3" 1322 | jest-matcher-utils "^20.0.3" 1323 | leven "^2.1.0" 1324 | pretty-format "^20.0.3" 1325 | 1326 | jest@^20.0.4: 1327 | version "20.0.4" 1328 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1329 | dependencies: 1330 | jest-cli "^20.0.4" 1331 | 1332 | js-tokens@^3.0.0: 1333 | version "3.0.2" 1334 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1335 | 1336 | js-yaml@3.6.1: 1337 | version "3.6.1" 1338 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1339 | dependencies: 1340 | argparse "^1.0.7" 1341 | esprima "^2.6.0" 1342 | 1343 | js-yaml@^3.7.0: 1344 | version "3.9.1" 1345 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1346 | dependencies: 1347 | argparse "^1.0.7" 1348 | esprima "^4.0.0" 1349 | 1350 | jsbn@~0.1.0: 1351 | version "0.1.1" 1352 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1353 | 1354 | jsdom@^9.12.0: 1355 | version "9.12.0" 1356 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1357 | dependencies: 1358 | abab "^1.0.3" 1359 | acorn "^4.0.4" 1360 | acorn-globals "^3.1.0" 1361 | array-equal "^1.0.0" 1362 | content-type-parser "^1.0.1" 1363 | cssom ">= 0.3.2 < 0.4.0" 1364 | cssstyle ">= 0.2.37 < 0.3.0" 1365 | escodegen "^1.6.1" 1366 | html-encoding-sniffer "^1.0.1" 1367 | nwmatcher ">= 1.3.9 < 2.0.0" 1368 | parse5 "^1.5.1" 1369 | request "^2.79.0" 1370 | sax "^1.2.1" 1371 | symbol-tree "^3.2.1" 1372 | tough-cookie "^2.3.2" 1373 | webidl-conversions "^4.0.0" 1374 | whatwg-encoding "^1.0.1" 1375 | whatwg-url "^4.3.0" 1376 | xml-name-validator "^2.0.1" 1377 | 1378 | jsesc@^1.3.0: 1379 | version "1.3.0" 1380 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1381 | 1382 | json-schema@0.2.3: 1383 | version "0.2.3" 1384 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1385 | 1386 | json-stable-stringify@^1.0.1: 1387 | version "1.0.1" 1388 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1389 | dependencies: 1390 | jsonify "~0.0.0" 1391 | 1392 | json-stringify-safe@~5.0.1: 1393 | version "5.0.1" 1394 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1395 | 1396 | json5@^0.5.0: 1397 | version "0.5.1" 1398 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1399 | 1400 | jsonfile@^3.0.0: 1401 | version "3.0.1" 1402 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" 1403 | optionalDependencies: 1404 | graceful-fs "^4.1.6" 1405 | 1406 | jsonify@~0.0.0: 1407 | version "0.0.0" 1408 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1409 | 1410 | jsonpointer@^4.0.0: 1411 | version "4.0.1" 1412 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1413 | 1414 | jsprim@^1.2.2: 1415 | version "1.4.1" 1416 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1417 | dependencies: 1418 | assert-plus "1.0.0" 1419 | extsprintf "1.3.0" 1420 | json-schema "0.2.3" 1421 | verror "1.10.0" 1422 | 1423 | kind-of@^3.0.2: 1424 | version "3.2.2" 1425 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1426 | dependencies: 1427 | is-buffer "^1.1.5" 1428 | 1429 | kind-of@^4.0.0: 1430 | version "4.0.0" 1431 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1432 | dependencies: 1433 | is-buffer "^1.1.5" 1434 | 1435 | lazy-cache@^1.0.3: 1436 | version "1.0.4" 1437 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1438 | 1439 | lcid@^1.0.0: 1440 | version "1.0.0" 1441 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1442 | dependencies: 1443 | invert-kv "^1.0.0" 1444 | 1445 | lcov-parse@0.0.10: 1446 | version "0.0.10" 1447 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1448 | 1449 | leven@^2.1.0: 1450 | version "2.1.0" 1451 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1452 | 1453 | levn@~0.3.0: 1454 | version "0.3.0" 1455 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1456 | dependencies: 1457 | prelude-ls "~1.1.2" 1458 | type-check "~0.3.2" 1459 | 1460 | load-json-file@^1.0.0: 1461 | version "1.1.0" 1462 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1463 | dependencies: 1464 | graceful-fs "^4.1.2" 1465 | parse-json "^2.2.0" 1466 | pify "^2.0.0" 1467 | pinkie-promise "^2.0.0" 1468 | strip-bom "^2.0.0" 1469 | 1470 | load-json-file@^2.0.0: 1471 | version "2.0.0" 1472 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1473 | dependencies: 1474 | graceful-fs "^4.1.2" 1475 | parse-json "^2.2.0" 1476 | pify "^2.0.0" 1477 | strip-bom "^3.0.0" 1478 | 1479 | locate-path@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1482 | dependencies: 1483 | p-locate "^2.0.0" 1484 | path-exists "^3.0.0" 1485 | 1486 | lodash@^4.14.0, lodash@^4.2.0: 1487 | version "4.17.4" 1488 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1489 | 1490 | log-driver@1.2.5: 1491 | version "1.2.5" 1492 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1493 | 1494 | lolex@^1.6.0: 1495 | version "1.6.0" 1496 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 1497 | 1498 | longest@^1.0.1: 1499 | version "1.0.1" 1500 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1501 | 1502 | loose-envify@^1.0.0: 1503 | version "1.3.1" 1504 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1505 | dependencies: 1506 | js-tokens "^3.0.0" 1507 | 1508 | lru-cache@^4.0.1: 1509 | version "4.1.1" 1510 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1511 | dependencies: 1512 | pseudomap "^1.0.2" 1513 | yallist "^2.1.2" 1514 | 1515 | makeerror@1.0.x: 1516 | version "1.0.11" 1517 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1518 | dependencies: 1519 | tmpl "1.0.x" 1520 | 1521 | mem@^1.1.0: 1522 | version "1.1.0" 1523 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1524 | dependencies: 1525 | mimic-fn "^1.0.0" 1526 | 1527 | merge@^1.1.3: 1528 | version "1.2.0" 1529 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1530 | 1531 | micromatch@^2.1.5, micromatch@^2.3.11: 1532 | version "2.3.11" 1533 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1534 | dependencies: 1535 | arr-diff "^2.0.0" 1536 | array-unique "^0.2.1" 1537 | braces "^1.8.2" 1538 | expand-brackets "^0.1.4" 1539 | extglob "^0.3.1" 1540 | filename-regex "^2.0.0" 1541 | is-extglob "^1.0.0" 1542 | is-glob "^2.0.1" 1543 | kind-of "^3.0.2" 1544 | normalize-path "^2.0.1" 1545 | object.omit "^2.0.0" 1546 | parse-glob "^3.0.4" 1547 | regex-cache "^0.4.2" 1548 | 1549 | mime-db@~1.29.0: 1550 | version "1.29.0" 1551 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1552 | 1553 | mime-types@^2.1.12, mime-types@~2.1.7: 1554 | version "2.1.16" 1555 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1556 | dependencies: 1557 | mime-db "~1.29.0" 1558 | 1559 | mimic-fn@^1.0.0: 1560 | version "1.1.0" 1561 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1562 | 1563 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1564 | version "3.0.4" 1565 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1566 | dependencies: 1567 | brace-expansion "^1.1.7" 1568 | 1569 | minimist@0.0.8: 1570 | version "0.0.8" 1571 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1572 | 1573 | minimist@1.2.0, minimist@^1.1.1: 1574 | version "1.2.0" 1575 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1576 | 1577 | minimist@~0.0.1: 1578 | version "0.0.10" 1579 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1580 | 1581 | mkdirp@^0.5.1: 1582 | version "0.5.1" 1583 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1584 | dependencies: 1585 | minimist "0.0.8" 1586 | 1587 | ms@2.0.0: 1588 | version "2.0.0" 1589 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1590 | 1591 | native-promise-only@^0.8.1: 1592 | version "0.8.1" 1593 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 1594 | 1595 | natural-compare@^1.4.0: 1596 | version "1.4.0" 1597 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1598 | 1599 | node-int64@^0.4.0: 1600 | version "0.4.0" 1601 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1602 | 1603 | node-notifier@^5.0.2: 1604 | version "5.1.2" 1605 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1606 | dependencies: 1607 | growly "^1.3.0" 1608 | semver "^5.3.0" 1609 | shellwords "^0.1.0" 1610 | which "^1.2.12" 1611 | 1612 | normalize-package-data@^2.3.2: 1613 | version "2.4.0" 1614 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1615 | dependencies: 1616 | hosted-git-info "^2.1.4" 1617 | is-builtin-module "^1.0.0" 1618 | semver "2 || 3 || 4 || 5" 1619 | validate-npm-package-license "^3.0.1" 1620 | 1621 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1622 | version "2.1.1" 1623 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1624 | dependencies: 1625 | remove-trailing-separator "^1.0.1" 1626 | 1627 | npm-run-path@^2.0.0: 1628 | version "2.0.2" 1629 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1630 | dependencies: 1631 | path-key "^2.0.0" 1632 | 1633 | number-is-nan@^1.0.0: 1634 | version "1.0.1" 1635 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1636 | 1637 | "nwmatcher@>= 1.3.9 < 2.0.0": 1638 | version "1.4.1" 1639 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1640 | 1641 | oauth-sign@~0.8.1: 1642 | version "0.8.2" 1643 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1644 | 1645 | object-assign@^4.1.0: 1646 | version "4.1.1" 1647 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1648 | 1649 | object.omit@^2.0.0: 1650 | version "2.0.1" 1651 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1652 | dependencies: 1653 | for-own "^0.1.4" 1654 | is-extendable "^0.1.1" 1655 | 1656 | once@^1.3.0, once@^1.4.0: 1657 | version "1.4.0" 1658 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1659 | dependencies: 1660 | wrappy "1" 1661 | 1662 | optimist@^0.6.1: 1663 | version "0.6.1" 1664 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1665 | dependencies: 1666 | minimist "~0.0.1" 1667 | wordwrap "~0.0.2" 1668 | 1669 | optionator@^0.8.1: 1670 | version "0.8.2" 1671 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1672 | dependencies: 1673 | deep-is "~0.1.3" 1674 | fast-levenshtein "~2.0.4" 1675 | levn "~0.3.0" 1676 | prelude-ls "~1.1.2" 1677 | type-check "~0.3.2" 1678 | wordwrap "~1.0.0" 1679 | 1680 | os-homedir@^1.0.0: 1681 | version "1.0.2" 1682 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1683 | 1684 | os-locale@^1.4.0: 1685 | version "1.4.0" 1686 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1687 | dependencies: 1688 | lcid "^1.0.0" 1689 | 1690 | os-locale@^2.0.0: 1691 | version "2.1.0" 1692 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1693 | dependencies: 1694 | execa "^0.7.0" 1695 | lcid "^1.0.0" 1696 | mem "^1.1.0" 1697 | 1698 | os-tmpdir@^1.0.1: 1699 | version "1.0.2" 1700 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1701 | 1702 | p-finally@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1705 | 1706 | p-limit@^1.1.0: 1707 | version "1.1.0" 1708 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1709 | 1710 | p-locate@^2.0.0: 1711 | version "2.0.0" 1712 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1713 | dependencies: 1714 | p-limit "^1.1.0" 1715 | 1716 | p-map@^1.1.1: 1717 | version "1.1.1" 1718 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1719 | 1720 | parse-glob@^3.0.4: 1721 | version "3.0.4" 1722 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1723 | dependencies: 1724 | glob-base "^0.3.0" 1725 | is-dotfile "^1.0.0" 1726 | is-extglob "^1.0.0" 1727 | is-glob "^2.0.0" 1728 | 1729 | parse-json@^2.2.0: 1730 | version "2.2.0" 1731 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1732 | dependencies: 1733 | error-ex "^1.2.0" 1734 | 1735 | parse5@^1.5.1: 1736 | version "1.5.1" 1737 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1738 | 1739 | path-exists@^2.0.0: 1740 | version "2.1.0" 1741 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1742 | dependencies: 1743 | pinkie-promise "^2.0.0" 1744 | 1745 | path-exists@^3.0.0: 1746 | version "3.0.0" 1747 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1748 | 1749 | path-is-absolute@^1.0.0: 1750 | version "1.0.1" 1751 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1752 | 1753 | path-key@^2.0.0: 1754 | version "2.0.1" 1755 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1756 | 1757 | path-parse@^1.0.5: 1758 | version "1.0.5" 1759 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1760 | 1761 | path-to-regexp@^1.7.0: 1762 | version "1.7.0" 1763 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 1764 | dependencies: 1765 | isarray "0.0.1" 1766 | 1767 | path-type@^1.0.0: 1768 | version "1.1.0" 1769 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1770 | dependencies: 1771 | graceful-fs "^4.1.2" 1772 | pify "^2.0.0" 1773 | pinkie-promise "^2.0.0" 1774 | 1775 | path-type@^2.0.0: 1776 | version "2.0.0" 1777 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1778 | dependencies: 1779 | pify "^2.0.0" 1780 | 1781 | performance-now@^0.2.0: 1782 | version "0.2.0" 1783 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1784 | 1785 | pify@^2.0.0, pify@^2.3.0: 1786 | version "2.3.0" 1787 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1788 | 1789 | pinkie-promise@^2.0.0: 1790 | version "2.0.1" 1791 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1792 | dependencies: 1793 | pinkie "^2.0.0" 1794 | 1795 | pinkie@^2.0.0: 1796 | version "2.0.4" 1797 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1798 | 1799 | pkg-dir@^2.0.0: 1800 | version "2.0.0" 1801 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1802 | dependencies: 1803 | find-up "^2.1.0" 1804 | 1805 | prelude-ls@~1.1.2: 1806 | version "1.1.2" 1807 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1808 | 1809 | preserve@^0.2.0: 1810 | version "0.2.0" 1811 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1812 | 1813 | pretty-format@^20.0.3: 1814 | version "20.0.3" 1815 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1816 | dependencies: 1817 | ansi-regex "^2.1.1" 1818 | ansi-styles "^3.0.0" 1819 | 1820 | private@^0.1.6: 1821 | version "0.1.7" 1822 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1823 | 1824 | prr@~0.0.0: 1825 | version "0.0.0" 1826 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1827 | 1828 | pseudomap@^1.0.2: 1829 | version "1.0.2" 1830 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1831 | 1832 | punycode@^1.4.1: 1833 | version "1.4.1" 1834 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1835 | 1836 | qs@~6.3.0: 1837 | version "6.3.2" 1838 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1839 | 1840 | qs@~6.4.0: 1841 | version "6.4.0" 1842 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1843 | 1844 | randomatic@^1.1.3: 1845 | version "1.1.7" 1846 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1847 | dependencies: 1848 | is-number "^3.0.0" 1849 | kind-of "^4.0.0" 1850 | 1851 | read-pkg-up@^1.0.1: 1852 | version "1.0.1" 1853 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1854 | dependencies: 1855 | find-up "^1.0.0" 1856 | read-pkg "^1.0.0" 1857 | 1858 | read-pkg-up@^2.0.0: 1859 | version "2.0.0" 1860 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1861 | dependencies: 1862 | find-up "^2.0.0" 1863 | read-pkg "^2.0.0" 1864 | 1865 | read-pkg@^1.0.0: 1866 | version "1.1.0" 1867 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1868 | dependencies: 1869 | load-json-file "^1.0.0" 1870 | normalize-package-data "^2.3.2" 1871 | path-type "^1.0.0" 1872 | 1873 | read-pkg@^2.0.0: 1874 | version "2.0.0" 1875 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1876 | dependencies: 1877 | load-json-file "^2.0.0" 1878 | normalize-package-data "^2.3.2" 1879 | path-type "^2.0.0" 1880 | 1881 | regenerator-runtime@^0.10.0: 1882 | version "0.10.5" 1883 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1884 | 1885 | regex-cache@^0.4.2: 1886 | version "0.4.3" 1887 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1888 | dependencies: 1889 | is-equal-shallow "^0.1.3" 1890 | is-primitive "^2.0.0" 1891 | 1892 | remove-trailing-separator@^1.0.1: 1893 | version "1.0.2" 1894 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 1895 | 1896 | repeat-element@^1.1.2: 1897 | version "1.1.2" 1898 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1899 | 1900 | repeat-string@^1.5.2: 1901 | version "1.6.1" 1902 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1903 | 1904 | repeating@^2.0.0: 1905 | version "2.0.1" 1906 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1907 | dependencies: 1908 | is-finite "^1.0.0" 1909 | 1910 | request@2.79.0: 1911 | version "2.79.0" 1912 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1913 | dependencies: 1914 | aws-sign2 "~0.6.0" 1915 | aws4 "^1.2.1" 1916 | caseless "~0.11.0" 1917 | combined-stream "~1.0.5" 1918 | extend "~3.0.0" 1919 | forever-agent "~0.6.1" 1920 | form-data "~2.1.1" 1921 | har-validator "~2.0.6" 1922 | hawk "~3.1.3" 1923 | http-signature "~1.1.0" 1924 | is-typedarray "~1.0.0" 1925 | isstream "~0.1.2" 1926 | json-stringify-safe "~5.0.1" 1927 | mime-types "~2.1.7" 1928 | oauth-sign "~0.8.1" 1929 | qs "~6.3.0" 1930 | stringstream "~0.0.4" 1931 | tough-cookie "~2.3.0" 1932 | tunnel-agent "~0.4.1" 1933 | uuid "^3.0.0" 1934 | 1935 | request@^2.79.0: 1936 | version "2.81.0" 1937 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1938 | dependencies: 1939 | aws-sign2 "~0.6.0" 1940 | aws4 "^1.2.1" 1941 | caseless "~0.12.0" 1942 | combined-stream "~1.0.5" 1943 | extend "~3.0.0" 1944 | forever-agent "~0.6.1" 1945 | form-data "~2.1.1" 1946 | har-validator "~4.2.1" 1947 | hawk "~3.1.3" 1948 | http-signature "~1.1.0" 1949 | is-typedarray "~1.0.0" 1950 | isstream "~0.1.2" 1951 | json-stringify-safe "~5.0.1" 1952 | mime-types "~2.1.7" 1953 | oauth-sign "~0.8.1" 1954 | performance-now "^0.2.0" 1955 | qs "~6.4.0" 1956 | safe-buffer "^5.0.1" 1957 | stringstream "~0.0.4" 1958 | tough-cookie "~2.3.0" 1959 | tunnel-agent "^0.6.0" 1960 | uuid "^3.0.0" 1961 | 1962 | require-directory@^2.1.1: 1963 | version "2.1.1" 1964 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1965 | 1966 | require-main-filename@^1.0.1: 1967 | version "1.0.1" 1968 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1969 | 1970 | resolve@1.1.7: 1971 | version "1.1.7" 1972 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1973 | 1974 | resolve@^1.3.2: 1975 | version "1.4.0" 1976 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 1977 | dependencies: 1978 | path-parse "^1.0.5" 1979 | 1980 | right-align@^0.1.1: 1981 | version "0.1.3" 1982 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1983 | dependencies: 1984 | align-text "^0.1.1" 1985 | 1986 | rimraf@^2.6.1: 1987 | version "2.6.1" 1988 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1989 | dependencies: 1990 | glob "^7.0.5" 1991 | 1992 | rimraf@^2.6.2: 1993 | version "2.6.2" 1994 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1995 | dependencies: 1996 | glob "^7.0.5" 1997 | 1998 | safe-buffer@^5.0.1: 1999 | version "5.1.1" 2000 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2001 | 2002 | samsam@1.x, samsam@^1.1.3: 2003 | version "1.2.1" 2004 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 2005 | 2006 | sane@~1.6.0: 2007 | version "1.6.0" 2008 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2009 | dependencies: 2010 | anymatch "^1.3.0" 2011 | exec-sh "^0.2.0" 2012 | fb-watchman "^1.8.0" 2013 | minimatch "^3.0.2" 2014 | minimist "^1.1.1" 2015 | walker "~1.0.5" 2016 | watch "~0.10.0" 2017 | 2018 | sax@^1.2.1: 2019 | version "1.2.4" 2020 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2021 | 2022 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2023 | version "5.4.1" 2024 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2025 | 2026 | set-blocking@^2.0.0: 2027 | version "2.0.0" 2028 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2029 | 2030 | shebang-command@^1.2.0: 2031 | version "1.2.0" 2032 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2033 | dependencies: 2034 | shebang-regex "^1.0.0" 2035 | 2036 | shebang-regex@^1.0.0: 2037 | version "1.0.0" 2038 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2039 | 2040 | shellwords@^0.1.0: 2041 | version "0.1.0" 2042 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2043 | 2044 | signal-exit@^3.0.0: 2045 | version "3.0.2" 2046 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2047 | 2048 | sinon@^2.3.6: 2049 | version "2.4.1" 2050 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.4.1.tgz#021fd64b54cb77d9d2fb0d43cdedfae7629c3a36" 2051 | dependencies: 2052 | diff "^3.1.0" 2053 | formatio "1.2.0" 2054 | lolex "^1.6.0" 2055 | native-promise-only "^0.8.1" 2056 | path-to-regexp "^1.7.0" 2057 | samsam "^1.1.3" 2058 | text-encoding "0.6.4" 2059 | type-detect "^4.0.0" 2060 | 2061 | slash@^1.0.0: 2062 | version "1.0.0" 2063 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2064 | 2065 | sntp@1.x.x: 2066 | version "1.0.9" 2067 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2068 | dependencies: 2069 | hoek "2.x.x" 2070 | 2071 | source-map-support@^0.4.2, source-map-support@^0.4.4: 2072 | version "0.4.15" 2073 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2074 | dependencies: 2075 | source-map "^0.5.6" 2076 | 2077 | source-map@^0.4.4: 2078 | version "0.4.4" 2079 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2080 | dependencies: 2081 | amdefine ">=0.0.4" 2082 | 2083 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2084 | version "0.5.6" 2085 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2086 | 2087 | source-map@~0.2.0: 2088 | version "0.2.0" 2089 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2090 | dependencies: 2091 | amdefine ">=0.0.4" 2092 | 2093 | spdx-correct@~1.0.0: 2094 | version "1.0.2" 2095 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2096 | dependencies: 2097 | spdx-license-ids "^1.0.2" 2098 | 2099 | spdx-expression-parse@~1.0.0: 2100 | version "1.0.4" 2101 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2102 | 2103 | spdx-license-ids@^1.0.2: 2104 | version "1.2.2" 2105 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2106 | 2107 | sprintf-js@~1.0.2: 2108 | version "1.0.3" 2109 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2110 | 2111 | sshpk@^1.7.0: 2112 | version "1.13.1" 2113 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2114 | dependencies: 2115 | asn1 "~0.2.3" 2116 | assert-plus "^1.0.0" 2117 | dashdash "^1.12.0" 2118 | getpass "^0.1.1" 2119 | optionalDependencies: 2120 | bcrypt-pbkdf "^1.0.0" 2121 | ecc-jsbn "~0.1.1" 2122 | jsbn "~0.1.0" 2123 | tweetnacl "~0.14.0" 2124 | 2125 | string-length@^1.0.1: 2126 | version "1.0.1" 2127 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2128 | dependencies: 2129 | strip-ansi "^3.0.0" 2130 | 2131 | string-width@^1.0.1, string-width@^1.0.2: 2132 | version "1.0.2" 2133 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2134 | dependencies: 2135 | code-point-at "^1.0.0" 2136 | is-fullwidth-code-point "^1.0.0" 2137 | strip-ansi "^3.0.0" 2138 | 2139 | string-width@^2.0.0: 2140 | version "2.1.1" 2141 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2142 | dependencies: 2143 | is-fullwidth-code-point "^2.0.0" 2144 | strip-ansi "^4.0.0" 2145 | 2146 | stringstream@~0.0.4: 2147 | version "0.0.5" 2148 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2149 | 2150 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2151 | version "3.0.1" 2152 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2153 | dependencies: 2154 | ansi-regex "^2.0.0" 2155 | 2156 | strip-ansi@^4.0.0: 2157 | version "4.0.0" 2158 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2159 | dependencies: 2160 | ansi-regex "^3.0.0" 2161 | 2162 | strip-bom@3.0.0, strip-bom@^3.0.0: 2163 | version "3.0.0" 2164 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2165 | 2166 | strip-bom@^2.0.0: 2167 | version "2.0.0" 2168 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2169 | dependencies: 2170 | is-utf8 "^0.2.0" 2171 | 2172 | strip-eof@^1.0.0: 2173 | version "1.0.0" 2174 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2175 | 2176 | supports-color@^2.0.0: 2177 | version "2.0.0" 2178 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2179 | 2180 | supports-color@^3.1.2: 2181 | version "3.2.3" 2182 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2183 | dependencies: 2184 | has-flag "^1.0.0" 2185 | 2186 | symbol-tree@^3.2.1: 2187 | version "3.2.2" 2188 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2189 | 2190 | test-exclude@^4.1.1: 2191 | version "4.1.1" 2192 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2193 | dependencies: 2194 | arrify "^1.0.1" 2195 | micromatch "^2.3.11" 2196 | object-assign "^4.1.0" 2197 | read-pkg-up "^1.0.1" 2198 | require-main-filename "^1.0.1" 2199 | 2200 | text-encoding@0.6.4: 2201 | version "0.6.4" 2202 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 2203 | 2204 | throat@^3.0.0: 2205 | version "3.2.0" 2206 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2207 | 2208 | tmpl@1.0.x: 2209 | version "1.0.4" 2210 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2211 | 2212 | to-fast-properties@^1.0.1: 2213 | version "1.0.3" 2214 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2215 | 2216 | tomlify-j0.4@^2.0.0: 2217 | version "2.2.0" 2218 | resolved "https://registry.yarnpkg.com/tomlify-j0.4/-/tomlify-j0.4-2.2.0.tgz#d9a5a115b46cf4d3074d3c883901064295e091e5" 2219 | 2220 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2221 | version "2.3.2" 2222 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2223 | dependencies: 2224 | punycode "^1.4.1" 2225 | 2226 | tr46@~0.0.3: 2227 | version "0.0.3" 2228 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2229 | 2230 | trim-right@^1.0.1: 2231 | version "1.0.1" 2232 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2233 | 2234 | ts-jest@^20.0.7: 2235 | version "20.0.7" 2236 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-20.0.7.tgz#82c99b9163f8c0a864a2b221238202fa1e623c26" 2237 | dependencies: 2238 | "@types/babel-core" "^6.7.14" 2239 | babel-core "^6.24.1" 2240 | babel-plugin-istanbul "^4.1.4" 2241 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 2242 | babel-preset-jest "^20.0.3" 2243 | fs-extra "^3.0.0" 2244 | jest-config "^20.0.0" 2245 | jest-util "^20.0.0" 2246 | pkg-dir "^2.0.0" 2247 | source-map-support "^0.4.4" 2248 | yargs "^8.0.1" 2249 | 2250 | tslib@^1.7.1: 2251 | version "1.7.1" 2252 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.7.1.tgz#bc8004164691923a79fe8378bbeb3da2017538ec" 2253 | 2254 | tslint@^5.5.0: 2255 | version "5.5.0" 2256 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.5.0.tgz#10e8dab3e3061fa61e9442e8cee3982acf20a6aa" 2257 | dependencies: 2258 | babel-code-frame "^6.22.0" 2259 | colors "^1.1.2" 2260 | commander "^2.9.0" 2261 | diff "^3.2.0" 2262 | glob "^7.1.1" 2263 | minimatch "^3.0.4" 2264 | resolve "^1.3.2" 2265 | semver "^5.3.0" 2266 | tslib "^1.7.1" 2267 | tsutils "^2.5.1" 2268 | 2269 | tsutils@^2.5.1: 2270 | version "2.8.0" 2271 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.8.0.tgz#0160173729b3bf138628dd14a1537e00851d814a" 2272 | dependencies: 2273 | tslib "^1.7.1" 2274 | 2275 | tunnel-agent@^0.6.0: 2276 | version "0.6.0" 2277 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2278 | dependencies: 2279 | safe-buffer "^5.0.1" 2280 | 2281 | tunnel-agent@~0.4.1: 2282 | version "0.4.3" 2283 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2284 | 2285 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2286 | version "0.14.5" 2287 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2288 | 2289 | type-check@~0.3.2: 2290 | version "0.3.2" 2291 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2292 | dependencies: 2293 | prelude-ls "~1.1.2" 2294 | 2295 | type-detect@^4.0.0: 2296 | version "4.0.3" 2297 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 2298 | 2299 | typescript@^2.4.2: 2300 | version "2.6.1" 2301 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.1.tgz#ef39cdea27abac0b500242d6726ab90e0c846631" 2302 | 2303 | uglify-js@^2.6: 2304 | version "2.8.29" 2305 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2306 | dependencies: 2307 | source-map "~0.5.1" 2308 | yargs "~3.10.0" 2309 | optionalDependencies: 2310 | uglify-to-browserify "~1.0.0" 2311 | 2312 | uglify-to-browserify@~1.0.0: 2313 | version "1.0.2" 2314 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2315 | 2316 | underscore-keypath@~0.0.22: 2317 | version "0.0.22" 2318 | resolved "https://registry.yarnpkg.com/underscore-keypath/-/underscore-keypath-0.0.22.tgz#48a528392bb6efc424be1caa56da4b5faccf264d" 2319 | dependencies: 2320 | underscore "*" 2321 | 2322 | underscore@*: 2323 | version "1.8.3" 2324 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 2325 | 2326 | universalify@^0.1.0: 2327 | version "0.1.1" 2328 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 2329 | 2330 | uuid@^3.0.0: 2331 | version "3.1.0" 2332 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2333 | 2334 | validate-npm-package-license@^3.0.1: 2335 | version "3.0.1" 2336 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2337 | dependencies: 2338 | spdx-correct "~1.0.0" 2339 | spdx-expression-parse "~1.0.0" 2340 | 2341 | verror@1.10.0: 2342 | version "1.10.0" 2343 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2344 | dependencies: 2345 | assert-plus "^1.0.0" 2346 | core-util-is "1.0.2" 2347 | extsprintf "^1.2.0" 2348 | 2349 | walker@~1.0.5: 2350 | version "1.0.7" 2351 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2352 | dependencies: 2353 | makeerror "1.0.x" 2354 | 2355 | watch@~0.10.0: 2356 | version "0.10.0" 2357 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2358 | 2359 | webidl-conversions@^3.0.0: 2360 | version "3.0.1" 2361 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2362 | 2363 | webidl-conversions@^4.0.0: 2364 | version "4.0.1" 2365 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2366 | 2367 | whatwg-encoding@^1.0.1: 2368 | version "1.0.1" 2369 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2370 | dependencies: 2371 | iconv-lite "0.4.13" 2372 | 2373 | whatwg-url@^4.3.0: 2374 | version "4.8.0" 2375 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2376 | dependencies: 2377 | tr46 "~0.0.3" 2378 | webidl-conversions "^3.0.0" 2379 | 2380 | which-module@^1.0.0: 2381 | version "1.0.0" 2382 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2383 | 2384 | which-module@^2.0.0: 2385 | version "2.0.0" 2386 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2387 | 2388 | which@^1.2.12, which@^1.2.9: 2389 | version "1.3.0" 2390 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2391 | dependencies: 2392 | isexe "^2.0.0" 2393 | 2394 | window-size@0.1.0: 2395 | version "0.1.0" 2396 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2397 | 2398 | wordwrap@0.0.2: 2399 | version "0.0.2" 2400 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2401 | 2402 | wordwrap@~0.0.2: 2403 | version "0.0.3" 2404 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2405 | 2406 | wordwrap@~1.0.0: 2407 | version "1.0.0" 2408 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2409 | 2410 | worker-farm@^1.3.1: 2411 | version "1.4.1" 2412 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.4.1.tgz#a438bc993a7a7d133bcb6547c95eca7cff4897d8" 2413 | dependencies: 2414 | errno "^0.1.4" 2415 | xtend "^4.0.1" 2416 | 2417 | wrap-ansi@^2.0.0: 2418 | version "2.1.0" 2419 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2420 | dependencies: 2421 | string-width "^1.0.1" 2422 | strip-ansi "^3.0.1" 2423 | 2424 | wrappy@1: 2425 | version "1.0.2" 2426 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2427 | 2428 | xml-name-validator@^2.0.1: 2429 | version "2.0.1" 2430 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2431 | 2432 | xtend@^4.0.0, xtend@^4.0.1: 2433 | version "4.0.1" 2434 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2435 | 2436 | y18n@^3.2.1: 2437 | version "3.2.1" 2438 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2439 | 2440 | yallist@^2.1.2: 2441 | version "2.1.2" 2442 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2443 | 2444 | yamljs@^0.3.0: 2445 | version "0.3.0" 2446 | resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.3.0.tgz#dc060bf267447b39f7304e9b2bfbe8b5a7ddb03b" 2447 | dependencies: 2448 | argparse "^1.0.7" 2449 | glob "^7.0.5" 2450 | 2451 | yargs-parser@^5.0.0: 2452 | version "5.0.0" 2453 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2454 | dependencies: 2455 | camelcase "^3.0.0" 2456 | 2457 | yargs-parser@^7.0.0: 2458 | version "7.0.0" 2459 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2460 | dependencies: 2461 | camelcase "^4.1.0" 2462 | 2463 | yargs@^7.0.2: 2464 | version "7.1.0" 2465 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2466 | dependencies: 2467 | camelcase "^3.0.0" 2468 | cliui "^3.2.0" 2469 | decamelize "^1.1.1" 2470 | get-caller-file "^1.0.1" 2471 | os-locale "^1.4.0" 2472 | read-pkg-up "^1.0.1" 2473 | require-directory "^2.1.1" 2474 | require-main-filename "^1.0.1" 2475 | set-blocking "^2.0.0" 2476 | string-width "^1.0.2" 2477 | which-module "^1.0.0" 2478 | y18n "^3.2.1" 2479 | yargs-parser "^5.0.0" 2480 | 2481 | yargs@^8.0.1: 2482 | version "8.0.2" 2483 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 2484 | dependencies: 2485 | camelcase "^4.1.0" 2486 | cliui "^3.2.0" 2487 | decamelize "^1.1.1" 2488 | get-caller-file "^1.0.1" 2489 | os-locale "^2.0.0" 2490 | read-pkg-up "^2.0.0" 2491 | require-directory "^2.1.1" 2492 | require-main-filename "^1.0.1" 2493 | set-blocking "^2.0.0" 2494 | string-width "^2.0.0" 2495 | which-module "^2.0.0" 2496 | y18n "^3.2.1" 2497 | yargs-parser "^7.0.0" 2498 | 2499 | yargs@~3.10.0: 2500 | version "3.10.0" 2501 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2502 | dependencies: 2503 | camelcase "^1.0.2" 2504 | cliui "^2.1.0" 2505 | decamelize "^1.0.0" 2506 | window-size "0.1.0" 2507 | --------------------------------------------------------------------------------