├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── functions ├── authorize.js ├── getCats.js ├── getPangolins.js └── login.js ├── lib ├── users.js └── utils.js ├── package.json ├── secrets.json.example ├── serverless.yml └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | .serverless/ 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base", 3 | "plugins": [ 4 | "import" 5 | ], 6 | "globals": { 7 | "afterAll": true, 8 | "afterEach": true, 9 | "beforeAll": true, 10 | "beforeEach": true, 11 | "describe": true, 12 | "expect": true, 13 | "fail": true, 14 | "it": true, 15 | "jasmine": true, 16 | "jest": true, 17 | "test": true 18 | }, 19 | "rules": { 20 | "no-console": 0 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Secrets 2 | secrets.json 3 | 4 | ### Linux ### 5 | *~ 6 | 7 | # temporary files which can be created if a process still has a handle open of a deleted file 8 | .fuse_hidden* 9 | 10 | # KDE directory preferences 11 | .directory 12 | 13 | # Linux trash folder which might appear on any partition or disk 14 | .Trash-* 15 | 16 | # .nfs files are created when an open file is removed but is still being accessed 17 | .nfs* 18 | 19 | ### Node ### 20 | # Logs 21 | logs 22 | *.log 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # Runtime data 28 | pids 29 | *.pid 30 | *.seed 31 | *.pid.lock 32 | 33 | # Directory for instrumented libs generated by jscoverage/JSCover 34 | lib-cov 35 | 36 | # Coverage directory used by tools like istanbul 37 | coverage 38 | 39 | # nyc test coverage 40 | .nyc_output 41 | 42 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 43 | .grunt 44 | 45 | # Bower dependency directory (https://bower.io/) 46 | bower_components 47 | 48 | # node-waf configuration 49 | .lock-wscript 50 | 51 | # Compiled binary addons (http://nodejs.org/api/addons.html) 52 | build/Release 53 | 54 | # Dependency directories 55 | node_modules/ 56 | jspm_packages/ 57 | 58 | # Typescript v1 declaration files 59 | typings/ 60 | 61 | # Optional npm cache directory 62 | .npm 63 | 64 | # Optional eslint cache 65 | .eslintcache 66 | 67 | # Optional REPL history 68 | .node_repl_history 69 | 70 | # Output of 'npm pack' 71 | *.tgz 72 | 73 | # Yarn Integrity file 74 | .yarn-integrity 75 | 76 | # dotenv environment variables file 77 | .env 78 | 79 | 80 | ### OSX ### 81 | *.DS_Store 82 | .AppleDouble 83 | .LSOverride 84 | 85 | # Icon must end with two \r 86 | Icon 87 | 88 | # Thumbnails 89 | ._* 90 | 91 | # Files that might appear in the root of a volume 92 | .DocumentRevisions-V100 93 | .fseventsd 94 | .Spotlight-V100 95 | .TemporaryItems 96 | .Trashes 97 | .VolumeIcon.icns 98 | .com.apple.timemachine.donotpresent 99 | 100 | # Directories potentially created on remote AFP share 101 | .AppleDB 102 | .AppleDesktop 103 | Network Trash Folder 104 | Temporary Items 105 | .apdisk 106 | 107 | ### Serverless ### 108 | # Ignore build directory 109 | .serverless 110 | 111 | ### Windows ### 112 | # Windows thumbnail cache files 113 | Thumbs.db 114 | ehthumbs.db 115 | ehthumbs_vista.db 116 | 117 | # Folder config file 118 | Desktop.ini 119 | 120 | # Recycle Bin used on file shares 121 | $RECYCLE.BIN/ 122 | 123 | # Windows Installer files 124 | *.cab 125 | *.msi 126 | *.msm 127 | *.msp 128 | 129 | # Windows shortcuts 130 | *.lnk 131 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Serverless Auth 2 | 3 | > Pangolins are a protected species! 4 | 5 | ![Pangolins are protected species!](http://i.imgur.com/ReO39.jpg) 6 | 7 | This is a serverless authorization example using JSON Web Tokens (JWTs.) 8 | It has three endpoints: 9 | 10 | - `GET /cats` is a public endpoint anyone can access. 11 | - `GET /pangolins` is a private endpoint, protected by an AWS Custom Authorizer. 12 | - `POST /sessions` is a login endpoint. Pass a valid username and password in a JSON request body to get a JWT (see `/lib/users.js` for valid combinations.) For example: 13 | 14 | ``` 15 | { 16 | "username": "Cthon98", 17 | "password": "hunter2" 18 | } 19 | ``` 20 | 21 | In order to pass the *authentication* check, you will need to supply a valid JWT in your `Authorization` request header when making calls to a protected endpoint. 22 | 23 | In order to pass the *authorization* check, you will need a JWT belonging to a user with valid permissions. For this example, the user `Cthon98` is authorized to access `GET /pangolins`; `AzureDiamond` is not. 24 | 25 | ## Setup 26 | 27 | ### Prerequisites 28 | 29 | - Node.js & NPM 30 | - Yarn 31 | - [The Serverless Framework](https://serverless.com/framework/) 32 | 33 | ### Install dependencies 34 | 35 | ``` 36 | yarn 37 | ``` 38 | 39 | ### Running Tests 40 | 41 | ``` 42 | yarn test 43 | ``` 44 | 45 | ### Get Test coverage 46 | 47 | ``` 48 | yarn test:coverage 49 | ``` 50 | 51 | ### Lint 52 | 53 | ``` 54 | yarn eslint 55 | ``` 56 | 57 | ### Running locally 58 | ``` 59 | serverless offline start 60 | ``` 61 | 62 | ### Deploy 63 | 64 | ``` 65 | serverless deploy 66 | ``` 67 | -------------------------------------------------------------------------------- /functions/authorize.js: -------------------------------------------------------------------------------- 1 | const _ = require('lodash'); 2 | const jwt = require('jsonwebtoken'); 3 | const utils = require('../lib/utils'); 4 | 5 | // Returns a boolean whether or not a user is allowed to call a particular method 6 | // A user with scopes: ['pangolins'] can 7 | // call 'arn:aws:execute-api:ap-southeast-1::random-api-id/dev/GET/pangolins' 8 | const authorizeUser = (userScopes, methodArn) => { 9 | console.log(`authorizeUser ${JSON.stringify(userScopes)} ${methodArn}`); 10 | const hasValidScope = _.some(userScopes, scope => _.endsWith(methodArn, scope)); 11 | return hasValidScope; 12 | }; 13 | 14 | /** 15 | * Authorizer functions are executed before your actual functions. 16 | * @method authorize 17 | * @param {String} event.authorizationToken - JWT 18 | * @throws Returns 401 if the token is invalid or has expired. 19 | * @throws Returns 403 if the token does not have sufficient permissions. 20 | */ 21 | module.exports.handler = (event, context, callback) => { 22 | console.log('authorize'); 23 | console.log(event); 24 | const token = event.authorizationToken; 25 | 26 | try { 27 | // Verify JWT 28 | const decoded = jwt.verify(token, process.env.JWT_SECRET); 29 | console.log(JSON.stringify(decoded)); 30 | 31 | // Checks if the user's scopes allow her to call the current endpoint ARN 32 | const user = decoded.user; 33 | const isAllowed = authorizeUser(user.scopes, event.methodArn); 34 | 35 | // Return an IAM policy document for the current endpoint 36 | const effect = isAllowed ? 'Allow' : 'Deny'; 37 | const userId = user.username; 38 | const authorizerContext = { user: JSON.stringify(user) }; 39 | const policyDocument = utils.buildIAMPolicy(userId, effect, event.methodArn, authorizerContext); 40 | 41 | console.log('Returning IAM policy document'); 42 | callback(null, policyDocument); 43 | } catch (e) { 44 | console.log(e.message); 45 | callback('Unauthorized'); // Return a 401 Unauthorized response 46 | } 47 | }; 48 | -------------------------------------------------------------------------------- /functions/getCats.js: -------------------------------------------------------------------------------- 1 | /** 2 | * GET /cats 3 | * 4 | * Returns a collection of cats. 5 | * @returns {Array.Object} 6 | */ 7 | module.exports.handler = (event, context, callback) => { 8 | console.log('getCats'); 9 | const response = { 10 | statusCode: 200, 11 | headers: { 12 | 'Access-Control-Allow-Origin': '*', // Required for CORS support to work 13 | }, 14 | body: JSON.stringify({ 15 | cats: [ 16 | { 17 | id: 1, 18 | name: 'Furball', 19 | address: '2 Fur Lane', 20 | }, 21 | ], 22 | }), 23 | }; 24 | 25 | callback(null, response); 26 | }; 27 | -------------------------------------------------------------------------------- /functions/getPangolins.js: -------------------------------------------------------------------------------- 1 | /** 2 | * GET /pangolins 3 | * 4 | * Returns a collection of pangolins. 5 | * @returns {Array.Object} 6 | */ 7 | module.exports.handler = (event, context, callback) => { 8 | console.log('getPangolins'); 9 | console.log(event); 10 | 11 | const user = JSON.parse(event.requestContext.authorizer.user); 12 | console.log(user); 13 | 14 | const response = { 15 | statusCode: 200, 16 | headers: { 17 | 'Access-Control-Allow-Origin': '*', // Required for CORS support to work 18 | }, 19 | body: JSON.stringify({ 20 | pangolins: [ 21 | { 22 | id: 2, 23 | name: 'Pengu', 24 | address: '123 Carapace Drive', 25 | }, 26 | ], 27 | }), 28 | }; 29 | 30 | callback(null, response); 31 | }; 32 | -------------------------------------------------------------------------------- /functions/login.js: -------------------------------------------------------------------------------- 1 | const jwt = require('jsonwebtoken'); 2 | const users = require('../lib/users'); 3 | 4 | const JWT_EXPIRATION_TIME = '5m'; 5 | 6 | /** 7 | * POST /sessions 8 | * 9 | * Returns a JWT, given a username and password. 10 | * @method login 11 | * @param {String} event.body.username 12 | * @param {String} event.body.password 13 | * @throws Returns 401 if the user is not found or password is invalid. 14 | * @returns {Object} jwt that expires in 5 mins 15 | */ 16 | module.exports.handler = (event, context, callback) => { 17 | console.log('login'); 18 | const { username, password } = JSON.parse(event.body); 19 | 20 | try { 21 | // Authenticate user 22 | const user = users.login(username, password); 23 | console.log(user); 24 | 25 | // Issue JWT 26 | const token = jwt.sign({ user }, process.env.JWT_SECRET, { expiresIn: JWT_EXPIRATION_TIME }); 27 | console.log(`JWT issued: ${token}`); 28 | const response = { // Success response 29 | statusCode: 200, 30 | headers: { 31 | 'Access-Control-Allow-Origin': '*', 32 | }, 33 | body: JSON.stringify({ 34 | token, 35 | }), 36 | }; 37 | 38 | // Return response 39 | console.log(response); 40 | callback(null, response); 41 | } catch (e) { 42 | console.log(`Error logging in: ${e.message}`); 43 | const response = { // Error response 44 | statusCode: 401, 45 | headers: { 46 | 'Access-Control-Allow-Origin': '*', 47 | }, 48 | body: JSON.stringify({ 49 | error: e.message, 50 | }), 51 | }; 52 | callback(null, response); 53 | } 54 | }; 55 | -------------------------------------------------------------------------------- /lib/users.js: -------------------------------------------------------------------------------- 1 | // Disclaimer: This is not ready for production, obviously. 2 | const _ = require('lodash'); 3 | 4 | const UsersDB = [ 5 | { 6 | username: 'Cthon98', 7 | password: 'hunter2', // User password 8 | scopes: ['pangolins'], // Authorized actions 9 | }, 10 | { 11 | username: 'AzureDiamond', 12 | password: '*********', 13 | scopes: [], 14 | }, 15 | ]; 16 | 17 | /** 18 | * Returns a user, given a username and valid password. 19 | * 20 | * @method login 21 | * @param {String} username - user id 22 | * @param {String} password - Allow / Deny 23 | * @throws Will throw an error if a user is not found or if the password is wrong. 24 | * @returns {Object} user 25 | */ 26 | const login = (username, password) => { 27 | const user = _.find(UsersDB, { username }); 28 | if (!user) throw new Error('User not found!'); 29 | 30 | const hasValidPassword = (user.password === password); 31 | if (!hasValidPassword) throw new Error('Invalid password'); 32 | 33 | return _.omit(user, 'password'); 34 | }; 35 | 36 | module.exports = { 37 | login, 38 | }; 39 | -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns an IAM policy document for a given user and resource. 3 | * 4 | * @method buildIAMPolicy 5 | * @param {String} userId - user id 6 | * @param {String} effect - Allow / Deny 7 | * @param {String} resource - resource ARN 8 | * @param {String} context - response context 9 | * @returns {Object} policyDocument 10 | */ 11 | const buildIAMPolicy = (userId, effect, resource, context) => { 12 | console.log(`buildIAMPolicy ${userId} ${effect} ${resource}`); 13 | const policy = { 14 | principalId: userId, 15 | policyDocument: { 16 | Version: '2012-10-17', 17 | Statement: [ 18 | { 19 | Action: 'execute-api:Invoke', 20 | Effect: effect, 21 | Resource: resource, 22 | }, 23 | ], 24 | }, 25 | context, 26 | }; 27 | 28 | console.log(JSON.stringify(policy)); 29 | return policy; 30 | }; 31 | 32 | module.exports = { 33 | buildIAMPolicy, 34 | }; 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "serverless-auth", 3 | "version": "1.0.0", 4 | "repository": "git@github.com:yosriady/serverless-auth.git", 5 | "author": "Yos Riady ", 6 | "license": "MIT", 7 | "scripts": { 8 | "test": "node_modules/.bin/jest", 9 | "test:coverage": "open coverage/lcov-report/index.html", 10 | "eslint": "./node_modules/.bin/eslint ." 11 | }, 12 | "devDependencies": { 13 | "eslint": "^3.19.0", 14 | "eslint-config-airbnb-base": "^11.1.3", 15 | "eslint-plugin-import": "^2.0.1", 16 | "jest": "^20.0.4", 17 | "lambda-tester": "^3.0.2", 18 | "serverless-offline": "^3.15.0" 19 | }, 20 | "jest": { 21 | "collectCoverage": true 22 | }, 23 | "dependencies": { 24 | "jsonwebtoken": "^7.4.1", 25 | "lodash": "^4.17.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /secrets.json.example: -------------------------------------------------------------------------------- 1 | { 2 | "jwtSecret": "sshhhhhhh" 3 | } 4 | -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- 1 | # Welcome to serverless. Read the docs 2 | # https://serverless.com/framework/docs/ 3 | 4 | # Serverless.yml is the configuration the CLI 5 | # uses to deploy your code to your provider of choice 6 | 7 | # The `service` block is the name of the service 8 | service: serverless-auth 9 | 10 | plugins: 11 | - serverless-offline 12 | 13 | # Configuration variables 14 | custom: 15 | secrets: ${file(secrets.json)} 16 | 17 | # The `provider` block defines where your service will be deployed 18 | provider: 19 | name: aws 20 | runtime: nodejs6.10 21 | profile: personal 22 | region: ap-southeast-1 23 | environment: 24 | JWT_SECRET: ${self:custom.secrets.jwtSecret} 25 | 26 | # The `functions` block defines what code to deploy 27 | functions: 28 | login: 29 | handler: functions/login.handler 30 | events: 31 | - http: 32 | path: sessions 33 | method: post 34 | cors: true 35 | authorize: 36 | handler: functions/authorize.handler 37 | getCats: 38 | handler: functions/getCats.handler 39 | events: 40 | - http: 41 | path: cats 42 | method: get 43 | cors: true 44 | # authorizer: authorize # Cats are public 45 | getPangolins: 46 | handler: functions/getPangolins.handler 47 | events: 48 | - http: 49 | path: pangolins 50 | method: get 51 | cors: true 52 | authorizer: authorize # Pangolins are protected 53 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | accept@2.x.x: 10 | version "2.1.4" 11 | resolved "https://registry.yarnpkg.com/accept/-/accept-2.1.4.tgz#887af54ceee5c7f4430461971ec400c61d09acbb" 12 | dependencies: 13 | boom "5.x.x" 14 | hoek "4.x.x" 15 | 16 | acorn-globals@^3.1.0: 17 | version "3.1.0" 18 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 19 | dependencies: 20 | acorn "^4.0.4" 21 | 22 | acorn-jsx@^3.0.0: 23 | version "3.0.1" 24 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 25 | dependencies: 26 | acorn "^3.0.4" 27 | 28 | acorn@^3.0.4: 29 | version "3.3.0" 30 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 31 | 32 | acorn@^4.0.4: 33 | version "4.0.13" 34 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 35 | 36 | acorn@^5.0.1: 37 | version "5.1.1" 38 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 39 | 40 | ajv-keywords@^1.0.0: 41 | version "1.5.1" 42 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 43 | 44 | ajv@^4.7.0, ajv@^4.9.1: 45 | version "4.11.8" 46 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 47 | dependencies: 48 | co "^4.6.0" 49 | json-stable-stringify "^1.0.1" 50 | 51 | align-text@^0.1.1, align-text@^0.1.3: 52 | version "0.1.4" 53 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 54 | dependencies: 55 | kind-of "^3.0.2" 56 | longest "^1.0.1" 57 | repeat-string "^1.5.2" 58 | 59 | amdefine@>=0.0.4: 60 | version "1.0.1" 61 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 62 | 63 | ammo@2.x.x: 64 | version "2.0.4" 65 | resolved "https://registry.yarnpkg.com/ammo/-/ammo-2.0.4.tgz#bf80aab211698ea78f63ef5e7f113dd5d9e8917f" 66 | dependencies: 67 | boom "5.x.x" 68 | hoek "4.x.x" 69 | 70 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 71 | version "1.4.0" 72 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 73 | 74 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 75 | version "2.1.1" 76 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 77 | 78 | ansi-regex@^3.0.0: 79 | version "3.0.0" 80 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 81 | 82 | ansi-styles@^2.2.1: 83 | version "2.2.1" 84 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 85 | 86 | ansi-styles@^3.0.0: 87 | version "3.1.0" 88 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 89 | dependencies: 90 | color-convert "^1.0.0" 91 | 92 | anymatch@^1.3.0: 93 | version "1.3.0" 94 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 95 | dependencies: 96 | arrify "^1.0.0" 97 | micromatch "^2.1.5" 98 | 99 | app-root-path@^2.0.1: 100 | version "2.0.1" 101 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 102 | 103 | append-transform@^0.4.0: 104 | version "0.4.0" 105 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 106 | dependencies: 107 | default-require-extensions "^1.0.0" 108 | 109 | argparse@^1.0.7: 110 | version "1.0.9" 111 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 112 | dependencies: 113 | sprintf-js "~1.0.2" 114 | 115 | arr-diff@^2.0.0: 116 | version "2.0.0" 117 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 118 | dependencies: 119 | arr-flatten "^1.0.1" 120 | 121 | arr-flatten@^1.0.1: 122 | version "1.1.0" 123 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 124 | 125 | array-equal@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 128 | 129 | array-union@^1.0.1: 130 | version "1.0.2" 131 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 132 | dependencies: 133 | array-uniq "^1.0.1" 134 | 135 | array-uniq@^1.0.1: 136 | version "1.0.3" 137 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 138 | 139 | array-unique@^0.2.1: 140 | version "0.2.1" 141 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 142 | 143 | arrify@^1.0.0, arrify@^1.0.1: 144 | version "1.0.1" 145 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 146 | 147 | asn1@~0.2.3: 148 | version "0.2.3" 149 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 150 | 151 | assert-plus@1.0.0, assert-plus@^1.0.0: 152 | version "1.0.0" 153 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 154 | 155 | assert-plus@^0.2.0: 156 | version "0.2.0" 157 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 158 | 159 | async@^1.4.0: 160 | version "1.5.2" 161 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 162 | 163 | async@^2.1.4: 164 | version "2.5.0" 165 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 166 | dependencies: 167 | lodash "^4.14.0" 168 | 169 | asynckit@^0.4.0: 170 | version "0.4.0" 171 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 172 | 173 | aws-sign2@~0.6.0: 174 | version "0.6.0" 175 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 176 | 177 | aws4@^1.2.1: 178 | version "1.6.0" 179 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 180 | 181 | b64@3.x.x: 182 | version "3.0.2" 183 | resolved "https://registry.yarnpkg.com/b64/-/b64-3.0.2.tgz#7a9d60466adf7b8de114cbdf651a5fdfcc90894d" 184 | 185 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 186 | version "6.22.0" 187 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 188 | dependencies: 189 | chalk "^1.1.0" 190 | esutils "^2.0.2" 191 | js-tokens "^3.0.0" 192 | 193 | babel-core@^6.0.0, babel-core@^6.24.1: 194 | version "6.25.0" 195 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 196 | dependencies: 197 | babel-code-frame "^6.22.0" 198 | babel-generator "^6.25.0" 199 | babel-helpers "^6.24.1" 200 | babel-messages "^6.23.0" 201 | babel-register "^6.24.1" 202 | babel-runtime "^6.22.0" 203 | babel-template "^6.25.0" 204 | babel-traverse "^6.25.0" 205 | babel-types "^6.25.0" 206 | babylon "^6.17.2" 207 | convert-source-map "^1.1.0" 208 | debug "^2.1.1" 209 | json5 "^0.5.0" 210 | lodash "^4.2.0" 211 | minimatch "^3.0.2" 212 | path-is-absolute "^1.0.0" 213 | private "^0.1.6" 214 | slash "^1.0.0" 215 | source-map "^0.5.0" 216 | 217 | babel-generator@^6.18.0, babel-generator@^6.25.0: 218 | version "6.25.0" 219 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 220 | dependencies: 221 | babel-messages "^6.23.0" 222 | babel-runtime "^6.22.0" 223 | babel-types "^6.25.0" 224 | detect-indent "^4.0.0" 225 | jsesc "^1.3.0" 226 | lodash "^4.2.0" 227 | source-map "^0.5.0" 228 | trim-right "^1.0.1" 229 | 230 | babel-helpers@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 233 | dependencies: 234 | babel-runtime "^6.22.0" 235 | babel-template "^6.24.1" 236 | 237 | babel-jest@^20.0.3: 238 | version "20.0.3" 239 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 240 | dependencies: 241 | babel-core "^6.0.0" 242 | babel-plugin-istanbul "^4.0.0" 243 | babel-preset-jest "^20.0.3" 244 | 245 | babel-messages@^6.23.0: 246 | version "6.23.0" 247 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 248 | dependencies: 249 | babel-runtime "^6.22.0" 250 | 251 | babel-plugin-istanbul@^4.0.0: 252 | version "4.1.4" 253 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 254 | dependencies: 255 | find-up "^2.1.0" 256 | istanbul-lib-instrument "^1.7.2" 257 | test-exclude "^4.1.1" 258 | 259 | babel-plugin-jest-hoist@^20.0.3: 260 | version "20.0.3" 261 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 262 | 263 | babel-preset-jest@^20.0.3: 264 | version "20.0.3" 265 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 266 | dependencies: 267 | babel-plugin-jest-hoist "^20.0.3" 268 | 269 | babel-register@^6.18.0, babel-register@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 272 | dependencies: 273 | babel-core "^6.24.1" 274 | babel-runtime "^6.22.0" 275 | core-js "^2.4.0" 276 | home-or-tmp "^2.0.0" 277 | lodash "^4.2.0" 278 | mkdirp "^0.5.1" 279 | source-map-support "^0.4.2" 280 | 281 | babel-runtime@^6.22.0: 282 | version "6.23.0" 283 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 284 | dependencies: 285 | core-js "^2.4.0" 286 | regenerator-runtime "^0.10.0" 287 | 288 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 289 | version "6.25.0" 290 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 291 | dependencies: 292 | babel-runtime "^6.22.0" 293 | babel-traverse "^6.25.0" 294 | babel-types "^6.25.0" 295 | babylon "^6.17.2" 296 | lodash "^4.2.0" 297 | 298 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 299 | version "6.25.0" 300 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 301 | dependencies: 302 | babel-code-frame "^6.22.0" 303 | babel-messages "^6.23.0" 304 | babel-runtime "^6.22.0" 305 | babel-types "^6.25.0" 306 | babylon "^6.17.2" 307 | debug "^2.2.0" 308 | globals "^9.0.0" 309 | invariant "^2.2.0" 310 | lodash "^4.2.0" 311 | 312 | babel-types@^6.18.0, babel-types@^6.25.0: 313 | version "6.25.0" 314 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 315 | dependencies: 316 | babel-runtime "^6.22.0" 317 | esutils "^2.0.2" 318 | lodash "^4.2.0" 319 | to-fast-properties "^1.0.1" 320 | 321 | babylon@^6.17.2, babylon@^6.17.4: 322 | version "6.17.4" 323 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 324 | 325 | balanced-match@^1.0.0: 326 | version "1.0.0" 327 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 328 | 329 | base64url@2.0.0, base64url@^2.0.0: 330 | version "2.0.0" 331 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 332 | 333 | bcrypt-pbkdf@^1.0.0: 334 | version "1.0.1" 335 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 336 | dependencies: 337 | tweetnacl "^0.14.3" 338 | 339 | boom@2.x.x: 340 | version "2.10.1" 341 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 342 | dependencies: 343 | hoek "2.x.x" 344 | 345 | boom@3.X.X, boom@3.x.x: 346 | version "3.2.2" 347 | resolved "https://registry.yarnpkg.com/boom/-/boom-3.2.2.tgz#0f0cc5d04adc5003b8c7d71f42cca7271fef0e78" 348 | dependencies: 349 | hoek "4.x.x" 350 | 351 | boom@4.x.x, boom@^4.2.0: 352 | version "4.3.1" 353 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 354 | dependencies: 355 | hoek "4.x.x" 356 | 357 | boom@5.x.x: 358 | version "5.1.0" 359 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.1.0.tgz#0308fa8e924cd6d42d9c3bf4883bdc98f0e71df8" 360 | dependencies: 361 | hoek "4.x.x" 362 | 363 | brace-expansion@^1.1.7: 364 | version "1.1.8" 365 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 366 | dependencies: 367 | balanced-match "^1.0.0" 368 | concat-map "0.0.1" 369 | 370 | braces@^1.8.2: 371 | version "1.8.5" 372 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 373 | dependencies: 374 | expand-range "^1.8.1" 375 | preserve "^0.2.0" 376 | repeat-element "^1.1.2" 377 | 378 | browser-resolve@^1.11.2: 379 | version "1.11.2" 380 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 381 | dependencies: 382 | resolve "1.1.7" 383 | 384 | bser@1.0.2: 385 | version "1.0.2" 386 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 387 | dependencies: 388 | node-int64 "^0.4.0" 389 | 390 | bser@^2.0.0: 391 | version "2.0.0" 392 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 393 | dependencies: 394 | node-int64 "^0.4.0" 395 | 396 | buffer-equal-constant-time@1.0.1: 397 | version "1.0.1" 398 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 399 | 400 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 401 | version "1.1.1" 402 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 403 | 404 | call@3.x.x: 405 | version "3.0.4" 406 | resolved "https://registry.yarnpkg.com/call/-/call-3.0.4.tgz#e380f2f2a491330aa79085355f8be080877d559e" 407 | dependencies: 408 | boom "4.x.x" 409 | hoek "4.x.x" 410 | 411 | caller-path@^0.1.0: 412 | version "0.1.0" 413 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 414 | dependencies: 415 | callsites "^0.2.0" 416 | 417 | callsites@^0.2.0: 418 | version "0.2.0" 419 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 420 | 421 | callsites@^2.0.0: 422 | version "2.0.0" 423 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 424 | 425 | camelcase@^1.0.2: 426 | version "1.2.1" 427 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 428 | 429 | camelcase@^3.0.0: 430 | version "3.0.0" 431 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 432 | 433 | caseless@~0.12.0: 434 | version "0.12.0" 435 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 436 | 437 | catbox-memory@2.x.x: 438 | version "2.0.4" 439 | resolved "https://registry.yarnpkg.com/catbox-memory/-/catbox-memory-2.0.4.tgz#433e255902caf54233d1286429c8f4df14e822d5" 440 | dependencies: 441 | hoek "4.x.x" 442 | 443 | catbox@7.x.x: 444 | version "7.1.4" 445 | resolved "https://registry.yarnpkg.com/catbox/-/catbox-7.1.4.tgz#8a950ed18b64ba8088c1ae132e85c58479d2b6cc" 446 | dependencies: 447 | boom "5.x.x" 448 | hoek "4.x.x" 449 | joi "10.x.x" 450 | 451 | center-align@^0.1.1: 452 | version "0.1.3" 453 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 454 | dependencies: 455 | align-text "^0.1.3" 456 | lazy-cache "^1.0.3" 457 | 458 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 459 | version "1.1.3" 460 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 461 | dependencies: 462 | ansi-styles "^2.2.1" 463 | escape-string-regexp "^1.0.2" 464 | has-ansi "^2.0.0" 465 | strip-ansi "^3.0.0" 466 | supports-color "^2.0.0" 467 | 468 | ci-info@^1.0.0: 469 | version "1.0.0" 470 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 471 | 472 | circular-json@^0.3.1: 473 | version "0.3.1" 474 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 475 | 476 | cli-cursor@^1.0.1: 477 | version "1.0.2" 478 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 479 | dependencies: 480 | restore-cursor "^1.0.1" 481 | 482 | cli-width@^2.0.0: 483 | version "2.1.0" 484 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 485 | 486 | cliui@^2.1.0: 487 | version "2.1.0" 488 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 489 | dependencies: 490 | center-align "^0.1.1" 491 | right-align "^0.1.1" 492 | wordwrap "0.0.2" 493 | 494 | cliui@^3.2.0: 495 | version "3.2.0" 496 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 497 | dependencies: 498 | string-width "^1.0.1" 499 | strip-ansi "^3.0.1" 500 | wrap-ansi "^2.0.0" 501 | 502 | co@^4.6.0: 503 | version "4.6.0" 504 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 505 | 506 | code-point-at@^1.0.0: 507 | version "1.1.0" 508 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 509 | 510 | color-convert@^1.0.0: 511 | version "1.9.0" 512 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 513 | dependencies: 514 | color-name "^1.1.1" 515 | 516 | color-name@^1.1.1: 517 | version "1.1.2" 518 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 519 | 520 | combined-stream@^1.0.5, combined-stream@~1.0.5: 521 | version "1.0.5" 522 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 523 | dependencies: 524 | delayed-stream "~1.0.0" 525 | 526 | concat-map@0.0.1: 527 | version "0.0.1" 528 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 529 | 530 | concat-stream@^1.5.2: 531 | version "1.6.0" 532 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 533 | dependencies: 534 | inherits "^2.0.3" 535 | readable-stream "^2.2.2" 536 | typedarray "^0.0.6" 537 | 538 | contains-path@^0.1.0: 539 | version "0.1.0" 540 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 541 | 542 | content-type-parser@^1.0.1: 543 | version "1.0.1" 544 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 545 | 546 | content@3.x.x: 547 | version "3.0.4" 548 | resolved "https://registry.yarnpkg.com/content/-/content-3.0.4.tgz#ca3dde04480f12519b71526ec44bd488ddfb3fef" 549 | dependencies: 550 | boom "5.x.x" 551 | 552 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 553 | version "1.5.0" 554 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 555 | 556 | core-js@^2.4.0: 557 | version "2.4.1" 558 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 559 | 560 | core-util-is@~1.0.0: 561 | version "1.0.2" 562 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 563 | 564 | cryptiles@2.x.x: 565 | version "2.0.5" 566 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 567 | dependencies: 568 | boom "2.x.x" 569 | 570 | cryptiles@3.x.x: 571 | version "3.1.2" 572 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 573 | dependencies: 574 | boom "5.x.x" 575 | 576 | crypto@^0.0.3: 577 | version "0.0.3" 578 | resolved "https://registry.yarnpkg.com/crypto/-/crypto-0.0.3.tgz#470a81b86be4c5ee17acc8207a1f5315ae20dbb0" 579 | 580 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 581 | version "0.3.2" 582 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 583 | 584 | "cssstyle@>= 0.2.37 < 0.3.0": 585 | version "0.2.37" 586 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 587 | dependencies: 588 | cssom "0.3.x" 589 | 590 | d@1: 591 | version "1.0.0" 592 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 593 | dependencies: 594 | es5-ext "^0.10.9" 595 | 596 | dashdash@^1.12.0: 597 | version "1.14.1" 598 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 599 | dependencies: 600 | assert-plus "^1.0.0" 601 | 602 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 603 | version "2.6.8" 604 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 605 | dependencies: 606 | ms "2.0.0" 607 | 608 | decamelize@^1.0.0, decamelize@^1.1.1: 609 | version "1.2.0" 610 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 611 | 612 | deep-is@~0.1.3: 613 | version "0.1.3" 614 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 615 | 616 | default-require-extensions@^1.0.0: 617 | version "1.0.0" 618 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 619 | dependencies: 620 | strip-bom "^2.0.0" 621 | 622 | del@^2.0.2: 623 | version "2.2.2" 624 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 625 | dependencies: 626 | globby "^5.0.0" 627 | is-path-cwd "^1.0.0" 628 | is-path-in-cwd "^1.0.0" 629 | object-assign "^4.0.1" 630 | pify "^2.0.0" 631 | pinkie-promise "^2.0.0" 632 | rimraf "^2.2.8" 633 | 634 | delayed-stream@~1.0.0: 635 | version "1.0.0" 636 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 637 | 638 | detect-indent@^4.0.0: 639 | version "4.0.0" 640 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 641 | dependencies: 642 | repeating "^2.0.0" 643 | 644 | diff@^3.2.0: 645 | version "3.3.0" 646 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 647 | 648 | doctrine@1.5.0: 649 | version "1.5.0" 650 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 651 | dependencies: 652 | esutils "^2.0.2" 653 | isarray "^1.0.0" 654 | 655 | doctrine@^2.0.0: 656 | version "2.0.0" 657 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 658 | dependencies: 659 | esutils "^2.0.2" 660 | isarray "^1.0.0" 661 | 662 | dotenv@^4.0.0: 663 | version "4.0.0" 664 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" 665 | 666 | ecc-jsbn@~0.1.1: 667 | version "0.1.1" 668 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 669 | dependencies: 670 | jsbn "~0.1.0" 671 | 672 | ecdsa-sig-formatter@1.0.9: 673 | version "1.0.9" 674 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1" 675 | dependencies: 676 | base64url "^2.0.0" 677 | safe-buffer "^5.0.1" 678 | 679 | errno@^0.1.4: 680 | version "0.1.4" 681 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 682 | dependencies: 683 | prr "~0.0.0" 684 | 685 | error-ex@^1.2.0: 686 | version "1.3.1" 687 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 688 | dependencies: 689 | is-arrayish "^0.2.1" 690 | 691 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 692 | version "0.10.23" 693 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.23.tgz#7578b51be974207a5487821b56538c224e4e7b38" 694 | dependencies: 695 | es6-iterator "2" 696 | es6-symbol "~3.1" 697 | 698 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 699 | version "2.0.1" 700 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 701 | dependencies: 702 | d "1" 703 | es5-ext "^0.10.14" 704 | es6-symbol "^3.1" 705 | 706 | es6-map@^0.1.3: 707 | version "0.1.5" 708 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 709 | dependencies: 710 | d "1" 711 | es5-ext "~0.10.14" 712 | es6-iterator "~2.0.1" 713 | es6-set "~0.1.5" 714 | es6-symbol "~3.1.1" 715 | event-emitter "~0.3.5" 716 | 717 | es6-set@~0.1.5: 718 | version "0.1.5" 719 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 720 | dependencies: 721 | d "1" 722 | es5-ext "~0.10.14" 723 | es6-iterator "~2.0.1" 724 | es6-symbol "3.1.1" 725 | event-emitter "~0.3.5" 726 | 727 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 728 | version "3.1.1" 729 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 730 | dependencies: 731 | d "1" 732 | es5-ext "~0.10.14" 733 | 734 | es6-weak-map@^2.0.1: 735 | version "2.0.2" 736 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 737 | dependencies: 738 | d "1" 739 | es5-ext "^0.10.14" 740 | es6-iterator "^2.0.1" 741 | es6-symbol "^3.1.1" 742 | 743 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 744 | version "1.0.5" 745 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 746 | 747 | escodegen@^1.6.1: 748 | version "1.8.1" 749 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 750 | dependencies: 751 | esprima "^2.7.1" 752 | estraverse "^1.9.1" 753 | esutils "^2.0.2" 754 | optionator "^0.8.1" 755 | optionalDependencies: 756 | source-map "~0.2.0" 757 | 758 | escope@^3.6.0: 759 | version "3.6.0" 760 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 761 | dependencies: 762 | es6-map "^0.1.3" 763 | es6-weak-map "^2.0.1" 764 | esrecurse "^4.1.0" 765 | estraverse "^4.1.1" 766 | 767 | eslint-config-airbnb-base@^11.1.3: 768 | version "11.2.0" 769 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" 770 | 771 | eslint-import-resolver-node@^0.3.1: 772 | version "0.3.1" 773 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 774 | dependencies: 775 | debug "^2.6.8" 776 | resolve "^1.2.0" 777 | 778 | eslint-module-utils@^2.1.1: 779 | version "2.1.1" 780 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 781 | dependencies: 782 | debug "^2.6.8" 783 | pkg-dir "^1.0.0" 784 | 785 | eslint-plugin-import@^2.0.1: 786 | version "2.7.0" 787 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" 788 | dependencies: 789 | builtin-modules "^1.1.1" 790 | contains-path "^0.1.0" 791 | debug "^2.6.8" 792 | doctrine "1.5.0" 793 | eslint-import-resolver-node "^0.3.1" 794 | eslint-module-utils "^2.1.1" 795 | has "^1.0.1" 796 | lodash.cond "^4.3.0" 797 | minimatch "^3.0.3" 798 | read-pkg-up "^2.0.0" 799 | 800 | eslint@^3.19.0: 801 | version "3.19.0" 802 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 803 | dependencies: 804 | babel-code-frame "^6.16.0" 805 | chalk "^1.1.3" 806 | concat-stream "^1.5.2" 807 | debug "^2.1.1" 808 | doctrine "^2.0.0" 809 | escope "^3.6.0" 810 | espree "^3.4.0" 811 | esquery "^1.0.0" 812 | estraverse "^4.2.0" 813 | esutils "^2.0.2" 814 | file-entry-cache "^2.0.0" 815 | glob "^7.0.3" 816 | globals "^9.14.0" 817 | ignore "^3.2.0" 818 | imurmurhash "^0.1.4" 819 | inquirer "^0.12.0" 820 | is-my-json-valid "^2.10.0" 821 | is-resolvable "^1.0.0" 822 | js-yaml "^3.5.1" 823 | json-stable-stringify "^1.0.0" 824 | levn "^0.3.0" 825 | lodash "^4.0.0" 826 | mkdirp "^0.5.0" 827 | natural-compare "^1.4.0" 828 | optionator "^0.8.2" 829 | path-is-inside "^1.0.1" 830 | pluralize "^1.2.1" 831 | progress "^1.1.8" 832 | require-uncached "^1.0.2" 833 | shelljs "^0.7.5" 834 | strip-bom "^3.0.0" 835 | strip-json-comments "~2.0.1" 836 | table "^3.7.8" 837 | text-table "~0.2.0" 838 | user-home "^2.0.0" 839 | 840 | espree@^3.4.0: 841 | version "3.4.3" 842 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 843 | dependencies: 844 | acorn "^5.0.1" 845 | acorn-jsx "^3.0.0" 846 | 847 | esprima@^2.7.1: 848 | version "2.7.3" 849 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 850 | 851 | esprima@^3.1.1: 852 | version "3.1.3" 853 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 854 | 855 | esquery@^1.0.0: 856 | version "1.0.0" 857 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 858 | dependencies: 859 | estraverse "^4.0.0" 860 | 861 | esrecurse@^4.1.0: 862 | version "4.2.0" 863 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 864 | dependencies: 865 | estraverse "^4.1.0" 866 | object-assign "^4.0.1" 867 | 868 | estraverse@^1.9.1: 869 | version "1.9.3" 870 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 871 | 872 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 873 | version "4.2.0" 874 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 875 | 876 | esutils@^2.0.2: 877 | version "2.0.2" 878 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 879 | 880 | event-emitter@~0.3.5: 881 | version "0.3.5" 882 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 883 | dependencies: 884 | d "1" 885 | es5-ext "~0.10.14" 886 | 887 | exec-sh@^0.2.0: 888 | version "0.2.0" 889 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 890 | dependencies: 891 | merge "^1.1.3" 892 | 893 | exit-hook@^1.0.0: 894 | version "1.1.1" 895 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 896 | 897 | expand-brackets@^0.1.4: 898 | version "0.1.5" 899 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 900 | dependencies: 901 | is-posix-bracket "^0.1.0" 902 | 903 | expand-range@^1.8.1: 904 | version "1.8.2" 905 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 906 | dependencies: 907 | fill-range "^2.1.0" 908 | 909 | extend@~3.0.0: 910 | version "3.0.1" 911 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 912 | 913 | extglob@^0.3.1: 914 | version "0.3.2" 915 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 916 | dependencies: 917 | is-extglob "^1.0.0" 918 | 919 | extsprintf@1.0.2: 920 | version "1.0.2" 921 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 922 | 923 | fast-levenshtein@~2.0.4: 924 | version "2.0.6" 925 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 926 | 927 | fb-watchman@^1.8.0: 928 | version "1.9.2" 929 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 930 | dependencies: 931 | bser "1.0.2" 932 | 933 | fb-watchman@^2.0.0: 934 | version "2.0.0" 935 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 936 | dependencies: 937 | bser "^2.0.0" 938 | 939 | figures@^1.3.5: 940 | version "1.7.0" 941 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 942 | dependencies: 943 | escape-string-regexp "^1.0.5" 944 | object-assign "^4.1.0" 945 | 946 | file-entry-cache@^2.0.0: 947 | version "2.0.0" 948 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 949 | dependencies: 950 | flat-cache "^1.2.1" 951 | object-assign "^4.0.1" 952 | 953 | filename-regex@^2.0.0: 954 | version "2.0.1" 955 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 956 | 957 | fileset@^2.0.2: 958 | version "2.0.3" 959 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 960 | dependencies: 961 | glob "^7.0.3" 962 | minimatch "^3.0.3" 963 | 964 | fill-range@^2.1.0: 965 | version "2.2.3" 966 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 967 | dependencies: 968 | is-number "^2.1.0" 969 | isobject "^2.0.0" 970 | randomatic "^1.1.3" 971 | repeat-element "^1.1.2" 972 | repeat-string "^1.5.2" 973 | 974 | find-up@^1.0.0: 975 | version "1.1.2" 976 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 977 | dependencies: 978 | path-exists "^2.0.0" 979 | pinkie-promise "^2.0.0" 980 | 981 | find-up@^2.0.0, find-up@^2.1.0: 982 | version "2.1.0" 983 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 984 | dependencies: 985 | locate-path "^2.0.0" 986 | 987 | flat-cache@^1.2.1: 988 | version "1.2.2" 989 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 990 | dependencies: 991 | circular-json "^0.3.1" 992 | del "^2.0.2" 993 | graceful-fs "^4.1.2" 994 | write "^0.2.1" 995 | 996 | for-in@^1.0.1: 997 | version "1.0.2" 998 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 999 | 1000 | for-own@^0.1.4: 1001 | version "0.1.5" 1002 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1003 | dependencies: 1004 | for-in "^1.0.1" 1005 | 1006 | forever-agent@~0.6.1: 1007 | version "0.6.1" 1008 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1009 | 1010 | form-data@~2.1.1: 1011 | version "2.1.4" 1012 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1013 | dependencies: 1014 | asynckit "^0.4.0" 1015 | combined-stream "^1.0.5" 1016 | mime-types "^2.1.12" 1017 | 1018 | fs.realpath@^1.0.0: 1019 | version "1.0.0" 1020 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1021 | 1022 | function-bind@^1.0.2: 1023 | version "1.1.0" 1024 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1025 | 1026 | generate-function@^2.0.0: 1027 | version "2.0.0" 1028 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1029 | 1030 | generate-object-property@^1.1.0: 1031 | version "1.2.0" 1032 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1033 | dependencies: 1034 | is-property "^1.0.0" 1035 | 1036 | get-caller-file@^1.0.1: 1037 | version "1.0.2" 1038 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1039 | 1040 | getpass@^0.1.1: 1041 | version "0.1.7" 1042 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1043 | dependencies: 1044 | assert-plus "^1.0.0" 1045 | 1046 | glob-base@^0.3.0: 1047 | version "0.3.0" 1048 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1049 | dependencies: 1050 | glob-parent "^2.0.0" 1051 | is-glob "^2.0.0" 1052 | 1053 | glob-parent@^2.0.0: 1054 | version "2.0.0" 1055 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1056 | dependencies: 1057 | is-glob "^2.0.0" 1058 | 1059 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1060 | version "7.1.2" 1061 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1062 | dependencies: 1063 | fs.realpath "^1.0.0" 1064 | inflight "^1.0.4" 1065 | inherits "2" 1066 | minimatch "^3.0.4" 1067 | once "^1.3.0" 1068 | path-is-absolute "^1.0.0" 1069 | 1070 | globals@^9.0.0, globals@^9.14.0: 1071 | version "9.18.0" 1072 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1073 | 1074 | globby@^5.0.0: 1075 | version "5.0.0" 1076 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1077 | dependencies: 1078 | array-union "^1.0.1" 1079 | arrify "^1.0.0" 1080 | glob "^7.0.3" 1081 | object-assign "^4.0.1" 1082 | pify "^2.0.0" 1083 | pinkie-promise "^2.0.0" 1084 | 1085 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1086 | version "4.1.11" 1087 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1088 | 1089 | growly@^1.3.0: 1090 | version "1.3.0" 1091 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1092 | 1093 | h2o2@^5.4.0: 1094 | version "5.4.0" 1095 | resolved "https://registry.yarnpkg.com/h2o2/-/h2o2-5.4.0.tgz#d6857ca05355200c890b34a66606caba0229ed58" 1096 | dependencies: 1097 | boom "3.X.X" 1098 | hoek "4.X.X" 1099 | joi "9.X.X" 1100 | wreck "9.X.X" 1101 | 1102 | handlebars@^4.0.3: 1103 | version "4.0.10" 1104 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1105 | dependencies: 1106 | async "^1.4.0" 1107 | optimist "^0.6.1" 1108 | source-map "^0.4.4" 1109 | optionalDependencies: 1110 | uglify-js "^2.6" 1111 | 1112 | hapi-cors-headers@^1.0.0: 1113 | version "1.0.0" 1114 | resolved "https://registry.yarnpkg.com/hapi-cors-headers/-/hapi-cors-headers-1.0.0.tgz#ab01318aff3d3a4aa8a4b90e250b509d6d8928f0" 1115 | 1116 | hapi@14.2.0: 1117 | version "14.2.0" 1118 | resolved "https://registry.yarnpkg.com/hapi/-/hapi-14.2.0.tgz#e4fe2fc182598a0f81e87b41b6be0fbd31c75409" 1119 | dependencies: 1120 | accept "2.x.x" 1121 | ammo "2.x.x" 1122 | boom "3.x.x" 1123 | call "3.x.x" 1124 | catbox "7.x.x" 1125 | catbox-memory "2.x.x" 1126 | cryptiles "3.x.x" 1127 | heavy "4.x.x" 1128 | hoek "4.x.x" 1129 | iron "4.x.x" 1130 | items "2.x.x" 1131 | joi "9.x.x" 1132 | kilt "2.x.x" 1133 | mimos "3.x.x" 1134 | peekaboo "2.x.x" 1135 | shot "3.x.x" 1136 | statehood "4.x.x" 1137 | subtext "4.x.x" 1138 | topo "2.x.x" 1139 | 1140 | har-schema@^1.0.5: 1141 | version "1.0.5" 1142 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1143 | 1144 | har-validator@~4.2.1: 1145 | version "4.2.1" 1146 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1147 | dependencies: 1148 | ajv "^4.9.1" 1149 | har-schema "^1.0.5" 1150 | 1151 | has-ansi@^2.0.0: 1152 | version "2.0.0" 1153 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1154 | dependencies: 1155 | ansi-regex "^2.0.0" 1156 | 1157 | has-flag@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1160 | 1161 | has@^1.0.1: 1162 | version "1.0.1" 1163 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1164 | dependencies: 1165 | function-bind "^1.0.2" 1166 | 1167 | hawk@~3.1.3: 1168 | version "3.1.3" 1169 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1170 | dependencies: 1171 | boom "2.x.x" 1172 | cryptiles "2.x.x" 1173 | hoek "2.x.x" 1174 | sntp "1.x.x" 1175 | 1176 | heavy@4.x.x: 1177 | version "4.0.4" 1178 | resolved "https://registry.yarnpkg.com/heavy/-/heavy-4.0.4.tgz#36c91336c00ccfe852caa4d153086335cd2f00e9" 1179 | dependencies: 1180 | boom "5.x.x" 1181 | hoek "4.x.x" 1182 | joi "10.x.x" 1183 | 1184 | hoek@2.x.x: 1185 | version "2.16.3" 1186 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1187 | 1188 | hoek@4.X.X, hoek@4.x.x: 1189 | version "4.1.1" 1190 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.1.1.tgz#9cc573ffba2b7b408fb5e9c2a13796be94cddce9" 1191 | 1192 | home-or-tmp@^2.0.0: 1193 | version "2.0.0" 1194 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1195 | dependencies: 1196 | os-homedir "^1.0.0" 1197 | os-tmpdir "^1.0.1" 1198 | 1199 | hosted-git-info@^2.1.4: 1200 | version "2.5.0" 1201 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1202 | 1203 | html-encoding-sniffer@^1.0.1: 1204 | version "1.0.1" 1205 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1206 | dependencies: 1207 | whatwg-encoding "^1.0.1" 1208 | 1209 | http-signature@~1.1.0: 1210 | version "1.1.1" 1211 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1212 | dependencies: 1213 | assert-plus "^0.2.0" 1214 | jsprim "^1.2.2" 1215 | sshpk "^1.7.0" 1216 | 1217 | iconv-lite@0.4.13: 1218 | version "0.4.13" 1219 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1220 | 1221 | ignore@^3.2.0: 1222 | version "3.3.3" 1223 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1224 | 1225 | imurmurhash@^0.1.4: 1226 | version "0.1.4" 1227 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1228 | 1229 | inflight@^1.0.4: 1230 | version "1.0.6" 1231 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1232 | dependencies: 1233 | once "^1.3.0" 1234 | wrappy "1" 1235 | 1236 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1237 | version "2.0.3" 1238 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1239 | 1240 | inquirer@^0.12.0: 1241 | version "0.12.0" 1242 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1243 | dependencies: 1244 | ansi-escapes "^1.1.0" 1245 | ansi-regex "^2.0.0" 1246 | chalk "^1.0.0" 1247 | cli-cursor "^1.0.1" 1248 | cli-width "^2.0.0" 1249 | figures "^1.3.5" 1250 | lodash "^4.3.0" 1251 | readline2 "^1.0.1" 1252 | run-async "^0.1.0" 1253 | rx-lite "^3.1.2" 1254 | string-width "^1.0.1" 1255 | strip-ansi "^3.0.0" 1256 | through "^2.3.6" 1257 | 1258 | interpret@^1.0.0: 1259 | version "1.0.3" 1260 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1261 | 1262 | invariant@^2.2.0: 1263 | version "2.2.2" 1264 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1265 | dependencies: 1266 | loose-envify "^1.0.0" 1267 | 1268 | invert-kv@^1.0.0: 1269 | version "1.0.0" 1270 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1271 | 1272 | iron@4.x.x: 1273 | version "4.0.5" 1274 | resolved "https://registry.yarnpkg.com/iron/-/iron-4.0.5.tgz#4f042cceb8b9738f346b59aa734c83a89bc31428" 1275 | dependencies: 1276 | boom "5.x.x" 1277 | cryptiles "3.x.x" 1278 | hoek "4.x.x" 1279 | 1280 | is-arrayish@^0.2.1: 1281 | version "0.2.1" 1282 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1283 | 1284 | is-buffer@^1.1.5: 1285 | version "1.1.5" 1286 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1287 | 1288 | is-builtin-module@^1.0.0: 1289 | version "1.0.0" 1290 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1291 | dependencies: 1292 | builtin-modules "^1.0.0" 1293 | 1294 | is-ci@^1.0.10: 1295 | version "1.0.10" 1296 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1297 | dependencies: 1298 | ci-info "^1.0.0" 1299 | 1300 | is-dotfile@^1.0.0: 1301 | version "1.0.3" 1302 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1303 | 1304 | is-equal-shallow@^0.1.3: 1305 | version "0.1.3" 1306 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1307 | dependencies: 1308 | is-primitive "^2.0.0" 1309 | 1310 | is-extendable@^0.1.1: 1311 | version "0.1.1" 1312 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1313 | 1314 | is-extglob@^1.0.0: 1315 | version "1.0.0" 1316 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1317 | 1318 | is-finite@^1.0.0: 1319 | version "1.0.2" 1320 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1321 | dependencies: 1322 | number-is-nan "^1.0.0" 1323 | 1324 | is-fullwidth-code-point@^1.0.0: 1325 | version "1.0.0" 1326 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1327 | dependencies: 1328 | number-is-nan "^1.0.0" 1329 | 1330 | is-fullwidth-code-point@^2.0.0: 1331 | version "2.0.0" 1332 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1333 | 1334 | is-glob@^2.0.0, is-glob@^2.0.1: 1335 | version "2.0.1" 1336 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1337 | dependencies: 1338 | is-extglob "^1.0.0" 1339 | 1340 | is-my-json-valid@^2.10.0: 1341 | version "2.16.0" 1342 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1343 | dependencies: 1344 | generate-function "^2.0.0" 1345 | generate-object-property "^1.1.0" 1346 | jsonpointer "^4.0.0" 1347 | xtend "^4.0.0" 1348 | 1349 | is-number@^2.1.0: 1350 | version "2.1.0" 1351 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1352 | dependencies: 1353 | kind-of "^3.0.2" 1354 | 1355 | is-number@^3.0.0: 1356 | version "3.0.0" 1357 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1358 | dependencies: 1359 | kind-of "^3.0.2" 1360 | 1361 | is-path-cwd@^1.0.0: 1362 | version "1.0.0" 1363 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1364 | 1365 | is-path-in-cwd@^1.0.0: 1366 | version "1.0.0" 1367 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1368 | dependencies: 1369 | is-path-inside "^1.0.0" 1370 | 1371 | is-path-inside@^1.0.0: 1372 | version "1.0.0" 1373 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1374 | dependencies: 1375 | path-is-inside "^1.0.1" 1376 | 1377 | is-posix-bracket@^0.1.0: 1378 | version "0.1.1" 1379 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1380 | 1381 | is-primitive@^2.0.0: 1382 | version "2.0.0" 1383 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1384 | 1385 | is-property@^1.0.0: 1386 | version "1.0.2" 1387 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1388 | 1389 | is-resolvable@^1.0.0: 1390 | version "1.0.0" 1391 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1392 | dependencies: 1393 | tryit "^1.0.1" 1394 | 1395 | is-typedarray@~1.0.0: 1396 | version "1.0.0" 1397 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1398 | 1399 | is-utf8@^0.2.0: 1400 | version "0.2.1" 1401 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1402 | 1403 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1406 | 1407 | isemail@1.x.x: 1408 | version "1.2.0" 1409 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 1410 | 1411 | isemail@2.x.x: 1412 | version "2.2.1" 1413 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-2.2.1.tgz#0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6" 1414 | 1415 | isexe@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1418 | 1419 | isobject@^2.0.0: 1420 | version "2.1.0" 1421 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1422 | dependencies: 1423 | isarray "1.0.0" 1424 | 1425 | isstream@~0.1.2: 1426 | version "0.1.2" 1427 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1428 | 1429 | istanbul-api@^1.1.1: 1430 | version "1.1.10" 1431 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 1432 | dependencies: 1433 | async "^2.1.4" 1434 | fileset "^2.0.2" 1435 | istanbul-lib-coverage "^1.1.1" 1436 | istanbul-lib-hook "^1.0.7" 1437 | istanbul-lib-instrument "^1.7.3" 1438 | istanbul-lib-report "^1.1.1" 1439 | istanbul-lib-source-maps "^1.2.1" 1440 | istanbul-reports "^1.1.1" 1441 | js-yaml "^3.7.0" 1442 | mkdirp "^0.5.1" 1443 | once "^1.4.0" 1444 | 1445 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1446 | version "1.1.1" 1447 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1448 | 1449 | istanbul-lib-hook@^1.0.7: 1450 | version "1.0.7" 1451 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1452 | dependencies: 1453 | append-transform "^0.4.0" 1454 | 1455 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 1456 | version "1.7.3" 1457 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 1458 | dependencies: 1459 | babel-generator "^6.18.0" 1460 | babel-template "^6.16.0" 1461 | babel-traverse "^6.18.0" 1462 | babel-types "^6.18.0" 1463 | babylon "^6.17.4" 1464 | istanbul-lib-coverage "^1.1.1" 1465 | semver "^5.3.0" 1466 | 1467 | istanbul-lib-report@^1.1.1: 1468 | version "1.1.1" 1469 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1470 | dependencies: 1471 | istanbul-lib-coverage "^1.1.1" 1472 | mkdirp "^0.5.1" 1473 | path-parse "^1.0.5" 1474 | supports-color "^3.1.2" 1475 | 1476 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1477 | version "1.2.1" 1478 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1479 | dependencies: 1480 | debug "^2.6.3" 1481 | istanbul-lib-coverage "^1.1.1" 1482 | mkdirp "^0.5.1" 1483 | rimraf "^2.6.1" 1484 | source-map "^0.5.3" 1485 | 1486 | istanbul-reports@^1.1.1: 1487 | version "1.1.1" 1488 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1489 | dependencies: 1490 | handlebars "^4.0.3" 1491 | 1492 | items@2.x.x: 1493 | version "2.1.1" 1494 | resolved "https://registry.yarnpkg.com/items/-/items-2.1.1.tgz#8bd16d9c83b19529de5aea321acaada78364a198" 1495 | 1496 | jest-changed-files@^20.0.3: 1497 | version "20.0.3" 1498 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1499 | 1500 | jest-cli@^20.0.4: 1501 | version "20.0.4" 1502 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1503 | dependencies: 1504 | ansi-escapes "^1.4.0" 1505 | callsites "^2.0.0" 1506 | chalk "^1.1.3" 1507 | graceful-fs "^4.1.11" 1508 | is-ci "^1.0.10" 1509 | istanbul-api "^1.1.1" 1510 | istanbul-lib-coverage "^1.0.1" 1511 | istanbul-lib-instrument "^1.4.2" 1512 | istanbul-lib-source-maps "^1.1.0" 1513 | jest-changed-files "^20.0.3" 1514 | jest-config "^20.0.4" 1515 | jest-docblock "^20.0.3" 1516 | jest-environment-jsdom "^20.0.3" 1517 | jest-haste-map "^20.0.4" 1518 | jest-jasmine2 "^20.0.4" 1519 | jest-message-util "^20.0.3" 1520 | jest-regex-util "^20.0.3" 1521 | jest-resolve-dependencies "^20.0.3" 1522 | jest-runtime "^20.0.4" 1523 | jest-snapshot "^20.0.3" 1524 | jest-util "^20.0.3" 1525 | micromatch "^2.3.11" 1526 | node-notifier "^5.0.2" 1527 | pify "^2.3.0" 1528 | slash "^1.0.0" 1529 | string-length "^1.0.1" 1530 | throat "^3.0.0" 1531 | which "^1.2.12" 1532 | worker-farm "^1.3.1" 1533 | yargs "^7.0.2" 1534 | 1535 | jest-config@^20.0.4: 1536 | version "20.0.4" 1537 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1538 | dependencies: 1539 | chalk "^1.1.3" 1540 | glob "^7.1.1" 1541 | jest-environment-jsdom "^20.0.3" 1542 | jest-environment-node "^20.0.3" 1543 | jest-jasmine2 "^20.0.4" 1544 | jest-matcher-utils "^20.0.3" 1545 | jest-regex-util "^20.0.3" 1546 | jest-resolve "^20.0.4" 1547 | jest-validate "^20.0.3" 1548 | pretty-format "^20.0.3" 1549 | 1550 | jest-diff@^20.0.3: 1551 | version "20.0.3" 1552 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1553 | dependencies: 1554 | chalk "^1.1.3" 1555 | diff "^3.2.0" 1556 | jest-matcher-utils "^20.0.3" 1557 | pretty-format "^20.0.3" 1558 | 1559 | jest-docblock@^20.0.3: 1560 | version "20.0.3" 1561 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1562 | 1563 | jest-environment-jsdom@^20.0.3: 1564 | version "20.0.3" 1565 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1566 | dependencies: 1567 | jest-mock "^20.0.3" 1568 | jest-util "^20.0.3" 1569 | jsdom "^9.12.0" 1570 | 1571 | jest-environment-node@^20.0.3: 1572 | version "20.0.3" 1573 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1574 | dependencies: 1575 | jest-mock "^20.0.3" 1576 | jest-util "^20.0.3" 1577 | 1578 | jest-haste-map@^20.0.4: 1579 | version "20.0.4" 1580 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1581 | dependencies: 1582 | fb-watchman "^2.0.0" 1583 | graceful-fs "^4.1.11" 1584 | jest-docblock "^20.0.3" 1585 | micromatch "^2.3.11" 1586 | sane "~1.6.0" 1587 | worker-farm "^1.3.1" 1588 | 1589 | jest-jasmine2@^20.0.4: 1590 | version "20.0.4" 1591 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1592 | dependencies: 1593 | chalk "^1.1.3" 1594 | graceful-fs "^4.1.11" 1595 | jest-diff "^20.0.3" 1596 | jest-matcher-utils "^20.0.3" 1597 | jest-matchers "^20.0.3" 1598 | jest-message-util "^20.0.3" 1599 | jest-snapshot "^20.0.3" 1600 | once "^1.4.0" 1601 | p-map "^1.1.1" 1602 | 1603 | jest-matcher-utils@^20.0.3: 1604 | version "20.0.3" 1605 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1606 | dependencies: 1607 | chalk "^1.1.3" 1608 | pretty-format "^20.0.3" 1609 | 1610 | jest-matchers@^20.0.3: 1611 | version "20.0.3" 1612 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1613 | dependencies: 1614 | jest-diff "^20.0.3" 1615 | jest-matcher-utils "^20.0.3" 1616 | jest-message-util "^20.0.3" 1617 | jest-regex-util "^20.0.3" 1618 | 1619 | jest-message-util@^20.0.3: 1620 | version "20.0.3" 1621 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1622 | dependencies: 1623 | chalk "^1.1.3" 1624 | micromatch "^2.3.11" 1625 | slash "^1.0.0" 1626 | 1627 | jest-mock@^20.0.3: 1628 | version "20.0.3" 1629 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1630 | 1631 | jest-regex-util@^20.0.3: 1632 | version "20.0.3" 1633 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1634 | 1635 | jest-resolve-dependencies@^20.0.3: 1636 | version "20.0.3" 1637 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1638 | dependencies: 1639 | jest-regex-util "^20.0.3" 1640 | 1641 | jest-resolve@^20.0.4: 1642 | version "20.0.4" 1643 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1644 | dependencies: 1645 | browser-resolve "^1.11.2" 1646 | is-builtin-module "^1.0.0" 1647 | resolve "^1.3.2" 1648 | 1649 | jest-runtime@^20.0.4: 1650 | version "20.0.4" 1651 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1652 | dependencies: 1653 | babel-core "^6.0.0" 1654 | babel-jest "^20.0.3" 1655 | babel-plugin-istanbul "^4.0.0" 1656 | chalk "^1.1.3" 1657 | convert-source-map "^1.4.0" 1658 | graceful-fs "^4.1.11" 1659 | jest-config "^20.0.4" 1660 | jest-haste-map "^20.0.4" 1661 | jest-regex-util "^20.0.3" 1662 | jest-resolve "^20.0.4" 1663 | jest-util "^20.0.3" 1664 | json-stable-stringify "^1.0.1" 1665 | micromatch "^2.3.11" 1666 | strip-bom "3.0.0" 1667 | yargs "^7.0.2" 1668 | 1669 | jest-snapshot@^20.0.3: 1670 | version "20.0.3" 1671 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1672 | dependencies: 1673 | chalk "^1.1.3" 1674 | jest-diff "^20.0.3" 1675 | jest-matcher-utils "^20.0.3" 1676 | jest-util "^20.0.3" 1677 | natural-compare "^1.4.0" 1678 | pretty-format "^20.0.3" 1679 | 1680 | jest-util@^20.0.3: 1681 | version "20.0.3" 1682 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1683 | dependencies: 1684 | chalk "^1.1.3" 1685 | graceful-fs "^4.1.11" 1686 | jest-message-util "^20.0.3" 1687 | jest-mock "^20.0.3" 1688 | jest-validate "^20.0.3" 1689 | leven "^2.1.0" 1690 | mkdirp "^0.5.1" 1691 | 1692 | jest-validate@^20.0.3: 1693 | version "20.0.3" 1694 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1695 | dependencies: 1696 | chalk "^1.1.3" 1697 | jest-matcher-utils "^20.0.3" 1698 | leven "^2.1.0" 1699 | pretty-format "^20.0.3" 1700 | 1701 | jest@^20.0.4: 1702 | version "20.0.4" 1703 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1704 | dependencies: 1705 | jest-cli "^20.0.4" 1706 | 1707 | joi@10.x.x: 1708 | version "10.6.0" 1709 | resolved "https://registry.yarnpkg.com/joi/-/joi-10.6.0.tgz#52587f02d52b8b75cdb0c74f0b164a191a0e1fc2" 1710 | dependencies: 1711 | hoek "4.x.x" 1712 | isemail "2.x.x" 1713 | items "2.x.x" 1714 | topo "2.x.x" 1715 | 1716 | joi@9.X.X, joi@9.x.x: 1717 | version "9.2.0" 1718 | resolved "https://registry.yarnpkg.com/joi/-/joi-9.2.0.tgz#3385ac790192130cbe230e802ec02c9215bbfeda" 1719 | dependencies: 1720 | hoek "4.x.x" 1721 | isemail "2.x.x" 1722 | items "2.x.x" 1723 | moment "2.x.x" 1724 | topo "2.x.x" 1725 | 1726 | joi@^6.10.1: 1727 | version "6.10.1" 1728 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 1729 | dependencies: 1730 | hoek "2.x.x" 1731 | isemail "1.x.x" 1732 | moment "2.x.x" 1733 | topo "1.x.x" 1734 | 1735 | js-string-escape@^1.0.1: 1736 | version "1.0.1" 1737 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 1738 | 1739 | js-tokens@^3.0.0: 1740 | version "3.0.2" 1741 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1742 | 1743 | js-yaml@^3.5.1, js-yaml@^3.7.0: 1744 | version "3.8.4" 1745 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1746 | dependencies: 1747 | argparse "^1.0.7" 1748 | esprima "^3.1.1" 1749 | 1750 | jsbn@~0.1.0: 1751 | version "0.1.1" 1752 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1753 | 1754 | jsdom@^9.12.0: 1755 | version "9.12.0" 1756 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1757 | dependencies: 1758 | abab "^1.0.3" 1759 | acorn "^4.0.4" 1760 | acorn-globals "^3.1.0" 1761 | array-equal "^1.0.0" 1762 | content-type-parser "^1.0.1" 1763 | cssom ">= 0.3.2 < 0.4.0" 1764 | cssstyle ">= 0.2.37 < 0.3.0" 1765 | escodegen "^1.6.1" 1766 | html-encoding-sniffer "^1.0.1" 1767 | nwmatcher ">= 1.3.9 < 2.0.0" 1768 | parse5 "^1.5.1" 1769 | request "^2.79.0" 1770 | sax "^1.2.1" 1771 | symbol-tree "^3.2.1" 1772 | tough-cookie "^2.3.2" 1773 | webidl-conversions "^4.0.0" 1774 | whatwg-encoding "^1.0.1" 1775 | whatwg-url "^4.3.0" 1776 | xml-name-validator "^2.0.1" 1777 | 1778 | jsesc@^1.3.0: 1779 | version "1.3.0" 1780 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1781 | 1782 | json-schema@0.2.3: 1783 | version "0.2.3" 1784 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1785 | 1786 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1787 | version "1.0.1" 1788 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1789 | dependencies: 1790 | jsonify "~0.0.0" 1791 | 1792 | json-stringify-safe@~5.0.1: 1793 | version "5.0.1" 1794 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1795 | 1796 | json5@^0.5.0: 1797 | version "0.5.1" 1798 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1799 | 1800 | jsonify@~0.0.0: 1801 | version "0.0.0" 1802 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1803 | 1804 | jsonpath-plus@^0.16.0: 1805 | version "0.16.0" 1806 | resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-0.16.0.tgz#fe441b23f03ec6979a5603513988cd3edb7db5dc" 1807 | 1808 | jsonpointer@^4.0.0: 1809 | version "4.0.1" 1810 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1811 | 1812 | jsonwebtoken@^7.4.1: 1813 | version "7.4.1" 1814 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-7.4.1.tgz#7ca324f5215f8be039cd35a6c45bb8cb74a448fb" 1815 | dependencies: 1816 | joi "^6.10.1" 1817 | jws "^3.1.4" 1818 | lodash.once "^4.0.0" 1819 | ms "^2.0.0" 1820 | xtend "^4.0.1" 1821 | 1822 | jsprim@^1.2.2: 1823 | version "1.4.0" 1824 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1825 | dependencies: 1826 | assert-plus "1.0.0" 1827 | extsprintf "1.0.2" 1828 | json-schema "0.2.3" 1829 | verror "1.3.6" 1830 | 1831 | jwa@^1.1.4: 1832 | version "1.1.5" 1833 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5" 1834 | dependencies: 1835 | base64url "2.0.0" 1836 | buffer-equal-constant-time "1.0.1" 1837 | ecdsa-sig-formatter "1.0.9" 1838 | safe-buffer "^5.0.1" 1839 | 1840 | jws@^3.1.4: 1841 | version "3.1.4" 1842 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2" 1843 | dependencies: 1844 | base64url "^2.0.0" 1845 | jwa "^1.1.4" 1846 | safe-buffer "^5.0.1" 1847 | 1848 | kilt@2.x.x: 1849 | version "2.0.2" 1850 | resolved "https://registry.yarnpkg.com/kilt/-/kilt-2.0.2.tgz#04d7183c298a1232efddf7ddca5959a8f6301e20" 1851 | dependencies: 1852 | hoek "4.x.x" 1853 | 1854 | kind-of@^3.0.2: 1855 | version "3.2.2" 1856 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1857 | dependencies: 1858 | is-buffer "^1.1.5" 1859 | 1860 | kind-of@^4.0.0: 1861 | version "4.0.0" 1862 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1863 | dependencies: 1864 | is-buffer "^1.1.5" 1865 | 1866 | lambda-leak@^2.0.0: 1867 | version "2.0.0" 1868 | resolved "https://registry.yarnpkg.com/lambda-leak/-/lambda-leak-2.0.0.tgz#771985d3628487f6e885afae2b54510dcfb2cd7e" 1869 | 1870 | lambda-tester@^3.0.2: 1871 | version "3.0.2" 1872 | resolved "https://registry.yarnpkg.com/lambda-tester/-/lambda-tester-3.0.2.tgz#c94342f29bb5e178925e9990693b673e4f2b84b5" 1873 | dependencies: 1874 | app-root-path "^2.0.1" 1875 | dotenv "^4.0.0" 1876 | lambda-leak "^2.0.0" 1877 | uuid "^3.0.1" 1878 | vandium-utils "^1.1.1" 1879 | 1880 | lazy-cache@^1.0.3: 1881 | version "1.0.4" 1882 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1883 | 1884 | lcid@^1.0.0: 1885 | version "1.0.0" 1886 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1887 | dependencies: 1888 | invert-kv "^1.0.0" 1889 | 1890 | leven@^2.1.0: 1891 | version "2.1.0" 1892 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1893 | 1894 | levn@^0.3.0, levn@~0.3.0: 1895 | version "0.3.0" 1896 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1897 | dependencies: 1898 | prelude-ls "~1.1.2" 1899 | type-check "~0.3.2" 1900 | 1901 | load-json-file@^1.0.0: 1902 | version "1.1.0" 1903 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1904 | dependencies: 1905 | graceful-fs "^4.1.2" 1906 | parse-json "^2.2.0" 1907 | pify "^2.0.0" 1908 | pinkie-promise "^2.0.0" 1909 | strip-bom "^2.0.0" 1910 | 1911 | load-json-file@^2.0.0: 1912 | version "2.0.0" 1913 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1914 | dependencies: 1915 | graceful-fs "^4.1.2" 1916 | parse-json "^2.2.0" 1917 | pify "^2.0.0" 1918 | strip-bom "^3.0.0" 1919 | 1920 | locate-path@^2.0.0: 1921 | version "2.0.0" 1922 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1923 | dependencies: 1924 | p-locate "^2.0.0" 1925 | path-exists "^3.0.0" 1926 | 1927 | lodash.cond@^4.3.0: 1928 | version "4.5.2" 1929 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1930 | 1931 | lodash.once@^4.0.0: 1932 | version "4.1.1" 1933 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 1934 | 1935 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1936 | version "4.17.4" 1937 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1938 | 1939 | longest@^1.0.1: 1940 | version "1.0.1" 1941 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1942 | 1943 | loose-envify@^1.0.0: 1944 | version "1.3.1" 1945 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1946 | dependencies: 1947 | js-tokens "^3.0.0" 1948 | 1949 | makeerror@1.0.x: 1950 | version "1.0.11" 1951 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1952 | dependencies: 1953 | tmpl "1.0.x" 1954 | 1955 | merge@^1.1.3: 1956 | version "1.2.0" 1957 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1958 | 1959 | micromatch@^2.1.5, micromatch@^2.3.11: 1960 | version "2.3.11" 1961 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1962 | dependencies: 1963 | arr-diff "^2.0.0" 1964 | array-unique "^0.2.1" 1965 | braces "^1.8.2" 1966 | expand-brackets "^0.1.4" 1967 | extglob "^0.3.1" 1968 | filename-regex "^2.0.0" 1969 | is-extglob "^1.0.0" 1970 | is-glob "^2.0.1" 1971 | kind-of "^3.0.2" 1972 | normalize-path "^2.0.1" 1973 | object.omit "^2.0.0" 1974 | parse-glob "^3.0.4" 1975 | regex-cache "^0.4.2" 1976 | 1977 | mime-db@1.x.x, mime-db@~1.27.0: 1978 | version "1.27.0" 1979 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1980 | 1981 | mime-types@^2.1.12, mime-types@~2.1.7: 1982 | version "2.1.15" 1983 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1984 | dependencies: 1985 | mime-db "~1.27.0" 1986 | 1987 | mimos@3.x.x: 1988 | version "3.0.3" 1989 | resolved "https://registry.yarnpkg.com/mimos/-/mimos-3.0.3.tgz#b9109072ad378c2b72f6a0101c43ddfb2b36641f" 1990 | dependencies: 1991 | hoek "4.x.x" 1992 | mime-db "1.x.x" 1993 | 1994 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1995 | version "3.0.4" 1996 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1997 | dependencies: 1998 | brace-expansion "^1.1.7" 1999 | 2000 | minimist@0.0.8, minimist@~0.0.1: 2001 | version "0.0.8" 2002 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2003 | 2004 | minimist@^1.1.1: 2005 | version "1.2.0" 2006 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2007 | 2008 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2009 | version "0.5.1" 2010 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2011 | dependencies: 2012 | minimist "0.0.8" 2013 | 2014 | moment@2.x.x: 2015 | version "2.18.1" 2016 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f" 2017 | 2018 | ms@2.0.0, ms@^2.0.0: 2019 | version "2.0.0" 2020 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2021 | 2022 | mute-stream@0.0.5: 2023 | version "0.0.5" 2024 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2025 | 2026 | natural-compare@^1.4.0: 2027 | version "1.4.0" 2028 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2029 | 2030 | nigel@2.x.x: 2031 | version "2.0.2" 2032 | resolved "https://registry.yarnpkg.com/nigel/-/nigel-2.0.2.tgz#93a1866fb0c52d87390aa75e2b161f4b5c75e5b1" 2033 | dependencies: 2034 | hoek "4.x.x" 2035 | vise "2.x.x" 2036 | 2037 | node-int64@^0.4.0: 2038 | version "0.4.0" 2039 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2040 | 2041 | node-notifier@^5.0.2: 2042 | version "5.1.2" 2043 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2044 | dependencies: 2045 | growly "^1.3.0" 2046 | semver "^5.3.0" 2047 | shellwords "^0.1.0" 2048 | which "^1.2.12" 2049 | 2050 | normalize-package-data@^2.3.2: 2051 | version "2.4.0" 2052 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2053 | dependencies: 2054 | hosted-git-info "^2.1.4" 2055 | is-builtin-module "^1.0.0" 2056 | semver "2 || 3 || 4 || 5" 2057 | validate-npm-package-license "^3.0.1" 2058 | 2059 | normalize-path@^2.0.1: 2060 | version "2.1.1" 2061 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2062 | dependencies: 2063 | remove-trailing-separator "^1.0.1" 2064 | 2065 | number-is-nan@^1.0.0: 2066 | version "1.0.1" 2067 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2068 | 2069 | "nwmatcher@>= 1.3.9 < 2.0.0": 2070 | version "1.4.1" 2071 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2072 | 2073 | oauth-sign@~0.8.1: 2074 | version "0.8.2" 2075 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2076 | 2077 | object-assign@^4.0.1, object-assign@^4.1.0: 2078 | version "4.1.1" 2079 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2080 | 2081 | object.omit@^2.0.0: 2082 | version "2.0.1" 2083 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2084 | dependencies: 2085 | for-own "^0.1.4" 2086 | is-extendable "^0.1.1" 2087 | 2088 | once@^1.3.0, once@^1.4.0: 2089 | version "1.4.0" 2090 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2091 | dependencies: 2092 | wrappy "1" 2093 | 2094 | onetime@^1.0.0: 2095 | version "1.1.0" 2096 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2097 | 2098 | optimist@^0.6.1: 2099 | version "0.6.1" 2100 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2101 | dependencies: 2102 | minimist "~0.0.1" 2103 | wordwrap "~0.0.2" 2104 | 2105 | optionator@^0.8.1, optionator@^0.8.2: 2106 | version "0.8.2" 2107 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2108 | dependencies: 2109 | deep-is "~0.1.3" 2110 | fast-levenshtein "~2.0.4" 2111 | levn "~0.3.0" 2112 | prelude-ls "~1.1.2" 2113 | type-check "~0.3.2" 2114 | wordwrap "~1.0.0" 2115 | 2116 | os-homedir@^1.0.0: 2117 | version "1.0.2" 2118 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2119 | 2120 | os-locale@^1.4.0: 2121 | version "1.4.0" 2122 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2123 | dependencies: 2124 | lcid "^1.0.0" 2125 | 2126 | os-tmpdir@^1.0.1: 2127 | version "1.0.2" 2128 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2129 | 2130 | p-limit@^1.1.0: 2131 | version "1.1.0" 2132 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2133 | 2134 | p-locate@^2.0.0: 2135 | version "2.0.0" 2136 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2137 | dependencies: 2138 | p-limit "^1.1.0" 2139 | 2140 | p-map@^1.1.1: 2141 | version "1.1.1" 2142 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2143 | 2144 | parse-glob@^3.0.4: 2145 | version "3.0.4" 2146 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2147 | dependencies: 2148 | glob-base "^0.3.0" 2149 | is-dotfile "^1.0.0" 2150 | is-extglob "^1.0.0" 2151 | is-glob "^2.0.0" 2152 | 2153 | parse-json@^2.2.0: 2154 | version "2.2.0" 2155 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2156 | dependencies: 2157 | error-ex "^1.2.0" 2158 | 2159 | parse5@^1.5.1: 2160 | version "1.5.1" 2161 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2162 | 2163 | path-exists@^2.0.0: 2164 | version "2.1.0" 2165 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2166 | dependencies: 2167 | pinkie-promise "^2.0.0" 2168 | 2169 | path-exists@^3.0.0: 2170 | version "3.0.0" 2171 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2172 | 2173 | path-is-absolute@^1.0.0: 2174 | version "1.0.1" 2175 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2176 | 2177 | path-is-inside@^1.0.1: 2178 | version "1.0.2" 2179 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2180 | 2181 | path-parse@^1.0.5: 2182 | version "1.0.5" 2183 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2184 | 2185 | path-type@^1.0.0: 2186 | version "1.1.0" 2187 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2188 | dependencies: 2189 | graceful-fs "^4.1.2" 2190 | pify "^2.0.0" 2191 | pinkie-promise "^2.0.0" 2192 | 2193 | path-type@^2.0.0: 2194 | version "2.0.0" 2195 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2196 | dependencies: 2197 | pify "^2.0.0" 2198 | 2199 | peekaboo@2.x.x: 2200 | version "2.0.2" 2201 | resolved "https://registry.yarnpkg.com/peekaboo/-/peekaboo-2.0.2.tgz#fc42e139efd698c6ff2870a6b20c047cd9aa29ff" 2202 | 2203 | performance-now@^0.2.0: 2204 | version "0.2.0" 2205 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2206 | 2207 | pez@2.x.x: 2208 | version "2.1.5" 2209 | resolved "https://registry.yarnpkg.com/pez/-/pez-2.1.5.tgz#5ec2cc62500cc3eb4236d4a414cf5a17b5eb5007" 2210 | dependencies: 2211 | b64 "3.x.x" 2212 | boom "5.x.x" 2213 | content "3.x.x" 2214 | hoek "4.x.x" 2215 | nigel "2.x.x" 2216 | 2217 | pify@^2.0.0, pify@^2.3.0: 2218 | version "2.3.0" 2219 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2220 | 2221 | pinkie-promise@^2.0.0: 2222 | version "2.0.1" 2223 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2224 | dependencies: 2225 | pinkie "^2.0.0" 2226 | 2227 | pinkie@^2.0.0: 2228 | version "2.0.4" 2229 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2230 | 2231 | pkg-dir@^1.0.0: 2232 | version "1.0.0" 2233 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2234 | dependencies: 2235 | find-up "^1.0.0" 2236 | 2237 | pluralize@^1.2.1: 2238 | version "1.2.1" 2239 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2240 | 2241 | prelude-ls@~1.1.2: 2242 | version "1.1.2" 2243 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2244 | 2245 | preserve@^0.2.0: 2246 | version "0.2.0" 2247 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2248 | 2249 | pretty-format@^20.0.3: 2250 | version "20.0.3" 2251 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2252 | dependencies: 2253 | ansi-regex "^2.1.1" 2254 | ansi-styles "^3.0.0" 2255 | 2256 | private@^0.1.6: 2257 | version "0.1.7" 2258 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2259 | 2260 | process-nextick-args@~1.0.6: 2261 | version "1.0.7" 2262 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2263 | 2264 | progress@^1.1.8: 2265 | version "1.1.8" 2266 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2267 | 2268 | prr@~0.0.0: 2269 | version "0.0.0" 2270 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2271 | 2272 | punycode@^1.4.1: 2273 | version "1.4.1" 2274 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2275 | 2276 | qs@~6.4.0: 2277 | version "6.4.0" 2278 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2279 | 2280 | randomatic@^1.1.3: 2281 | version "1.1.7" 2282 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2283 | dependencies: 2284 | is-number "^3.0.0" 2285 | kind-of "^4.0.0" 2286 | 2287 | read-pkg-up@^1.0.1: 2288 | version "1.0.1" 2289 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2290 | dependencies: 2291 | find-up "^1.0.0" 2292 | read-pkg "^1.0.0" 2293 | 2294 | read-pkg-up@^2.0.0: 2295 | version "2.0.0" 2296 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2297 | dependencies: 2298 | find-up "^2.0.0" 2299 | read-pkg "^2.0.0" 2300 | 2301 | read-pkg@^1.0.0: 2302 | version "1.1.0" 2303 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2304 | dependencies: 2305 | load-json-file "^1.0.0" 2306 | normalize-package-data "^2.3.2" 2307 | path-type "^1.0.0" 2308 | 2309 | read-pkg@^2.0.0: 2310 | version "2.0.0" 2311 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2312 | dependencies: 2313 | load-json-file "^2.0.0" 2314 | normalize-package-data "^2.3.2" 2315 | path-type "^2.0.0" 2316 | 2317 | readable-stream@^2.2.2: 2318 | version "2.3.3" 2319 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2320 | dependencies: 2321 | core-util-is "~1.0.0" 2322 | inherits "~2.0.3" 2323 | isarray "~1.0.0" 2324 | process-nextick-args "~1.0.6" 2325 | safe-buffer "~5.1.1" 2326 | string_decoder "~1.0.3" 2327 | util-deprecate "~1.0.1" 2328 | 2329 | readline2@^1.0.1: 2330 | version "1.0.1" 2331 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2332 | dependencies: 2333 | code-point-at "^1.0.0" 2334 | is-fullwidth-code-point "^1.0.0" 2335 | mute-stream "0.0.5" 2336 | 2337 | rechoir@^0.6.2: 2338 | version "0.6.2" 2339 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2340 | dependencies: 2341 | resolve "^1.1.6" 2342 | 2343 | regenerator-runtime@^0.10.0: 2344 | version "0.10.5" 2345 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2346 | 2347 | regex-cache@^0.4.2: 2348 | version "0.4.3" 2349 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2350 | dependencies: 2351 | is-equal-shallow "^0.1.3" 2352 | is-primitive "^2.0.0" 2353 | 2354 | remove-trailing-separator@^1.0.1: 2355 | version "1.0.2" 2356 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2357 | 2358 | repeat-element@^1.1.2: 2359 | version "1.1.2" 2360 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2361 | 2362 | repeat-string@^1.5.2: 2363 | version "1.6.1" 2364 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2365 | 2366 | repeating@^2.0.0: 2367 | version "2.0.1" 2368 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2369 | dependencies: 2370 | is-finite "^1.0.0" 2371 | 2372 | request@^2.79.0: 2373 | version "2.81.0" 2374 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2375 | dependencies: 2376 | aws-sign2 "~0.6.0" 2377 | aws4 "^1.2.1" 2378 | caseless "~0.12.0" 2379 | combined-stream "~1.0.5" 2380 | extend "~3.0.0" 2381 | forever-agent "~0.6.1" 2382 | form-data "~2.1.1" 2383 | har-validator "~4.2.1" 2384 | hawk "~3.1.3" 2385 | http-signature "~1.1.0" 2386 | is-typedarray "~1.0.0" 2387 | isstream "~0.1.2" 2388 | json-stringify-safe "~5.0.1" 2389 | mime-types "~2.1.7" 2390 | oauth-sign "~0.8.1" 2391 | performance-now "^0.2.0" 2392 | qs "~6.4.0" 2393 | safe-buffer "^5.0.1" 2394 | stringstream "~0.0.4" 2395 | tough-cookie "~2.3.0" 2396 | tunnel-agent "^0.6.0" 2397 | uuid "^3.0.0" 2398 | 2399 | require-directory@^2.1.1: 2400 | version "2.1.1" 2401 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2402 | 2403 | require-main-filename@^1.0.1: 2404 | version "1.0.1" 2405 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2406 | 2407 | require-uncached@^1.0.2: 2408 | version "1.0.3" 2409 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2410 | dependencies: 2411 | caller-path "^0.1.0" 2412 | resolve-from "^1.0.0" 2413 | 2414 | resolve-from@^1.0.0: 2415 | version "1.0.1" 2416 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2417 | 2418 | resolve@1.1.7: 2419 | version "1.1.7" 2420 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2421 | 2422 | resolve@^1.1.6, resolve@^1.2.0, resolve@^1.3.2: 2423 | version "1.3.3" 2424 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2425 | dependencies: 2426 | path-parse "^1.0.5" 2427 | 2428 | restore-cursor@^1.0.1: 2429 | version "1.0.1" 2430 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2431 | dependencies: 2432 | exit-hook "^1.0.0" 2433 | onetime "^1.0.0" 2434 | 2435 | right-align@^0.1.1: 2436 | version "0.1.3" 2437 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2438 | dependencies: 2439 | align-text "^0.1.1" 2440 | 2441 | rimraf@^2.2.8, rimraf@^2.6.1: 2442 | version "2.6.1" 2443 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2444 | dependencies: 2445 | glob "^7.0.5" 2446 | 2447 | run-async@^0.1.0: 2448 | version "0.1.0" 2449 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2450 | dependencies: 2451 | once "^1.3.0" 2452 | 2453 | rx-lite@^3.1.2: 2454 | version "3.1.2" 2455 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2456 | 2457 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2458 | version "5.1.1" 2459 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2460 | 2461 | sane@~1.6.0: 2462 | version "1.6.0" 2463 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2464 | dependencies: 2465 | anymatch "^1.3.0" 2466 | exec-sh "^0.2.0" 2467 | fb-watchman "^1.8.0" 2468 | minimatch "^3.0.2" 2469 | minimist "^1.1.1" 2470 | walker "~1.0.5" 2471 | watch "~0.10.0" 2472 | 2473 | sax@^1.2.1: 2474 | version "1.2.4" 2475 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2476 | 2477 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2478 | version "5.3.0" 2479 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2480 | 2481 | serverless-offline@^3.15.0: 2482 | version "3.15.0" 2483 | resolved "https://registry.yarnpkg.com/serverless-offline/-/serverless-offline-3.15.0.tgz#b416587d58f3ed80055378a8e8772cce4c70a43e" 2484 | dependencies: 2485 | babel-register "^6.18.0" 2486 | boom "^4.2.0" 2487 | crypto "^0.0.3" 2488 | h2o2 "^5.4.0" 2489 | hapi "14.2.0" 2490 | hapi-cors-headers "^1.0.0" 2491 | js-string-escape "^1.0.1" 2492 | jsonpath-plus "^0.16.0" 2493 | lodash "^4.17.4" 2494 | velocityjs "^0.9.3" 2495 | 2496 | set-blocking@^2.0.0: 2497 | version "2.0.0" 2498 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2499 | 2500 | shelljs@^0.7.5: 2501 | version "0.7.8" 2502 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2503 | dependencies: 2504 | glob "^7.0.0" 2505 | interpret "^1.0.0" 2506 | rechoir "^0.6.2" 2507 | 2508 | shellwords@^0.1.0: 2509 | version "0.1.0" 2510 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2511 | 2512 | shot@3.x.x: 2513 | version "3.4.2" 2514 | resolved "https://registry.yarnpkg.com/shot/-/shot-3.4.2.tgz#1e5c3f6f2b26649adc42f7eb350214a5a0291d67" 2515 | dependencies: 2516 | hoek "4.x.x" 2517 | joi "10.x.x" 2518 | 2519 | slash@^1.0.0: 2520 | version "1.0.0" 2521 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2522 | 2523 | slice-ansi@0.0.4: 2524 | version "0.0.4" 2525 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2526 | 2527 | sntp@1.x.x: 2528 | version "1.0.9" 2529 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2530 | dependencies: 2531 | hoek "2.x.x" 2532 | 2533 | source-map-support@^0.4.2: 2534 | version "0.4.15" 2535 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2536 | dependencies: 2537 | source-map "^0.5.6" 2538 | 2539 | source-map@^0.4.4: 2540 | version "0.4.4" 2541 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2542 | dependencies: 2543 | amdefine ">=0.0.4" 2544 | 2545 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2546 | version "0.5.6" 2547 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2548 | 2549 | source-map@~0.2.0: 2550 | version "0.2.0" 2551 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2552 | dependencies: 2553 | amdefine ">=0.0.4" 2554 | 2555 | spdx-correct@~1.0.0: 2556 | version "1.0.2" 2557 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2558 | dependencies: 2559 | spdx-license-ids "^1.0.2" 2560 | 2561 | spdx-expression-parse@~1.0.0: 2562 | version "1.0.4" 2563 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2564 | 2565 | spdx-license-ids@^1.0.2: 2566 | version "1.2.2" 2567 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2568 | 2569 | sprintf-js@~1.0.2: 2570 | version "1.0.3" 2571 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2572 | 2573 | sshpk@^1.7.0: 2574 | version "1.13.1" 2575 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2576 | dependencies: 2577 | asn1 "~0.2.3" 2578 | assert-plus "^1.0.0" 2579 | dashdash "^1.12.0" 2580 | getpass "^0.1.1" 2581 | optionalDependencies: 2582 | bcrypt-pbkdf "^1.0.0" 2583 | ecc-jsbn "~0.1.1" 2584 | jsbn "~0.1.0" 2585 | tweetnacl "~0.14.0" 2586 | 2587 | statehood@4.x.x: 2588 | version "4.1.0" 2589 | resolved "https://registry.yarnpkg.com/statehood/-/statehood-4.1.0.tgz#8a2877d13d9850aab6ce877a54b778df0f43acdb" 2590 | dependencies: 2591 | boom "3.x.x" 2592 | cryptiles "3.x.x" 2593 | hoek "4.x.x" 2594 | iron "4.x.x" 2595 | items "2.x.x" 2596 | joi "9.x.x" 2597 | 2598 | string-length@^1.0.1: 2599 | version "1.0.1" 2600 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2601 | dependencies: 2602 | strip-ansi "^3.0.0" 2603 | 2604 | string-width@^1.0.1, string-width@^1.0.2: 2605 | version "1.0.2" 2606 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2607 | dependencies: 2608 | code-point-at "^1.0.0" 2609 | is-fullwidth-code-point "^1.0.0" 2610 | strip-ansi "^3.0.0" 2611 | 2612 | string-width@^2.0.0: 2613 | version "2.1.0" 2614 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.0.tgz#030664561fc146c9423ec7d978fe2457437fe6d0" 2615 | dependencies: 2616 | is-fullwidth-code-point "^2.0.0" 2617 | strip-ansi "^4.0.0" 2618 | 2619 | string_decoder@~1.0.3: 2620 | version "1.0.3" 2621 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2622 | dependencies: 2623 | safe-buffer "~5.1.0" 2624 | 2625 | stringstream@~0.0.4: 2626 | version "0.0.5" 2627 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2628 | 2629 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2630 | version "3.0.1" 2631 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2632 | dependencies: 2633 | ansi-regex "^2.0.0" 2634 | 2635 | strip-ansi@^4.0.0: 2636 | version "4.0.0" 2637 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2638 | dependencies: 2639 | ansi-regex "^3.0.0" 2640 | 2641 | strip-bom@3.0.0, strip-bom@^3.0.0: 2642 | version "3.0.0" 2643 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2644 | 2645 | strip-bom@^2.0.0: 2646 | version "2.0.0" 2647 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2648 | dependencies: 2649 | is-utf8 "^0.2.0" 2650 | 2651 | strip-json-comments@~2.0.1: 2652 | version "2.0.1" 2653 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2654 | 2655 | subtext@4.x.x: 2656 | version "4.4.1" 2657 | resolved "https://registry.yarnpkg.com/subtext/-/subtext-4.4.1.tgz#2fcec945de429283c3d18b151ff0fa1f1b87aec9" 2658 | dependencies: 2659 | boom "5.x.x" 2660 | content "3.x.x" 2661 | hoek "4.x.x" 2662 | pez "2.x.x" 2663 | wreck "12.x.x" 2664 | 2665 | supports-color@^2.0.0: 2666 | version "2.0.0" 2667 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2668 | 2669 | supports-color@^3.1.2: 2670 | version "3.2.3" 2671 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2672 | dependencies: 2673 | has-flag "^1.0.0" 2674 | 2675 | symbol-tree@^3.2.1: 2676 | version "3.2.2" 2677 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2678 | 2679 | table@^3.7.8: 2680 | version "3.8.3" 2681 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2682 | dependencies: 2683 | ajv "^4.7.0" 2684 | ajv-keywords "^1.0.0" 2685 | chalk "^1.1.1" 2686 | lodash "^4.0.0" 2687 | slice-ansi "0.0.4" 2688 | string-width "^2.0.0" 2689 | 2690 | test-exclude@^4.1.1: 2691 | version "4.1.1" 2692 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2693 | dependencies: 2694 | arrify "^1.0.1" 2695 | micromatch "^2.3.11" 2696 | object-assign "^4.1.0" 2697 | read-pkg-up "^1.0.1" 2698 | require-main-filename "^1.0.1" 2699 | 2700 | text-table@~0.2.0: 2701 | version "0.2.0" 2702 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2703 | 2704 | throat@^3.0.0: 2705 | version "3.2.0" 2706 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2707 | 2708 | through@^2.3.6: 2709 | version "2.3.8" 2710 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2711 | 2712 | tmpl@1.0.x: 2713 | version "1.0.4" 2714 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2715 | 2716 | to-fast-properties@^1.0.1: 2717 | version "1.0.3" 2718 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2719 | 2720 | topo@1.x.x: 2721 | version "1.1.0" 2722 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 2723 | dependencies: 2724 | hoek "2.x.x" 2725 | 2726 | topo@2.x.x: 2727 | version "2.0.2" 2728 | resolved "https://registry.yarnpkg.com/topo/-/topo-2.0.2.tgz#cd5615752539057c0dc0491a621c3bc6fbe1d182" 2729 | dependencies: 2730 | hoek "4.x.x" 2731 | 2732 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2733 | version "2.3.2" 2734 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2735 | dependencies: 2736 | punycode "^1.4.1" 2737 | 2738 | tr46@~0.0.3: 2739 | version "0.0.3" 2740 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2741 | 2742 | trim-right@^1.0.1: 2743 | version "1.0.1" 2744 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2745 | 2746 | tryit@^1.0.1: 2747 | version "1.0.3" 2748 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2749 | 2750 | tunnel-agent@^0.6.0: 2751 | version "0.6.0" 2752 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2753 | dependencies: 2754 | safe-buffer "^5.0.1" 2755 | 2756 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2757 | version "0.14.5" 2758 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2759 | 2760 | type-check@~0.3.2: 2761 | version "0.3.2" 2762 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2763 | dependencies: 2764 | prelude-ls "~1.1.2" 2765 | 2766 | typedarray@^0.0.6: 2767 | version "0.0.6" 2768 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2769 | 2770 | uglify-js@^2.6: 2771 | version "2.8.29" 2772 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2773 | dependencies: 2774 | source-map "~0.5.1" 2775 | yargs "~3.10.0" 2776 | optionalDependencies: 2777 | uglify-to-browserify "~1.0.0" 2778 | 2779 | uglify-to-browserify@~1.0.0: 2780 | version "1.0.2" 2781 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2782 | 2783 | user-home@^2.0.0: 2784 | version "2.0.0" 2785 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2786 | dependencies: 2787 | os-homedir "^1.0.0" 2788 | 2789 | util-deprecate@~1.0.1: 2790 | version "1.0.2" 2791 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2792 | 2793 | uuid@^3.0.0, uuid@^3.0.1: 2794 | version "3.1.0" 2795 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2796 | 2797 | validate-npm-package-license@^3.0.1: 2798 | version "3.0.1" 2799 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2800 | dependencies: 2801 | spdx-correct "~1.0.0" 2802 | spdx-expression-parse "~1.0.0" 2803 | 2804 | vandium-utils@^1.1.1: 2805 | version "1.1.1" 2806 | resolved "https://registry.yarnpkg.com/vandium-utils/-/vandium-utils-1.1.1.tgz#f221b5cdf465f97f5d478ff7a87c8d662f8c8bcd" 2807 | 2808 | velocityjs@^0.9.3: 2809 | version "0.9.6" 2810 | resolved "https://registry.yarnpkg.com/velocityjs/-/velocityjs-0.9.6.tgz#6ec82e99aa27492d2d62360c161afc4f82db89e2" 2811 | 2812 | verror@1.3.6: 2813 | version "1.3.6" 2814 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2815 | dependencies: 2816 | extsprintf "1.0.2" 2817 | 2818 | vise@2.x.x: 2819 | version "2.0.2" 2820 | resolved "https://registry.yarnpkg.com/vise/-/vise-2.0.2.tgz#6b08e8fb4cb76e3a50cd6dd0ec37338e811a0d39" 2821 | dependencies: 2822 | hoek "4.x.x" 2823 | 2824 | walker@~1.0.5: 2825 | version "1.0.7" 2826 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2827 | dependencies: 2828 | makeerror "1.0.x" 2829 | 2830 | watch@~0.10.0: 2831 | version "0.10.0" 2832 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2833 | 2834 | webidl-conversions@^3.0.0: 2835 | version "3.0.1" 2836 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2837 | 2838 | webidl-conversions@^4.0.0: 2839 | version "4.0.1" 2840 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2841 | 2842 | whatwg-encoding@^1.0.1: 2843 | version "1.0.1" 2844 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2845 | dependencies: 2846 | iconv-lite "0.4.13" 2847 | 2848 | whatwg-url@^4.3.0: 2849 | version "4.8.0" 2850 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2851 | dependencies: 2852 | tr46 "~0.0.3" 2853 | webidl-conversions "^3.0.0" 2854 | 2855 | which-module@^1.0.0: 2856 | version "1.0.0" 2857 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2858 | 2859 | which@^1.2.12: 2860 | version "1.2.14" 2861 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2862 | dependencies: 2863 | isexe "^2.0.0" 2864 | 2865 | window-size@0.1.0: 2866 | version "0.1.0" 2867 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2868 | 2869 | wordwrap@0.0.2: 2870 | version "0.0.2" 2871 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2872 | 2873 | wordwrap@~0.0.2: 2874 | version "0.0.3" 2875 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2876 | 2877 | wordwrap@~1.0.0: 2878 | version "1.0.0" 2879 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2880 | 2881 | worker-farm@^1.3.1: 2882 | version "1.4.1" 2883 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.4.1.tgz#a438bc993a7a7d133bcb6547c95eca7cff4897d8" 2884 | dependencies: 2885 | errno "^0.1.4" 2886 | xtend "^4.0.1" 2887 | 2888 | wrap-ansi@^2.0.0: 2889 | version "2.1.0" 2890 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2891 | dependencies: 2892 | string-width "^1.0.1" 2893 | strip-ansi "^3.0.1" 2894 | 2895 | wrappy@1: 2896 | version "1.0.2" 2897 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2898 | 2899 | wreck@12.x.x: 2900 | version "12.2.2" 2901 | resolved "https://registry.yarnpkg.com/wreck/-/wreck-12.2.2.tgz#e21823d34c36d672004eefa347ae8c4f6050e3db" 2902 | dependencies: 2903 | boom "5.x.x" 2904 | hoek "4.x.x" 2905 | 2906 | wreck@9.X.X: 2907 | version "9.0.0" 2908 | resolved "https://registry.yarnpkg.com/wreck/-/wreck-9.0.0.tgz#1de63d49bb07b94fe718864b8be63176e63331ec" 2909 | dependencies: 2910 | boom "3.x.x" 2911 | hoek "4.x.x" 2912 | 2913 | write@^0.2.1: 2914 | version "0.2.1" 2915 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2916 | dependencies: 2917 | mkdirp "^0.5.1" 2918 | 2919 | xml-name-validator@^2.0.1: 2920 | version "2.0.1" 2921 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2922 | 2923 | xtend@^4.0.0, xtend@^4.0.1: 2924 | version "4.0.1" 2925 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2926 | 2927 | y18n@^3.2.1: 2928 | version "3.2.1" 2929 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2930 | 2931 | yargs-parser@^5.0.0: 2932 | version "5.0.0" 2933 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2934 | dependencies: 2935 | camelcase "^3.0.0" 2936 | 2937 | yargs@^7.0.2: 2938 | version "7.1.0" 2939 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2940 | dependencies: 2941 | camelcase "^3.0.0" 2942 | cliui "^3.2.0" 2943 | decamelize "^1.1.1" 2944 | get-caller-file "^1.0.1" 2945 | os-locale "^1.4.0" 2946 | read-pkg-up "^1.0.1" 2947 | require-directory "^2.1.1" 2948 | require-main-filename "^1.0.1" 2949 | set-blocking "^2.0.0" 2950 | string-width "^1.0.2" 2951 | which-module "^1.0.0" 2952 | y18n "^3.2.1" 2953 | yargs-parser "^5.0.0" 2954 | 2955 | yargs@~3.10.0: 2956 | version "3.10.0" 2957 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2958 | dependencies: 2959 | camelcase "^1.0.2" 2960 | cliui "^2.1.0" 2961 | decamelize "^1.0.0" 2962 | window-size "0.1.0" 2963 | --------------------------------------------------------------------------------