├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── dgraph.js ├── index.js └── transaction.js ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── dgraph.spec.js.snap │ ├── acctupsert.spec.js │ ├── customers100.json │ ├── dgraph.spec.js │ ├── load.spec.js │ └── transaction.spec.js ├── dgraph.js ├── index.js └── transaction.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "plugins": [ 4 | "transform-flow-strip-types", 5 | "transform-object-rest-spread", 6 | "transform-export-extensions", 7 | ], 8 | "presets": [["latest-node", { "target": "current" }]] 9 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb", 3 | "parser": "babel-eslint", 4 | "env": { 5 | "browser": true, 6 | "node": true, 7 | "es6": true, 8 | "mocha": true, 9 | "jest": true, 10 | }, 11 | "rules": { 12 | "semi": ["error", "never"], 13 | "no-underscore-dangle": 0, 14 | "space-before-function-paren": ["error", "always"], 15 | "arrow-body-style": 0, 16 | "no-use-before-define": ["error", { "functions": false }], 17 | "valid-jsdoc": ["error", { 18 | "requireReturn": true, 19 | "requireReturnType": true, 20 | "requireParamDescription": true, 21 | "requireReturnDescription": true 22 | }], 23 | "import/prefer-default-export": 0, 24 | "import/no-extraneous-dependencies": [ "error", 25 | { "devDependencies": ["**/*.test.js", "**/*.spec.js", "**/test/**/*.js"] } 26 | ] 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.idea 3 | /coverage 4 | .DS_Store 5 | 6 | yarn-error.log 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | 3 | language: node_js 4 | 5 | node_js: 6 | - "node" 7 | - "8" 8 | 9 | services: 10 | - docker 11 | 12 | before_install: 13 | - docker pull dgraph/dgraph:v1.0.3 14 | - docker run -d -p 5080:5080 -p 6080:6080 -p 8080:8080 -p 9080:9080 -p 8000:8000 -p 8081:8081 --name diggy dgraph/dgraph dgraph zero 15 | - docker exec -d diggy dgraph server --memory_mb 2048 --zero localhost:5080 16 | 17 | script: 18 | - npm test 19 | 20 | after_success: npm run coveralls 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Paul Reichelt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dgraph-node 2 | 3 | [![Build Status](https://travis-ci.org/calummoore/dgraph-node.svg?branch=master)](https://travis-ci.org/calummoore/dgraph-node) 4 | [![Coverage Status](https://coveralls.io/repos/github/calummoore/dgraph-node/badge.svg?branch=master)](https://coveralls.io/github/calummoore/dgraph-node?branch=master) 5 | 6 | A NodeJS Dgraph client (created before the official Dgraph client was released). This library now uses the [official Dgraph client](https://github.com/dgraph-io/dgraph-js), but remains mostly backwards compatible with the previous release (see migration notes below). 7 | 8 | 9 | Install with: 10 | 11 | ``` 12 | npm install dgraph-node grpc 13 | ``` 14 | 15 | #### Benefits: 16 | - A more simple interface 17 | - Works with Dgraph v1.0.x 18 | - Supports transactions 19 | 20 | ### Example 21 | 22 | ```javascript 23 | import DgraphClient from 'dgraph-node' 24 | // const DgraphClient = require('dgraph-node').default 25 | 26 | // Create a new client (these are the defaults - no need to pass these!) 27 | let client = new DgraphClient({ 28 | url: ['localhost:9080'], // can provide multiple urls if you have a cluster 29 | debug: false, 30 | credentials: grpc.credentials.createInsecure() 31 | }) 32 | 33 | // Set mutation 34 | await client.mutate({ 35 | set: '<_:bob> "Bob" .' 36 | }) 37 | 38 | // Delete mutation 39 | await client.mutate({ 40 | del: '<0x100> * * .', 41 | }) 42 | 43 | // Query 44 | await client.query(` 45 | query { 46 | q(func: uid(0xcceb)) { 47 | name 48 | } 49 | } 50 | `) 51 | 52 | // Transactions 53 | const txn = client.txn() // Just setting up instance (no call to Dgraph) 54 | 55 | // Same API as above on the txn instance 56 | await txn.mutate({ 57 | set: '<_:bob> "Bob" .' 58 | }) 59 | 60 | ... 61 | 62 | // Commit when you're done 63 | // Dgraph will error if the transaction fails (due to another edit) 64 | await txn.commit() // or txn.discard() 65 | 66 | ``` 67 | 68 | ## API 69 | 70 | ### DgraphClient(options) 71 | 72 | Creates a new instance of the Dgraph client. 73 | 74 | #### `options` object properties 75 | 76 | | Property | Default | Description | 77 | |-------------|----------------|-------------| 78 | | url | [localhost:9080] | List of IP and port of Dgraph - can be an array of URL for a cluster setup. | 79 | | debug | false | Add additional console logs | 80 | | credentials | grpc.credentials.createInsecure() | Valid grpc.credentials. See [gPRC docs](https://grpc.io/docs/guides/auth.html) | 81 | 82 | 83 | #### mutate (mutation, options) 84 | 85 | Set or delete nodes from Dgraph. Mutation is an object with `set` and `del` properties. By default, it will commit changes immediately to Dgraph. 86 | 87 | `mutation` 88 | - set - a NQuad string to set 89 | - del - a NQuad string to delete 90 | 91 | `options` (set to true when not using a txn): 92 | - commitNow - commit immediately 93 | - ignoreConflict - ignore any conflicts 94 | 95 | #### query (queryStr, vars) 96 | 97 | Query the Dgraph DB. 98 | 99 | 100 | #### alter (schema) 101 | 102 | Update the schema. 103 | 104 | ```js 105 | let client = new DgraphClient() 106 | 107 | client.alter(`name: string .`) 108 | ``` 109 | 110 | 111 | #### dropAll () 112 | 113 | Drop the entire Dgraph database. Removes all data (be careful!) 114 | 115 | ```js 116 | let client = new DgraphClient() 117 | 118 | client.dropAll() 119 | ``` 120 | 121 | 122 | #### txn () 123 | 124 | Locally creates a transaction with `query(queryStr, vars)`, `mutate(mutation, options)`, `commit()` and `abort()` methods. These methods function the same as above. 125 | 126 | 127 | ### Migrating from < 0.1.9 128 | 129 | - dropAttr - have been removed as you can now use the alter() 130 | - startTs/linRead - you can no longer set these yourself, but you probably weren't doing that anyway 131 | 132 | 133 | ### Running Tests 134 | 135 | Start a Dgraph instance: 136 | ``` 137 | docker run -it -p 5080:5080 -p 6080:6080 -p 8080:8080 -p 9080:9080 -p 8000:8000 -p 8081:8081 dgraph/dgraph:v1.0.3 bash -c "dgraph -h & dgraph zero & dgraph server --memory_mb 2048 --zero localhost:5080 & dgraph-ratel" 138 | ``` 139 | 140 | Run (at project root):w 141 | `yarn test` 142 | 143 | 144 | ### Inspired by: 145 | Dgraph Client - https://github.com/reicheltp/dgraph-client 146 | -------------------------------------------------------------------------------- /lib/dgraph.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; 8 | 9 | var _dgraphJs = require('dgraph-js'); 10 | 11 | var _transaction = require('./transaction'); 12 | 13 | var _transaction2 = _interopRequireDefault(_transaction); 14 | 15 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 16 | 17 | class DgraphNodeClient { 18 | constructor(config = {}) { 19 | let urls = config.url; 20 | 21 | // Make sure we have an array of urls 22 | if (!Array.isArray(urls)) urls = [urls]; 23 | 24 | // Create a list of stubs to pass to client 25 | this.stubs = urls.map(url => { 26 | return new _dgraphJs.DgraphClientStub(url, config.credentials); 27 | }); 28 | 29 | // Create the client 30 | this.client = new _dgraphJs.DgraphClient(...this.stubs); 31 | 32 | // Set initial value for debug 33 | this.debug = config.debug; 34 | } 35 | 36 | async mutate(mutation, options) { 37 | return this.txn().mutate(mutation, _extends({ 38 | commitNow: true, 39 | ignoreConflict: true 40 | }, options)); 41 | } 42 | 43 | async set(set, options) { 44 | return this.mutate({ set }, options); 45 | } 46 | 47 | async del(del, options) { 48 | return this.mutate({ del }, options); 49 | } 50 | 51 | async query(query, vars = null) { 52 | return this.txn().query(query, vars); 53 | } 54 | 55 | async alter(schema) { 56 | const op = new _dgraphJs.Operation(); 57 | op.setSchema(schema); 58 | this.log('Alter request:', schema); 59 | const resp = await this.client.alter(op); 60 | this.log('Alter response:', resp.toObject()); 61 | return resp; 62 | } 63 | 64 | async dropAll() { 65 | const op = new _dgraphJs.Operation(); 66 | op.setDropAll(true); 67 | this.log('Drop All request:'); 68 | const resp = await this.client.alter(op); 69 | this.log('Drop All response:', resp.toObject()); 70 | return resp; 71 | } 72 | 73 | txn() { 74 | return new _transaction2.default(this.client.newTxn(), this.debug); 75 | } 76 | 77 | close() { 78 | this.stubs.forEach(stub => { 79 | stub.close(); 80 | }); 81 | } 82 | 83 | log(event, ...params) { 84 | if (this.debug) { 85 | const stringy = params.map(param => JSON.stringify(param)); 86 | // eslint-disable-next-line no-console 87 | console.log(event, ...stringy); 88 | } 89 | } 90 | } 91 | 92 | exports.default = DgraphNodeClient; -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _dgraph = require('./dgraph'); 8 | 9 | var _dgraph2 = _interopRequireDefault(_dgraph); 10 | 11 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 12 | 13 | exports.default = _dgraph2.default; -------------------------------------------------------------------------------- /lib/transaction.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _dgraphJs = require('dgraph-js'); 8 | 9 | const isString = obj => typeof obj === 'string'; 10 | 11 | class DgraphTransaction { 12 | constructor(txn, debug) { 13 | this.txn = txn; 14 | this.debug = debug; 15 | } 16 | 17 | async mutate(mutation, options) { 18 | const mut = new _dgraphJs.Mutation(); 19 | const { commitNow, ignoreConflict } = options || {}; 20 | if (mutation.set) { 21 | if (isString(mutation.set)) mut.setSetNquads(mutation.set);else mut.setSetJson(mutation.set); 22 | } 23 | if (mutation.del) { 24 | if (isString(mutation.del)) mut.setDelNquads(mutation.del);else mut.setDeleteJson(mutation.del); 25 | } 26 | mut.setCommitNow(commitNow); 27 | mut.setIgnoreIndexConflict(ignoreConflict); 28 | this.log('Mutation request:', mutation, options); 29 | const resp = await this.txn.mutate(mut); 30 | const respMap = resp.getUidsMap().toObject() || []; 31 | const uids = {}; 32 | respMap.forEach(([name, uid]) => { 33 | uids[name] = uid; 34 | }); 35 | const parsed = { 36 | data: { 37 | uids 38 | } 39 | }; 40 | this.log('Mutation response:', parsed); 41 | return parsed; 42 | } 43 | 44 | async set(set, options) { 45 | return this.mutate({ set }, options); 46 | } 47 | 48 | async del(del, options) { 49 | return this.mutate({ del }, options); 50 | } 51 | 52 | async query(query, vars = null) { 53 | this.log('Query request:', query, vars); 54 | const res = await this.txn.queryWithVars(query, vars); 55 | const data = { 56 | data: res.getJson() 57 | }; 58 | this.log('Query response:', data, vars); 59 | return data; 60 | } 61 | 62 | async commit() { 63 | return this.txn.commit(); 64 | } 65 | 66 | async discard() { 67 | return this.txn.discard(); 68 | } 69 | 70 | log(event, ...params) { 71 | if (this.debug) { 72 | const stringy = params.map(param => JSON.stringify(param)); 73 | // eslint-disable-next-line no-console 74 | console.log(event, ...stringy); 75 | } 76 | } 77 | } 78 | 79 | exports.default = DgraphTransaction; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dgraph-node", 3 | "version": "0.3.0", 4 | "description": "NodeJS Client for dgraph", 5 | "repository": "https://github.com/calummoore/dgraph-node", 6 | "author": "Calum Moore", 7 | "license": "MIT", 8 | "files": [ 9 | "lib" 10 | ], 11 | "main": "lib/index.js", 12 | "devDependencies": { 13 | "babel-cli": "^6.24.1", 14 | "babel-eslint": "^8.0.2", 15 | "babel-jest": "^20.0.3", 16 | "babel-plugin-external-helpers": "^6.22.0", 17 | "babel-plugin-transform-class-properties": "^6.24.1", 18 | "babel-plugin-transform-export-extensions": "^6.22.0", 19 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 20 | "babel-preset-env": "^1.5.2", 21 | "babel-preset-flow": "^6.23.0", 22 | "babel-preset-latest-node": "^0.4.0", 23 | "babel-preset-stage-0": "^6.24.1", 24 | "coveralls": "^3.0.0", 25 | "eslint": "^4.11.0", 26 | "eslint-config-airbnb": "^16.1.0", 27 | "eslint-plugin-import": "^2.8.0", 28 | "eslint-plugin-jsx-a11y": "^6.0.2", 29 | "eslint-plugin-react": "^7.4.0", 30 | "flow-bin": "^0.44.2", 31 | "grpc": "^1.9.1", 32 | "jest": "^20.0.4" 33 | }, 34 | "scripts": { 35 | "test": "jest --coverage --runInBand", 36 | "coveralls": "cat ./coverage/lcov.info | coveralls", 37 | "test:watch": "jest --watch", 38 | "build": "babel src --ignore .spec.js -d lib", 39 | "prepublish": "yarn run build" 40 | }, 41 | "dependencies": { 42 | "dgraph-js": "^1.1.1" 43 | }, 44 | "peerDependencies": { 45 | "grpc": "^1.9.1" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/dgraph.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`dgraph should send a del using set command 1`] = ` 4 | Object { 5 | "data": Object { 6 | "q": Array [], 7 | }, 8 | } 9 | `; 10 | 11 | exports[`dgraph should send a set JSON mutation 1`] = ` 12 | Object { 13 | "data": Object { 14 | "q": Array [ 15 | Object { 16 | "name": "Jane", 17 | }, 18 | ], 19 | }, 20 | } 21 | `; 22 | 23 | exports[`dgraph should send a set using set command 1`] = ` 24 | Object { 25 | "data": Object { 26 | "q": Array [ 27 | Object { 28 | "name": "Peter", 29 | }, 30 | ], 31 | }, 32 | } 33 | `; 34 | 35 | exports[`dgraph should send query 1`] = ` 36 | Object { 37 | "q": Array [], 38 | } 39 | `; 40 | -------------------------------------------------------------------------------- /src/__tests__/acctupsert.spec.js: -------------------------------------------------------------------------------- 1 | // Ported from: 2 | // https://github.com/dgraph-io/dgraph/tree/master/contrib/integration/acctupsert 3 | 4 | import DgraphClient from '../dgraph' 5 | 6 | const maxAttempts = 50 7 | const firsts = ['Paul', 'Eric', 'Jack', 'John', 'Martin'] 8 | const lasts = ['Brown', 'Smith', 'Robinson', 'Waters', 'Taylor'] 9 | const ages = [20, 25, 30, 35] 10 | const accounts = [] 11 | const wait = time => new Promise(resolve => setTimeout(resolve, time)) 12 | 13 | firsts.forEach(first => lasts.forEach(last => ages.forEach(age => accounts.push({ 14 | first, last, age, 15 | })))) 16 | 17 | const schema = ` 18 | first: string @index(term) . 19 | last: string @index(hash) . 20 | age: int @index(int) . 21 | when: int . 22 | ` 23 | let client 24 | 25 | async function upsert (account, counter = 0) { 26 | // console.log(`${account.first}, ${account.last}: ${counter} `) 27 | try { 28 | await tryUpsert(account) 29 | // console.log(`Success for ${account.first}_${account.last}_${account.age} after ${counter} attemps`) 30 | } catch (err) { 31 | expect(err.toString()).toMatch(/Conflicts|aborted/) 32 | if (counter + 1 >= maxAttempts) { 33 | throw new Error(`Account upsert for 34 | ${account.first}, ${account.last}, ${account.age} 35 | failed after ${counter + 1} attempts`) 36 | } 37 | await wait(50 + (Math.random() * 100)) 38 | await upsert(account, counter + 1) 39 | } 40 | return true 41 | } 42 | 43 | async function tryUpsert (account) { 44 | const txn = client.txn() 45 | 46 | const { first, last, age } = account 47 | const query = `{ 48 | get(func: eq(first, "${first}")) @filter(eq(last, "${last}") AND eq(age, "${age}")) { 49 | uid 50 | } 51 | }` 52 | 53 | const resp = await txn.query(query) 54 | const { get } = resp.data 55 | let uid = get[0] && get[0].uid 56 | 57 | expect(get.length).toBeLessThanOrEqual(1) 58 | 59 | if (get.length === 1) { 60 | expect(uid).toBe(expect.any(String)) 61 | } else { 62 | const mut = await txn.mutate({ 63 | set: ` 64 | _:acct "${first}" . 65 | _:acct "${last}" . 66 | _:acct "${age}"^^ .`, 67 | }) 68 | uid = mut.data.uids.acct 69 | expect(uid).not.toBeUndefined() 70 | } 71 | 72 | await txn.mutate({ 73 | set: `<${uid}> "${+(new Date())}"^^ .`, 74 | }) 75 | 76 | return txn.commit() 77 | } 78 | 79 | describe('acctupsert', () => { 80 | beforeEach(async () => { 81 | client = new DgraphClient() 82 | await client.dropAll() 83 | await client.alter(schema) 84 | }) 85 | 86 | it('should successfully perform upsert load test', async () => { 87 | jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000 88 | 89 | const promises = [] 90 | accounts.forEach((account) => { 91 | promises.push(upsert(account)) 92 | }) 93 | 94 | await Promise.all(promises).catch((err) => { 95 | throw new Error(err) 96 | }) 97 | 98 | const query = `{ 99 | all(func: anyofterms(first, "${firsts.join(' ')}")) { 100 | first 101 | last 102 | age 103 | } 104 | }` 105 | 106 | const resp = await client.query(query) 107 | 108 | const { all } = resp.data 109 | const check = {} 110 | expect(all).toHaveLength(100) 111 | all.forEach(({ first, last, age }) => { 112 | check[`${first}_${last}_${age}`] = true 113 | }) 114 | accounts.forEach(({ first, last, age }) => { 115 | if (!check[`${first}_${last}_${age}`]) { 116 | throw new Error(`Account ${first}_${last}_${age} is missing!`) 117 | } 118 | }) 119 | }) 120 | }) 121 | -------------------------------------------------------------------------------- /src/__tests__/customers100.json: -------------------------------------------------------------------------------- 1 | [{"id":1,"first_name":"Patrice","last_name":"Sute","email":"psute0@wufoo.com","gender":"Female","ip_address":"26.19.140.158"}, 2 | {"id":2,"first_name":"Lewie","last_name":"Mac","email":"lmac1@feedburner.com","gender":"Male","ip_address":"244.87.166.128"}, 3 | {"id":3,"first_name":"Kent","last_name":"Allcoat","email":"kallcoat2@163.com","gender":"Male","ip_address":"39.19.225.254"}, 4 | {"id":4,"first_name":"Gilberto","last_name":"Farquharson","email":"gfarquharson3@hp.com","gender":"Male","ip_address":"144.83.153.9"}, 5 | {"id":5,"first_name":"Francoise","last_name":"Videneev","email":"fvideneev4@cbsnews.com","gender":"Female","ip_address":"253.167.106.182"}, 6 | {"id":6,"first_name":"Salvidor","last_name":"Kilshall","email":"skilshall5@theguardian.com","gender":"Male","ip_address":"253.101.137.144"}, 7 | {"id":7,"first_name":"Michel","last_name":"Hitchens","email":"mhitchens6@plala.or.jp","gender":"Female","ip_address":"64.169.48.4"}, 8 | {"id":8,"first_name":"West","last_name":"MacIlriach","email":"wmacilriach7@xinhuanet.com","gender":"Male","ip_address":"70.224.120.229"}, 9 | {"id":9,"first_name":"Georges","last_name":"Carnalan","email":"gcarnalan8@ftc.gov","gender":"Male","ip_address":"141.158.83.71"}, 10 | {"id":10,"first_name":"Lula","last_name":"Beavon","email":"lbeavon9@ihg.com","gender":"Female","ip_address":"43.85.43.95"}, 11 | {"id":11,"first_name":"Ashely","last_name":"Jumont","email":"ajumonta@globo.com","gender":"Female","ip_address":"7.27.168.79"}, 12 | {"id":12,"first_name":"Tanney","last_name":"Veldman","email":"tveldmanb@cnet.com","gender":"Male","ip_address":"152.109.141.195"}, 13 | {"id":13,"first_name":"Gilles","last_name":"Siggens","email":"gsiggensc@sbwire.com","gender":"Male","ip_address":"58.62.46.50"}, 14 | {"id":14,"first_name":"Saxe","last_name":"Elbourn","email":"selbournd@marketwatch.com","gender":"Male","ip_address":"82.131.71.117"}, 15 | {"id":15,"first_name":"Tabor","last_name":"Kennealy","email":"tkennealye@opera.com","gender":"Male","ip_address":"191.158.31.22"}, 16 | {"id":16,"first_name":"Jerrilee","last_name":"Oultram","email":"joultramf@rediff.com","gender":"Female","ip_address":"171.252.63.247"}, 17 | {"id":17,"first_name":"Lesli","last_name":"Berk","email":"lberkg@jiathis.com","gender":"Female","ip_address":"66.15.253.159"}, 18 | {"id":18,"first_name":"Keelia","last_name":"Gehrtz","email":"kgehrtzh@thetimes.co.uk","gender":"Female","ip_address":"151.252.176.116"}, 19 | {"id":19,"first_name":"Pattie","last_name":"Masselin","email":"pmasselini@rediff.com","gender":"Female","ip_address":"254.24.168.126"}, 20 | {"id":20,"first_name":"Arley","last_name":"Beavis","email":"abeavisj@de.vu","gender":"Male","ip_address":"16.238.216.191"}, 21 | {"id":21,"first_name":"Konstantine","last_name":"Petracek","email":"kpetracekk@pcworld.com","gender":"Male","ip_address":"241.5.121.200"}, 22 | {"id":22,"first_name":"Perry","last_name":"Birbeck","email":"pbirbeckl@unc.edu","gender":"Female","ip_address":"141.113.5.168"}, 23 | {"id":23,"first_name":"Griswold","last_name":"Riediger","email":"griedigerm@alibaba.com","gender":"Male","ip_address":"149.25.106.94"}, 24 | {"id":24,"first_name":"Glennie","last_name":"Gumey","email":"ggumeyn@europa.eu","gender":"Female","ip_address":"236.109.231.32"}, 25 | {"id":25,"first_name":"Gordan","last_name":"Pitway","email":"gpitwayo@msu.edu","gender":"Male","ip_address":"136.114.182.130"}, 26 | {"id":26,"first_name":"Cammy","last_name":"Izatson","email":"cizatsonp@icio.us","gender":"Male","ip_address":"58.63.237.59"}, 27 | {"id":27,"first_name":"Karylin","last_name":"Branney","email":"kbranneyq@wiley.com","gender":"Female","ip_address":"76.121.26.189"}, 28 | {"id":28,"first_name":"Skip","last_name":"Franses","email":"sfransesr@ameblo.jp","gender":"Male","ip_address":"47.134.153.147"}, 29 | {"id":29,"first_name":"Tabor","last_name":"Reynalds","email":"treynaldss@i2i.jp","gender":"Male","ip_address":"205.35.53.231"}, 30 | {"id":30,"first_name":"Alessandra","last_name":"Harhoff","email":"aharhofft@irs.gov","gender":"Female","ip_address":"119.214.214.241"}, 31 | {"id":31,"first_name":"Bernetta","last_name":"Stanyon","email":"bstanyonu@rambler.ru","gender":"Female","ip_address":"237.21.194.7"}, 32 | {"id":32,"first_name":"Cary","last_name":"Baldocci","email":"cbaldocciv@prnewswire.com","gender":"Male","ip_address":"192.142.169.227"}, 33 | {"id":33,"first_name":"Seka","last_name":"Allcoat","email":"sallcoatw@ow.ly","gender":"Female","ip_address":"203.33.128.93"}, 34 | {"id":34,"first_name":"Ravi","last_name":"Loudwell","email":"rloudwellx@ow.ly","gender":"Male","ip_address":"197.118.89.235"}, 35 | {"id":35,"first_name":"Vin","last_name":"Jiroutka","email":"vjiroutkay@house.gov","gender":"Female","ip_address":"12.48.156.3"}, 36 | {"id":36,"first_name":"Catina","last_name":"Deport","email":"cdeportz@sina.com.cn","gender":"Female","ip_address":"83.230.252.142"}, 37 | {"id":37,"first_name":"Janna","last_name":"Klezmski","email":"jklezmski10@ox.ac.uk","gender":"Female","ip_address":"223.19.69.248"}, 38 | {"id":38,"first_name":"Beauregard","last_name":"Bratley","email":"bbratley11@i2i.jp","gender":"Male","ip_address":"239.84.198.116"}, 39 | {"id":39,"first_name":"Shoshana","last_name":"Soares","email":"ssoares12@cnbc.com","gender":"Female","ip_address":"33.31.10.233"}, 40 | {"id":40,"first_name":"Nat","last_name":"Hepher","email":"nhepher13@foxnews.com","gender":"Male","ip_address":"165.146.15.254"}, 41 | {"id":41,"first_name":"Alexa","last_name":"Semens","email":"asemens14@biblegateway.com","gender":"Female","ip_address":"96.178.141.221"}, 42 | {"id":42,"first_name":"Floyd","last_name":"Westhead","email":"fwesthead15@topsy.com","gender":"Male","ip_address":"237.77.45.175"}, 43 | {"id":43,"first_name":"Hesther","last_name":"Dahler","email":"hdahler16@istockphoto.com","gender":"Female","ip_address":"136.24.113.54"}, 44 | {"id":44,"first_name":"Raffarty","last_name":"Bridgestock","email":"rbridgestock17@nytimes.com","gender":"Male","ip_address":"148.227.240.160"}, 45 | {"id":45,"first_name":"Torey","last_name":"Lewis","email":"tlewis18@toplist.cz","gender":"Female","ip_address":"55.104.116.75"}, 46 | {"id":46,"first_name":"Markus","last_name":"Glazebrook","email":"mglazebrook19@weibo.com","gender":"Male","ip_address":"206.174.32.18"}, 47 | {"id":47,"first_name":"Craig","last_name":"Stowell","email":"cstowell1a@friendfeed.com","gender":"Male","ip_address":"74.79.229.98"}, 48 | {"id":48,"first_name":"Zaneta","last_name":"Lampel","email":"zlampel1b@telegraph.co.uk","gender":"Female","ip_address":"126.103.27.113"}, 49 | {"id":49,"first_name":"Abby","last_name":"Jakolevitch","email":"ajakolevitch1c@people.com.cn","gender":"Female","ip_address":"215.219.172.143"}, 50 | {"id":50,"first_name":"Xenia","last_name":"Prangley","email":"xprangley1d@hp.com","gender":"Female","ip_address":"175.192.253.123"}, 51 | {"id":51,"first_name":"Farrell","last_name":"Wherton","email":"fwherton1e@networkadvertising.org","gender":"Male","ip_address":"218.67.20.212"}, 52 | {"id":52,"first_name":"Yolane","last_name":"Thackray","email":"ythackray1f@tuttocitta.it","gender":"Female","ip_address":"47.33.19.207"}, 53 | {"id":53,"first_name":"Angus","last_name":"Whate","email":"awhate1g@t.co","gender":"Male","ip_address":"204.56.206.226"}, 54 | {"id":54,"first_name":"Valenka","last_name":"O' Mulderrig","email":"vomulderrig1h@chron.com","gender":"Female","ip_address":"51.109.79.145"}, 55 | {"id":55,"first_name":"Beatrice","last_name":"Worden","email":"bworden1i@fda.gov","gender":"Female","ip_address":"196.246.115.218"}, 56 | {"id":56,"first_name":"Tandi","last_name":"Mattersey","email":"tmattersey1j@discuz.net","gender":"Female","ip_address":"158.248.222.35"}, 57 | {"id":57,"first_name":"Kakalina","last_name":"Largent","email":"klargent1k@a8.net","gender":"Female","ip_address":"167.111.4.165"}, 58 | {"id":58,"first_name":"Maxwell","last_name":"Agius","email":"magius1l@sciencedirect.com","gender":"Male","ip_address":"182.179.77.123"}, 59 | {"id":59,"first_name":"Arda","last_name":"Belchambers","email":"abelchambers1m@uol.com.br","gender":"Female","ip_address":"222.171.91.234"}, 60 | {"id":60,"first_name":"Mira","last_name":"Beddows","email":"mbeddows1n@nyu.edu","gender":"Female","ip_address":"238.98.35.156"}, 61 | {"id":61,"first_name":"Yurik","last_name":"Mewis","email":"ymewis1o@uiuc.edu","gender":"Male","ip_address":"252.148.167.28"}, 62 | {"id":62,"first_name":"Alida","last_name":"Shimuk","email":"ashimuk1p@fema.gov","gender":"Female","ip_address":"71.155.44.33"}, 63 | {"id":63,"first_name":"Haskel","last_name":"Burgett","email":"hburgett1q@cnet.com","gender":"Male","ip_address":"150.183.8.164"}, 64 | {"id":64,"first_name":"Albert","last_name":"Boniface","email":"aboniface1r@hugedomains.com","gender":"Male","ip_address":"88.20.19.61"}, 65 | {"id":65,"first_name":"Joy","last_name":"Sture","email":"jsture1s@washingtonpost.com","gender":"Female","ip_address":"28.76.188.81"}, 66 | {"id":66,"first_name":"Filberte","last_name":"Prudham","email":"fprudham1t@hc360.com","gender":"Male","ip_address":"74.91.24.229"}, 67 | {"id":67,"first_name":"Vivie","last_name":"Beckitt","email":"vbeckitt1u@networksolutions.com","gender":"Female","ip_address":"146.224.32.50"}, 68 | {"id":68,"first_name":"Jacobo","last_name":"Itscowics","email":"jitscowics1v@hatena.ne.jp","gender":"Male","ip_address":"29.205.235.241"}, 69 | {"id":69,"first_name":"Freda","last_name":"Bussetti","email":"fbussetti1w@yahoo.com","gender":"Female","ip_address":"169.54.166.156"}, 70 | {"id":70,"first_name":"Matilda","last_name":"Skiggs","email":"mskiggs1x@sohu.com","gender":"Female","ip_address":"155.92.208.99"}, 71 | {"id":71,"first_name":"Andrej","last_name":"Burstow","email":"aburstow1y@ft.com","gender":"Male","ip_address":"86.72.210.93"}, 72 | {"id":72,"first_name":"Randell","last_name":"Squibbes","email":"rsquibbes1z@uol.com.br","gender":"Male","ip_address":"136.43.135.103"}, 73 | {"id":73,"first_name":"Prissie","last_name":"Mielnik","email":"pmielnik20@nbcnews.com","gender":"Female","ip_address":"67.147.231.147"}, 74 | {"id":74,"first_name":"Thomasine","last_name":"Duxbury","email":"tduxbury21@merriam-webster.com","gender":"Female","ip_address":"11.32.55.101"}, 75 | {"id":75,"first_name":"Nada","last_name":"Lanon","email":"nlanon22@google.ca","gender":"Female","ip_address":"18.127.55.133"}, 76 | {"id":76,"first_name":"Sauveur","last_name":"Lumber","email":"slumber23@salon.com","gender":"Male","ip_address":"54.158.253.224"}, 77 | {"id":77,"first_name":"Dorisa","last_name":"Melley","email":"dmelley24@illinois.edu","gender":"Female","ip_address":"4.217.122.108"}, 78 | {"id":78,"first_name":"Sawyere","last_name":"Hartburn","email":"shartburn25@privacy.gov.au","gender":"Male","ip_address":"201.116.128.191"}, 79 | {"id":79,"first_name":"Kathryn","last_name":"Flemyng","email":"kflemyng26@com.com","gender":"Female","ip_address":"133.71.131.59"}, 80 | {"id":80,"first_name":"Helenelizabeth","last_name":"Ellin","email":"hellin27@shinystat.com","gender":"Female","ip_address":"202.152.10.97"}, 81 | {"id":81,"first_name":"Clarie","last_name":"Lovitt","email":"clovitt28@blogs.com","gender":"Female","ip_address":"159.36.142.151"}, 82 | {"id":82,"first_name":"Patrick","last_name":"Shimmings","email":"pshimmings29@webeden.co.uk","gender":"Male","ip_address":"170.72.150.190"}, 83 | {"id":83,"first_name":"Morie","last_name":"Taylerson","email":"mtaylerson2a@mlb.com","gender":"Male","ip_address":"36.172.134.34"}, 84 | {"id":84,"first_name":"Dorrie","last_name":"Macura","email":"dmacura2b@trellian.com","gender":"Female","ip_address":"58.209.240.88"}, 85 | {"id":85,"first_name":"Evangeline","last_name":"Orrum","email":"eorrum2c@jimdo.com","gender":"Female","ip_address":"248.18.166.75"}, 86 | {"id":86,"first_name":"Norman","last_name":"Buchett","email":"nbuchett2d@nature.com","gender":"Male","ip_address":"235.245.55.57"}, 87 | {"id":87,"first_name":"Ryan","last_name":"Strettell","email":"rstrettell2e@drupal.org","gender":"Male","ip_address":"86.148.127.201"}, 88 | {"id":88,"first_name":"Jeannie","last_name":"Temblett","email":"jtemblett2f@cbsnews.com","gender":"Female","ip_address":"15.65.227.53"}, 89 | {"id":89,"first_name":"Harold","last_name":"Hourihane","email":"hhourihane2g@google.cn","gender":"Male","ip_address":"61.107.251.74"}, 90 | {"id":90,"first_name":"Babbette","last_name":"Gadsdon","email":"bgadsdon2h@live.com","gender":"Female","ip_address":"251.42.194.204"}, 91 | {"id":91,"first_name":"Maddie","last_name":"Northcott","email":"mnorthcott2i@sun.com","gender":"Male","ip_address":"54.153.53.60"}, 92 | {"id":92,"first_name":"Angus","last_name":"Niccolls","email":"aniccolls2j@ucsd.edu","gender":"Male","ip_address":"67.78.119.131"}, 93 | {"id":93,"first_name":"Skylar","last_name":"Nucciotti","email":"snucciotti2k@omniture.com","gender":"Male","ip_address":"63.238.2.11"}, 94 | {"id":94,"first_name":"Elayne","last_name":"MacGhee","email":"emacghee2l@parallels.com","gender":"Female","ip_address":"30.79.23.71"}, 95 | {"id":95,"first_name":"Monte","last_name":"Jahnig","email":"mjahnig2m@jugem.jp","gender":"Male","ip_address":"165.102.244.32"}, 96 | {"id":96,"first_name":"Caril","last_name":"Drinkeld","email":"cdrinkeld2n@desdev.cn","gender":"Female","ip_address":"162.58.15.82"}, 97 | {"id":97,"first_name":"Eudora","last_name":"Handke","email":"ehandke2o@mysql.com","gender":"Female","ip_address":"172.98.218.83"}, 98 | {"id":98,"first_name":"Carmel","last_name":"Borgesio","email":"cborgesio2p@sitemeter.com","gender":"Female","ip_address":"247.211.111.179"}, 99 | {"id":99,"first_name":"Clywd","last_name":"Pryke","email":"cpryke2q@stumbleupon.com","gender":"Male","ip_address":"127.206.150.115"}, 100 | {"id":100,"first_name":"John","last_name":"Barns","email":"j.b.@stumbleupon.com","gender":"Male","ip_address":"127.206.150.115"}] -------------------------------------------------------------------------------- /src/__tests__/dgraph.spec.js: -------------------------------------------------------------------------------- 1 | import DgraphClient from '../dgraph' 2 | 3 | let client 4 | const queryById = (id = '0xcceb', fields = 'name') => { 5 | return ` 6 | query { 7 | q(func: uid(${id})) { 8 | ${fields} 9 | } 10 | } 11 | ` 12 | } 13 | const createBob = () => client.mutate({ 14 | set: '<_:bob> "Bob" .', 15 | }) 16 | 17 | describe('dgraph', () => { 18 | beforeEach(async () => { 19 | client = new DgraphClient() 20 | await client.dropAll() 21 | }) 22 | 23 | it('should send query', async () => { 24 | const query = queryById() 25 | const resp = await client.query(query) 26 | expect(resp.data).toMatchSnapshot() 27 | }) 28 | 29 | it('should send a set mutation', async () => { 30 | const resp = await createBob() 31 | expect(resp.data).toHaveProperty('uids', { 32 | bob: expect.any(String), 33 | }) 34 | }) 35 | 36 | it('should send a set JSON mutation', async () => { 37 | const resp = await client.mutate({ set: { uid: '_:jane', name: 'Jane' } }) 38 | expect(resp.data).toHaveProperty('uids', { 39 | jane: expect.any(String), 40 | }) 41 | 42 | // Check it has committed 43 | const query = await client.query(queryById(resp.data.uids.jane)) 44 | expect(query).toMatchSnapshot() 45 | }) 46 | 47 | it('should send a set using set command', async () => { 48 | const resp = await client.set({ uid: '_:peter', name: 'Peter' }) 49 | expect(resp.data).toHaveProperty('uids', { 50 | peter: expect.any(String), 51 | }) 52 | 53 | // Check it has committed 54 | const query = await client.query(queryById(resp.data.uids.peter)) 55 | expect(query).toMatchSnapshot() 56 | }) 57 | 58 | it('should send a del using set command', async () => { 59 | const resp = await client.set({ uid: '_:peter', name: 'Peter' }) 60 | await client.del({ uid: resp.data.uids.peter }) 61 | 62 | // Check it has committed 63 | const query = await client.query(queryById(resp.data.uids.peter)) 64 | expect(query).toMatchSnapshot() 65 | }) 66 | 67 | it('should commit mutation', async () => { 68 | const resp = await createBob() 69 | const { bob } = resp.data.uids 70 | const query = await client.query(queryById(bob)) 71 | expect(query.data.q[0]).toEqual({ 72 | name: 'Bob', 73 | }) 74 | }) 75 | 76 | it('should commit mutation with index', async () => { 77 | const resp = await client.mutate({ 78 | set: '<_:bob> "Bob" .', 79 | }, true, undefined, true) 80 | const { bob } = resp.data.uids 81 | const query = await client.query(queryById(bob)) 82 | expect(query.data.q[0]).toEqual({ 83 | name: 'Bob', 84 | }) 85 | }) 86 | 87 | it('should drop the DB', async () => { 88 | const resp = await createBob() 89 | await client.dropAll() 90 | const { bob } = resp.data.uids 91 | const query = await client.query(queryById(bob)) 92 | expect(query.data.q).toEqual([]) 93 | }) 94 | 95 | it('should perform delete mutation', async () => { 96 | const resp = await createBob() 97 | const { bob } = resp.data.uids 98 | await client.mutate({ 99 | del: `<${bob}> * * .`, 100 | }) 101 | const query = await client.query(queryById(bob)) 102 | expect(query.data.q).toEqual([]) 103 | }) 104 | 105 | it('should alter the schema', async () => { 106 | await createBob() 107 | await client.alter('name: string @index(exact, term) .') 108 | const queryByTerm = `query { 109 | q(func: allofterms(name, "Bob")) { 110 | name 111 | } 112 | } 113 | ` 114 | const query = await client.query(queryByTerm) 115 | expect(query.data.q[0]).toEqual({ 116 | name: 'Bob', 117 | }) 118 | }) 119 | }) 120 | -------------------------------------------------------------------------------- /src/__tests__/load.spec.js: -------------------------------------------------------------------------------- 1 | import DgraphClient from '../dgraph' 2 | import customers from './customers100.json' 3 | 4 | const mapObj = (obj, fn) => { 5 | const keys = Object.keys(obj) 6 | return keys.map(key => fn(obj[key], key)) 7 | } 8 | 9 | let dgraph 10 | 11 | describe('Load test', () => { 12 | beforeEach(async () => { 13 | dgraph = new DgraphClient() 14 | await dgraph.dropAll() 15 | }) 16 | 17 | xit('should not abort when no transactions are used', async () => { 18 | const stats = await run() 19 | expect(stats).toMatchObject({ 20 | aborts: 0, 21 | exists: 0, 22 | }) 23 | 24 | const stats2 = await run(stats.siteId) 25 | expect(stats2).toEqual({ 26 | siteId: stats.siteId, 27 | aborts: 0, 28 | exists: 100, 29 | }) 30 | }) 31 | }) 32 | 33 | async function run (_siteId) { 34 | const siteId = _siteId || await createSite('Test Data') 35 | 36 | let counter = customers.length 37 | let aborts = 0 38 | let exists = 0 39 | 40 | return new Promise((resolve) => { 41 | /* eslint-disable */ 42 | customers.forEach(async (customer, i) => { 43 | // console.log(`Checking if customer ${customer.id} exitsts`) 44 | 45 | const custExists = await customerExists(siteId, customer.id) 46 | if (custExists) exists += 1 47 | 48 | // console.log(`Customer ${customer.id} exists: ${custExists ? 'YES': 'NO'}`) 49 | 50 | const uid = await createCustomer(siteId, customer, i) 51 | .catch((e) => { 52 | aborts += 1 53 | // console.log(customer.id, e.message) 54 | // console.log(`Customer ${customer.id} aborted. Total aborts: ${aborts}`) 55 | }) 56 | 57 | if (uid) { 58 | // console.log(`Created customer ${customer.id}: ${uid}`) 59 | } 60 | 61 | counter -= 1 62 | // console.log('Remaining customers', counter) 63 | 64 | if (counter === 0) resolve({ 65 | siteId, 66 | aborts, 67 | exists, 68 | }) 69 | }) 70 | }) 71 | } 72 | 73 | async function customerExists (siteId, customerId) { 74 | const query = ` 75 | query { 76 | root (func: uid(${siteId})) @normalize { 77 | ~customers.site @filter(eq(customers.id, "${customerId}")) { 78 | id: uid 79 | } 80 | } 81 | } 82 | ` 83 | const resp = await dgraph.query(query) 84 | const root = resp.data.root || [] 85 | return !!(root[0] && root[0].id) 86 | } 87 | 88 | async function createCustomer (siteId, customer, i) { 89 | const mutStr = mapObj(customer, (val, key) => `_:cust_${i} "${val}" .`) 90 | .concat([` 91 | _:cust_${i} <${siteId}> . 92 | _:cust_${i} "customers" . 93 | `]) 94 | .join('\n') 95 | 96 | const resp = await dgraph.mutate({ 97 | set: mutStr, 98 | }) 99 | 100 | return resp.data.uids[`cust_${i}`] 101 | } 102 | 103 | async function createSite (name) { 104 | const mut = ` 105 | <_:site> "${name}" . 106 | ` 107 | 108 | const resp = await dgraph.mutate({ 109 | set: mut, 110 | }) 111 | 112 | const siteId = resp.data.uids.site 113 | 114 | const siteSchema = ` 115 | customers.id: float @index(float) . 116 | customers.first_name: string @index(trigram) . 117 | customers.last_name: string @index(trigram) . 118 | customers.email: string @index(exact) . 119 | customers.gender: string @index(exact) . 120 | customers.site: uid @reverse . 121 | ` 122 | 123 | await dgraph.alter(siteSchema) 124 | 125 | return siteId 126 | } 127 | -------------------------------------------------------------------------------- /src/__tests__/transaction.spec.js: -------------------------------------------------------------------------------- 1 | import DgraphClient from '../dgraph' 2 | import DgraphTransaction from '../transaction' 3 | 4 | let client 5 | let txn 6 | 7 | const queryById = (id = '0xcceb', fields = 'name') => { 8 | return ` 9 | query { 10 | q(func: uid(${id})) { 11 | ${fields} 12 | } 13 | } 14 | ` 15 | } 16 | const createBob = () => txn.mutate({ 17 | set: '<_:bob> "Bob" .', 18 | }) 19 | 20 | describe('Transactions', () => { 21 | beforeEach(async () => { 22 | client = new DgraphClient({ debug: true }) 23 | await client.dropAll() 24 | txn = client.txn() 25 | }) 26 | 27 | it('should return a Transaction instance', () => { 28 | expect(txn).toBeInstanceOf(DgraphTransaction) 29 | }) 30 | 31 | it('should not show mutation before commit', async () => { 32 | const mutation = { 33 | set: '<_:bob> "Bob" .', 34 | } 35 | const resp = await txn.mutate(mutation) 36 | const { bob } = resp.data.uids 37 | const findBob = await client.query(queryById(bob)) 38 | expect(findBob.data.q).toEqual([]) 39 | }) 40 | 41 | it('should commit changes on commit', async () => { 42 | const resp = await createBob() 43 | const { bob } = resp.data.uids 44 | await txn.commit() 45 | const findBob = await client.query(queryById(bob)) 46 | expect(findBob.data.q).toEqual([{ name: 'Bob' }]) 47 | }) 48 | 49 | it('should reject changes if mutation conflicts', async () => { 50 | const resp = await createBob() 51 | const { bob } = resp.data.uids 52 | const txn1 = client.txn() 53 | const txn2 = client.txn() 54 | await txn1.mutate({ set: `<${bob}> "Bob1" .` }) 55 | await txn2.mutate({ set: `<${bob}> "Bob2" .` }) 56 | await txn2.commit() 57 | await expect(txn1.commit()).rejects.toEqual(new Error('Transaction has been aborted. Please retry')) 58 | const findBob = await client.query(queryById(bob)) 59 | expect(findBob.data.q).toEqual([{ name: 'Bob2' }]) 60 | }) 61 | }) 62 | -------------------------------------------------------------------------------- /src/dgraph.js: -------------------------------------------------------------------------------- 1 | import { DgraphClientStub, DgraphClient, Operation } from 'dgraph-js' 2 | 3 | import DgraphTransaction from './transaction' 4 | 5 | class DgraphNodeClient { 6 | constructor (config = {}) { 7 | let urls = config.url 8 | 9 | // Make sure we have an array of urls 10 | if (!Array.isArray(urls)) urls = [urls] 11 | 12 | // Create a list of stubs to pass to client 13 | this.stubs = urls.map((url) => { 14 | return (new DgraphClientStub( 15 | url, 16 | config.credentials, 17 | )) 18 | }) 19 | 20 | // Create the client 21 | this.client = new DgraphClient(...this.stubs) 22 | 23 | // Set initial value for debug 24 | this.debug = config.debug 25 | } 26 | 27 | async mutate (mutation, options) { 28 | return this.txn().mutate(mutation, { 29 | commitNow: true, 30 | ignoreConflict: true, 31 | ...options, 32 | }) 33 | } 34 | 35 | async set (set, options) { 36 | return this.mutate({ set }, options) 37 | } 38 | 39 | async del (del, options) { 40 | return this.mutate({ del }, options) 41 | } 42 | 43 | async query (query, vars = null) { 44 | return this.txn().query(query, vars) 45 | } 46 | 47 | async alter (schema) { 48 | const op = new Operation() 49 | op.setSchema(schema) 50 | this.log('Alter request:', schema) 51 | const resp = await this.client.alter(op) 52 | this.log('Alter response:', resp.toObject()) 53 | return resp 54 | } 55 | 56 | async dropAll () { 57 | const op = new Operation() 58 | op.setDropAll(true) 59 | this.log('Drop All request:') 60 | const resp = await this.client.alter(op) 61 | this.log('Drop All response:', resp.toObject()) 62 | return resp 63 | } 64 | 65 | txn () { 66 | return new DgraphTransaction(this.client.newTxn(), this.debug) 67 | } 68 | 69 | close () { 70 | this.stubs.forEach((stub) => { 71 | stub.close() 72 | }) 73 | } 74 | 75 | log (event, ...params) { 76 | if (this.debug) { 77 | const stringy = params.map(param => JSON.stringify(param)) 78 | // eslint-disable-next-line no-console 79 | console.log(event, ...stringy) 80 | } 81 | } 82 | } 83 | 84 | export default DgraphNodeClient 85 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import DgraphClient from './dgraph' 2 | 3 | export default DgraphClient 4 | -------------------------------------------------------------------------------- /src/transaction.js: -------------------------------------------------------------------------------- 1 | import { Mutation } from 'dgraph-js' 2 | 3 | const isString = obj => typeof obj === 'string' 4 | 5 | class DgraphTransaction { 6 | constructor (txn, debug) { 7 | this.txn = txn 8 | this.debug = debug 9 | } 10 | 11 | async mutate (mutation, options) { 12 | const mut = new Mutation() 13 | const { commitNow, ignoreConflict } = options || {} 14 | if (mutation.set) { 15 | if (isString(mutation.set)) mut.setSetNquads(mutation.set) 16 | else mut.setSetJson(mutation.set) 17 | } 18 | if (mutation.del) { 19 | if (isString(mutation.del)) mut.setDelNquads(mutation.del) 20 | else mut.setDeleteJson(mutation.del) 21 | } 22 | mut.setCommitNow(commitNow) 23 | mut.setIgnoreIndexConflict(ignoreConflict) 24 | this.log('Mutation request:', mutation, options) 25 | const resp = await this.txn.mutate(mut) 26 | const respMap = resp.getUidsMap().toObject() || [] 27 | const uids = {} 28 | respMap.forEach(([name, uid]) => { 29 | uids[name] = uid 30 | }) 31 | const parsed = { 32 | data: { 33 | uids, 34 | }, 35 | } 36 | this.log('Mutation response:', parsed) 37 | return parsed 38 | } 39 | 40 | async set (set, options) { 41 | return this.mutate({ set }, options) 42 | } 43 | 44 | async del (del, options) { 45 | return this.mutate({ del }, options) 46 | } 47 | 48 | async query (query, vars = null) { 49 | this.log('Query request:', query, vars) 50 | const res = await this.txn.queryWithVars(query, vars) 51 | const data = { 52 | data: res.getJson(), 53 | } 54 | this.log('Query response:', data, vars) 55 | return data 56 | } 57 | 58 | async commit () { 59 | return this.txn.commit() 60 | } 61 | 62 | async discard () { 63 | return this.txn.discard() 64 | } 65 | 66 | log (event, ...params) { 67 | if (this.debug) { 68 | const stringy = params.map(param => JSON.stringify(param)) 69 | // eslint-disable-next-line no-console 70 | console.log(event, ...stringy) 71 | } 72 | } 73 | } 74 | 75 | export default DgraphTransaction 76 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.32", "@babel/code-frame@^7.0.0-beta.31": 6 | version "7.0.0-beta.32" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.32.tgz#04f231b8ec70370df830d9926ce0f5add074ec4c" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@babel/helper-function-name@7.0.0-beta.32": 14 | version "7.0.0-beta.32" 15 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.32.tgz#6161af4419f1b4e3ed2d28c0c79c160e218be1f3" 16 | dependencies: 17 | "@babel/helper-get-function-arity" "7.0.0-beta.32" 18 | "@babel/template" "7.0.0-beta.32" 19 | "@babel/types" "7.0.0-beta.32" 20 | 21 | "@babel/helper-get-function-arity@7.0.0-beta.32": 22 | version "7.0.0-beta.32" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.32.tgz#93721a99db3757de575a83bab7c453299abca568" 24 | dependencies: 25 | "@babel/types" "7.0.0-beta.32" 26 | 27 | "@babel/template@7.0.0-beta.32": 28 | version "7.0.0-beta.32" 29 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.32.tgz#e1d9fdbd2a7bcf128f2f920744a67dab18072495" 30 | dependencies: 31 | "@babel/code-frame" "7.0.0-beta.32" 32 | "@babel/types" "7.0.0-beta.32" 33 | babylon "7.0.0-beta.32" 34 | lodash "^4.2.0" 35 | 36 | "@babel/traverse@^7.0.0-beta.31": 37 | version "7.0.0-beta.32" 38 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.32.tgz#b78b754c6e1af3360626183738e4c7a05951bc99" 39 | dependencies: 40 | "@babel/code-frame" "7.0.0-beta.32" 41 | "@babel/helper-function-name" "7.0.0-beta.32" 42 | "@babel/types" "7.0.0-beta.32" 43 | babylon "7.0.0-beta.32" 44 | debug "^3.0.1" 45 | globals "^10.0.0" 46 | invariant "^2.2.0" 47 | lodash "^4.2.0" 48 | 49 | "@babel/types@7.0.0-beta.32", "@babel/types@^7.0.0-beta.31": 50 | version "7.0.0-beta.32" 51 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.32.tgz#c317d0ecc89297b80bbcb2f50608e31f6452a5ff" 52 | dependencies: 53 | esutils "^2.0.2" 54 | lodash "^4.2.0" 55 | to-fast-properties "^2.0.0" 56 | 57 | abab@^1.0.3: 58 | version "1.0.3" 59 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 60 | 61 | abbrev@1: 62 | version "1.1.0" 63 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 64 | 65 | acorn-globals@^3.1.0: 66 | version "3.1.0" 67 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 68 | dependencies: 69 | acorn "^4.0.4" 70 | 71 | acorn-jsx@^3.0.0: 72 | version "3.0.1" 73 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 74 | dependencies: 75 | acorn "^3.0.4" 76 | 77 | acorn@^3.0.4: 78 | version "3.3.0" 79 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 80 | 81 | acorn@^4.0.4: 82 | version "4.0.11" 83 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 84 | 85 | acorn@^5.2.1: 86 | version "5.2.1" 87 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 88 | 89 | ajv-keywords@^2.1.0: 90 | version "2.1.1" 91 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 92 | 93 | ajv@^4.9.1: 94 | version "4.11.7" 95 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 96 | dependencies: 97 | co "^4.6.0" 98 | json-stable-stringify "^1.0.1" 99 | 100 | ajv@^5.2.3, ajv@^5.3.0: 101 | version "5.3.0" 102 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 103 | dependencies: 104 | co "^4.6.0" 105 | fast-deep-equal "^1.0.0" 106 | fast-json-stable-stringify "^2.0.0" 107 | json-schema-traverse "^0.3.0" 108 | 109 | align-text@^0.1.1, align-text@^0.1.3: 110 | version "0.1.4" 111 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 112 | dependencies: 113 | kind-of "^3.0.2" 114 | longest "^1.0.1" 115 | repeat-string "^1.5.2" 116 | 117 | amdefine@>=0.0.4: 118 | version "1.0.1" 119 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 120 | 121 | ansi-escapes@^1.4.0: 122 | version "1.4.0" 123 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 124 | 125 | ansi-escapes@^3.0.0: 126 | version "3.0.0" 127 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 128 | 129 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 130 | version "2.1.1" 131 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 132 | 133 | ansi-regex@^3.0.0: 134 | version "3.0.0" 135 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 136 | 137 | ansi-styles@^2.2.1: 138 | version "2.2.1" 139 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 140 | 141 | ansi-styles@^3.0.0: 142 | version "3.0.0" 143 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 144 | dependencies: 145 | color-convert "^1.0.0" 146 | 147 | ansi-styles@^3.1.0: 148 | version "3.2.0" 149 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 150 | dependencies: 151 | color-convert "^1.9.0" 152 | 153 | anymatch@^1.3.0: 154 | version "1.3.0" 155 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 156 | dependencies: 157 | arrify "^1.0.0" 158 | micromatch "^2.1.5" 159 | 160 | append-transform@^0.4.0: 161 | version "0.4.0" 162 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 163 | dependencies: 164 | default-require-extensions "^1.0.0" 165 | 166 | aproba@^1.0.3: 167 | version "1.1.1" 168 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 169 | 170 | are-we-there-yet@~1.1.2: 171 | version "1.1.4" 172 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 173 | dependencies: 174 | delegates "^1.0.0" 175 | readable-stream "^2.0.6" 176 | 177 | argparse@^1.0.7: 178 | version "1.0.9" 179 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 180 | dependencies: 181 | sprintf-js "~1.0.2" 182 | 183 | aria-query@^0.7.0: 184 | version "0.7.0" 185 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24" 186 | dependencies: 187 | ast-types-flow "0.0.7" 188 | 189 | arr-diff@^2.0.0: 190 | version "2.0.0" 191 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 192 | dependencies: 193 | arr-flatten "^1.0.1" 194 | 195 | arr-flatten@^1.0.1: 196 | version "1.0.3" 197 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 198 | 199 | array-equal@^1.0.0: 200 | version "1.0.0" 201 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 202 | 203 | array-includes@^3.0.3: 204 | version "3.0.3" 205 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 206 | dependencies: 207 | define-properties "^1.1.2" 208 | es-abstract "^1.7.0" 209 | 210 | array-union@^1.0.1: 211 | version "1.0.2" 212 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 213 | dependencies: 214 | array-uniq "^1.0.1" 215 | 216 | array-uniq@^1.0.1: 217 | version "1.0.3" 218 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 219 | 220 | array-unique@^0.2.1: 221 | version "0.2.1" 222 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 223 | 224 | arrify@^1.0.0, arrify@^1.0.1: 225 | version "1.0.1" 226 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 227 | 228 | asap@~2.0.3: 229 | version "2.0.6" 230 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 231 | 232 | ascli@~1: 233 | version "1.0.1" 234 | resolved "https://registry.yarnpkg.com/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" 235 | dependencies: 236 | colour "~0.7.1" 237 | optjs "~3.2.2" 238 | 239 | asn1@~0.2.3: 240 | version "0.2.3" 241 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 242 | 243 | assert-plus@1.0.0, assert-plus@^1.0.0: 244 | version "1.0.0" 245 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 246 | 247 | assert-plus@^0.2.0: 248 | version "0.2.0" 249 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 250 | 251 | ast-types-flow@0.0.7: 252 | version "0.0.7" 253 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 254 | 255 | async-each@^1.0.0: 256 | version "1.0.1" 257 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 258 | 259 | async@^1.4.0: 260 | version "1.5.2" 261 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 262 | 263 | async@^2.1.4: 264 | version "2.3.0" 265 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 266 | dependencies: 267 | lodash "^4.14.0" 268 | 269 | asynckit@^0.4.0: 270 | version "0.4.0" 271 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 272 | 273 | aws-sign2@~0.6.0: 274 | version "0.6.0" 275 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 276 | 277 | aws4@^1.2.1: 278 | version "1.6.0" 279 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 280 | 281 | axobject-query@^0.1.0: 282 | version "0.1.0" 283 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 284 | dependencies: 285 | ast-types-flow "0.0.7" 286 | 287 | babel-cli@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 290 | dependencies: 291 | babel-core "^6.24.1" 292 | babel-polyfill "^6.23.0" 293 | babel-register "^6.24.1" 294 | babel-runtime "^6.22.0" 295 | commander "^2.8.1" 296 | convert-source-map "^1.1.0" 297 | fs-readdir-recursive "^1.0.0" 298 | glob "^7.0.0" 299 | lodash "^4.2.0" 300 | output-file-sync "^1.1.0" 301 | path-is-absolute "^1.0.0" 302 | slash "^1.0.0" 303 | source-map "^0.5.0" 304 | v8flags "^2.0.10" 305 | optionalDependencies: 306 | chokidar "^1.6.1" 307 | 308 | babel-code-frame@^6.22.0: 309 | version "6.22.0" 310 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 311 | dependencies: 312 | chalk "^1.1.0" 313 | esutils "^2.0.2" 314 | js-tokens "^3.0.0" 315 | 316 | babel-core@^6.0.0, babel-core@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 319 | dependencies: 320 | babel-code-frame "^6.22.0" 321 | babel-generator "^6.24.1" 322 | babel-helpers "^6.24.1" 323 | babel-messages "^6.23.0" 324 | babel-register "^6.24.1" 325 | babel-runtime "^6.22.0" 326 | babel-template "^6.24.1" 327 | babel-traverse "^6.24.1" 328 | babel-types "^6.24.1" 329 | babylon "^6.11.0" 330 | convert-source-map "^1.1.0" 331 | debug "^2.1.1" 332 | json5 "^0.5.0" 333 | lodash "^4.2.0" 334 | minimatch "^3.0.2" 335 | path-is-absolute "^1.0.0" 336 | private "^0.1.6" 337 | slash "^1.0.0" 338 | source-map "^0.5.0" 339 | 340 | babel-eslint@^8.0.2: 341 | version "8.0.2" 342 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.2.tgz#e44fb9a037d749486071d52d65312f5c20aa7530" 343 | dependencies: 344 | "@babel/code-frame" "^7.0.0-beta.31" 345 | "@babel/traverse" "^7.0.0-beta.31" 346 | "@babel/types" "^7.0.0-beta.31" 347 | babylon "^7.0.0-beta.31" 348 | 349 | babel-generator@^6.18.0, babel-generator@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 352 | dependencies: 353 | babel-messages "^6.23.0" 354 | babel-runtime "^6.22.0" 355 | babel-types "^6.24.1" 356 | detect-indent "^4.0.0" 357 | jsesc "^1.3.0" 358 | lodash "^4.2.0" 359 | source-map "^0.5.0" 360 | trim-right "^1.0.1" 361 | 362 | babel-helper-bindify-decorators@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 365 | dependencies: 366 | babel-runtime "^6.22.0" 367 | babel-traverse "^6.24.1" 368 | babel-types "^6.24.1" 369 | 370 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 373 | dependencies: 374 | babel-helper-explode-assignable-expression "^6.24.1" 375 | babel-runtime "^6.22.0" 376 | babel-types "^6.24.1" 377 | 378 | babel-helper-call-delegate@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 381 | dependencies: 382 | babel-helper-hoist-variables "^6.24.1" 383 | babel-runtime "^6.22.0" 384 | babel-traverse "^6.24.1" 385 | babel-types "^6.24.1" 386 | 387 | babel-helper-define-map@^6.24.1: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 390 | dependencies: 391 | babel-helper-function-name "^6.24.1" 392 | babel-runtime "^6.22.0" 393 | babel-types "^6.24.1" 394 | lodash "^4.2.0" 395 | 396 | babel-helper-explode-assignable-expression@^6.24.1: 397 | version "6.24.1" 398 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | babel-traverse "^6.24.1" 402 | babel-types "^6.24.1" 403 | 404 | babel-helper-explode-class@^6.24.1: 405 | version "6.24.1" 406 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 407 | dependencies: 408 | babel-helper-bindify-decorators "^6.24.1" 409 | babel-runtime "^6.22.0" 410 | babel-traverse "^6.24.1" 411 | babel-types "^6.24.1" 412 | 413 | babel-helper-function-name@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 416 | dependencies: 417 | babel-helper-get-function-arity "^6.24.1" 418 | babel-runtime "^6.22.0" 419 | babel-template "^6.24.1" 420 | babel-traverse "^6.24.1" 421 | babel-types "^6.24.1" 422 | 423 | babel-helper-get-function-arity@^6.24.1: 424 | version "6.24.1" 425 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 426 | dependencies: 427 | babel-runtime "^6.22.0" 428 | babel-types "^6.24.1" 429 | 430 | babel-helper-hoist-variables@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 433 | dependencies: 434 | babel-runtime "^6.22.0" 435 | babel-types "^6.24.1" 436 | 437 | babel-helper-optimise-call-expression@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | babel-types "^6.24.1" 443 | 444 | babel-helper-regex@^6.24.1: 445 | version "6.24.1" 446 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | babel-types "^6.24.1" 450 | lodash "^4.2.0" 451 | 452 | babel-helper-remap-async-to-generator@^6.24.1: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 455 | dependencies: 456 | babel-helper-function-name "^6.24.1" 457 | babel-runtime "^6.22.0" 458 | babel-template "^6.24.1" 459 | babel-traverse "^6.24.1" 460 | babel-types "^6.24.1" 461 | 462 | babel-helper-replace-supers@^6.24.1: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 465 | dependencies: 466 | babel-helper-optimise-call-expression "^6.24.1" 467 | babel-messages "^6.23.0" 468 | babel-runtime "^6.22.0" 469 | babel-template "^6.24.1" 470 | babel-traverse "^6.24.1" 471 | babel-types "^6.24.1" 472 | 473 | babel-helpers@^6.24.1: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | babel-template "^6.24.1" 479 | 480 | babel-jest@^20.0.3: 481 | version "20.0.3" 482 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 483 | dependencies: 484 | babel-core "^6.0.0" 485 | babel-plugin-istanbul "^4.0.0" 486 | babel-preset-jest "^20.0.3" 487 | 488 | babel-messages@^6.23.0: 489 | version "6.23.0" 490 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-check-es2015-constants@^6.22.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-external-helpers@^6.22.0: 501 | version "6.22.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 503 | dependencies: 504 | babel-runtime "^6.22.0" 505 | 506 | babel-plugin-istanbul@^4.0.0: 507 | version "4.1.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 509 | dependencies: 510 | find-up "^2.1.0" 511 | istanbul-lib-instrument "^1.6.2" 512 | test-exclude "^4.0.3" 513 | 514 | babel-plugin-jest-hoist@^20.0.3: 515 | version "20.0.3" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 517 | 518 | babel-plugin-syntax-async-functions@^6.8.0: 519 | version "6.13.0" 520 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 521 | 522 | babel-plugin-syntax-async-generators@^6.5.0: 523 | version "6.13.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 525 | 526 | babel-plugin-syntax-class-constructor-call@^6.18.0: 527 | version "6.18.0" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 529 | 530 | babel-plugin-syntax-class-properties@^6.8.0: 531 | version "6.13.0" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 533 | 534 | babel-plugin-syntax-decorators@^6.13.0: 535 | version "6.13.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 537 | 538 | babel-plugin-syntax-do-expressions@^6.8.0: 539 | version "6.13.0" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 541 | 542 | babel-plugin-syntax-dynamic-import@^6.18.0: 543 | version "6.18.0" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 545 | 546 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 547 | version "6.13.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 549 | 550 | babel-plugin-syntax-export-extensions@^6.8.0: 551 | version "6.13.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 553 | 554 | babel-plugin-syntax-flow@^6.18.0: 555 | version "6.18.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 557 | 558 | babel-plugin-syntax-function-bind@^6.8.0: 559 | version "6.13.0" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 561 | 562 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 563 | version "6.13.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 565 | 566 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 567 | version "6.22.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 569 | 570 | babel-plugin-transform-async-generator-functions@^6.24.1: 571 | version "6.24.1" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 573 | dependencies: 574 | babel-helper-remap-async-to-generator "^6.24.1" 575 | babel-plugin-syntax-async-generators "^6.5.0" 576 | babel-runtime "^6.22.0" 577 | 578 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 579 | version "6.24.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 581 | dependencies: 582 | babel-helper-remap-async-to-generator "^6.24.1" 583 | babel-plugin-syntax-async-functions "^6.8.0" 584 | babel-runtime "^6.22.0" 585 | 586 | babel-plugin-transform-class-constructor-call@^6.24.1: 587 | version "6.24.1" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 589 | dependencies: 590 | babel-plugin-syntax-class-constructor-call "^6.18.0" 591 | babel-runtime "^6.22.0" 592 | babel-template "^6.24.1" 593 | 594 | babel-plugin-transform-class-properties@^6.24.1: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 597 | dependencies: 598 | babel-helper-function-name "^6.24.1" 599 | babel-plugin-syntax-class-properties "^6.8.0" 600 | babel-runtime "^6.22.0" 601 | babel-template "^6.24.1" 602 | 603 | babel-plugin-transform-decorators@^6.24.1: 604 | version "6.24.1" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 606 | dependencies: 607 | babel-helper-explode-class "^6.24.1" 608 | babel-plugin-syntax-decorators "^6.13.0" 609 | babel-runtime "^6.22.0" 610 | babel-template "^6.24.1" 611 | babel-types "^6.24.1" 612 | 613 | babel-plugin-transform-do-expressions@^6.22.0: 614 | version "6.22.0" 615 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 616 | dependencies: 617 | babel-plugin-syntax-do-expressions "^6.8.0" 618 | babel-runtime "^6.22.0" 619 | 620 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 621 | version "6.22.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | 626 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 627 | version "6.22.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 629 | dependencies: 630 | babel-runtime "^6.22.0" 631 | 632 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 633 | version "6.24.1" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 635 | dependencies: 636 | babel-runtime "^6.22.0" 637 | babel-template "^6.24.1" 638 | babel-traverse "^6.24.1" 639 | babel-types "^6.24.1" 640 | lodash "^4.2.0" 641 | 642 | babel-plugin-transform-es2015-classes@^6.23.0: 643 | version "6.24.1" 644 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 645 | dependencies: 646 | babel-helper-define-map "^6.24.1" 647 | babel-helper-function-name "^6.24.1" 648 | babel-helper-optimise-call-expression "^6.24.1" 649 | babel-helper-replace-supers "^6.24.1" 650 | babel-messages "^6.23.0" 651 | babel-runtime "^6.22.0" 652 | babel-template "^6.24.1" 653 | babel-traverse "^6.24.1" 654 | babel-types "^6.24.1" 655 | 656 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 657 | version "6.24.1" 658 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 659 | dependencies: 660 | babel-runtime "^6.22.0" 661 | babel-template "^6.24.1" 662 | 663 | babel-plugin-transform-es2015-destructuring@^6.23.0: 664 | version "6.23.0" 665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 666 | dependencies: 667 | babel-runtime "^6.22.0" 668 | 669 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 670 | version "6.24.1" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 672 | dependencies: 673 | babel-runtime "^6.22.0" 674 | babel-types "^6.24.1" 675 | 676 | babel-plugin-transform-es2015-for-of@^6.23.0: 677 | version "6.23.0" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 679 | dependencies: 680 | babel-runtime "^6.22.0" 681 | 682 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1: 683 | version "6.24.1" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 685 | dependencies: 686 | babel-helper-function-name "^6.24.1" 687 | babel-runtime "^6.22.0" 688 | babel-types "^6.24.1" 689 | 690 | babel-plugin-transform-es2015-literals@^6.22.0: 691 | version "6.22.0" 692 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 693 | dependencies: 694 | babel-runtime "^6.22.0" 695 | 696 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 697 | version "6.24.1" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 699 | dependencies: 700 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 701 | babel-runtime "^6.22.0" 702 | babel-template "^6.24.1" 703 | 704 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 705 | version "6.24.1" 706 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 707 | dependencies: 708 | babel-plugin-transform-strict-mode "^6.24.1" 709 | babel-runtime "^6.22.0" 710 | babel-template "^6.24.1" 711 | babel-types "^6.24.1" 712 | 713 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 714 | version "6.24.1" 715 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 716 | dependencies: 717 | babel-helper-hoist-variables "^6.24.1" 718 | babel-runtime "^6.22.0" 719 | babel-template "^6.24.1" 720 | 721 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 722 | version "6.24.1" 723 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 724 | dependencies: 725 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 726 | babel-runtime "^6.22.0" 727 | babel-template "^6.24.1" 728 | 729 | babel-plugin-transform-es2015-object-super@^6.22.0: 730 | version "6.24.1" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 732 | dependencies: 733 | babel-helper-replace-supers "^6.24.1" 734 | babel-runtime "^6.22.0" 735 | 736 | babel-plugin-transform-es2015-parameters@^6.23.0: 737 | version "6.24.1" 738 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 739 | dependencies: 740 | babel-helper-call-delegate "^6.24.1" 741 | babel-helper-get-function-arity "^6.24.1" 742 | babel-runtime "^6.22.0" 743 | babel-template "^6.24.1" 744 | babel-traverse "^6.24.1" 745 | babel-types "^6.24.1" 746 | 747 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 748 | version "6.24.1" 749 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 750 | dependencies: 751 | babel-runtime "^6.22.0" 752 | babel-types "^6.24.1" 753 | 754 | babel-plugin-transform-es2015-spread@^6.22.0: 755 | version "6.22.0" 756 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 757 | dependencies: 758 | babel-runtime "^6.22.0" 759 | 760 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 761 | version "6.24.1" 762 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 763 | dependencies: 764 | babel-helper-regex "^6.24.1" 765 | babel-runtime "^6.22.0" 766 | babel-types "^6.24.1" 767 | 768 | babel-plugin-transform-es2015-template-literals@^6.22.0: 769 | version "6.22.0" 770 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 771 | dependencies: 772 | babel-runtime "^6.22.0" 773 | 774 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 775 | version "6.23.0" 776 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 777 | dependencies: 778 | babel-runtime "^6.22.0" 779 | 780 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 781 | version "6.24.1" 782 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 783 | dependencies: 784 | babel-helper-regex "^6.24.1" 785 | babel-runtime "^6.22.0" 786 | regexpu-core "^2.0.0" 787 | 788 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 789 | version "6.24.1" 790 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 791 | dependencies: 792 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 793 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 794 | babel-runtime "^6.22.0" 795 | 796 | babel-plugin-transform-export-extensions@^6.22.0: 797 | version "6.22.0" 798 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 799 | dependencies: 800 | babel-plugin-syntax-export-extensions "^6.8.0" 801 | babel-runtime "^6.22.0" 802 | 803 | babel-plugin-transform-flow-strip-types@^6.22.0: 804 | version "6.22.0" 805 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 806 | dependencies: 807 | babel-plugin-syntax-flow "^6.18.0" 808 | babel-runtime "^6.22.0" 809 | 810 | babel-plugin-transform-function-bind@^6.22.0: 811 | version "6.22.0" 812 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 813 | dependencies: 814 | babel-plugin-syntax-function-bind "^6.8.0" 815 | babel-runtime "^6.22.0" 816 | 817 | babel-plugin-transform-object-rest-spread@^6.22.0: 818 | version "6.23.0" 819 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 820 | dependencies: 821 | babel-plugin-syntax-object-rest-spread "^6.8.0" 822 | babel-runtime "^6.22.0" 823 | 824 | babel-plugin-transform-object-rest-spread@^6.23.0, babel-plugin-transform-object-rest-spread@^6.26.0: 825 | version "6.26.0" 826 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 827 | dependencies: 828 | babel-plugin-syntax-object-rest-spread "^6.8.0" 829 | babel-runtime "^6.26.0" 830 | 831 | babel-plugin-transform-regenerator@^6.22.0: 832 | version "6.24.1" 833 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 834 | dependencies: 835 | regenerator-transform "0.9.11" 836 | 837 | babel-plugin-transform-strict-mode@^6.24.1: 838 | version "6.24.1" 839 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 840 | dependencies: 841 | babel-runtime "^6.22.0" 842 | babel-types "^6.24.1" 843 | 844 | babel-polyfill@^6.23.0: 845 | version "6.23.0" 846 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 847 | dependencies: 848 | babel-runtime "^6.22.0" 849 | core-js "^2.4.0" 850 | regenerator-runtime "^0.10.0" 851 | 852 | babel-preset-env@^1.5.2: 853 | version "1.5.2" 854 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" 855 | dependencies: 856 | babel-plugin-check-es2015-constants "^6.22.0" 857 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 858 | babel-plugin-transform-async-to-generator "^6.22.0" 859 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 860 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 861 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 862 | babel-plugin-transform-es2015-classes "^6.23.0" 863 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 864 | babel-plugin-transform-es2015-destructuring "^6.23.0" 865 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 866 | babel-plugin-transform-es2015-for-of "^6.23.0" 867 | babel-plugin-transform-es2015-function-name "^6.22.0" 868 | babel-plugin-transform-es2015-literals "^6.22.0" 869 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 870 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 871 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 872 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 873 | babel-plugin-transform-es2015-object-super "^6.22.0" 874 | babel-plugin-transform-es2015-parameters "^6.23.0" 875 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 876 | babel-plugin-transform-es2015-spread "^6.22.0" 877 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 878 | babel-plugin-transform-es2015-template-literals "^6.22.0" 879 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 880 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 881 | babel-plugin-transform-exponentiation-operator "^6.22.0" 882 | babel-plugin-transform-regenerator "^6.22.0" 883 | browserslist "^2.1.2" 884 | invariant "^2.2.2" 885 | semver "^5.3.0" 886 | 887 | babel-preset-flow@^6.23.0: 888 | version "6.23.0" 889 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 890 | dependencies: 891 | babel-plugin-transform-flow-strip-types "^6.22.0" 892 | 893 | babel-preset-jest@^20.0.3: 894 | version "20.0.3" 895 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 896 | dependencies: 897 | babel-plugin-jest-hoist "^20.0.3" 898 | 899 | babel-preset-latest-node@^0.4.0: 900 | version "0.4.0" 901 | resolved "https://registry.yarnpkg.com/babel-preset-latest-node/-/babel-preset-latest-node-0.4.0.tgz#3f1ce1630dca5f0c6cc0f1a006bbbd95dffab3d8" 902 | dependencies: 903 | babel-plugin-check-es2015-constants "^6.22.0" 904 | babel-plugin-syntax-object-rest-spread "^6.13.0" 905 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 906 | babel-plugin-transform-async-to-generator "^6.24.1" 907 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 908 | babel-plugin-transform-es2015-function-name "^6.24.1" 909 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 910 | babel-plugin-transform-exponentiation-operator "^6.24.1" 911 | babel-plugin-transform-object-rest-spread "^6.23.0" 912 | 913 | babel-preset-stage-0@^6.24.1: 914 | version "6.24.1" 915 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 916 | dependencies: 917 | babel-plugin-transform-do-expressions "^6.22.0" 918 | babel-plugin-transform-function-bind "^6.22.0" 919 | babel-preset-stage-1 "^6.24.1" 920 | 921 | babel-preset-stage-1@^6.24.1: 922 | version "6.24.1" 923 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 924 | dependencies: 925 | babel-plugin-transform-class-constructor-call "^6.24.1" 926 | babel-plugin-transform-export-extensions "^6.22.0" 927 | babel-preset-stage-2 "^6.24.1" 928 | 929 | babel-preset-stage-2@^6.24.1: 930 | version "6.24.1" 931 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 932 | dependencies: 933 | babel-plugin-syntax-dynamic-import "^6.18.0" 934 | babel-plugin-transform-class-properties "^6.24.1" 935 | babel-plugin-transform-decorators "^6.24.1" 936 | babel-preset-stage-3 "^6.24.1" 937 | 938 | babel-preset-stage-3@^6.24.1: 939 | version "6.24.1" 940 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 941 | dependencies: 942 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 943 | babel-plugin-transform-async-generator-functions "^6.24.1" 944 | babel-plugin-transform-async-to-generator "^6.24.1" 945 | babel-plugin-transform-exponentiation-operator "^6.24.1" 946 | babel-plugin-transform-object-rest-spread "^6.22.0" 947 | 948 | babel-register@^6.24.1: 949 | version "6.24.1" 950 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 951 | dependencies: 952 | babel-core "^6.24.1" 953 | babel-runtime "^6.22.0" 954 | core-js "^2.4.0" 955 | home-or-tmp "^2.0.0" 956 | lodash "^4.2.0" 957 | mkdirp "^0.5.1" 958 | source-map-support "^0.4.2" 959 | 960 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 961 | version "6.23.0" 962 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 963 | dependencies: 964 | core-js "^2.4.0" 965 | regenerator-runtime "^0.10.0" 966 | 967 | babel-runtime@^6.26.0: 968 | version "6.26.0" 969 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 970 | dependencies: 971 | core-js "^2.4.0" 972 | regenerator-runtime "^0.11.0" 973 | 974 | babel-template@^6.16.0, babel-template@^6.24.1: 975 | version "6.24.1" 976 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 977 | dependencies: 978 | babel-runtime "^6.22.0" 979 | babel-traverse "^6.24.1" 980 | babel-types "^6.24.1" 981 | babylon "^6.11.0" 982 | lodash "^4.2.0" 983 | 984 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 985 | version "6.24.1" 986 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 987 | dependencies: 988 | babel-code-frame "^6.22.0" 989 | babel-messages "^6.23.0" 990 | babel-runtime "^6.22.0" 991 | babel-types "^6.24.1" 992 | babylon "^6.15.0" 993 | debug "^2.2.0" 994 | globals "^9.0.0" 995 | invariant "^2.2.0" 996 | lodash "^4.2.0" 997 | 998 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 999 | version "6.24.1" 1000 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 1001 | dependencies: 1002 | babel-runtime "^6.22.0" 1003 | esutils "^2.0.2" 1004 | lodash "^4.2.0" 1005 | to-fast-properties "^1.0.1" 1006 | 1007 | babylon@7.0.0-beta.32, babylon@^7.0.0-beta.31: 1008 | version "7.0.0-beta.32" 1009 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.32.tgz#e9033cb077f64d6895f4125968b37dc0a8c3bc6e" 1010 | 1011 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 1012 | version "6.17.0" 1013 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 1014 | 1015 | babylon@^6.17.4: 1016 | version "6.17.4" 1017 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 1018 | 1019 | balanced-match@^0.4.1: 1020 | version "0.4.2" 1021 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 1022 | 1023 | balanced-match@^1.0.0: 1024 | version "1.0.0" 1025 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1026 | 1027 | bcrypt-pbkdf@^1.0.0: 1028 | version "1.0.1" 1029 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 1030 | dependencies: 1031 | tweetnacl "^0.14.3" 1032 | 1033 | binary-extensions@^1.0.0: 1034 | version "1.8.0" 1035 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 1036 | 1037 | block-stream@*: 1038 | version "0.0.9" 1039 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1040 | dependencies: 1041 | inherits "~2.0.0" 1042 | 1043 | boom@2.x.x: 1044 | version "2.10.1" 1045 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1046 | dependencies: 1047 | hoek "2.x.x" 1048 | 1049 | brace-expansion@^1.0.0: 1050 | version "1.1.7" 1051 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 1052 | dependencies: 1053 | balanced-match "^0.4.1" 1054 | concat-map "0.0.1" 1055 | 1056 | brace-expansion@^1.1.7: 1057 | version "1.1.8" 1058 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 1059 | dependencies: 1060 | balanced-match "^1.0.0" 1061 | concat-map "0.0.1" 1062 | 1063 | braces@^1.8.2: 1064 | version "1.8.5" 1065 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1066 | dependencies: 1067 | expand-range "^1.8.1" 1068 | preserve "^0.2.0" 1069 | repeat-element "^1.1.2" 1070 | 1071 | browser-resolve@^1.11.2: 1072 | version "1.11.2" 1073 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 1074 | dependencies: 1075 | resolve "1.1.7" 1076 | 1077 | browserslist@^2.1.2: 1078 | version "2.1.5" 1079 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.5.tgz#e882550df3d1cd6d481c1a3e0038f2baf13a4711" 1080 | dependencies: 1081 | caniuse-lite "^1.0.30000684" 1082 | electron-to-chromium "^1.3.14" 1083 | 1084 | bser@1.0.2: 1085 | version "1.0.2" 1086 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 1087 | dependencies: 1088 | node-int64 "^0.4.0" 1089 | 1090 | bser@^2.0.0: 1091 | version "2.0.0" 1092 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1093 | dependencies: 1094 | node-int64 "^0.4.0" 1095 | 1096 | buffer-shims@~1.0.0: 1097 | version "1.0.0" 1098 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1099 | 1100 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 1101 | version "1.1.1" 1102 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1103 | 1104 | bytebuffer@~5: 1105 | version "5.0.1" 1106 | resolved "https://registry.yarnpkg.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" 1107 | dependencies: 1108 | long "~3" 1109 | 1110 | caller-path@^0.1.0: 1111 | version "0.1.0" 1112 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1113 | dependencies: 1114 | callsites "^0.2.0" 1115 | 1116 | callsites@^0.2.0: 1117 | version "0.2.0" 1118 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1119 | 1120 | callsites@^2.0.0: 1121 | version "2.0.0" 1122 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1123 | 1124 | camelcase@^1.0.2: 1125 | version "1.2.1" 1126 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1127 | 1128 | camelcase@^3.0.0: 1129 | version "3.0.0" 1130 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1131 | 1132 | caniuse-lite@^1.0.30000684: 1133 | version "1.0.30000696" 1134 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000696.tgz#30f2695d2a01a0dfd779a26ab83f4d134b3da5cc" 1135 | 1136 | caseless@~0.12.0: 1137 | version "0.12.0" 1138 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1139 | 1140 | center-align@^0.1.1: 1141 | version "0.1.3" 1142 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1143 | dependencies: 1144 | align-text "^0.1.3" 1145 | lazy-cache "^1.0.3" 1146 | 1147 | chalk@^1.1.0, chalk@^1.1.3: 1148 | version "1.1.3" 1149 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1150 | dependencies: 1151 | ansi-styles "^2.2.1" 1152 | escape-string-regexp "^1.0.2" 1153 | has-ansi "^2.0.0" 1154 | strip-ansi "^3.0.0" 1155 | supports-color "^2.0.0" 1156 | 1157 | chalk@^2.0.0, chalk@^2.1.0: 1158 | version "2.3.0" 1159 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1160 | dependencies: 1161 | ansi-styles "^3.1.0" 1162 | escape-string-regexp "^1.0.5" 1163 | supports-color "^4.0.0" 1164 | 1165 | chokidar@^1.6.1: 1166 | version "1.6.1" 1167 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1168 | dependencies: 1169 | anymatch "^1.3.0" 1170 | async-each "^1.0.0" 1171 | glob-parent "^2.0.0" 1172 | inherits "^2.0.1" 1173 | is-binary-path "^1.0.0" 1174 | is-glob "^2.0.0" 1175 | path-is-absolute "^1.0.0" 1176 | readdirp "^2.0.0" 1177 | optionalDependencies: 1178 | fsevents "^1.0.0" 1179 | 1180 | ci-info@^1.0.0: 1181 | version "1.0.0" 1182 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1183 | 1184 | circular-json@^0.3.1: 1185 | version "0.3.3" 1186 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1187 | 1188 | cli-cursor@^2.1.0: 1189 | version "2.1.0" 1190 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1191 | dependencies: 1192 | restore-cursor "^2.0.0" 1193 | 1194 | cli-width@^2.0.0: 1195 | version "2.2.0" 1196 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1197 | 1198 | cliui@^2.1.0: 1199 | version "2.1.0" 1200 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1201 | dependencies: 1202 | center-align "^0.1.1" 1203 | right-align "^0.1.1" 1204 | wordwrap "0.0.2" 1205 | 1206 | cliui@^3.2.0: 1207 | version "3.2.0" 1208 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1209 | dependencies: 1210 | string-width "^1.0.1" 1211 | strip-ansi "^3.0.1" 1212 | wrap-ansi "^2.0.0" 1213 | 1214 | co@^4.6.0: 1215 | version "4.6.0" 1216 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1217 | 1218 | code-point-at@^1.0.0: 1219 | version "1.1.0" 1220 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1221 | 1222 | color-convert@^1.0.0: 1223 | version "1.9.0" 1224 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1225 | dependencies: 1226 | color-name "^1.1.1" 1227 | 1228 | color-convert@^1.9.0: 1229 | version "1.9.1" 1230 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1231 | dependencies: 1232 | color-name "^1.1.1" 1233 | 1234 | color-name@^1.1.1: 1235 | version "1.1.2" 1236 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1237 | 1238 | colour@~0.7.1: 1239 | version "0.7.1" 1240 | resolved "https://registry.yarnpkg.com/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" 1241 | 1242 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1243 | version "1.0.5" 1244 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1245 | dependencies: 1246 | delayed-stream "~1.0.0" 1247 | 1248 | commander@^2.8.1: 1249 | version "2.9.0" 1250 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1251 | dependencies: 1252 | graceful-readlink ">= 1.0.0" 1253 | 1254 | concat-map@0.0.1: 1255 | version "0.0.1" 1256 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1257 | 1258 | concat-stream@^1.6.0: 1259 | version "1.6.0" 1260 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1261 | dependencies: 1262 | inherits "^2.0.3" 1263 | readable-stream "^2.2.2" 1264 | typedarray "^0.0.6" 1265 | 1266 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1267 | version "1.1.0" 1268 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1269 | 1270 | contains-path@^0.1.0: 1271 | version "0.1.0" 1272 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1273 | 1274 | content-type-parser@^1.0.1: 1275 | version "1.0.1" 1276 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1277 | 1278 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1279 | version "1.5.0" 1280 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1281 | 1282 | core-js@^1.0.0: 1283 | version "1.2.7" 1284 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1285 | 1286 | core-js@^2.4.0: 1287 | version "2.4.1" 1288 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1289 | 1290 | core-util-is@~1.0.0: 1291 | version "1.0.2" 1292 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1293 | 1294 | coveralls@^3.0.0: 1295 | version "3.0.0" 1296 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.0.tgz#22ef730330538080d29b8c151dc9146afde88a99" 1297 | dependencies: 1298 | js-yaml "^3.6.1" 1299 | lcov-parse "^0.0.10" 1300 | log-driver "^1.2.5" 1301 | minimist "^1.2.0" 1302 | request "^2.79.0" 1303 | 1304 | cross-spawn@^5.1.0: 1305 | version "5.1.0" 1306 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1307 | dependencies: 1308 | lru-cache "^4.0.1" 1309 | shebang-command "^1.2.0" 1310 | which "^1.2.9" 1311 | 1312 | cryptiles@2.x.x: 1313 | version "2.0.5" 1314 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1315 | dependencies: 1316 | boom "2.x.x" 1317 | 1318 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1319 | version "0.3.2" 1320 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1321 | 1322 | "cssstyle@>= 0.2.37 < 0.3.0": 1323 | version "0.2.37" 1324 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1325 | dependencies: 1326 | cssom "0.3.x" 1327 | 1328 | damerau-levenshtein@^1.0.0: 1329 | version "1.0.4" 1330 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1331 | 1332 | dashdash@^1.12.0: 1333 | version "1.14.1" 1334 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1335 | dependencies: 1336 | assert-plus "^1.0.0" 1337 | 1338 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1339 | version "2.6.4" 1340 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 1341 | dependencies: 1342 | ms "0.7.3" 1343 | 1344 | debug@^2.6.8: 1345 | version "2.6.9" 1346 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1347 | dependencies: 1348 | ms "2.0.0" 1349 | 1350 | debug@^3.0.1: 1351 | version "3.1.0" 1352 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1353 | dependencies: 1354 | ms "2.0.0" 1355 | 1356 | decamelize@^1.0.0, decamelize@^1.1.1: 1357 | version "1.2.0" 1358 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1359 | 1360 | deep-extend@~0.4.0: 1361 | version "0.4.1" 1362 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1363 | 1364 | deep-is@~0.1.3: 1365 | version "0.1.3" 1366 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1367 | 1368 | default-require-extensions@^1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1371 | dependencies: 1372 | strip-bom "^2.0.0" 1373 | 1374 | define-properties@^1.1.2: 1375 | version "1.1.2" 1376 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1377 | dependencies: 1378 | foreach "^2.0.5" 1379 | object-keys "^1.0.8" 1380 | 1381 | del@^2.0.2: 1382 | version "2.2.2" 1383 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1384 | dependencies: 1385 | globby "^5.0.0" 1386 | is-path-cwd "^1.0.0" 1387 | is-path-in-cwd "^1.0.0" 1388 | object-assign "^4.0.1" 1389 | pify "^2.0.0" 1390 | pinkie-promise "^2.0.0" 1391 | rimraf "^2.2.8" 1392 | 1393 | delayed-stream@~1.0.0: 1394 | version "1.0.0" 1395 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1396 | 1397 | delegates@^1.0.0: 1398 | version "1.0.0" 1399 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1400 | 1401 | detect-indent@^4.0.0: 1402 | version "4.0.0" 1403 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1404 | dependencies: 1405 | repeating "^2.0.0" 1406 | 1407 | detect-libc@^1.0.2: 1408 | version "1.0.3" 1409 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1410 | 1411 | dgraph-js@^1.1.1: 1412 | version "1.1.1" 1413 | resolved "https://registry.yarnpkg.com/dgraph-js/-/dgraph-js-1.1.1.tgz#db9321508bc462e27c2998819f8366bfc7699d7b" 1414 | dependencies: 1415 | google-protobuf "^3.5.0" 1416 | 1417 | diff@^3.2.0: 1418 | version "3.2.0" 1419 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1420 | 1421 | doctrine@1.5.0: 1422 | version "1.5.0" 1423 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1424 | dependencies: 1425 | esutils "^2.0.2" 1426 | isarray "^1.0.0" 1427 | 1428 | doctrine@^2.0.0: 1429 | version "2.0.0" 1430 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1431 | dependencies: 1432 | esutils "^2.0.2" 1433 | isarray "^1.0.0" 1434 | 1435 | ecc-jsbn@~0.1.1: 1436 | version "0.1.1" 1437 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1438 | dependencies: 1439 | jsbn "~0.1.0" 1440 | 1441 | electron-to-chromium@^1.3.14: 1442 | version "1.3.14" 1443 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" 1444 | 1445 | emoji-regex@^6.1.0: 1446 | version "6.5.1" 1447 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" 1448 | 1449 | encoding@^0.1.11: 1450 | version "0.1.12" 1451 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1452 | dependencies: 1453 | iconv-lite "~0.4.13" 1454 | 1455 | "errno@>=0.1.1 <0.2.0-0": 1456 | version "0.1.4" 1457 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1458 | dependencies: 1459 | prr "~0.0.0" 1460 | 1461 | error-ex@^1.2.0: 1462 | version "1.3.1" 1463 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1464 | dependencies: 1465 | is-arrayish "^0.2.1" 1466 | 1467 | es-abstract@^1.7.0: 1468 | version "1.9.0" 1469 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227" 1470 | dependencies: 1471 | es-to-primitive "^1.1.1" 1472 | function-bind "^1.1.1" 1473 | has "^1.0.1" 1474 | is-callable "^1.1.3" 1475 | is-regex "^1.0.4" 1476 | 1477 | es-to-primitive@^1.1.1: 1478 | version "1.1.1" 1479 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1480 | dependencies: 1481 | is-callable "^1.1.1" 1482 | is-date-object "^1.0.1" 1483 | is-symbol "^1.0.1" 1484 | 1485 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1486 | version "1.0.5" 1487 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1488 | 1489 | escodegen@^1.6.1: 1490 | version "1.8.1" 1491 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1492 | dependencies: 1493 | esprima "^2.7.1" 1494 | estraverse "^1.9.1" 1495 | esutils "^2.0.2" 1496 | optionator "^0.8.1" 1497 | optionalDependencies: 1498 | source-map "~0.2.0" 1499 | 1500 | eslint-config-airbnb-base@^12.1.0: 1501 | version "12.1.0" 1502 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1503 | dependencies: 1504 | eslint-restricted-globals "^0.1.1" 1505 | 1506 | eslint-config-airbnb@^16.1.0: 1507 | version "16.1.0" 1508 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-16.1.0.tgz#2546bfb02cc9fe92284bf1723ccf2e87bc45ca46" 1509 | dependencies: 1510 | eslint-config-airbnb-base "^12.1.0" 1511 | 1512 | eslint-import-resolver-node@^0.3.1: 1513 | version "0.3.1" 1514 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1515 | dependencies: 1516 | debug "^2.6.8" 1517 | resolve "^1.2.0" 1518 | 1519 | eslint-module-utils@^2.1.1: 1520 | version "2.1.1" 1521 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1522 | dependencies: 1523 | debug "^2.6.8" 1524 | pkg-dir "^1.0.0" 1525 | 1526 | eslint-plugin-import@^2.8.0: 1527 | version "2.8.0" 1528 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1529 | dependencies: 1530 | builtin-modules "^1.1.1" 1531 | contains-path "^0.1.0" 1532 | debug "^2.6.8" 1533 | doctrine "1.5.0" 1534 | eslint-import-resolver-node "^0.3.1" 1535 | eslint-module-utils "^2.1.1" 1536 | has "^1.0.1" 1537 | lodash.cond "^4.3.0" 1538 | minimatch "^3.0.3" 1539 | read-pkg-up "^2.0.0" 1540 | 1541 | eslint-plugin-jsx-a11y@^6.0.2: 1542 | version "6.0.2" 1543 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.2.tgz#659277a758b036c305a7e4a13057c301cd3be73f" 1544 | dependencies: 1545 | aria-query "^0.7.0" 1546 | array-includes "^3.0.3" 1547 | ast-types-flow "0.0.7" 1548 | axobject-query "^0.1.0" 1549 | damerau-levenshtein "^1.0.0" 1550 | emoji-regex "^6.1.0" 1551 | jsx-ast-utils "^1.4.0" 1552 | 1553 | eslint-plugin-react@^7.4.0: 1554 | version "7.4.0" 1555 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz#300a95861b9729c087d362dd64abcc351a74364a" 1556 | dependencies: 1557 | doctrine "^2.0.0" 1558 | has "^1.0.1" 1559 | jsx-ast-utils "^2.0.0" 1560 | prop-types "^15.5.10" 1561 | 1562 | eslint-restricted-globals@^0.1.1: 1563 | version "0.1.1" 1564 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1565 | 1566 | eslint-scope@^3.7.1: 1567 | version "3.7.1" 1568 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1569 | dependencies: 1570 | esrecurse "^4.1.0" 1571 | estraverse "^4.1.1" 1572 | 1573 | eslint@^4.11.0: 1574 | version "4.11.0" 1575 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.11.0.tgz#39a8c82bc0a3783adf5a39fa27fdd9d36fac9a34" 1576 | dependencies: 1577 | ajv "^5.3.0" 1578 | babel-code-frame "^6.22.0" 1579 | chalk "^2.1.0" 1580 | concat-stream "^1.6.0" 1581 | cross-spawn "^5.1.0" 1582 | debug "^3.0.1" 1583 | doctrine "^2.0.0" 1584 | eslint-scope "^3.7.1" 1585 | espree "^3.5.2" 1586 | esquery "^1.0.0" 1587 | estraverse "^4.2.0" 1588 | esutils "^2.0.2" 1589 | file-entry-cache "^2.0.0" 1590 | functional-red-black-tree "^1.0.1" 1591 | glob "^7.1.2" 1592 | globals "^9.17.0" 1593 | ignore "^3.3.3" 1594 | imurmurhash "^0.1.4" 1595 | inquirer "^3.0.6" 1596 | is-resolvable "^1.0.0" 1597 | js-yaml "^3.9.1" 1598 | json-stable-stringify-without-jsonify "^1.0.1" 1599 | levn "^0.3.0" 1600 | lodash "^4.17.4" 1601 | minimatch "^3.0.2" 1602 | mkdirp "^0.5.1" 1603 | natural-compare "^1.4.0" 1604 | optionator "^0.8.2" 1605 | path-is-inside "^1.0.2" 1606 | pluralize "^7.0.0" 1607 | progress "^2.0.0" 1608 | require-uncached "^1.0.3" 1609 | semver "^5.3.0" 1610 | strip-ansi "^4.0.0" 1611 | strip-json-comments "~2.0.1" 1612 | table "^4.0.1" 1613 | text-table "~0.2.0" 1614 | 1615 | espree@^3.5.2: 1616 | version "3.5.2" 1617 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1618 | dependencies: 1619 | acorn "^5.2.1" 1620 | acorn-jsx "^3.0.0" 1621 | 1622 | esprima@^2.7.1: 1623 | version "2.7.3" 1624 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1625 | 1626 | esprima@^3.1.1: 1627 | version "3.1.3" 1628 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1629 | 1630 | esprima@^4.0.0: 1631 | version "4.0.0" 1632 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1633 | 1634 | esquery@^1.0.0: 1635 | version "1.0.0" 1636 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1637 | dependencies: 1638 | estraverse "^4.0.0" 1639 | 1640 | esrecurse@^4.1.0: 1641 | version "4.2.0" 1642 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1643 | dependencies: 1644 | estraverse "^4.1.0" 1645 | object-assign "^4.0.1" 1646 | 1647 | estraverse@^1.9.1: 1648 | version "1.9.3" 1649 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1650 | 1651 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1652 | version "4.2.0" 1653 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1654 | 1655 | esutils@^2.0.2: 1656 | version "2.0.2" 1657 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1658 | 1659 | exec-sh@^0.2.0: 1660 | version "0.2.0" 1661 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1662 | dependencies: 1663 | merge "^1.1.3" 1664 | 1665 | expand-brackets@^0.1.4: 1666 | version "0.1.5" 1667 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1668 | dependencies: 1669 | is-posix-bracket "^0.1.0" 1670 | 1671 | expand-range@^1.8.1: 1672 | version "1.8.2" 1673 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1674 | dependencies: 1675 | fill-range "^2.1.0" 1676 | 1677 | extend@~3.0.0: 1678 | version "3.0.0" 1679 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1680 | 1681 | external-editor@^2.0.4: 1682 | version "2.0.5" 1683 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1684 | dependencies: 1685 | iconv-lite "^0.4.17" 1686 | jschardet "^1.4.2" 1687 | tmp "^0.0.33" 1688 | 1689 | extglob@^0.3.1: 1690 | version "0.3.2" 1691 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1692 | dependencies: 1693 | is-extglob "^1.0.0" 1694 | 1695 | extsprintf@1.0.2: 1696 | version "1.0.2" 1697 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1698 | 1699 | fast-deep-equal@^1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1702 | 1703 | fast-json-stable-stringify@^2.0.0: 1704 | version "2.0.0" 1705 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1706 | 1707 | fast-levenshtein@~2.0.4: 1708 | version "2.0.6" 1709 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1710 | 1711 | fb-watchman@^1.8.0: 1712 | version "1.9.2" 1713 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1714 | dependencies: 1715 | bser "1.0.2" 1716 | 1717 | fb-watchman@^2.0.0: 1718 | version "2.0.0" 1719 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1720 | dependencies: 1721 | bser "^2.0.0" 1722 | 1723 | fbjs@^0.8.16: 1724 | version "0.8.16" 1725 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1726 | dependencies: 1727 | core-js "^1.0.0" 1728 | isomorphic-fetch "^2.1.1" 1729 | loose-envify "^1.0.0" 1730 | object-assign "^4.1.0" 1731 | promise "^7.1.1" 1732 | setimmediate "^1.0.5" 1733 | ua-parser-js "^0.7.9" 1734 | 1735 | figures@^2.0.0: 1736 | version "2.0.0" 1737 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1738 | dependencies: 1739 | escape-string-regexp "^1.0.5" 1740 | 1741 | file-entry-cache@^2.0.0: 1742 | version "2.0.0" 1743 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1744 | dependencies: 1745 | flat-cache "^1.2.1" 1746 | object-assign "^4.0.1" 1747 | 1748 | filename-regex@^2.0.0: 1749 | version "2.0.0" 1750 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1751 | 1752 | fileset@^2.0.2: 1753 | version "2.0.3" 1754 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1755 | dependencies: 1756 | glob "^7.0.3" 1757 | minimatch "^3.0.3" 1758 | 1759 | fill-range@^2.1.0: 1760 | version "2.2.3" 1761 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1762 | dependencies: 1763 | is-number "^2.1.0" 1764 | isobject "^2.0.0" 1765 | randomatic "^1.1.3" 1766 | repeat-element "^1.1.2" 1767 | repeat-string "^1.5.2" 1768 | 1769 | find-up@^1.0.0: 1770 | version "1.1.2" 1771 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1772 | dependencies: 1773 | path-exists "^2.0.0" 1774 | pinkie-promise "^2.0.0" 1775 | 1776 | find-up@^2.0.0, find-up@^2.1.0: 1777 | version "2.1.0" 1778 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1779 | dependencies: 1780 | locate-path "^2.0.0" 1781 | 1782 | flat-cache@^1.2.1: 1783 | version "1.3.0" 1784 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1785 | dependencies: 1786 | circular-json "^0.3.1" 1787 | del "^2.0.2" 1788 | graceful-fs "^4.1.2" 1789 | write "^0.2.1" 1790 | 1791 | flow-bin@^0.44.2: 1792 | version "0.44.2" 1793 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.44.2.tgz#3893c7db5de043ed82674f327a04b1309db208b5" 1794 | 1795 | for-in@^1.0.1: 1796 | version "1.0.2" 1797 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1798 | 1799 | for-own@^0.1.4: 1800 | version "0.1.5" 1801 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1802 | dependencies: 1803 | for-in "^1.0.1" 1804 | 1805 | foreach@^2.0.5: 1806 | version "2.0.5" 1807 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1808 | 1809 | forever-agent@~0.6.1: 1810 | version "0.6.1" 1811 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1812 | 1813 | form-data@~2.1.1: 1814 | version "2.1.4" 1815 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1816 | dependencies: 1817 | asynckit "^0.4.0" 1818 | combined-stream "^1.0.5" 1819 | mime-types "^2.1.12" 1820 | 1821 | fs-readdir-recursive@^1.0.0: 1822 | version "1.0.0" 1823 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1824 | 1825 | fs.realpath@^1.0.0: 1826 | version "1.0.0" 1827 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1828 | 1829 | fsevents@^1.0.0: 1830 | version "1.1.1" 1831 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1832 | dependencies: 1833 | nan "^2.3.0" 1834 | node-pre-gyp "^0.6.29" 1835 | 1836 | fstream-ignore@^1.0.5: 1837 | version "1.0.5" 1838 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1839 | dependencies: 1840 | fstream "^1.0.0" 1841 | inherits "2" 1842 | minimatch "^3.0.0" 1843 | 1844 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1845 | version "1.0.11" 1846 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1847 | dependencies: 1848 | graceful-fs "^4.1.2" 1849 | inherits "~2.0.0" 1850 | mkdirp ">=0.5 0" 1851 | rimraf "2" 1852 | 1853 | function-bind@^1.0.2, function-bind@^1.1.1: 1854 | version "1.1.1" 1855 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1856 | 1857 | functional-red-black-tree@^1.0.1: 1858 | version "1.0.1" 1859 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1860 | 1861 | gauge@~2.7.1: 1862 | version "2.7.4" 1863 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1864 | dependencies: 1865 | aproba "^1.0.3" 1866 | console-control-strings "^1.0.0" 1867 | has-unicode "^2.0.0" 1868 | object-assign "^4.1.0" 1869 | signal-exit "^3.0.0" 1870 | string-width "^1.0.1" 1871 | strip-ansi "^3.0.1" 1872 | wide-align "^1.1.0" 1873 | 1874 | get-caller-file@^1.0.1: 1875 | version "1.0.2" 1876 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1877 | 1878 | getpass@^0.1.1: 1879 | version "0.1.7" 1880 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1881 | dependencies: 1882 | assert-plus "^1.0.0" 1883 | 1884 | glob-base@^0.3.0: 1885 | version "0.3.0" 1886 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1887 | dependencies: 1888 | glob-parent "^2.0.0" 1889 | is-glob "^2.0.0" 1890 | 1891 | glob-parent@^2.0.0: 1892 | version "2.0.0" 1893 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1894 | dependencies: 1895 | is-glob "^2.0.0" 1896 | 1897 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1898 | version "7.1.1" 1899 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1900 | dependencies: 1901 | fs.realpath "^1.0.0" 1902 | inflight "^1.0.4" 1903 | inherits "2" 1904 | minimatch "^3.0.2" 1905 | once "^1.3.0" 1906 | path-is-absolute "^1.0.0" 1907 | 1908 | glob@^7.1.2: 1909 | version "7.1.2" 1910 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1911 | dependencies: 1912 | fs.realpath "^1.0.0" 1913 | inflight "^1.0.4" 1914 | inherits "2" 1915 | minimatch "^3.0.4" 1916 | once "^1.3.0" 1917 | path-is-absolute "^1.0.0" 1918 | 1919 | globals@^10.0.0: 1920 | version "10.3.0" 1921 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.3.0.tgz#716aba93657b56630b5a0e77de5ea8ac6215afaa" 1922 | 1923 | globals@^9.0.0: 1924 | version "9.17.0" 1925 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1926 | 1927 | globals@^9.17.0: 1928 | version "9.18.0" 1929 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1930 | 1931 | globby@^5.0.0: 1932 | version "5.0.0" 1933 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1934 | dependencies: 1935 | array-union "^1.0.1" 1936 | arrify "^1.0.0" 1937 | glob "^7.0.3" 1938 | object-assign "^4.0.1" 1939 | pify "^2.0.0" 1940 | pinkie-promise "^2.0.0" 1941 | 1942 | google-protobuf@^3.5.0: 1943 | version "3.5.0" 1944 | resolved "https://registry.yarnpkg.com/google-protobuf/-/google-protobuf-3.5.0.tgz#b8cc63c74d83457bd8a9a904503c8efb26bca339" 1945 | 1946 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1947 | version "4.1.11" 1948 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1949 | 1950 | "graceful-readlink@>= 1.0.0": 1951 | version "1.0.1" 1952 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1953 | 1954 | growly@^1.3.0: 1955 | version "1.3.0" 1956 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1957 | 1958 | grpc@^1.9.1: 1959 | version "1.9.1" 1960 | resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.9.1.tgz#18d7cfce153ebf952559e62dadbc8bbb85da1eac" 1961 | dependencies: 1962 | lodash "^4.15.0" 1963 | nan "^2.0.0" 1964 | node-pre-gyp "^0.6.39" 1965 | protobufjs "^5.0.0" 1966 | 1967 | handlebars@^4.0.3: 1968 | version "4.0.6" 1969 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1970 | dependencies: 1971 | async "^1.4.0" 1972 | optimist "^0.6.1" 1973 | source-map "^0.4.4" 1974 | optionalDependencies: 1975 | uglify-js "^2.6" 1976 | 1977 | har-schema@^1.0.5: 1978 | version "1.0.5" 1979 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1980 | 1981 | har-validator@~4.2.1: 1982 | version "4.2.1" 1983 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1984 | dependencies: 1985 | ajv "^4.9.1" 1986 | har-schema "^1.0.5" 1987 | 1988 | has-ansi@^2.0.0: 1989 | version "2.0.0" 1990 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1991 | dependencies: 1992 | ansi-regex "^2.0.0" 1993 | 1994 | has-flag@^1.0.0: 1995 | version "1.0.0" 1996 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1997 | 1998 | has-flag@^2.0.0: 1999 | version "2.0.0" 2000 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2001 | 2002 | has-unicode@^2.0.0: 2003 | version "2.0.1" 2004 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2005 | 2006 | has@^1.0.1: 2007 | version "1.0.1" 2008 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2009 | dependencies: 2010 | function-bind "^1.0.2" 2011 | 2012 | hawk@3.1.3, hawk@~3.1.3: 2013 | version "3.1.3" 2014 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2015 | dependencies: 2016 | boom "2.x.x" 2017 | cryptiles "2.x.x" 2018 | hoek "2.x.x" 2019 | sntp "1.x.x" 2020 | 2021 | hoek@2.x.x: 2022 | version "2.16.3" 2023 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2024 | 2025 | home-or-tmp@^2.0.0: 2026 | version "2.0.0" 2027 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2028 | dependencies: 2029 | os-homedir "^1.0.0" 2030 | os-tmpdir "^1.0.1" 2031 | 2032 | hosted-git-info@^2.1.4: 2033 | version "2.4.2" 2034 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 2035 | 2036 | html-encoding-sniffer@^1.0.1: 2037 | version "1.0.1" 2038 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 2039 | dependencies: 2040 | whatwg-encoding "^1.0.1" 2041 | 2042 | http-signature@~1.1.0: 2043 | version "1.1.1" 2044 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2045 | dependencies: 2046 | assert-plus "^0.2.0" 2047 | jsprim "^1.2.2" 2048 | sshpk "^1.7.0" 2049 | 2050 | iconv-lite@0.4.13: 2051 | version "0.4.13" 2052 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 2053 | 2054 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 2055 | version "0.4.19" 2056 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2057 | 2058 | ignore@^3.3.3: 2059 | version "3.3.7" 2060 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2061 | 2062 | imurmurhash@^0.1.4: 2063 | version "0.1.4" 2064 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2065 | 2066 | inflight@^1.0.4: 2067 | version "1.0.6" 2068 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2069 | dependencies: 2070 | once "^1.3.0" 2071 | wrappy "1" 2072 | 2073 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2074 | version "2.0.3" 2075 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2076 | 2077 | ini@~1.3.0: 2078 | version "1.3.4" 2079 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2080 | 2081 | inquirer@^3.0.6: 2082 | version "3.3.0" 2083 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2084 | dependencies: 2085 | ansi-escapes "^3.0.0" 2086 | chalk "^2.0.0" 2087 | cli-cursor "^2.1.0" 2088 | cli-width "^2.0.0" 2089 | external-editor "^2.0.4" 2090 | figures "^2.0.0" 2091 | lodash "^4.3.0" 2092 | mute-stream "0.0.7" 2093 | run-async "^2.2.0" 2094 | rx-lite "^4.0.8" 2095 | rx-lite-aggregates "^4.0.8" 2096 | string-width "^2.1.0" 2097 | strip-ansi "^4.0.0" 2098 | through "^2.3.6" 2099 | 2100 | invariant@^2.2.0, invariant@^2.2.2: 2101 | version "2.2.2" 2102 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2103 | dependencies: 2104 | loose-envify "^1.0.0" 2105 | 2106 | invert-kv@^1.0.0: 2107 | version "1.0.0" 2108 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2109 | 2110 | is-arrayish@^0.2.1: 2111 | version "0.2.1" 2112 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2113 | 2114 | is-binary-path@^1.0.0: 2115 | version "1.0.1" 2116 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2117 | dependencies: 2118 | binary-extensions "^1.0.0" 2119 | 2120 | is-buffer@^1.1.5: 2121 | version "1.1.5" 2122 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2123 | 2124 | is-builtin-module@^1.0.0: 2125 | version "1.0.0" 2126 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2127 | dependencies: 2128 | builtin-modules "^1.0.0" 2129 | 2130 | is-callable@^1.1.1, is-callable@^1.1.3: 2131 | version "1.1.3" 2132 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2133 | 2134 | is-ci@^1.0.10: 2135 | version "1.0.10" 2136 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2137 | dependencies: 2138 | ci-info "^1.0.0" 2139 | 2140 | is-date-object@^1.0.1: 2141 | version "1.0.1" 2142 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2143 | 2144 | is-dotfile@^1.0.0: 2145 | version "1.0.2" 2146 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2147 | 2148 | is-equal-shallow@^0.1.3: 2149 | version "0.1.3" 2150 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2151 | dependencies: 2152 | is-primitive "^2.0.0" 2153 | 2154 | is-extendable@^0.1.1: 2155 | version "0.1.1" 2156 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2157 | 2158 | is-extglob@^1.0.0: 2159 | version "1.0.0" 2160 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2161 | 2162 | is-finite@^1.0.0: 2163 | version "1.0.2" 2164 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2165 | dependencies: 2166 | number-is-nan "^1.0.0" 2167 | 2168 | is-fullwidth-code-point@^1.0.0: 2169 | version "1.0.0" 2170 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2171 | dependencies: 2172 | number-is-nan "^1.0.0" 2173 | 2174 | is-fullwidth-code-point@^2.0.0: 2175 | version "2.0.0" 2176 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2177 | 2178 | is-glob@^2.0.0, is-glob@^2.0.1: 2179 | version "2.0.1" 2180 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2181 | dependencies: 2182 | is-extglob "^1.0.0" 2183 | 2184 | is-number@^2.0.2, is-number@^2.1.0: 2185 | version "2.1.0" 2186 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2187 | dependencies: 2188 | kind-of "^3.0.2" 2189 | 2190 | is-path-cwd@^1.0.0: 2191 | version "1.0.0" 2192 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2193 | 2194 | is-path-in-cwd@^1.0.0: 2195 | version "1.0.0" 2196 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2197 | dependencies: 2198 | is-path-inside "^1.0.0" 2199 | 2200 | is-path-inside@^1.0.0: 2201 | version "1.0.0" 2202 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2203 | dependencies: 2204 | path-is-inside "^1.0.1" 2205 | 2206 | is-posix-bracket@^0.1.0: 2207 | version "0.1.1" 2208 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2209 | 2210 | is-primitive@^2.0.0: 2211 | version "2.0.0" 2212 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2213 | 2214 | is-promise@^2.1.0: 2215 | version "2.1.0" 2216 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2217 | 2218 | is-regex@^1.0.4: 2219 | version "1.0.4" 2220 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2221 | dependencies: 2222 | has "^1.0.1" 2223 | 2224 | is-resolvable@^1.0.0: 2225 | version "1.0.0" 2226 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2227 | dependencies: 2228 | tryit "^1.0.1" 2229 | 2230 | is-stream@^1.0.1: 2231 | version "1.1.0" 2232 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2233 | 2234 | is-symbol@^1.0.1: 2235 | version "1.0.1" 2236 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2237 | 2238 | is-typedarray@~1.0.0: 2239 | version "1.0.0" 2240 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2241 | 2242 | is-utf8@^0.2.0: 2243 | version "0.2.1" 2244 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2245 | 2246 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2247 | version "1.0.0" 2248 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2249 | 2250 | isexe@^2.0.0: 2251 | version "2.0.0" 2252 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2253 | 2254 | isobject@^2.0.0: 2255 | version "2.1.0" 2256 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2257 | dependencies: 2258 | isarray "1.0.0" 2259 | 2260 | isomorphic-fetch@^2.1.1: 2261 | version "2.2.1" 2262 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2263 | dependencies: 2264 | node-fetch "^1.0.1" 2265 | whatwg-fetch ">=0.10.0" 2266 | 2267 | isstream@~0.1.2: 2268 | version "0.1.2" 2269 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2270 | 2271 | istanbul-api@^1.1.1: 2272 | version "1.1.10" 2273 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 2274 | dependencies: 2275 | async "^2.1.4" 2276 | fileset "^2.0.2" 2277 | istanbul-lib-coverage "^1.1.1" 2278 | istanbul-lib-hook "^1.0.7" 2279 | istanbul-lib-instrument "^1.7.3" 2280 | istanbul-lib-report "^1.1.1" 2281 | istanbul-lib-source-maps "^1.2.1" 2282 | istanbul-reports "^1.1.1" 2283 | js-yaml "^3.7.0" 2284 | mkdirp "^0.5.1" 2285 | once "^1.4.0" 2286 | 2287 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.0.2: 2288 | version "1.0.2" 2289 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 2290 | 2291 | istanbul-lib-coverage@^1.1.1: 2292 | version "1.1.1" 2293 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2294 | 2295 | istanbul-lib-hook@^1.0.7: 2296 | version "1.0.7" 2297 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2298 | dependencies: 2299 | append-transform "^0.4.0" 2300 | 2301 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.6.2: 2302 | version "1.7.0" 2303 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 2304 | dependencies: 2305 | babel-generator "^6.18.0" 2306 | babel-template "^6.16.0" 2307 | babel-traverse "^6.18.0" 2308 | babel-types "^6.18.0" 2309 | babylon "^6.13.0" 2310 | istanbul-lib-coverage "^1.0.2" 2311 | semver "^5.3.0" 2312 | 2313 | istanbul-lib-instrument@^1.7.3: 2314 | version "1.7.3" 2315 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 2316 | dependencies: 2317 | babel-generator "^6.18.0" 2318 | babel-template "^6.16.0" 2319 | babel-traverse "^6.18.0" 2320 | babel-types "^6.18.0" 2321 | babylon "^6.17.4" 2322 | istanbul-lib-coverage "^1.1.1" 2323 | semver "^5.3.0" 2324 | 2325 | istanbul-lib-report@^1.1.1: 2326 | version "1.1.1" 2327 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2328 | dependencies: 2329 | istanbul-lib-coverage "^1.1.1" 2330 | mkdirp "^0.5.1" 2331 | path-parse "^1.0.5" 2332 | supports-color "^3.1.2" 2333 | 2334 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2335 | version "1.2.1" 2336 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2337 | dependencies: 2338 | debug "^2.6.3" 2339 | istanbul-lib-coverage "^1.1.1" 2340 | mkdirp "^0.5.1" 2341 | rimraf "^2.6.1" 2342 | source-map "^0.5.3" 2343 | 2344 | istanbul-reports@^1.1.1: 2345 | version "1.1.1" 2346 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 2347 | dependencies: 2348 | handlebars "^4.0.3" 2349 | 2350 | jest-changed-files@^20.0.3: 2351 | version "20.0.3" 2352 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2353 | 2354 | jest-cli@^20.0.4: 2355 | version "20.0.4" 2356 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2357 | dependencies: 2358 | ansi-escapes "^1.4.0" 2359 | callsites "^2.0.0" 2360 | chalk "^1.1.3" 2361 | graceful-fs "^4.1.11" 2362 | is-ci "^1.0.10" 2363 | istanbul-api "^1.1.1" 2364 | istanbul-lib-coverage "^1.0.1" 2365 | istanbul-lib-instrument "^1.4.2" 2366 | istanbul-lib-source-maps "^1.1.0" 2367 | jest-changed-files "^20.0.3" 2368 | jest-config "^20.0.4" 2369 | jest-docblock "^20.0.3" 2370 | jest-environment-jsdom "^20.0.3" 2371 | jest-haste-map "^20.0.4" 2372 | jest-jasmine2 "^20.0.4" 2373 | jest-message-util "^20.0.3" 2374 | jest-regex-util "^20.0.3" 2375 | jest-resolve-dependencies "^20.0.3" 2376 | jest-runtime "^20.0.4" 2377 | jest-snapshot "^20.0.3" 2378 | jest-util "^20.0.3" 2379 | micromatch "^2.3.11" 2380 | node-notifier "^5.0.2" 2381 | pify "^2.3.0" 2382 | slash "^1.0.0" 2383 | string-length "^1.0.1" 2384 | throat "^3.0.0" 2385 | which "^1.2.12" 2386 | worker-farm "^1.3.1" 2387 | yargs "^7.0.2" 2388 | 2389 | jest-config@^20.0.4: 2390 | version "20.0.4" 2391 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2392 | dependencies: 2393 | chalk "^1.1.3" 2394 | glob "^7.1.1" 2395 | jest-environment-jsdom "^20.0.3" 2396 | jest-environment-node "^20.0.3" 2397 | jest-jasmine2 "^20.0.4" 2398 | jest-matcher-utils "^20.0.3" 2399 | jest-regex-util "^20.0.3" 2400 | jest-resolve "^20.0.4" 2401 | jest-validate "^20.0.3" 2402 | pretty-format "^20.0.3" 2403 | 2404 | jest-diff@^20.0.3: 2405 | version "20.0.3" 2406 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2407 | dependencies: 2408 | chalk "^1.1.3" 2409 | diff "^3.2.0" 2410 | jest-matcher-utils "^20.0.3" 2411 | pretty-format "^20.0.3" 2412 | 2413 | jest-docblock@^20.0.3: 2414 | version "20.0.3" 2415 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2416 | 2417 | jest-environment-jsdom@^20.0.3: 2418 | version "20.0.3" 2419 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2420 | dependencies: 2421 | jest-mock "^20.0.3" 2422 | jest-util "^20.0.3" 2423 | jsdom "^9.12.0" 2424 | 2425 | jest-environment-node@^20.0.3: 2426 | version "20.0.3" 2427 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2428 | dependencies: 2429 | jest-mock "^20.0.3" 2430 | jest-util "^20.0.3" 2431 | 2432 | jest-haste-map@^20.0.4: 2433 | version "20.0.4" 2434 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 2435 | dependencies: 2436 | fb-watchman "^2.0.0" 2437 | graceful-fs "^4.1.11" 2438 | jest-docblock "^20.0.3" 2439 | micromatch "^2.3.11" 2440 | sane "~1.6.0" 2441 | worker-farm "^1.3.1" 2442 | 2443 | jest-jasmine2@^20.0.4: 2444 | version "20.0.4" 2445 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2446 | dependencies: 2447 | chalk "^1.1.3" 2448 | graceful-fs "^4.1.11" 2449 | jest-diff "^20.0.3" 2450 | jest-matcher-utils "^20.0.3" 2451 | jest-matchers "^20.0.3" 2452 | jest-message-util "^20.0.3" 2453 | jest-snapshot "^20.0.3" 2454 | once "^1.4.0" 2455 | p-map "^1.1.1" 2456 | 2457 | jest-matcher-utils@^20.0.3: 2458 | version "20.0.3" 2459 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2460 | dependencies: 2461 | chalk "^1.1.3" 2462 | pretty-format "^20.0.3" 2463 | 2464 | jest-matchers@^20.0.3: 2465 | version "20.0.3" 2466 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2467 | dependencies: 2468 | jest-diff "^20.0.3" 2469 | jest-matcher-utils "^20.0.3" 2470 | jest-message-util "^20.0.3" 2471 | jest-regex-util "^20.0.3" 2472 | 2473 | jest-message-util@^20.0.3: 2474 | version "20.0.3" 2475 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2476 | dependencies: 2477 | chalk "^1.1.3" 2478 | micromatch "^2.3.11" 2479 | slash "^1.0.0" 2480 | 2481 | jest-mock@^20.0.3: 2482 | version "20.0.3" 2483 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2484 | 2485 | jest-regex-util@^20.0.3: 2486 | version "20.0.3" 2487 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2488 | 2489 | jest-resolve-dependencies@^20.0.3: 2490 | version "20.0.3" 2491 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2492 | dependencies: 2493 | jest-regex-util "^20.0.3" 2494 | 2495 | jest-resolve@^20.0.4: 2496 | version "20.0.4" 2497 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2498 | dependencies: 2499 | browser-resolve "^1.11.2" 2500 | is-builtin-module "^1.0.0" 2501 | resolve "^1.3.2" 2502 | 2503 | jest-runtime@^20.0.4: 2504 | version "20.0.4" 2505 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2506 | dependencies: 2507 | babel-core "^6.0.0" 2508 | babel-jest "^20.0.3" 2509 | babel-plugin-istanbul "^4.0.0" 2510 | chalk "^1.1.3" 2511 | convert-source-map "^1.4.0" 2512 | graceful-fs "^4.1.11" 2513 | jest-config "^20.0.4" 2514 | jest-haste-map "^20.0.4" 2515 | jest-regex-util "^20.0.3" 2516 | jest-resolve "^20.0.4" 2517 | jest-util "^20.0.3" 2518 | json-stable-stringify "^1.0.1" 2519 | micromatch "^2.3.11" 2520 | strip-bom "3.0.0" 2521 | yargs "^7.0.2" 2522 | 2523 | jest-snapshot@^20.0.3: 2524 | version "20.0.3" 2525 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2526 | dependencies: 2527 | chalk "^1.1.3" 2528 | jest-diff "^20.0.3" 2529 | jest-matcher-utils "^20.0.3" 2530 | jest-util "^20.0.3" 2531 | natural-compare "^1.4.0" 2532 | pretty-format "^20.0.3" 2533 | 2534 | jest-util@^20.0.3: 2535 | version "20.0.3" 2536 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2537 | dependencies: 2538 | chalk "^1.1.3" 2539 | graceful-fs "^4.1.11" 2540 | jest-message-util "^20.0.3" 2541 | jest-mock "^20.0.3" 2542 | jest-validate "^20.0.3" 2543 | leven "^2.1.0" 2544 | mkdirp "^0.5.1" 2545 | 2546 | jest-validate@^20.0.3: 2547 | version "20.0.3" 2548 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2549 | dependencies: 2550 | chalk "^1.1.3" 2551 | jest-matcher-utils "^20.0.3" 2552 | leven "^2.1.0" 2553 | pretty-format "^20.0.3" 2554 | 2555 | jest@^20.0.4: 2556 | version "20.0.4" 2557 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2558 | dependencies: 2559 | jest-cli "^20.0.4" 2560 | 2561 | jodid25519@^1.0.0: 2562 | version "1.0.2" 2563 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2564 | dependencies: 2565 | jsbn "~0.1.0" 2566 | 2567 | js-tokens@^3.0.0: 2568 | version "3.0.1" 2569 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2570 | 2571 | js-yaml@^3.6.1, js-yaml@^3.9.1: 2572 | version "3.10.0" 2573 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2574 | dependencies: 2575 | argparse "^1.0.7" 2576 | esprima "^4.0.0" 2577 | 2578 | js-yaml@^3.7.0: 2579 | version "3.8.3" 2580 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2581 | dependencies: 2582 | argparse "^1.0.7" 2583 | esprima "^3.1.1" 2584 | 2585 | jsbn@~0.1.0: 2586 | version "0.1.1" 2587 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2588 | 2589 | jschardet@^1.4.2: 2590 | version "1.6.0" 2591 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.6.0.tgz#c7d1a71edcff2839db2f9ec30fc5d5ebd3c1a678" 2592 | 2593 | jsdom@^9.12.0: 2594 | version "9.12.0" 2595 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2596 | dependencies: 2597 | abab "^1.0.3" 2598 | acorn "^4.0.4" 2599 | acorn-globals "^3.1.0" 2600 | array-equal "^1.0.0" 2601 | content-type-parser "^1.0.1" 2602 | cssom ">= 0.3.2 < 0.4.0" 2603 | cssstyle ">= 0.2.37 < 0.3.0" 2604 | escodegen "^1.6.1" 2605 | html-encoding-sniffer "^1.0.1" 2606 | nwmatcher ">= 1.3.9 < 2.0.0" 2607 | parse5 "^1.5.1" 2608 | request "^2.79.0" 2609 | sax "^1.2.1" 2610 | symbol-tree "^3.2.1" 2611 | tough-cookie "^2.3.2" 2612 | webidl-conversions "^4.0.0" 2613 | whatwg-encoding "^1.0.1" 2614 | whatwg-url "^4.3.0" 2615 | xml-name-validator "^2.0.1" 2616 | 2617 | jsesc@^1.3.0: 2618 | version "1.3.0" 2619 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2620 | 2621 | jsesc@~0.5.0: 2622 | version "0.5.0" 2623 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2624 | 2625 | json-schema-traverse@^0.3.0: 2626 | version "0.3.1" 2627 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2628 | 2629 | json-schema@0.2.3: 2630 | version "0.2.3" 2631 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2632 | 2633 | json-stable-stringify-without-jsonify@^1.0.1: 2634 | version "1.0.1" 2635 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2636 | 2637 | json-stable-stringify@^1.0.1: 2638 | version "1.0.1" 2639 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2640 | dependencies: 2641 | jsonify "~0.0.0" 2642 | 2643 | json-stringify-safe@~5.0.1: 2644 | version "5.0.1" 2645 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2646 | 2647 | json5@^0.5.0: 2648 | version "0.5.1" 2649 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2650 | 2651 | jsonify@~0.0.0: 2652 | version "0.0.0" 2653 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2654 | 2655 | jsprim@^1.2.2: 2656 | version "1.4.0" 2657 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2658 | dependencies: 2659 | assert-plus "1.0.0" 2660 | extsprintf "1.0.2" 2661 | json-schema "0.2.3" 2662 | verror "1.3.6" 2663 | 2664 | jsx-ast-utils@^1.4.0: 2665 | version "1.4.1" 2666 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2667 | 2668 | jsx-ast-utils@^2.0.0: 2669 | version "2.0.1" 2670 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2671 | dependencies: 2672 | array-includes "^3.0.3" 2673 | 2674 | kind-of@^3.0.2: 2675 | version "3.2.0" 2676 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2677 | dependencies: 2678 | is-buffer "^1.1.5" 2679 | 2680 | lazy-cache@^1.0.3: 2681 | version "1.0.4" 2682 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2683 | 2684 | lcid@^1.0.0: 2685 | version "1.0.0" 2686 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2687 | dependencies: 2688 | invert-kv "^1.0.0" 2689 | 2690 | lcov-parse@^0.0.10: 2691 | version "0.0.10" 2692 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2693 | 2694 | leven@^2.1.0: 2695 | version "2.1.0" 2696 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2697 | 2698 | levn@^0.3.0, levn@~0.3.0: 2699 | version "0.3.0" 2700 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2701 | dependencies: 2702 | prelude-ls "~1.1.2" 2703 | type-check "~0.3.2" 2704 | 2705 | load-json-file@^1.0.0: 2706 | version "1.1.0" 2707 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2708 | dependencies: 2709 | graceful-fs "^4.1.2" 2710 | parse-json "^2.2.0" 2711 | pify "^2.0.0" 2712 | pinkie-promise "^2.0.0" 2713 | strip-bom "^2.0.0" 2714 | 2715 | load-json-file@^2.0.0: 2716 | version "2.0.0" 2717 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2718 | dependencies: 2719 | graceful-fs "^4.1.2" 2720 | parse-json "^2.2.0" 2721 | pify "^2.0.0" 2722 | strip-bom "^3.0.0" 2723 | 2724 | locate-path@^2.0.0: 2725 | version "2.0.0" 2726 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2727 | dependencies: 2728 | p-locate "^2.0.0" 2729 | path-exists "^3.0.0" 2730 | 2731 | lodash.cond@^4.3.0: 2732 | version "4.5.2" 2733 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2734 | 2735 | lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2736 | version "4.17.4" 2737 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2738 | 2739 | log-driver@^1.2.5: 2740 | version "1.2.5" 2741 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2742 | 2743 | long@~3: 2744 | version "3.2.0" 2745 | resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" 2746 | 2747 | longest@^1.0.1: 2748 | version "1.0.1" 2749 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2750 | 2751 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2752 | version "1.3.1" 2753 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2754 | dependencies: 2755 | js-tokens "^3.0.0" 2756 | 2757 | lru-cache@^4.0.1: 2758 | version "4.1.1" 2759 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2760 | dependencies: 2761 | pseudomap "^1.0.2" 2762 | yallist "^2.1.2" 2763 | 2764 | makeerror@1.0.x: 2765 | version "1.0.11" 2766 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2767 | dependencies: 2768 | tmpl "1.0.x" 2769 | 2770 | merge@^1.1.3: 2771 | version "1.2.0" 2772 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2773 | 2774 | micromatch@^2.1.5, micromatch@^2.3.11: 2775 | version "2.3.11" 2776 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2777 | dependencies: 2778 | arr-diff "^2.0.0" 2779 | array-unique "^0.2.1" 2780 | braces "^1.8.2" 2781 | expand-brackets "^0.1.4" 2782 | extglob "^0.3.1" 2783 | filename-regex "^2.0.0" 2784 | is-extglob "^1.0.0" 2785 | is-glob "^2.0.1" 2786 | kind-of "^3.0.2" 2787 | normalize-path "^2.0.1" 2788 | object.omit "^2.0.0" 2789 | parse-glob "^3.0.4" 2790 | regex-cache "^0.4.2" 2791 | 2792 | mime-db@~1.27.0: 2793 | version "1.27.0" 2794 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2795 | 2796 | mime-types@^2.1.12, mime-types@~2.1.7: 2797 | version "2.1.15" 2798 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2799 | dependencies: 2800 | mime-db "~1.27.0" 2801 | 2802 | mimic-fn@^1.0.0: 2803 | version "1.1.0" 2804 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2805 | 2806 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2807 | version "3.0.3" 2808 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2809 | dependencies: 2810 | brace-expansion "^1.0.0" 2811 | 2812 | minimatch@^3.0.4: 2813 | version "3.0.4" 2814 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2815 | dependencies: 2816 | brace-expansion "^1.1.7" 2817 | 2818 | minimist@0.0.8, minimist@~0.0.1: 2819 | version "0.0.8" 2820 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2821 | 2822 | minimist@^1.1.1, minimist@^1.2.0: 2823 | version "1.2.0" 2824 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2825 | 2826 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2827 | version "0.5.1" 2828 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2829 | dependencies: 2830 | minimist "0.0.8" 2831 | 2832 | ms@0.7.3: 2833 | version "0.7.3" 2834 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2835 | 2836 | ms@2.0.0: 2837 | version "2.0.0" 2838 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2839 | 2840 | mute-stream@0.0.7: 2841 | version "0.0.7" 2842 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2843 | 2844 | nan@^2.0.0, nan@^2.3.0: 2845 | version "2.6.2" 2846 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2847 | 2848 | natural-compare@^1.4.0: 2849 | version "1.4.0" 2850 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2851 | 2852 | node-fetch@^1.0.1: 2853 | version "1.7.3" 2854 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2855 | dependencies: 2856 | encoding "^0.1.11" 2857 | is-stream "^1.0.1" 2858 | 2859 | node-int64@^0.4.0: 2860 | version "0.4.0" 2861 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2862 | 2863 | node-notifier@^5.0.2: 2864 | version "5.1.2" 2865 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2866 | dependencies: 2867 | growly "^1.3.0" 2868 | semver "^5.3.0" 2869 | shellwords "^0.1.0" 2870 | which "^1.2.12" 2871 | 2872 | node-pre-gyp@^0.6.29: 2873 | version "0.6.34" 2874 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2875 | dependencies: 2876 | mkdirp "^0.5.1" 2877 | nopt "^4.0.1" 2878 | npmlog "^4.0.2" 2879 | rc "^1.1.7" 2880 | request "^2.81.0" 2881 | rimraf "^2.6.1" 2882 | semver "^5.3.0" 2883 | tar "^2.2.1" 2884 | tar-pack "^3.4.0" 2885 | 2886 | node-pre-gyp@^0.6.39: 2887 | version "0.6.39" 2888 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2889 | dependencies: 2890 | detect-libc "^1.0.2" 2891 | hawk "3.1.3" 2892 | mkdirp "^0.5.1" 2893 | nopt "^4.0.1" 2894 | npmlog "^4.0.2" 2895 | rc "^1.1.7" 2896 | request "2.81.0" 2897 | rimraf "^2.6.1" 2898 | semver "^5.3.0" 2899 | tar "^2.2.1" 2900 | tar-pack "^3.4.0" 2901 | 2902 | nopt@^4.0.1: 2903 | version "4.0.1" 2904 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2905 | dependencies: 2906 | abbrev "1" 2907 | osenv "^0.1.4" 2908 | 2909 | normalize-package-data@^2.3.2: 2910 | version "2.3.8" 2911 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2912 | dependencies: 2913 | hosted-git-info "^2.1.4" 2914 | is-builtin-module "^1.0.0" 2915 | semver "2 || 3 || 4 || 5" 2916 | validate-npm-package-license "^3.0.1" 2917 | 2918 | normalize-path@^2.0.1: 2919 | version "2.1.1" 2920 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2921 | dependencies: 2922 | remove-trailing-separator "^1.0.1" 2923 | 2924 | npmlog@^4.0.2: 2925 | version "4.0.2" 2926 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2927 | dependencies: 2928 | are-we-there-yet "~1.1.2" 2929 | console-control-strings "~1.1.0" 2930 | gauge "~2.7.1" 2931 | set-blocking "~2.0.0" 2932 | 2933 | number-is-nan@^1.0.0: 2934 | version "1.0.1" 2935 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2936 | 2937 | "nwmatcher@>= 1.3.9 < 2.0.0": 2938 | version "1.3.9" 2939 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2940 | 2941 | oauth-sign@~0.8.1: 2942 | version "0.8.2" 2943 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2944 | 2945 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2946 | version "4.1.1" 2947 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2948 | 2949 | object-keys@^1.0.8: 2950 | version "1.0.11" 2951 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2952 | 2953 | object.omit@^2.0.0: 2954 | version "2.0.1" 2955 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2956 | dependencies: 2957 | for-own "^0.1.4" 2958 | is-extendable "^0.1.1" 2959 | 2960 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2961 | version "1.4.0" 2962 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2963 | dependencies: 2964 | wrappy "1" 2965 | 2966 | onetime@^2.0.0: 2967 | version "2.0.1" 2968 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2969 | dependencies: 2970 | mimic-fn "^1.0.0" 2971 | 2972 | optimist@^0.6.1: 2973 | version "0.6.1" 2974 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2975 | dependencies: 2976 | minimist "~0.0.1" 2977 | wordwrap "~0.0.2" 2978 | 2979 | optionator@^0.8.1, optionator@^0.8.2: 2980 | version "0.8.2" 2981 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2982 | dependencies: 2983 | deep-is "~0.1.3" 2984 | fast-levenshtein "~2.0.4" 2985 | levn "~0.3.0" 2986 | prelude-ls "~1.1.2" 2987 | type-check "~0.3.2" 2988 | wordwrap "~1.0.0" 2989 | 2990 | optjs@~3.2.2: 2991 | version "3.2.2" 2992 | resolved "https://registry.yarnpkg.com/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" 2993 | 2994 | os-homedir@^1.0.0: 2995 | version "1.0.2" 2996 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2997 | 2998 | os-locale@^1.4.0: 2999 | version "1.4.0" 3000 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3001 | dependencies: 3002 | lcid "^1.0.0" 3003 | 3004 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3005 | version "1.0.2" 3006 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3007 | 3008 | osenv@^0.1.4: 3009 | version "0.1.4" 3010 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3011 | dependencies: 3012 | os-homedir "^1.0.0" 3013 | os-tmpdir "^1.0.0" 3014 | 3015 | output-file-sync@^1.1.0: 3016 | version "1.1.2" 3017 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3018 | dependencies: 3019 | graceful-fs "^4.1.4" 3020 | mkdirp "^0.5.1" 3021 | object-assign "^4.1.0" 3022 | 3023 | p-limit@^1.1.0: 3024 | version "1.1.0" 3025 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3026 | 3027 | p-locate@^2.0.0: 3028 | version "2.0.0" 3029 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3030 | dependencies: 3031 | p-limit "^1.1.0" 3032 | 3033 | p-map@^1.1.1: 3034 | version "1.1.1" 3035 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 3036 | 3037 | parse-glob@^3.0.4: 3038 | version "3.0.4" 3039 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3040 | dependencies: 3041 | glob-base "^0.3.0" 3042 | is-dotfile "^1.0.0" 3043 | is-extglob "^1.0.0" 3044 | is-glob "^2.0.0" 3045 | 3046 | parse-json@^2.2.0: 3047 | version "2.2.0" 3048 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3049 | dependencies: 3050 | error-ex "^1.2.0" 3051 | 3052 | parse5@^1.5.1: 3053 | version "1.5.1" 3054 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3055 | 3056 | path-exists@^2.0.0: 3057 | version "2.1.0" 3058 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3059 | dependencies: 3060 | pinkie-promise "^2.0.0" 3061 | 3062 | path-exists@^3.0.0: 3063 | version "3.0.0" 3064 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3065 | 3066 | path-is-absolute@^1.0.0: 3067 | version "1.0.1" 3068 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3069 | 3070 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3071 | version "1.0.2" 3072 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3073 | 3074 | path-parse@^1.0.5: 3075 | version "1.0.5" 3076 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3077 | 3078 | path-type@^1.0.0: 3079 | version "1.1.0" 3080 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3081 | dependencies: 3082 | graceful-fs "^4.1.2" 3083 | pify "^2.0.0" 3084 | pinkie-promise "^2.0.0" 3085 | 3086 | path-type@^2.0.0: 3087 | version "2.0.0" 3088 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3089 | dependencies: 3090 | pify "^2.0.0" 3091 | 3092 | performance-now@^0.2.0: 3093 | version "0.2.0" 3094 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3095 | 3096 | pify@^2.0.0, pify@^2.3.0: 3097 | version "2.3.0" 3098 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3099 | 3100 | pinkie-promise@^2.0.0: 3101 | version "2.0.1" 3102 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3103 | dependencies: 3104 | pinkie "^2.0.0" 3105 | 3106 | pinkie@^2.0.0: 3107 | version "2.0.4" 3108 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3109 | 3110 | pkg-dir@^1.0.0: 3111 | version "1.0.0" 3112 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3113 | dependencies: 3114 | find-up "^1.0.0" 3115 | 3116 | pluralize@^7.0.0: 3117 | version "7.0.0" 3118 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3119 | 3120 | prelude-ls@~1.1.2: 3121 | version "1.1.2" 3122 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3123 | 3124 | preserve@^0.2.0: 3125 | version "0.2.0" 3126 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3127 | 3128 | pretty-format@^20.0.3: 3129 | version "20.0.3" 3130 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3131 | dependencies: 3132 | ansi-regex "^2.1.1" 3133 | ansi-styles "^3.0.0" 3134 | 3135 | private@^0.1.6: 3136 | version "0.1.7" 3137 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3138 | 3139 | process-nextick-args@~1.0.6: 3140 | version "1.0.7" 3141 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3142 | 3143 | progress@^2.0.0: 3144 | version "2.0.0" 3145 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3146 | 3147 | promise@^7.1.1: 3148 | version "7.3.1" 3149 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3150 | dependencies: 3151 | asap "~2.0.3" 3152 | 3153 | prop-types@^15.5.10: 3154 | version "15.6.0" 3155 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 3156 | dependencies: 3157 | fbjs "^0.8.16" 3158 | loose-envify "^1.3.1" 3159 | object-assign "^4.1.1" 3160 | 3161 | protobufjs@^5.0.0: 3162 | version "5.0.2" 3163 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-5.0.2.tgz#59748d7dcf03d2db22c13da9feb024e16ab80c91" 3164 | dependencies: 3165 | ascli "~1" 3166 | bytebuffer "~5" 3167 | glob "^7.0.5" 3168 | yargs "^3.10.0" 3169 | 3170 | prr@~0.0.0: 3171 | version "0.0.0" 3172 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3173 | 3174 | pseudomap@^1.0.2: 3175 | version "1.0.2" 3176 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3177 | 3178 | punycode@^1.4.1: 3179 | version "1.4.1" 3180 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3181 | 3182 | qs@~6.4.0: 3183 | version "6.4.0" 3184 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3185 | 3186 | randomatic@^1.1.3: 3187 | version "1.1.6" 3188 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3189 | dependencies: 3190 | is-number "^2.0.2" 3191 | kind-of "^3.0.2" 3192 | 3193 | rc@^1.1.7: 3194 | version "1.2.1" 3195 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3196 | dependencies: 3197 | deep-extend "~0.4.0" 3198 | ini "~1.3.0" 3199 | minimist "^1.2.0" 3200 | strip-json-comments "~2.0.1" 3201 | 3202 | read-pkg-up@^1.0.1: 3203 | version "1.0.1" 3204 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3205 | dependencies: 3206 | find-up "^1.0.0" 3207 | read-pkg "^1.0.0" 3208 | 3209 | read-pkg-up@^2.0.0: 3210 | version "2.0.0" 3211 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3212 | dependencies: 3213 | find-up "^2.0.0" 3214 | read-pkg "^2.0.0" 3215 | 3216 | read-pkg@^1.0.0: 3217 | version "1.1.0" 3218 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3219 | dependencies: 3220 | load-json-file "^1.0.0" 3221 | normalize-package-data "^2.3.2" 3222 | path-type "^1.0.0" 3223 | 3224 | read-pkg@^2.0.0: 3225 | version "2.0.0" 3226 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3227 | dependencies: 3228 | load-json-file "^2.0.0" 3229 | normalize-package-data "^2.3.2" 3230 | path-type "^2.0.0" 3231 | 3232 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 3233 | version "2.2.9" 3234 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3235 | dependencies: 3236 | buffer-shims "~1.0.0" 3237 | core-util-is "~1.0.0" 3238 | inherits "~2.0.1" 3239 | isarray "~1.0.0" 3240 | process-nextick-args "~1.0.6" 3241 | string_decoder "~1.0.0" 3242 | util-deprecate "~1.0.1" 3243 | 3244 | readable-stream@^2.2.2: 3245 | version "2.3.3" 3246 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3247 | dependencies: 3248 | core-util-is "~1.0.0" 3249 | inherits "~2.0.3" 3250 | isarray "~1.0.0" 3251 | process-nextick-args "~1.0.6" 3252 | safe-buffer "~5.1.1" 3253 | string_decoder "~1.0.3" 3254 | util-deprecate "~1.0.1" 3255 | 3256 | readdirp@^2.0.0: 3257 | version "2.1.0" 3258 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3259 | dependencies: 3260 | graceful-fs "^4.1.2" 3261 | minimatch "^3.0.2" 3262 | readable-stream "^2.0.2" 3263 | set-immediate-shim "^1.0.1" 3264 | 3265 | regenerate@^1.2.1: 3266 | version "1.3.2" 3267 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3268 | 3269 | regenerator-runtime@^0.10.0: 3270 | version "0.10.3" 3271 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3272 | 3273 | regenerator-runtime@^0.11.0: 3274 | version "0.11.0" 3275 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3276 | 3277 | regenerator-transform@0.9.11: 3278 | version "0.9.11" 3279 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3280 | dependencies: 3281 | babel-runtime "^6.18.0" 3282 | babel-types "^6.19.0" 3283 | private "^0.1.6" 3284 | 3285 | regex-cache@^0.4.2: 3286 | version "0.4.3" 3287 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3288 | dependencies: 3289 | is-equal-shallow "^0.1.3" 3290 | is-primitive "^2.0.0" 3291 | 3292 | regexpu-core@^2.0.0: 3293 | version "2.0.0" 3294 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3295 | dependencies: 3296 | regenerate "^1.2.1" 3297 | regjsgen "^0.2.0" 3298 | regjsparser "^0.1.4" 3299 | 3300 | regjsgen@^0.2.0: 3301 | version "0.2.0" 3302 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3303 | 3304 | regjsparser@^0.1.4: 3305 | version "0.1.5" 3306 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3307 | dependencies: 3308 | jsesc "~0.5.0" 3309 | 3310 | remove-trailing-separator@^1.0.1: 3311 | version "1.0.1" 3312 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3313 | 3314 | repeat-element@^1.1.2: 3315 | version "1.1.2" 3316 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3317 | 3318 | repeat-string@^1.5.2: 3319 | version "1.6.1" 3320 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3321 | 3322 | repeating@^2.0.0: 3323 | version "2.0.1" 3324 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3325 | dependencies: 3326 | is-finite "^1.0.0" 3327 | 3328 | request@2.81.0, request@^2.79.0, request@^2.81.0: 3329 | version "2.81.0" 3330 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3331 | dependencies: 3332 | aws-sign2 "~0.6.0" 3333 | aws4 "^1.2.1" 3334 | caseless "~0.12.0" 3335 | combined-stream "~1.0.5" 3336 | extend "~3.0.0" 3337 | forever-agent "~0.6.1" 3338 | form-data "~2.1.1" 3339 | har-validator "~4.2.1" 3340 | hawk "~3.1.3" 3341 | http-signature "~1.1.0" 3342 | is-typedarray "~1.0.0" 3343 | isstream "~0.1.2" 3344 | json-stringify-safe "~5.0.1" 3345 | mime-types "~2.1.7" 3346 | oauth-sign "~0.8.1" 3347 | performance-now "^0.2.0" 3348 | qs "~6.4.0" 3349 | safe-buffer "^5.0.1" 3350 | stringstream "~0.0.4" 3351 | tough-cookie "~2.3.0" 3352 | tunnel-agent "^0.6.0" 3353 | uuid "^3.0.0" 3354 | 3355 | require-directory@^2.1.1: 3356 | version "2.1.1" 3357 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3358 | 3359 | require-main-filename@^1.0.1: 3360 | version "1.0.1" 3361 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3362 | 3363 | require-uncached@^1.0.3: 3364 | version "1.0.3" 3365 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3366 | dependencies: 3367 | caller-path "^0.1.0" 3368 | resolve-from "^1.0.0" 3369 | 3370 | resolve-from@^1.0.0: 3371 | version "1.0.1" 3372 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3373 | 3374 | resolve@1.1.7: 3375 | version "1.1.7" 3376 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3377 | 3378 | resolve@^1.2.0: 3379 | version "1.5.0" 3380 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3381 | dependencies: 3382 | path-parse "^1.0.5" 3383 | 3384 | resolve@^1.3.2: 3385 | version "1.3.3" 3386 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3387 | dependencies: 3388 | path-parse "^1.0.5" 3389 | 3390 | restore-cursor@^2.0.0: 3391 | version "2.0.0" 3392 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3393 | dependencies: 3394 | onetime "^2.0.0" 3395 | signal-exit "^3.0.2" 3396 | 3397 | right-align@^0.1.1: 3398 | version "0.1.3" 3399 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3400 | dependencies: 3401 | align-text "^0.1.1" 3402 | 3403 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 3404 | version "2.6.1" 3405 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3406 | dependencies: 3407 | glob "^7.0.5" 3408 | 3409 | rimraf@^2.2.8: 3410 | version "2.6.2" 3411 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3412 | dependencies: 3413 | glob "^7.0.5" 3414 | 3415 | run-async@^2.2.0: 3416 | version "2.3.0" 3417 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3418 | dependencies: 3419 | is-promise "^2.1.0" 3420 | 3421 | rx-lite-aggregates@^4.0.8: 3422 | version "4.0.8" 3423 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3424 | dependencies: 3425 | rx-lite "*" 3426 | 3427 | rx-lite@*, rx-lite@^4.0.8: 3428 | version "4.0.8" 3429 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3430 | 3431 | safe-buffer@^5.0.1: 3432 | version "5.0.1" 3433 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3434 | 3435 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3436 | version "5.1.1" 3437 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3438 | 3439 | sane@~1.6.0: 3440 | version "1.6.0" 3441 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 3442 | dependencies: 3443 | anymatch "^1.3.0" 3444 | exec-sh "^0.2.0" 3445 | fb-watchman "^1.8.0" 3446 | minimatch "^3.0.2" 3447 | minimist "^1.1.1" 3448 | walker "~1.0.5" 3449 | watch "~0.10.0" 3450 | 3451 | sax@^1.2.1: 3452 | version "1.2.2" 3453 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3454 | 3455 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3456 | version "5.3.0" 3457 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3458 | 3459 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3460 | version "2.0.0" 3461 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3462 | 3463 | set-immediate-shim@^1.0.1: 3464 | version "1.0.1" 3465 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3466 | 3467 | setimmediate@^1.0.5: 3468 | version "1.0.5" 3469 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3470 | 3471 | shebang-command@^1.2.0: 3472 | version "1.2.0" 3473 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3474 | dependencies: 3475 | shebang-regex "^1.0.0" 3476 | 3477 | shebang-regex@^1.0.0: 3478 | version "1.0.0" 3479 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3480 | 3481 | shellwords@^0.1.0: 3482 | version "0.1.0" 3483 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3484 | 3485 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3486 | version "3.0.2" 3487 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3488 | 3489 | slash@^1.0.0: 3490 | version "1.0.0" 3491 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3492 | 3493 | slice-ansi@1.0.0: 3494 | version "1.0.0" 3495 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3496 | dependencies: 3497 | is-fullwidth-code-point "^2.0.0" 3498 | 3499 | sntp@1.x.x: 3500 | version "1.0.9" 3501 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3502 | dependencies: 3503 | hoek "2.x.x" 3504 | 3505 | source-map-support@^0.4.2: 3506 | version "0.4.14" 3507 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3508 | dependencies: 3509 | source-map "^0.5.6" 3510 | 3511 | source-map@^0.4.4: 3512 | version "0.4.4" 3513 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3514 | dependencies: 3515 | amdefine ">=0.0.4" 3516 | 3517 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3518 | version "0.5.6" 3519 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3520 | 3521 | source-map@~0.2.0: 3522 | version "0.2.0" 3523 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3524 | dependencies: 3525 | amdefine ">=0.0.4" 3526 | 3527 | spdx-correct@~1.0.0: 3528 | version "1.0.2" 3529 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3530 | dependencies: 3531 | spdx-license-ids "^1.0.2" 3532 | 3533 | spdx-expression-parse@~1.0.0: 3534 | version "1.0.4" 3535 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3536 | 3537 | spdx-license-ids@^1.0.2: 3538 | version "1.2.2" 3539 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3540 | 3541 | sprintf-js@~1.0.2: 3542 | version "1.0.3" 3543 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3544 | 3545 | sshpk@^1.7.0: 3546 | version "1.13.0" 3547 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3548 | dependencies: 3549 | asn1 "~0.2.3" 3550 | assert-plus "^1.0.0" 3551 | dashdash "^1.12.0" 3552 | getpass "^0.1.1" 3553 | optionalDependencies: 3554 | bcrypt-pbkdf "^1.0.0" 3555 | ecc-jsbn "~0.1.1" 3556 | jodid25519 "^1.0.0" 3557 | jsbn "~0.1.0" 3558 | tweetnacl "~0.14.0" 3559 | 3560 | string-length@^1.0.1: 3561 | version "1.0.1" 3562 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3563 | dependencies: 3564 | strip-ansi "^3.0.0" 3565 | 3566 | string-width@^1.0.1, string-width@^1.0.2: 3567 | version "1.0.2" 3568 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3569 | dependencies: 3570 | code-point-at "^1.0.0" 3571 | is-fullwidth-code-point "^1.0.0" 3572 | strip-ansi "^3.0.0" 3573 | 3574 | string-width@^2.1.0, string-width@^2.1.1: 3575 | version "2.1.1" 3576 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3577 | dependencies: 3578 | is-fullwidth-code-point "^2.0.0" 3579 | strip-ansi "^4.0.0" 3580 | 3581 | string_decoder@~1.0.0: 3582 | version "1.0.0" 3583 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3584 | dependencies: 3585 | buffer-shims "~1.0.0" 3586 | 3587 | string_decoder@~1.0.3: 3588 | version "1.0.3" 3589 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3590 | dependencies: 3591 | safe-buffer "~5.1.0" 3592 | 3593 | stringstream@~0.0.4: 3594 | version "0.0.5" 3595 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3596 | 3597 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3598 | version "3.0.1" 3599 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3600 | dependencies: 3601 | ansi-regex "^2.0.0" 3602 | 3603 | strip-ansi@^4.0.0: 3604 | version "4.0.0" 3605 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3606 | dependencies: 3607 | ansi-regex "^3.0.0" 3608 | 3609 | strip-bom@3.0.0, strip-bom@^3.0.0: 3610 | version "3.0.0" 3611 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3612 | 3613 | strip-bom@^2.0.0: 3614 | version "2.0.0" 3615 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3616 | dependencies: 3617 | is-utf8 "^0.2.0" 3618 | 3619 | strip-json-comments@~2.0.1: 3620 | version "2.0.1" 3621 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3622 | 3623 | supports-color@^2.0.0: 3624 | version "2.0.0" 3625 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3626 | 3627 | supports-color@^3.1.2: 3628 | version "3.2.3" 3629 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3630 | dependencies: 3631 | has-flag "^1.0.0" 3632 | 3633 | supports-color@^4.0.0: 3634 | version "4.5.0" 3635 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3636 | dependencies: 3637 | has-flag "^2.0.0" 3638 | 3639 | symbol-tree@^3.2.1: 3640 | version "3.2.2" 3641 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3642 | 3643 | table@^4.0.1: 3644 | version "4.0.2" 3645 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3646 | dependencies: 3647 | ajv "^5.2.3" 3648 | ajv-keywords "^2.1.0" 3649 | chalk "^2.1.0" 3650 | lodash "^4.17.4" 3651 | slice-ansi "1.0.0" 3652 | string-width "^2.1.1" 3653 | 3654 | tar-pack@^3.4.0: 3655 | version "3.4.0" 3656 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3657 | dependencies: 3658 | debug "^2.2.0" 3659 | fstream "^1.0.10" 3660 | fstream-ignore "^1.0.5" 3661 | once "^1.3.3" 3662 | readable-stream "^2.1.4" 3663 | rimraf "^2.5.1" 3664 | tar "^2.2.1" 3665 | uid-number "^0.0.6" 3666 | 3667 | tar@^2.2.1: 3668 | version "2.2.1" 3669 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3670 | dependencies: 3671 | block-stream "*" 3672 | fstream "^1.0.2" 3673 | inherits "2" 3674 | 3675 | test-exclude@^4.0.3: 3676 | version "4.0.3" 3677 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 3678 | dependencies: 3679 | arrify "^1.0.1" 3680 | micromatch "^2.3.11" 3681 | object-assign "^4.1.0" 3682 | read-pkg-up "^1.0.1" 3683 | require-main-filename "^1.0.1" 3684 | 3685 | text-table@~0.2.0: 3686 | version "0.2.0" 3687 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3688 | 3689 | throat@^3.0.0: 3690 | version "3.0.0" 3691 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3692 | 3693 | through@^2.3.6: 3694 | version "2.3.8" 3695 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3696 | 3697 | tmp@^0.0.33: 3698 | version "0.0.33" 3699 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3700 | dependencies: 3701 | os-tmpdir "~1.0.2" 3702 | 3703 | tmpl@1.0.x: 3704 | version "1.0.4" 3705 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3706 | 3707 | to-fast-properties@^1.0.1: 3708 | version "1.0.2" 3709 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3710 | 3711 | to-fast-properties@^2.0.0: 3712 | version "2.0.0" 3713 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3714 | 3715 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3716 | version "2.3.2" 3717 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3718 | dependencies: 3719 | punycode "^1.4.1" 3720 | 3721 | tr46@~0.0.3: 3722 | version "0.0.3" 3723 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3724 | 3725 | trim-right@^1.0.1: 3726 | version "1.0.1" 3727 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3728 | 3729 | tryit@^1.0.1: 3730 | version "1.0.3" 3731 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3732 | 3733 | tunnel-agent@^0.6.0: 3734 | version "0.6.0" 3735 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3736 | dependencies: 3737 | safe-buffer "^5.0.1" 3738 | 3739 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3740 | version "0.14.5" 3741 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3742 | 3743 | type-check@~0.3.2: 3744 | version "0.3.2" 3745 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3746 | dependencies: 3747 | prelude-ls "~1.1.2" 3748 | 3749 | typedarray@^0.0.6: 3750 | version "0.0.6" 3751 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3752 | 3753 | ua-parser-js@^0.7.9: 3754 | version "0.7.17" 3755 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 3756 | 3757 | uglify-js@^2.6: 3758 | version "2.8.22" 3759 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 3760 | dependencies: 3761 | source-map "~0.5.1" 3762 | yargs "~3.10.0" 3763 | optionalDependencies: 3764 | uglify-to-browserify "~1.0.0" 3765 | 3766 | uglify-to-browserify@~1.0.0: 3767 | version "1.0.2" 3768 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3769 | 3770 | uid-number@^0.0.6: 3771 | version "0.0.6" 3772 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3773 | 3774 | user-home@^1.1.1: 3775 | version "1.1.1" 3776 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3777 | 3778 | util-deprecate@~1.0.1: 3779 | version "1.0.2" 3780 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3781 | 3782 | uuid@^3.0.0: 3783 | version "3.0.1" 3784 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3785 | 3786 | v8flags@^2.0.10: 3787 | version "2.1.1" 3788 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3789 | dependencies: 3790 | user-home "^1.1.1" 3791 | 3792 | validate-npm-package-license@^3.0.1: 3793 | version "3.0.1" 3794 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3795 | dependencies: 3796 | spdx-correct "~1.0.0" 3797 | spdx-expression-parse "~1.0.0" 3798 | 3799 | verror@1.3.6: 3800 | version "1.3.6" 3801 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3802 | dependencies: 3803 | extsprintf "1.0.2" 3804 | 3805 | walker@~1.0.5: 3806 | version "1.0.7" 3807 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3808 | dependencies: 3809 | makeerror "1.0.x" 3810 | 3811 | watch@~0.10.0: 3812 | version "0.10.0" 3813 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3814 | 3815 | webidl-conversions@^3.0.0: 3816 | version "3.0.1" 3817 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3818 | 3819 | webidl-conversions@^4.0.0: 3820 | version "4.0.1" 3821 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3822 | 3823 | whatwg-encoding@^1.0.1: 3824 | version "1.0.1" 3825 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3826 | dependencies: 3827 | iconv-lite "0.4.13" 3828 | 3829 | whatwg-fetch@>=0.10.0: 3830 | version "2.0.3" 3831 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3832 | 3833 | whatwg-url@^4.3.0: 3834 | version "4.7.1" 3835 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.1.tgz#df4dc2e3f25a63b1fa5b32ed6d6c139577d690de" 3836 | dependencies: 3837 | tr46 "~0.0.3" 3838 | webidl-conversions "^3.0.0" 3839 | 3840 | which-module@^1.0.0: 3841 | version "1.0.0" 3842 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3843 | 3844 | which@^1.2.12: 3845 | version "1.2.14" 3846 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3847 | dependencies: 3848 | isexe "^2.0.0" 3849 | 3850 | which@^1.2.9: 3851 | version "1.3.0" 3852 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3853 | dependencies: 3854 | isexe "^2.0.0" 3855 | 3856 | wide-align@^1.1.0: 3857 | version "1.1.0" 3858 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3859 | dependencies: 3860 | string-width "^1.0.1" 3861 | 3862 | window-size@0.1.0: 3863 | version "0.1.0" 3864 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3865 | 3866 | wordwrap@0.0.2, wordwrap@~0.0.2: 3867 | version "0.0.2" 3868 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3869 | 3870 | wordwrap@~1.0.0: 3871 | version "1.0.0" 3872 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3873 | 3874 | worker-farm@^1.3.1: 3875 | version "1.3.1" 3876 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3877 | dependencies: 3878 | errno ">=0.1.1 <0.2.0-0" 3879 | xtend ">=4.0.0 <4.1.0-0" 3880 | 3881 | wrap-ansi@^2.0.0: 3882 | version "2.1.0" 3883 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3884 | dependencies: 3885 | string-width "^1.0.1" 3886 | strip-ansi "^3.0.1" 3887 | 3888 | wrappy@1: 3889 | version "1.0.2" 3890 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3891 | 3892 | write@^0.2.1: 3893 | version "0.2.1" 3894 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3895 | dependencies: 3896 | mkdirp "^0.5.1" 3897 | 3898 | xml-name-validator@^2.0.1: 3899 | version "2.0.1" 3900 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3901 | 3902 | "xtend@>=4.0.0 <4.1.0-0": 3903 | version "4.0.1" 3904 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3905 | 3906 | y18n@^3.2.1: 3907 | version "3.2.1" 3908 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3909 | 3910 | yallist@^2.1.2: 3911 | version "2.1.2" 3912 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3913 | 3914 | yargs-parser@^5.0.0: 3915 | version "5.0.0" 3916 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3917 | dependencies: 3918 | camelcase "^3.0.0" 3919 | 3920 | yargs@^3.10.0, yargs@~3.10.0: 3921 | version "3.10.0" 3922 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3923 | dependencies: 3924 | camelcase "^1.0.2" 3925 | cliui "^2.1.0" 3926 | decamelize "^1.0.0" 3927 | window-size "0.1.0" 3928 | 3929 | yargs@^7.0.2: 3930 | version "7.1.0" 3931 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3932 | dependencies: 3933 | camelcase "^3.0.0" 3934 | cliui "^3.2.0" 3935 | decamelize "^1.1.1" 3936 | get-caller-file "^1.0.1" 3937 | os-locale "^1.4.0" 3938 | read-pkg-up "^1.0.1" 3939 | require-directory "^2.1.1" 3940 | require-main-filename "^1.0.1" 3941 | set-blocking "^2.0.0" 3942 | string-width "^1.0.2" 3943 | which-module "^1.0.0" 3944 | y18n "^3.2.1" 3945 | yargs-parser "^5.0.0" 3946 | --------------------------------------------------------------------------------