├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── babel.config.js ├── dist ├── define │ ├── binary-uuid.js │ └── virtual-uuid.js ├── index.js ├── preset.js ├── types │ └── binary.js └── utils │ ├── binaryUUID.js │ └── inherits.js ├── examples ├── simple.js └── simple2.js ├── package.json ├── quick-test.js ├── src ├── define │ ├── binary-uuid.js │ └── virtual-uuid.js ├── index.js ├── preset.js ├── types │ └── binary.js └── utils │ ├── binaryUUID.js │ └── inherits.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "parserOptions": { 4 | "ecmaVersion": 9, 5 | "sourceType": "module", 6 | "allowImportExportEverywhere": true 7 | }, 8 | "env": { 9 | "node": true 10 | }, 11 | "extends": ["airbnb-base", "prettier"], 12 | "rules": { 13 | "arrow-parens": ["off"], 14 | "import/prefer-default-export": "off", 15 | "import/no-unresolved": "off", 16 | "import/no-extraneous-dependencies": "off", 17 | "no-multi-assign": "off", 18 | "import/extensions": "off", 19 | "class-methods-use-this": "off", 20 | "function-paren-newline": ["error", "consistent"], 21 | "no-unused-expressions": "off", 22 | "no-param-reassign": "off", 23 | "no-underscore-dangle": "off", 24 | "no-use-before-define": "off", 25 | "consistent-return": "off", 26 | "no-console": "off", 27 | "no-restricted-syntax": "off", 28 | "import/no-cycle": "off", 29 | "quotes": ["error", "single"], 30 | "max-len": [ 31 | "error", 32 | { 33 | "code": 90, 34 | "ignoreComments": true, 35 | "ignoreStrings": true, 36 | "ignoreTemplateLiterals": true 37 | } 38 | ] 39 | }, 40 | "plugins": ["flowtype", "import"] 41 | } 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2014-present Sequelize contributors 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. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sequelize-binary-uuid 2 | 3 | This builds upon the [binary-uuid](https://github.com/odo-network/binary-uuid) package by making it easy to implement into [Sequelize](https://www.github.com/sequelize/sequelize). 4 | 5 | This package provides a few important exports: 6 | 7 | - A `BINARY` type (`binary(length)`). 8 | - A `BINARYUUID` field creator. 9 | - A `VIRTUALBINARYUUID` field creator. 10 | - A `withBinaryUUID` preset field creator. 11 | 12 | This package makes it easy to use `binary(16)` UUID's instead of `CHAR(36)` which is the default. It also modifies the `UUID` so that it is more performant when indexing which can lead to **significant** performance improvements over naive implementations. 13 | 14 | ## Examples 15 | 16 | Multiple examples are available in the [examples folders](./examples). 17 | 18 | ## Using `withBinaryUUID` preset (recommended) 19 | 20 | When utilizing the `preset`, the model will be created with an `id` field which is the `primaryKey` and is a generated `binary(16)` uuid value. 21 | 22 | In addition, the model will have a `uuid` virtual field which is the string version of the uuid. 23 | 24 | ```javascript 25 | import Sequelize from "sequelize"; 26 | import { withBinaryUUID } from "sequelize-binary-uuid"; 27 | 28 | // define sequelize... 29 | 30 | const User = sequelize.define( 31 | "User", 32 | withBinaryUUID( 33 | { 34 | // any other fields here 35 | someKey: Sequelize.DataTypes.TEXT 36 | }, 37 | { 38 | primaryID: "id", // default 39 | virtualID: "uuid", // default 40 | field: { 41 | // optionally provide extra parameters to the 42 | // `primaryID` binary field 43 | primaryKey: true 44 | // primaryKey: true is required to make it a 45 | // primaryKey! 46 | } 47 | } 48 | ) 49 | ); 50 | ``` 51 | 52 | Once you have done this, you may interact with the table: 53 | 54 | ```javascript 55 | sequelize 56 | .sync({ force: true }) 57 | .then(() => 58 | Promise.all([ 59 | User.create({ someKey: "one" }), 60 | User.create({ someKey: "two" }), 61 | User.create({ someKey: "three" }) 62 | ]) 63 | ) 64 | .then(() => User.findAll()) 65 | .then(users => users.map(user => user.get({ plain: true }))) 66 | .then(console.log); 67 | ``` 68 | 69 | ``` 70 | [ 71 | { 72 | uuid: '8cde7820-04c1-11e9-8d40-0d6e8c185c6c', 73 | id: , 74 | someKey: 'one', 75 | createdAt: 2018-12-21T01:41:35.000Z, 76 | updatedAt: 2018-12-21T01:41:35.000Z 77 | }, 78 | { 79 | uuid: '8cdec640-04c1-11e9-8d40-0d6e8c185c6c', 80 | id: , 81 | someKey: 'two', 82 | createdAt: 2018-12-21T01:41:35.000Z, 83 | updatedAt: 2018-12-21T01:41:35.000Z 84 | }, 85 | { 86 | uuid: '8cdec641-04c1-11e9-8d40-0d6e8c185c6c', 87 | id: , 88 | someKey: 'three', 89 | createdAt: 2018-12-21T01:41:35.000Z, 90 | updatedAt: 2018-12-21T01:41:35.000Z 91 | } 92 | ] 93 | ``` 94 | 95 | > **IMPORTANT:** It is important to note here that the `uuid` field is `VIRTUAL` - this means it is **NOT** stored in the database and is only provided as a convenience. 96 | 97 | ## Creating a Binary UUID 98 | 99 | Using the `BINARYUUID` helper we can define a field as being a binary UUID. This will use a `binary(16)` type and will generate a uuid by default if none is provided. 100 | 101 | ```javascript 102 | import Sequelize from "sequelize"; 103 | import { BINARYUUID } from "sequelize-binary-uuid"; 104 | 105 | // define sequelize... 106 | 107 | const User = sequelize.define("User", { 108 | // ... your model definition ... 109 | binaryUUID: BINARYUUID({ 110 | // field params here... 111 | allowNull: true 112 | }) 113 | }); 114 | ``` 115 | 116 | > **NOTE:** If you set `allowNull` to `true` then a binary uuid will **not** be generated when the field is not provided. You will need to provide one yourself. 117 | 118 | ## Creating a UUID Virtual Field 119 | 120 | Using `VIRTUALBINARYUUID` will make it easy to provide a `VIRTUAL` field which resolves to the initial string version of the uuid for the given field. 121 | 122 | `VIRTUALBINARYUUID` expects two arguments. First, the `target` field (the binary uuid) then the `source` field (the string/virtual field). 123 | 124 | ```javascript 125 | import Sequelize from "sequelize"; 126 | import { BINARYUUID, VIRTUALBINARYUUID } from "sequelize-binary-uuid"; 127 | 128 | // define sequelize... 129 | 130 | const User = sequelize.define("User", { 131 | // ... your model definition ... 132 | binaryUUID: BINARYUUID({ 133 | allowNull: false 134 | }), 135 | stringUUID: VIRTUALBINARYUUID("binaryUUID", "stringUUID") 136 | }); 137 | ``` 138 | 139 | ## Using the `BINARY` type 140 | 141 | If you wish to construct your own binary type and/or binary UUID values, you can follow the example below. 142 | 143 | ```javascript 144 | import Sequelize from "sequelize"; 145 | import { BINARY, getBinaryUUID } from "sequelize-binary-uuid"; 146 | 147 | // define sequelize... 148 | 149 | const User = sequelize.define("User", { 150 | // ... your model definition ... 151 | customBinaryUUID: { 152 | type: BINARY(16) 153 | } 154 | }); 155 | 156 | // .. later 157 | 158 | User.create({ 159 | customBinaryUUID: getBinaryUUID() 160 | }); 161 | ``` 162 | 163 | ## Helper Exports 164 | 165 | As a convenience, this package also re-exports some helpers from [`binary-uuid`](https://www.github.com/odo-network/binary-uuid), as well as some helper functions. 166 | 167 | ```javascript 168 | import { 169 | getBinaryUUID, 170 | fromBinaryUUID, 171 | toBinaryUUID 172 | } from "sequelize-binary-uuid"; 173 | 174 | const buf = getBinaryUUID(); 175 | const uuid = fromBinaryUUID(); 176 | const buf2 = toBinaryUUID(uuid); 177 | ``` 178 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function getBabelConfiguration(api) { 2 | api.cache(true); 3 | return { 4 | presets: [ 5 | "@babel/preset-flow", 6 | [ 7 | "@babel/preset-env", 8 | { 9 | useBuiltIns: "usage", 10 | shippedProposals: true, 11 | targets: { 12 | node: "9.11.1" 13 | } 14 | } 15 | ], 16 | ...(process.env.NODE_ENV === "production" ? ["babel-preset-minify"] : []) 17 | ].filter(Boolean) 18 | // plugins: ['@babel/proposal-class-properties', '@babel/plugin-proposal-optional-chaining'], 19 | }; 20 | }; 21 | -------------------------------------------------------------------------------- /dist/define/binary-uuid.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=BINARYUUID;var _binaryUUID=require("../utils/binaryUUID"),_binary=_interopRequireDefault(require("../types/binary"));function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}function BINARYUUID(a={}){const b=a.allowNull||a.defaultValue?a.defaultValue:()=>(0,_binaryUUID.getBinaryUUID)();return{...a,type:(0,_binary.default)(16),defaultValue:b}} -------------------------------------------------------------------------------- /dist/define/virtual-uuid.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=VIRTUALBINARYUUID;var _sequelize=_interopRequireDefault(require("sequelize")),_binaryUuid=require("binary-uuid");function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}function attachStringUUID(a,b,c){const d=a.getDataValue(b);if(!d)return null;const e=(0,_binaryUuid.fromBinaryUUID)(d);return a.setDataValue(c,e),e}function VIRTUALBINARYUUID(a="id",b="uuid"){return{type:new _sequelize.default.DataTypes.VIRTUAL(_sequelize.default.DataTypes.STRING,[a]),get(){return this.getDataValue(b)||attachStringUUID(this,a,b)}}} -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),Object.defineProperty(exports,"BINARY",{enumerable:!0,get:function(){return _binary.default}}),Object.defineProperty(exports,"BINARYUUID",{enumerable:!0,get:function(){return _binaryUuid.default}}),Object.defineProperty(exports,"VIRTUALBINARYUUID",{enumerable:!0,get:function(){return _virtualUuid.default}}),Object.defineProperty(exports,"withBinaryUUID",{enumerable:!0,get:function(){return _preset.default}}),Object.defineProperty(exports,"getBinaryUUID",{enumerable:!0,get:function(){return _binaryUUID.getBinaryUUID}}),Object.defineProperty(exports,"fromBinaryUUID",{enumerable:!0,get:function(){return _binaryUuid2.fromBinaryUUID}}),Object.defineProperty(exports,"toBinaryUUID",{enumerable:!0,get:function(){return _binaryUuid2.toBinaryUUID}});var _binary=_interopRequireDefault(require("./types/binary")),_binaryUuid=_interopRequireDefault(require("./define/binary-uuid")),_virtualUuid=_interopRequireDefault(require("./define/virtual-uuid")),_preset=_interopRequireDefault(require("./preset")),_binaryUUID=require("./utils/binaryUUID"),_binaryUuid2=require("binary-uuid");function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}} -------------------------------------------------------------------------------- /dist/preset.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=withBinaryUUID;var _binaryUuid=_interopRequireDefault(require("./define/binary-uuid")),_virtualUuid=_interopRequireDefault(require("./define/virtual-uuid"));function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}/* 2 | A simple preset for default key with virtual field 3 | */const DEFAULT_FIELD_OPS=Object.freeze({primaryKey:!0,allowNull:!1});function withBinaryUUID(a,b={}){const c=b.primaryID||"id",d=b.virtualID||"uuid",e=a||b.field?b.field:DEFAULT_FIELD_OPS;if(a){if(a[c])throw new Error(`[ERROR] | sequelize-binary-uuid | Provided definition collides with binary uuid primaryID defined: ${c}`);if(a[d])throw new Error(`[ERROR] | sequelize-binary-uuid | Provided definition collides with binary uuid virtualID defined: ${d}`)}return Object.assign({[c]:(0,_binaryUuid.default)(e),[d]:(0,_virtualUuid.default)(c,d)},a)} -------------------------------------------------------------------------------- /dist/types/binary.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _util=_interopRequireDefault(require("util")),_sequelize=_interopRequireDefault(require("sequelize")),_errors=_interopRequireDefault(require("sequelize/lib/errors")),_inherits=_interopRequireDefault(require("../utils/inherits"));function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}/** 2 | * BINARY A variable binary string 3 | * 4 | * @param {number} [length=255] length of string 5 | * @param {boolean} [binary=false] Is this binary? 6 | * 7 | * @namespace DataTypes.STRING 8 | * 9 | */function BINARY(a){const b="object"==typeof a&&a||{length:a};return this instanceof BINARY?void(this.options=b,this._length=b.length||255):new BINARY(b)}(0,_inherits.default)(BINARY,_sequelize.default.DataTypes.ABSTRACT),BINARY.prototype.key=BINARY.key="BINARY",BINARY.prototype.toSql=function(){return`BINARY(${this._length})`},BINARY.prototype.validate=function(a){if(!Buffer.isBuffer(a)&&"number"!=typeof a)throw new _errors.default.ValidationError(_util.default.format("%j is not a valid binary buffer",a));return!0},BINARY.prototype.escape=!1,BINARY.prototype._stringify=function(a){Buffer.isBuffer(a)||(Array.isArray(a)?a=Buffer.from(a):a=Buffer.from(a.toString()));const b=a.toString("hex");return this._hexify(b)},BINARY.prototype._hexify=function(a){return`X'${a}'`},BINARY.prototype._bindParam=function(a,b){return Buffer.isBuffer(a)||(Array.isArray(a)?a=Buffer.from(a):a=Buffer.from(a.toString())),b.bindParam(a)};var _default=BINARY;exports.default=_default; -------------------------------------------------------------------------------- /dist/utils/binaryUUID.js: -------------------------------------------------------------------------------- 1 | "use strict";var _binaryUuid=_interopRequireDefault(require("binary-uuid"));Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBinaryUUID=getBinaryUUID;function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}function getBinaryUUID(){return(0,_binaryUuid.default)().buffer} -------------------------------------------------------------------------------- /dist/utils/inherits.js: -------------------------------------------------------------------------------- 1 | "use strict";var _util=_interopRequireDefault(require("util"));Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}/** 2 | * like util.inherits, but also copies over static properties. Inherit child constructor 3 | * to have properties from super constructor 4 | * 5 | * @param {Function} constructor the child constructor 6 | * @param {Function} superConstructor the super constructor 7 | * 8 | * @private 9 | */function inherits(a,b){// Instance (prototype) methods 10 | _util.default.inherits(a,b),Object.assign(a,b)}var _default=inherits;exports.default=_default; -------------------------------------------------------------------------------- /examples/simple.js: -------------------------------------------------------------------------------- 1 | import Sequelize from "sequelize"; 2 | import { withBinaryUUID } from "./p9/models/bin"; 3 | 4 | const { 5 | SQL_DB_NAME, 6 | SQL_DB_HOST, 7 | SQL_DB_PORT, 8 | SQL_DB_USERNAME, 9 | SQL_DB_PASSWORD 10 | } = process.env; 11 | 12 | const sql = new Sequelize(SQL_DB_NAME, SQL_DB_USERNAME, SQL_DB_PASSWORD, { 13 | dialect: "mysql", 14 | host: SQL_DB_HOST, 15 | port: SQL_DB_PORT, 16 | operatorsAliases: false 17 | }); 18 | 19 | /* 20 | with no arguments it creates 21 | { 22 | id: { 23 | type: BINARY(16), 24 | defaultValue() { 25 | return getBinaryUUID() 26 | }, 27 | primaryKey: true, 28 | allowNull: false 29 | }, 30 | uuid: { 31 | type: new Sequelize.DataTypes.VIRTUAL(...), 32 | get() { 33 | // ... 34 | } 35 | } 36 | } 37 | */ 38 | const User = sql.define("User", withBinaryUUID()); 39 | 40 | sql 41 | .sync({ force: true }) 42 | .then(() => Promise.all([User.create(), User.create(), User.create()])) 43 | .then(() => User.findAll()) 44 | .then(users => users.map(user => user.get({ plain: true }))) 45 | .then(console.log); 46 | -------------------------------------------------------------------------------- /examples/simple2.js: -------------------------------------------------------------------------------- 1 | import Sequelize from "sequelize"; 2 | import { withBinaryUUID } from "./p9/models/bin"; 3 | 4 | const { 5 | SQL_DB_NAME, 6 | SQL_DB_HOST, 7 | SQL_DB_PORT, 8 | SQL_DB_USERNAME, 9 | SQL_DB_PASSWORD 10 | } = process.env; 11 | 12 | const sql = new Sequelize(SQL_DB_NAME, SQL_DB_USERNAME, SQL_DB_PASSWORD, { 13 | dialect: "mysql", 14 | host: SQL_DB_HOST, 15 | port: SQL_DB_PORT, 16 | operatorsAliases: false 17 | }); 18 | 19 | /* 20 | with no arguments it creates 21 | { 22 | id: { 23 | type: BINARY(16), 24 | defaultValue() { 25 | return getBinaryUUID() 26 | }, 27 | primaryKey: true, 28 | allowNull: false 29 | }, 30 | uuid: { 31 | type: new Sequelize.DataTypes.VIRTUAL(...), 32 | get() { 33 | // ... 34 | } 35 | } 36 | } 37 | */ 38 | const User = sql.define( 39 | "User", 40 | withBinaryUUID( 41 | { 42 | // any other fields here 43 | someKey: Sequelize.DataTypes.TEXT 44 | }, 45 | { 46 | primaryID: "id", // default 47 | virtualID: "uuid", // default 48 | field: { 49 | // optionally provide extra parameters to the 50 | // `primaryID` binary field 51 | primaryKey: true 52 | } 53 | } 54 | ) 55 | ); 56 | 57 | sql 58 | .sync({ force: true }) 59 | .then(() => 60 | Promise.all([ 61 | User.create({ someKey: "one" }), 62 | User.create({ someKey: "two" }), 63 | User.create({ someKey: "three" }) 64 | ])) 65 | .then(() => User.findAll()) 66 | .then(users => users.map(user => user.get({ plain: true }))) 67 | .then(console.log); 68 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sequelize-binary-uuid", 3 | "version": "1.0.0", 4 | "description": "Makes it easy to implement binary(16) uuid's into Sequelize projects.", 5 | "main": "dist/index.js", 6 | "author": "odo", 7 | "license": "MIT", 8 | "reveal": true, 9 | "files": [ 10 | "src", 11 | "dist" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/odo-network/sequelize-binary-uuid/" 16 | }, 17 | "keywords": [ 18 | "binary", 19 | "buffer", 20 | "mysql", 21 | "uuid", 22 | "binary(16)", 23 | "sequelize", 24 | "virtual" 25 | ], 26 | "scripts": { 27 | "build": "cross-env NODE_ENV=production rimraf dist && npm-run-all -p build:**", 28 | "build:lib:babel": "cross-env NODE_ENV=production babel src --out-dir dist", 29 | "try": "node ./quick-test.js" 30 | }, 31 | "devDependencies": { 32 | "@babel/cli": "^7.2.3", 33 | "@babel/core": "^7.2.2", 34 | "@babel/node": "^7.2.2", 35 | "@babel/preset-env": "^7.2.3", 36 | "@babel/preset-flow": "^7.0.0", 37 | "babel-eslint": "^10.0.1", 38 | "babel-preset-minify": "^0.5.0", 39 | "cross-env": "^5.2.0", 40 | "eslint": "^5.10.0", 41 | "eslint-config-airbnb-base": "^13.1.0", 42 | "eslint-config-prettier": "^3.3.0", 43 | "eslint-plugin-flowtype": "^3.2.0", 44 | "eslint-plugin-import": "^2.14.0", 45 | "npm-run-all": "^4.1.5", 46 | "prettier-eslint": "^8.8.2", 47 | "prettier-eslint-cli": "^4.7.1", 48 | "rimraf": "^2.6.2", 49 | "sequelize": "^4.42.0" 50 | }, 51 | "peerDependencies": { 52 | "sequelize": "^4.42.0" 53 | }, 54 | "dependencies": { 55 | "binary-uuid": "^1.2.0" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /quick-test.js: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /src/define/binary-uuid.js: -------------------------------------------------------------------------------- 1 | import { getBinaryUUID } from '../utils/binaryUUID'; 2 | import BINARY from '../types/binary'; 3 | 4 | export default function BINARYUUID(props = {}) { 5 | const defaultValue = 6 | props.allowNull || props.defaultValue ? props.defaultValue : () => getBinaryUUID(); 7 | return { 8 | ...props, 9 | type: BINARY(16), 10 | defaultValue 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /src/define/virtual-uuid.js: -------------------------------------------------------------------------------- 1 | import Sequelize from 'sequelize'; 2 | import { fromBinaryUUID } from 'binary-uuid'; 3 | 4 | function attachStringUUID(instance, binaryID, stringID) { 5 | const buf = instance.getDataValue(binaryID); 6 | if (!buf) return null; 7 | const uuid = fromBinaryUUID(buf); 8 | instance.setDataValue(stringID, uuid); 9 | return uuid; 10 | } 11 | 12 | export default function VIRTUALBINARYUUID(binaryID = 'id', stringID = 'uuid') { 13 | return { 14 | type: new Sequelize.DataTypes.VIRTUAL(Sequelize.DataTypes.STRING, [binaryID]), 15 | get() { 16 | return this.getDataValue(stringID) || attachStringUUID(this, binaryID, stringID); 17 | } 18 | }; 19 | } 20 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as BINARY } from './types/binary'; 2 | export { default as BINARYUUID } from './define/binary-uuid'; 3 | export { default as VIRTUALBINARYUUID } from './define/virtual-uuid'; 4 | export { default as withBinaryUUID } from './preset'; 5 | export { getBinaryUUID } from './utils/binaryUUID'; 6 | export { fromBinaryUUID, toBinaryUUID } from 'binary-uuid'; 7 | -------------------------------------------------------------------------------- /src/preset.js: -------------------------------------------------------------------------------- 1 | import BINARYUUID from './define/binary-uuid'; 2 | import VIRTUALBINARYUUID from './define/virtual-uuid'; 3 | 4 | /* 5 | A simple preset for default key with virtual field 6 | */ 7 | 8 | const DEFAULT_FIELD_OPS = Object.freeze({ 9 | primaryKey: true, 10 | allowNull: false 11 | }); 12 | 13 | export default function withBinaryUUID(definition, ops = {}) { 14 | const primaryID = ops.primaryID || 'id'; 15 | const virtualID = ops.virtualID || 'uuid'; 16 | const field = !definition && !ops.field ? DEFAULT_FIELD_OPS : ops.field; 17 | if (definition) { 18 | if (definition[primaryID]) { 19 | throw new Error( 20 | `[ERROR] | sequelize-binary-uuid | Provided definition collides with binary uuid primaryID defined: ${primaryID}` 21 | ); 22 | } 23 | if (definition[virtualID]) { 24 | throw new Error( 25 | `[ERROR] | sequelize-binary-uuid | Provided definition collides with binary uuid virtualID defined: ${virtualID}` 26 | ); 27 | } 28 | } 29 | return Object.assign( 30 | { 31 | [primaryID]: BINARYUUID(field), 32 | [virtualID]: VIRTUALBINARYUUID(primaryID, virtualID) 33 | }, 34 | definition 35 | ); 36 | } 37 | -------------------------------------------------------------------------------- /src/types/binary.js: -------------------------------------------------------------------------------- 1 | import util from 'util'; 2 | 3 | import Sequelize from 'sequelize'; 4 | import sequelizeErrors from 'sequelize/lib/errors'; 5 | 6 | import inherits from '../utils/inherits'; 7 | 8 | /** 9 | * BINARY A variable binary string 10 | * 11 | * @param {number} [length=255] length of string 12 | * @param {boolean} [binary=false] Is this binary? 13 | * 14 | * @namespace DataTypes.STRING 15 | * 16 | */ 17 | function BINARY(length) { 18 | const options = (typeof length === 'object' && length) || { length }; 19 | 20 | if (!(this instanceof BINARY)) return new BINARY(options); 21 | 22 | this.options = options; 23 | this._length = options.length || 255; 24 | } 25 | 26 | inherits(BINARY, Sequelize.DataTypes.ABSTRACT); 27 | 28 | BINARY.prototype.key = BINARY.key = 'BINARY'; 29 | BINARY.prototype.toSql = function toSql() { 30 | return `BINARY(${this._length})`; 31 | }; 32 | 33 | BINARY.prototype.validate = function validate(value) { 34 | if (!Buffer.isBuffer(value) && typeof value !== 'number') { 35 | throw new sequelizeErrors.ValidationError( 36 | util.format('%j is not a valid binary buffer', value) 37 | ); 38 | } 39 | return true; 40 | }; 41 | 42 | BINARY.prototype.escape = false; 43 | 44 | BINARY.prototype._stringify = function _stringify(value) { 45 | if (!Buffer.isBuffer(value)) { 46 | if (Array.isArray(value)) { 47 | value = Buffer.from(value); 48 | } else { 49 | value = Buffer.from(value.toString()); 50 | } 51 | } 52 | const hex = value.toString('hex'); 53 | 54 | return this._hexify(hex); 55 | }; 56 | 57 | BINARY.prototype._hexify = function _hexify(hex) { 58 | return `X'${hex}'`; 59 | }; 60 | 61 | BINARY.prototype._bindParam = function _bindParam(value, options) { 62 | if (!Buffer.isBuffer(value)) { 63 | if (Array.isArray(value)) { 64 | value = Buffer.from(value); 65 | } 66 | else { 67 | value = Buffer.from(value.toString()); 68 | } 69 | } 70 | return options.bindParam(value); 71 | } 72 | 73 | export default BINARY; 74 | -------------------------------------------------------------------------------- /src/utils/binaryUUID.js: -------------------------------------------------------------------------------- 1 | import createBinaryUUID from 'binary-uuid'; 2 | 3 | export function getBinaryUUID() { 4 | return createBinaryUUID().buffer; 5 | } 6 | -------------------------------------------------------------------------------- /src/utils/inherits.js: -------------------------------------------------------------------------------- 1 | import util from 'util'; 2 | 3 | /** 4 | * like util.inherits, but also copies over static properties. Inherit child constructor 5 | * to have properties from super constructor 6 | * 7 | * @param {Function} constructor the child constructor 8 | * @param {Function} superConstructor the super constructor 9 | * 10 | * @private 11 | */ 12 | function inherits(constructor, superConstructor) { 13 | util.inherits(constructor, superConstructor); // Instance (prototype) methods 14 | Object.assign(constructor, superConstructor); // Static methods 15 | } 16 | 17 | export default inherits; 18 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/cli@^7.2.3": 6 | version "7.2.3" 7 | resolved "https://registry.npmjs.org/@babel/cli/-/cli-7.2.3.tgz#1b262e42a3e959d28ab3d205ba2718e1923cfee6" 8 | dependencies: 9 | commander "^2.8.1" 10 | convert-source-map "^1.1.0" 11 | fs-readdir-recursive "^1.1.0" 12 | glob "^7.0.0" 13 | lodash "^4.17.10" 14 | mkdirp "^0.5.1" 15 | output-file-sync "^2.0.0" 16 | slash "^2.0.0" 17 | source-map "^0.5.0" 18 | optionalDependencies: 19 | chokidar "^2.0.3" 20 | 21 | "@babel/code-frame@^7.0.0": 22 | version "7.0.0" 23 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 24 | dependencies: 25 | "@babel/highlight" "^7.0.0" 26 | 27 | "@babel/core@^7.2.2": 28 | version "7.2.2" 29 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687" 30 | dependencies: 31 | "@babel/code-frame" "^7.0.0" 32 | "@babel/generator" "^7.2.2" 33 | "@babel/helpers" "^7.2.0" 34 | "@babel/parser" "^7.2.2" 35 | "@babel/template" "^7.2.2" 36 | "@babel/traverse" "^7.2.2" 37 | "@babel/types" "^7.2.2" 38 | convert-source-map "^1.1.0" 39 | debug "^4.1.0" 40 | json5 "^2.1.0" 41 | lodash "^4.17.10" 42 | resolve "^1.3.2" 43 | semver "^5.4.1" 44 | source-map "^0.5.0" 45 | 46 | "@babel/generator@^7.2.2": 47 | version "7.2.2" 48 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.2.2.tgz#18c816c70962640eab42fe8cae5f3947a5c65ccc" 49 | dependencies: 50 | "@babel/types" "^7.2.2" 51 | jsesc "^2.5.1" 52 | lodash "^4.17.10" 53 | source-map "^0.5.0" 54 | trim-right "^1.0.1" 55 | 56 | "@babel/helper-annotate-as-pure@^7.0.0": 57 | version "7.0.0" 58 | resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 59 | dependencies: 60 | "@babel/types" "^7.0.0" 61 | 62 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 63 | version "7.1.0" 64 | resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 65 | dependencies: 66 | "@babel/helper-explode-assignable-expression" "^7.1.0" 67 | "@babel/types" "^7.0.0" 68 | 69 | "@babel/helper-call-delegate@^7.1.0": 70 | version "7.1.0" 71 | resolved "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" 72 | dependencies: 73 | "@babel/helper-hoist-variables" "^7.0.0" 74 | "@babel/traverse" "^7.1.0" 75 | "@babel/types" "^7.0.0" 76 | 77 | "@babel/helper-define-map@^7.1.0": 78 | version "7.1.0" 79 | resolved "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" 80 | dependencies: 81 | "@babel/helper-function-name" "^7.1.0" 82 | "@babel/types" "^7.0.0" 83 | lodash "^4.17.10" 84 | 85 | "@babel/helper-explode-assignable-expression@^7.1.0": 86 | version "7.1.0" 87 | resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 88 | dependencies: 89 | "@babel/traverse" "^7.1.0" 90 | "@babel/types" "^7.0.0" 91 | 92 | "@babel/helper-function-name@^7.1.0": 93 | version "7.1.0" 94 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 95 | dependencies: 96 | "@babel/helper-get-function-arity" "^7.0.0" 97 | "@babel/template" "^7.1.0" 98 | "@babel/types" "^7.0.0" 99 | 100 | "@babel/helper-get-function-arity@^7.0.0": 101 | version "7.0.0" 102 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 103 | dependencies: 104 | "@babel/types" "^7.0.0" 105 | 106 | "@babel/helper-hoist-variables@^7.0.0": 107 | version "7.0.0" 108 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" 109 | dependencies: 110 | "@babel/types" "^7.0.0" 111 | 112 | "@babel/helper-member-expression-to-functions@^7.0.0": 113 | version "7.0.0" 114 | resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 115 | dependencies: 116 | "@babel/types" "^7.0.0" 117 | 118 | "@babel/helper-module-imports@^7.0.0": 119 | version "7.0.0" 120 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 121 | dependencies: 122 | "@babel/types" "^7.0.0" 123 | 124 | "@babel/helper-module-transforms@^7.1.0": 125 | version "7.2.2" 126 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963" 127 | dependencies: 128 | "@babel/helper-module-imports" "^7.0.0" 129 | "@babel/helper-simple-access" "^7.1.0" 130 | "@babel/helper-split-export-declaration" "^7.0.0" 131 | "@babel/template" "^7.2.2" 132 | "@babel/types" "^7.2.2" 133 | lodash "^4.17.10" 134 | 135 | "@babel/helper-optimise-call-expression@^7.0.0": 136 | version "7.0.0" 137 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 138 | dependencies: 139 | "@babel/types" "^7.0.0" 140 | 141 | "@babel/helper-plugin-utils@^7.0.0": 142 | version "7.0.0" 143 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 144 | 145 | "@babel/helper-regex@^7.0.0": 146 | version "7.0.0" 147 | resolved "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" 148 | dependencies: 149 | lodash "^4.17.10" 150 | 151 | "@babel/helper-remap-async-to-generator@^7.1.0": 152 | version "7.1.0" 153 | resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 154 | dependencies: 155 | "@babel/helper-annotate-as-pure" "^7.0.0" 156 | "@babel/helper-wrap-function" "^7.1.0" 157 | "@babel/template" "^7.1.0" 158 | "@babel/traverse" "^7.1.0" 159 | "@babel/types" "^7.0.0" 160 | 161 | "@babel/helper-replace-supers@^7.1.0": 162 | version "7.2.3" 163 | resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz#19970020cf22677d62b3a689561dbd9644d8c5e5" 164 | dependencies: 165 | "@babel/helper-member-expression-to-functions" "^7.0.0" 166 | "@babel/helper-optimise-call-expression" "^7.0.0" 167 | "@babel/traverse" "^7.2.3" 168 | "@babel/types" "^7.0.0" 169 | 170 | "@babel/helper-simple-access@^7.1.0": 171 | version "7.1.0" 172 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 173 | dependencies: 174 | "@babel/template" "^7.1.0" 175 | "@babel/types" "^7.0.0" 176 | 177 | "@babel/helper-split-export-declaration@^7.0.0": 178 | version "7.0.0" 179 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" 180 | dependencies: 181 | "@babel/types" "^7.0.0" 182 | 183 | "@babel/helper-wrap-function@^7.1.0": 184 | version "7.2.0" 185 | resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" 186 | dependencies: 187 | "@babel/helper-function-name" "^7.1.0" 188 | "@babel/template" "^7.1.0" 189 | "@babel/traverse" "^7.1.0" 190 | "@babel/types" "^7.2.0" 191 | 192 | "@babel/helpers@^7.2.0": 193 | version "7.2.0" 194 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.2.0.tgz#8335f3140f3144270dc63c4732a4f8b0a50b7a21" 195 | dependencies: 196 | "@babel/template" "^7.1.2" 197 | "@babel/traverse" "^7.1.5" 198 | "@babel/types" "^7.2.0" 199 | 200 | "@babel/highlight@^7.0.0": 201 | version "7.0.0" 202 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 203 | dependencies: 204 | chalk "^2.0.0" 205 | esutils "^2.0.2" 206 | js-tokens "^4.0.0" 207 | 208 | "@babel/node@^7.2.2": 209 | version "7.2.2" 210 | resolved "https://registry.npmjs.org/@babel/node/-/node-7.2.2.tgz#1557dd23545b38d7b1d030a9c0e8fb225dbf70ab" 211 | dependencies: 212 | "@babel/polyfill" "^7.0.0" 213 | "@babel/register" "^7.0.0" 214 | commander "^2.8.1" 215 | lodash "^4.17.10" 216 | v8flags "^3.1.1" 217 | 218 | "@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3": 219 | version "7.2.3" 220 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.2.3.tgz#32f5df65744b70888d17872ec106b02434ba1489" 221 | 222 | "@babel/plugin-proposal-async-generator-functions@^7.2.0": 223 | version "7.2.0" 224 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" 225 | dependencies: 226 | "@babel/helper-plugin-utils" "^7.0.0" 227 | "@babel/helper-remap-async-to-generator" "^7.1.0" 228 | "@babel/plugin-syntax-async-generators" "^7.2.0" 229 | 230 | "@babel/plugin-proposal-json-strings@^7.2.0": 231 | version "7.2.0" 232 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" 233 | dependencies: 234 | "@babel/helper-plugin-utils" "^7.0.0" 235 | "@babel/plugin-syntax-json-strings" "^7.2.0" 236 | 237 | "@babel/plugin-proposal-object-rest-spread@^7.2.0": 238 | version "7.2.0" 239 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.2.0.tgz#88f5fec3e7ad019014c97f7ee3c992f0adbf7fb8" 240 | dependencies: 241 | "@babel/helper-plugin-utils" "^7.0.0" 242 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 243 | 244 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0": 245 | version "7.2.0" 246 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" 247 | dependencies: 248 | "@babel/helper-plugin-utils" "^7.0.0" 249 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 250 | 251 | "@babel/plugin-proposal-unicode-property-regex@^7.2.0": 252 | version "7.2.0" 253 | resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz#abe7281fe46c95ddc143a65e5358647792039520" 254 | dependencies: 255 | "@babel/helper-plugin-utils" "^7.0.0" 256 | "@babel/helper-regex" "^7.0.0" 257 | regexpu-core "^4.2.0" 258 | 259 | "@babel/plugin-syntax-async-generators@^7.2.0": 260 | version "7.2.0" 261 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" 262 | dependencies: 263 | "@babel/helper-plugin-utils" "^7.0.0" 264 | 265 | "@babel/plugin-syntax-flow@^7.2.0": 266 | version "7.2.0" 267 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" 268 | dependencies: 269 | "@babel/helper-plugin-utils" "^7.0.0" 270 | 271 | "@babel/plugin-syntax-json-strings@^7.2.0": 272 | version "7.2.0" 273 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" 274 | dependencies: 275 | "@babel/helper-plugin-utils" "^7.0.0" 276 | 277 | "@babel/plugin-syntax-object-rest-spread@^7.2.0": 278 | version "7.2.0" 279 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 280 | dependencies: 281 | "@babel/helper-plugin-utils" "^7.0.0" 282 | 283 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0": 284 | version "7.2.0" 285 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" 286 | dependencies: 287 | "@babel/helper-plugin-utils" "^7.0.0" 288 | 289 | "@babel/plugin-transform-arrow-functions@^7.2.0": 290 | version "7.2.0" 291 | resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" 292 | dependencies: 293 | "@babel/helper-plugin-utils" "^7.0.0" 294 | 295 | "@babel/plugin-transform-async-to-generator@^7.2.0": 296 | version "7.2.0" 297 | resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff" 298 | dependencies: 299 | "@babel/helper-module-imports" "^7.0.0" 300 | "@babel/helper-plugin-utils" "^7.0.0" 301 | "@babel/helper-remap-async-to-generator" "^7.1.0" 302 | 303 | "@babel/plugin-transform-block-scoped-functions@^7.2.0": 304 | version "7.2.0" 305 | resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" 306 | dependencies: 307 | "@babel/helper-plugin-utils" "^7.0.0" 308 | 309 | "@babel/plugin-transform-block-scoping@^7.2.0": 310 | version "7.2.0" 311 | resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4" 312 | dependencies: 313 | "@babel/helper-plugin-utils" "^7.0.0" 314 | lodash "^4.17.10" 315 | 316 | "@babel/plugin-transform-classes@^7.2.0": 317 | version "7.2.2" 318 | resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953" 319 | dependencies: 320 | "@babel/helper-annotate-as-pure" "^7.0.0" 321 | "@babel/helper-define-map" "^7.1.0" 322 | "@babel/helper-function-name" "^7.1.0" 323 | "@babel/helper-optimise-call-expression" "^7.0.0" 324 | "@babel/helper-plugin-utils" "^7.0.0" 325 | "@babel/helper-replace-supers" "^7.1.0" 326 | "@babel/helper-split-export-declaration" "^7.0.0" 327 | globals "^11.1.0" 328 | 329 | "@babel/plugin-transform-computed-properties@^7.2.0": 330 | version "7.2.0" 331 | resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" 332 | dependencies: 333 | "@babel/helper-plugin-utils" "^7.0.0" 334 | 335 | "@babel/plugin-transform-destructuring@^7.2.0": 336 | version "7.2.0" 337 | resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz#e75269b4b7889ec3a332cd0d0c8cff8fed0dc6f3" 338 | dependencies: 339 | "@babel/helper-plugin-utils" "^7.0.0" 340 | 341 | "@babel/plugin-transform-dotall-regex@^7.2.0": 342 | version "7.2.0" 343 | resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49" 344 | dependencies: 345 | "@babel/helper-plugin-utils" "^7.0.0" 346 | "@babel/helper-regex" "^7.0.0" 347 | regexpu-core "^4.1.3" 348 | 349 | "@babel/plugin-transform-duplicate-keys@^7.2.0": 350 | version "7.2.0" 351 | resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" 352 | dependencies: 353 | "@babel/helper-plugin-utils" "^7.0.0" 354 | 355 | "@babel/plugin-transform-exponentiation-operator@^7.2.0": 356 | version "7.2.0" 357 | resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" 358 | dependencies: 359 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 360 | "@babel/helper-plugin-utils" "^7.0.0" 361 | 362 | "@babel/plugin-transform-flow-strip-types@^7.0.0": 363 | version "7.2.3" 364 | resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.3.tgz#e3ac2a594948454e7431c7db33e1d02d51b5cd69" 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.0.0" 367 | "@babel/plugin-syntax-flow" "^7.2.0" 368 | 369 | "@babel/plugin-transform-for-of@^7.2.0": 370 | version "7.2.0" 371 | resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9" 372 | dependencies: 373 | "@babel/helper-plugin-utils" "^7.0.0" 374 | 375 | "@babel/plugin-transform-function-name@^7.2.0": 376 | version "7.2.0" 377 | resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a" 378 | dependencies: 379 | "@babel/helper-function-name" "^7.1.0" 380 | "@babel/helper-plugin-utils" "^7.0.0" 381 | 382 | "@babel/plugin-transform-literals@^7.2.0": 383 | version "7.2.0" 384 | resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" 385 | dependencies: 386 | "@babel/helper-plugin-utils" "^7.0.0" 387 | 388 | "@babel/plugin-transform-modules-amd@^7.2.0": 389 | version "7.2.0" 390 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" 391 | dependencies: 392 | "@babel/helper-module-transforms" "^7.1.0" 393 | "@babel/helper-plugin-utils" "^7.0.0" 394 | 395 | "@babel/plugin-transform-modules-commonjs@^7.2.0": 396 | version "7.2.0" 397 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404" 398 | dependencies: 399 | "@babel/helper-module-transforms" "^7.1.0" 400 | "@babel/helper-plugin-utils" "^7.0.0" 401 | "@babel/helper-simple-access" "^7.1.0" 402 | 403 | "@babel/plugin-transform-modules-systemjs@^7.2.0": 404 | version "7.2.0" 405 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz#912bfe9e5ff982924c81d0937c92d24994bb9068" 406 | dependencies: 407 | "@babel/helper-hoist-variables" "^7.0.0" 408 | "@babel/helper-plugin-utils" "^7.0.0" 409 | 410 | "@babel/plugin-transform-modules-umd@^7.2.0": 411 | version "7.2.0" 412 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" 413 | dependencies: 414 | "@babel/helper-module-transforms" "^7.1.0" 415 | "@babel/helper-plugin-utils" "^7.0.0" 416 | 417 | "@babel/plugin-transform-new-target@^7.0.0": 418 | version "7.0.0" 419 | resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a" 420 | dependencies: 421 | "@babel/helper-plugin-utils" "^7.0.0" 422 | 423 | "@babel/plugin-transform-object-super@^7.2.0": 424 | version "7.2.0" 425 | resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" 426 | dependencies: 427 | "@babel/helper-plugin-utils" "^7.0.0" 428 | "@babel/helper-replace-supers" "^7.1.0" 429 | 430 | "@babel/plugin-transform-parameters@^7.2.0": 431 | version "7.2.0" 432 | resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2" 433 | dependencies: 434 | "@babel/helper-call-delegate" "^7.1.0" 435 | "@babel/helper-get-function-arity" "^7.0.0" 436 | "@babel/helper-plugin-utils" "^7.0.0" 437 | 438 | "@babel/plugin-transform-regenerator@^7.0.0": 439 | version "7.0.0" 440 | resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1" 441 | dependencies: 442 | regenerator-transform "^0.13.3" 443 | 444 | "@babel/plugin-transform-shorthand-properties@^7.2.0": 445 | version "7.2.0" 446 | resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.0.0" 449 | 450 | "@babel/plugin-transform-spread@^7.2.0": 451 | version "7.2.2" 452 | resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" 453 | dependencies: 454 | "@babel/helper-plugin-utils" "^7.0.0" 455 | 456 | "@babel/plugin-transform-sticky-regex@^7.2.0": 457 | version "7.2.0" 458 | resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" 459 | dependencies: 460 | "@babel/helper-plugin-utils" "^7.0.0" 461 | "@babel/helper-regex" "^7.0.0" 462 | 463 | "@babel/plugin-transform-template-literals@^7.2.0": 464 | version "7.2.0" 465 | resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b" 466 | dependencies: 467 | "@babel/helper-annotate-as-pure" "^7.0.0" 468 | "@babel/helper-plugin-utils" "^7.0.0" 469 | 470 | "@babel/plugin-transform-typeof-symbol@^7.2.0": 471 | version "7.2.0" 472 | resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" 473 | dependencies: 474 | "@babel/helper-plugin-utils" "^7.0.0" 475 | 476 | "@babel/plugin-transform-unicode-regex@^7.2.0": 477 | version "7.2.0" 478 | resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" 479 | dependencies: 480 | "@babel/helper-plugin-utils" "^7.0.0" 481 | "@babel/helper-regex" "^7.0.0" 482 | regexpu-core "^4.1.3" 483 | 484 | "@babel/polyfill@^7.0.0": 485 | version "7.2.3" 486 | resolved "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.2.3.tgz#277fe900281d6874ab82332c90482621cbea2575" 487 | dependencies: 488 | core-js "^2.5.7" 489 | regenerator-runtime "^0.12.0" 490 | 491 | "@babel/preset-env@^7.2.3": 492 | version "7.2.3" 493 | resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.2.3.tgz#948c8df4d4609c99c7e0130169f052ea6a7a8933" 494 | dependencies: 495 | "@babel/helper-module-imports" "^7.0.0" 496 | "@babel/helper-plugin-utils" "^7.0.0" 497 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0" 498 | "@babel/plugin-proposal-json-strings" "^7.2.0" 499 | "@babel/plugin-proposal-object-rest-spread" "^7.2.0" 500 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" 501 | "@babel/plugin-proposal-unicode-property-regex" "^7.2.0" 502 | "@babel/plugin-syntax-async-generators" "^7.2.0" 503 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 504 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 505 | "@babel/plugin-transform-arrow-functions" "^7.2.0" 506 | "@babel/plugin-transform-async-to-generator" "^7.2.0" 507 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0" 508 | "@babel/plugin-transform-block-scoping" "^7.2.0" 509 | "@babel/plugin-transform-classes" "^7.2.0" 510 | "@babel/plugin-transform-computed-properties" "^7.2.0" 511 | "@babel/plugin-transform-destructuring" "^7.2.0" 512 | "@babel/plugin-transform-dotall-regex" "^7.2.0" 513 | "@babel/plugin-transform-duplicate-keys" "^7.2.0" 514 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0" 515 | "@babel/plugin-transform-for-of" "^7.2.0" 516 | "@babel/plugin-transform-function-name" "^7.2.0" 517 | "@babel/plugin-transform-literals" "^7.2.0" 518 | "@babel/plugin-transform-modules-amd" "^7.2.0" 519 | "@babel/plugin-transform-modules-commonjs" "^7.2.0" 520 | "@babel/plugin-transform-modules-systemjs" "^7.2.0" 521 | "@babel/plugin-transform-modules-umd" "^7.2.0" 522 | "@babel/plugin-transform-new-target" "^7.0.0" 523 | "@babel/plugin-transform-object-super" "^7.2.0" 524 | "@babel/plugin-transform-parameters" "^7.2.0" 525 | "@babel/plugin-transform-regenerator" "^7.0.0" 526 | "@babel/plugin-transform-shorthand-properties" "^7.2.0" 527 | "@babel/plugin-transform-spread" "^7.2.0" 528 | "@babel/plugin-transform-sticky-regex" "^7.2.0" 529 | "@babel/plugin-transform-template-literals" "^7.2.0" 530 | "@babel/plugin-transform-typeof-symbol" "^7.2.0" 531 | "@babel/plugin-transform-unicode-regex" "^7.2.0" 532 | browserslist "^4.3.4" 533 | invariant "^2.2.2" 534 | js-levenshtein "^1.1.3" 535 | semver "^5.3.0" 536 | 537 | "@babel/preset-flow@^7.0.0": 538 | version "7.0.0" 539 | resolved "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" 540 | dependencies: 541 | "@babel/helper-plugin-utils" "^7.0.0" 542 | "@babel/plugin-transform-flow-strip-types" "^7.0.0" 543 | 544 | "@babel/register@^7.0.0": 545 | version "7.0.0" 546 | resolved "https://registry.npmjs.org/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827" 547 | dependencies: 548 | core-js "^2.5.7" 549 | find-cache-dir "^1.0.0" 550 | home-or-tmp "^3.0.0" 551 | lodash "^4.17.10" 552 | mkdirp "^0.5.1" 553 | pirates "^4.0.0" 554 | source-map-support "^0.5.9" 555 | 556 | "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": 557 | version "7.2.2" 558 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" 559 | dependencies: 560 | "@babel/code-frame" "^7.0.0" 561 | "@babel/parser" "^7.2.2" 562 | "@babel/types" "^7.2.2" 563 | 564 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2", "@babel/traverse@^7.2.3": 565 | version "7.2.3" 566 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8" 567 | dependencies: 568 | "@babel/code-frame" "^7.0.0" 569 | "@babel/generator" "^7.2.2" 570 | "@babel/helper-function-name" "^7.1.0" 571 | "@babel/helper-split-export-declaration" "^7.0.0" 572 | "@babel/parser" "^7.2.3" 573 | "@babel/types" "^7.2.2" 574 | debug "^4.1.0" 575 | globals "^11.1.0" 576 | lodash "^4.17.10" 577 | 578 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2": 579 | version "7.2.2" 580 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.2.2.tgz#44e10fc24e33af524488b716cdaee5360ea8ed1e" 581 | dependencies: 582 | esutils "^2.0.2" 583 | lodash "^4.17.10" 584 | to-fast-properties "^2.0.0" 585 | 586 | "@types/geojson@^1.0.0": 587 | version "1.0.6" 588 | resolved "https://registry.npmjs.org/@types/geojson/-/geojson-1.0.6.tgz#3e02972728c69248c2af08d60a48cbb8680fffdf" 589 | 590 | "@types/node@*": 591 | version "10.12.18" 592 | resolved "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" 593 | 594 | abbrev@1: 595 | version "1.1.1" 596 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 597 | 598 | acorn-jsx@^3.0.0: 599 | version "3.0.1" 600 | resolved "http://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 601 | dependencies: 602 | acorn "^3.0.4" 603 | 604 | acorn-jsx@^5.0.0: 605 | version "5.0.0" 606 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.0.tgz#958584ddb60990c02c97c1bd9d521fce433bb101" 607 | 608 | acorn@^3.0.4: 609 | version "3.3.0" 610 | resolved "http://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 611 | 612 | acorn@^5.5.0: 613 | version "5.7.3" 614 | resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 615 | 616 | acorn@^6.0.2: 617 | version "6.0.4" 618 | resolved "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz#77377e7353b72ec5104550aa2d2097a2fd40b754" 619 | 620 | ajv-keywords@^2.1.0: 621 | version "2.1.1" 622 | resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 623 | 624 | ajv@^5.2.3, ajv@^5.3.0: 625 | version "5.5.2" 626 | resolved "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 627 | dependencies: 628 | co "^4.6.0" 629 | fast-deep-equal "^1.0.0" 630 | fast-json-stable-stringify "^2.0.0" 631 | json-schema-traverse "^0.3.0" 632 | 633 | ajv@^6.5.3: 634 | version "6.5.5" 635 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz#cf97cdade71c6399a92c6d6c4177381291b781a1" 636 | dependencies: 637 | fast-deep-equal "^2.0.1" 638 | fast-json-stable-stringify "^2.0.0" 639 | json-schema-traverse "^0.4.1" 640 | uri-js "^4.2.2" 641 | 642 | ansi-escapes@^3.0.0: 643 | version "3.1.0" 644 | resolved "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 645 | 646 | ansi-regex@^2.0.0: 647 | version "2.1.1" 648 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 649 | 650 | ansi-regex@^3.0.0: 651 | version "3.0.0" 652 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 653 | 654 | ansi-styles@^2.2.1: 655 | version "2.2.1" 656 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 657 | 658 | ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: 659 | version "3.2.1" 660 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 661 | dependencies: 662 | color-convert "^1.9.0" 663 | 664 | anymatch@^2.0.0: 665 | version "2.0.0" 666 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 667 | dependencies: 668 | micromatch "^3.1.4" 669 | normalize-path "^2.1.1" 670 | 671 | aproba@^1.0.3: 672 | version "1.2.0" 673 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 674 | 675 | are-we-there-yet@~1.1.2: 676 | version "1.1.5" 677 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 678 | dependencies: 679 | delegates "^1.0.0" 680 | readable-stream "^2.0.6" 681 | 682 | argparse@^1.0.7: 683 | version "1.0.10" 684 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 685 | dependencies: 686 | sprintf-js "~1.0.2" 687 | 688 | arr-diff@^4.0.0: 689 | version "4.0.0" 690 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 691 | 692 | arr-flatten@^1.1.0: 693 | version "1.1.0" 694 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 695 | 696 | arr-union@^3.1.0: 697 | version "3.1.0" 698 | resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 699 | 700 | array-filter@~0.0.0: 701 | version "0.0.1" 702 | resolved "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 703 | 704 | array-map@~0.0.0: 705 | version "0.0.0" 706 | resolved "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 707 | 708 | array-reduce@~0.0.0: 709 | version "0.0.0" 710 | resolved "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 711 | 712 | array-union@^1.0.1: 713 | version "1.0.2" 714 | resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 715 | dependencies: 716 | array-uniq "^1.0.1" 717 | 718 | array-uniq@^1.0.1: 719 | version "1.0.3" 720 | resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 721 | 722 | array-unique@^0.3.2: 723 | version "0.3.2" 724 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 725 | 726 | arrify@^1.0.1: 727 | version "1.0.1" 728 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 729 | 730 | assign-symbols@^1.0.0: 731 | version "1.0.0" 732 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 733 | 734 | async-each@^1.0.0: 735 | version "1.0.1" 736 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 737 | 738 | atob@^2.1.1: 739 | version "2.1.2" 740 | resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 741 | 742 | babel-code-frame@^6.22.0: 743 | version "6.26.0" 744 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 745 | dependencies: 746 | chalk "^1.1.3" 747 | esutils "^2.0.2" 748 | js-tokens "^3.0.2" 749 | 750 | babel-eslint@^10.0.1: 751 | version "10.0.1" 752 | resolved "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed" 753 | dependencies: 754 | "@babel/code-frame" "^7.0.0" 755 | "@babel/parser" "^7.0.0" 756 | "@babel/traverse" "^7.0.0" 757 | "@babel/types" "^7.0.0" 758 | eslint-scope "3.7.1" 759 | eslint-visitor-keys "^1.0.0" 760 | 761 | babel-helper-evaluate-path@^0.5.0: 762 | version "0.5.0" 763 | resolved "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c" 764 | 765 | babel-helper-flip-expressions@^0.4.3: 766 | version "0.4.3" 767 | resolved "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd" 768 | 769 | babel-helper-is-nodes-equiv@^0.0.1: 770 | version "0.0.1" 771 | resolved "http://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" 772 | 773 | babel-helper-is-void-0@^0.4.3: 774 | version "0.4.3" 775 | resolved "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e" 776 | 777 | babel-helper-mark-eval-scopes@^0.4.3: 778 | version "0.4.3" 779 | resolved "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562" 780 | 781 | babel-helper-remove-or-void@^0.4.3: 782 | version "0.4.3" 783 | resolved "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60" 784 | 785 | babel-helper-to-multiple-sequence-expressions@^0.5.0: 786 | version "0.5.0" 787 | resolved "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" 788 | 789 | babel-plugin-minify-builtins@^0.5.0: 790 | version "0.5.0" 791 | resolved "https://registry.npmjs.org/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b" 792 | 793 | babel-plugin-minify-constant-folding@^0.5.0: 794 | version "0.5.0" 795 | resolved "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e" 796 | dependencies: 797 | babel-helper-evaluate-path "^0.5.0" 798 | 799 | babel-plugin-minify-dead-code-elimination@^0.5.0: 800 | version "0.5.0" 801 | resolved "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.0.tgz#d23ef5445238ad06e8addf5c1cf6aec835bcda87" 802 | dependencies: 803 | babel-helper-evaluate-path "^0.5.0" 804 | babel-helper-mark-eval-scopes "^0.4.3" 805 | babel-helper-remove-or-void "^0.4.3" 806 | lodash.some "^4.6.0" 807 | 808 | babel-plugin-minify-flip-comparisons@^0.4.3: 809 | version "0.4.3" 810 | resolved "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a" 811 | dependencies: 812 | babel-helper-is-void-0 "^0.4.3" 813 | 814 | babel-plugin-minify-guarded-expressions@^0.4.3: 815 | version "0.4.3" 816 | resolved "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.3.tgz#cc709b4453fd21b1f302877444c89f88427ce397" 817 | dependencies: 818 | babel-helper-flip-expressions "^0.4.3" 819 | 820 | babel-plugin-minify-infinity@^0.4.3: 821 | version "0.4.3" 822 | resolved "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca" 823 | 824 | babel-plugin-minify-mangle-names@^0.5.0: 825 | version "0.5.0" 826 | resolved "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3" 827 | dependencies: 828 | babel-helper-mark-eval-scopes "^0.4.3" 829 | 830 | babel-plugin-minify-numeric-literals@^0.4.3: 831 | version "0.4.3" 832 | resolved "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc" 833 | 834 | babel-plugin-minify-replace@^0.5.0: 835 | version "0.5.0" 836 | resolved "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c" 837 | 838 | babel-plugin-minify-simplify@^0.5.0: 839 | version "0.5.0" 840 | resolved "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.0.tgz#1f090018afb90d8b54d3d027fd8a4927f243da6f" 841 | dependencies: 842 | babel-helper-flip-expressions "^0.4.3" 843 | babel-helper-is-nodes-equiv "^0.0.1" 844 | babel-helper-to-multiple-sequence-expressions "^0.5.0" 845 | 846 | babel-plugin-minify-type-constructors@^0.4.3: 847 | version "0.4.3" 848 | resolved "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500" 849 | dependencies: 850 | babel-helper-is-void-0 "^0.4.3" 851 | 852 | babel-plugin-transform-inline-consecutive-adds@^0.4.3: 853 | version "0.4.3" 854 | resolved "https://registry.npmjs.org/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1" 855 | 856 | babel-plugin-transform-member-expression-literals@^6.9.4: 857 | version "6.9.4" 858 | resolved "https://registry.npmjs.org/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf" 859 | 860 | babel-plugin-transform-merge-sibling-variables@^6.9.4: 861 | version "6.9.4" 862 | resolved "https://registry.npmjs.org/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae" 863 | 864 | babel-plugin-transform-minify-booleans@^6.9.4: 865 | version "6.9.4" 866 | resolved "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198" 867 | 868 | babel-plugin-transform-property-literals@^6.9.4: 869 | version "6.9.4" 870 | resolved "https://registry.npmjs.org/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39" 871 | dependencies: 872 | esutils "^2.0.2" 873 | 874 | babel-plugin-transform-regexp-constructors@^0.4.3: 875 | version "0.4.3" 876 | resolved "https://registry.npmjs.org/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965" 877 | 878 | babel-plugin-transform-remove-console@^6.9.4: 879 | version "6.9.4" 880 | resolved "https://registry.npmjs.org/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780" 881 | 882 | babel-plugin-transform-remove-debugger@^6.9.4: 883 | version "6.9.4" 884 | resolved "https://registry.npmjs.org/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2" 885 | 886 | babel-plugin-transform-remove-undefined@^0.5.0: 887 | version "0.5.0" 888 | resolved "https://registry.npmjs.org/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd" 889 | dependencies: 890 | babel-helper-evaluate-path "^0.5.0" 891 | 892 | babel-plugin-transform-simplify-comparison-operators@^6.9.4: 893 | version "6.9.4" 894 | resolved "https://registry.npmjs.org/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9" 895 | 896 | babel-plugin-transform-undefined-to-void@^6.9.4: 897 | version "6.9.4" 898 | resolved "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" 899 | 900 | babel-preset-minify@^0.5.0: 901 | version "0.5.0" 902 | resolved "https://registry.npmjs.org/babel-preset-minify/-/babel-preset-minify-0.5.0.tgz#e25bb8d3590087af02b650967159a77c19bfb96b" 903 | dependencies: 904 | babel-plugin-minify-builtins "^0.5.0" 905 | babel-plugin-minify-constant-folding "^0.5.0" 906 | babel-plugin-minify-dead-code-elimination "^0.5.0" 907 | babel-plugin-minify-flip-comparisons "^0.4.3" 908 | babel-plugin-minify-guarded-expressions "^0.4.3" 909 | babel-plugin-minify-infinity "^0.4.3" 910 | babel-plugin-minify-mangle-names "^0.5.0" 911 | babel-plugin-minify-numeric-literals "^0.4.3" 912 | babel-plugin-minify-replace "^0.5.0" 913 | babel-plugin-minify-simplify "^0.5.0" 914 | babel-plugin-minify-type-constructors "^0.4.3" 915 | babel-plugin-transform-inline-consecutive-adds "^0.4.3" 916 | babel-plugin-transform-member-expression-literals "^6.9.4" 917 | babel-plugin-transform-merge-sibling-variables "^6.9.4" 918 | babel-plugin-transform-minify-booleans "^6.9.4" 919 | babel-plugin-transform-property-literals "^6.9.4" 920 | babel-plugin-transform-regexp-constructors "^0.4.3" 921 | babel-plugin-transform-remove-console "^6.9.4" 922 | babel-plugin-transform-remove-debugger "^6.9.4" 923 | babel-plugin-transform-remove-undefined "^0.5.0" 924 | babel-plugin-transform-simplify-comparison-operators "^6.9.4" 925 | babel-plugin-transform-undefined-to-void "^6.9.4" 926 | lodash.isplainobject "^4.0.6" 927 | 928 | babel-runtime@^6.23.0, babel-runtime@^6.26.0: 929 | version "6.26.0" 930 | resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 931 | dependencies: 932 | core-js "^2.4.0" 933 | regenerator-runtime "^0.11.0" 934 | 935 | balanced-match@^1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 938 | 939 | base@^0.11.1: 940 | version "0.11.2" 941 | resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 942 | dependencies: 943 | cache-base "^1.0.1" 944 | class-utils "^0.3.5" 945 | component-emitter "^1.2.1" 946 | define-property "^1.0.0" 947 | isobject "^3.0.1" 948 | mixin-deep "^1.2.0" 949 | pascalcase "^0.1.1" 950 | 951 | binary-extensions@^1.0.0: 952 | version "1.12.0" 953 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" 954 | 955 | binary-uuid@^1.2.0: 956 | version "1.2.0" 957 | resolved "https://registry.npmjs.org/binary-uuid/-/binary-uuid-1.2.0.tgz#84271300dd5f486631e1662989978f49dce3e1a8" 958 | dependencies: 959 | uuid "^3.3.2" 960 | 961 | bluebird@^3.4.6, bluebird@^3.5.0: 962 | version "3.5.3" 963 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" 964 | 965 | boolify@^1.0.0: 966 | version "1.0.1" 967 | resolved "https://registry.npmjs.org/boolify/-/boolify-1.0.1.tgz#b5c09e17cacd113d11b7bb3ed384cc012994d86b" 968 | 969 | brace-expansion@^1.1.7: 970 | version "1.1.11" 971 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 972 | dependencies: 973 | balanced-match "^1.0.0" 974 | concat-map "0.0.1" 975 | 976 | braces@^2.3.0, braces@^2.3.1: 977 | version "2.3.2" 978 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 979 | dependencies: 980 | arr-flatten "^1.1.0" 981 | array-unique "^0.3.2" 982 | extend-shallow "^2.0.1" 983 | fill-range "^4.0.0" 984 | isobject "^3.0.1" 985 | repeat-element "^1.1.2" 986 | snapdragon "^0.8.1" 987 | snapdragon-node "^2.0.1" 988 | split-string "^3.0.2" 989 | to-regex "^3.0.1" 990 | 991 | browserslist@^4.3.4: 992 | version "4.3.6" 993 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.3.6.tgz#0f9d9081afc66b36f477c6bdf3813f784f42396a" 994 | dependencies: 995 | caniuse-lite "^1.0.30000921" 996 | electron-to-chromium "^1.3.92" 997 | node-releases "^1.1.1" 998 | 999 | buffer-from@^1.0.0: 1000 | version "1.1.1" 1001 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1002 | 1003 | builtin-modules@^1.0.0: 1004 | version "1.1.1" 1005 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1006 | 1007 | cache-base@^1.0.1: 1008 | version "1.0.1" 1009 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1010 | dependencies: 1011 | collection-visit "^1.0.0" 1012 | component-emitter "^1.2.1" 1013 | get-value "^2.0.6" 1014 | has-value "^1.0.0" 1015 | isobject "^3.0.1" 1016 | set-value "^2.0.0" 1017 | to-object-path "^0.3.0" 1018 | union-value "^1.0.0" 1019 | unset-value "^1.0.0" 1020 | 1021 | caller-path@^0.1.0: 1022 | version "0.1.0" 1023 | resolved "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1024 | dependencies: 1025 | callsites "^0.2.0" 1026 | 1027 | callsites@^0.2.0: 1028 | version "0.2.0" 1029 | resolved "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1030 | 1031 | camelcase-keys@^4.1.0: 1032 | version "4.2.0" 1033 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 1034 | dependencies: 1035 | camelcase "^4.1.0" 1036 | map-obj "^2.0.0" 1037 | quick-lru "^1.0.0" 1038 | 1039 | camelcase@^4.1.0: 1040 | version "4.1.0" 1041 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1042 | 1043 | caniuse-lite@^1.0.30000921: 1044 | version "1.0.30000923" 1045 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000923.tgz#148f9bda508024b5ce957b463ae2e8302b451bb2" 1046 | 1047 | chalk@2.3.0: 1048 | version "2.3.0" 1049 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1050 | dependencies: 1051 | ansi-styles "^3.1.0" 1052 | escape-string-regexp "^1.0.5" 1053 | supports-color "^4.0.0" 1054 | 1055 | chalk@^1.1.3: 1056 | version "1.1.3" 1057 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1058 | dependencies: 1059 | ansi-styles "^2.2.1" 1060 | escape-string-regexp "^1.0.2" 1061 | has-ansi "^2.0.0" 1062 | strip-ansi "^3.0.0" 1063 | supports-color "^2.0.0" 1064 | 1065 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1: 1066 | version "2.4.1" 1067 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 1068 | dependencies: 1069 | ansi-styles "^3.2.1" 1070 | escape-string-regexp "^1.0.5" 1071 | supports-color "^5.3.0" 1072 | 1073 | chardet@^0.4.0: 1074 | version "0.4.2" 1075 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1076 | 1077 | chardet@^0.7.0: 1078 | version "0.7.0" 1079 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 1080 | 1081 | chokidar@^2.0.3: 1082 | version "2.0.4" 1083 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 1084 | dependencies: 1085 | anymatch "^2.0.0" 1086 | async-each "^1.0.0" 1087 | braces "^2.3.0" 1088 | glob-parent "^3.1.0" 1089 | inherits "^2.0.1" 1090 | is-binary-path "^1.0.0" 1091 | is-glob "^4.0.0" 1092 | lodash.debounce "^4.0.8" 1093 | normalize-path "^2.1.1" 1094 | path-is-absolute "^1.0.0" 1095 | readdirp "^2.0.0" 1096 | upath "^1.0.5" 1097 | optionalDependencies: 1098 | fsevents "^1.2.2" 1099 | 1100 | chownr@^1.1.1: 1101 | version "1.1.1" 1102 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 1103 | 1104 | circular-json@^0.3.1: 1105 | version "0.3.3" 1106 | resolved "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1107 | 1108 | class-utils@^0.3.5: 1109 | version "0.3.6" 1110 | resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1111 | dependencies: 1112 | arr-union "^3.1.0" 1113 | define-property "^0.2.5" 1114 | isobject "^3.0.0" 1115 | static-extend "^0.1.1" 1116 | 1117 | cli-cursor@^2.1.0: 1118 | version "2.1.0" 1119 | resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1120 | dependencies: 1121 | restore-cursor "^2.0.0" 1122 | 1123 | cli-width@^2.0.0: 1124 | version "2.2.0" 1125 | resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1126 | 1127 | cliui@^3.2.0: 1128 | version "3.2.0" 1129 | resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1130 | dependencies: 1131 | string-width "^1.0.1" 1132 | strip-ansi "^3.0.1" 1133 | wrap-ansi "^2.0.0" 1134 | 1135 | cls-bluebird@^2.1.0: 1136 | version "2.1.0" 1137 | resolved "https://registry.npmjs.org/cls-bluebird/-/cls-bluebird-2.1.0.tgz#37ef1e080a8ffb55c2f4164f536f1919e7968aee" 1138 | dependencies: 1139 | is-bluebird "^1.0.2" 1140 | shimmer "^1.1.0" 1141 | 1142 | co@^4.6.0: 1143 | version "4.6.0" 1144 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1145 | 1146 | code-point-at@^1.0.0: 1147 | version "1.1.0" 1148 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1149 | 1150 | collection-visit@^1.0.0: 1151 | version "1.0.0" 1152 | resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1153 | dependencies: 1154 | map-visit "^1.0.0" 1155 | object-visit "^1.0.0" 1156 | 1157 | color-convert@^1.9.0: 1158 | version "1.9.3" 1159 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1160 | dependencies: 1161 | color-name "1.1.3" 1162 | 1163 | color-name@1.1.3: 1164 | version "1.1.3" 1165 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1166 | 1167 | commander@^2.8.1: 1168 | version "2.19.0" 1169 | resolved "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" 1170 | 1171 | common-tags@^1.4.0: 1172 | version "1.8.0" 1173 | resolved "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" 1174 | 1175 | commondir@^1.0.1: 1176 | version "1.0.1" 1177 | resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1178 | 1179 | component-emitter@^1.2.1: 1180 | version "1.2.1" 1181 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1182 | 1183 | concat-map@0.0.1: 1184 | version "0.0.1" 1185 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1186 | 1187 | concat-stream@^1.6.0: 1188 | version "1.6.2" 1189 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1190 | dependencies: 1191 | buffer-from "^1.0.0" 1192 | inherits "^2.0.3" 1193 | readable-stream "^2.2.2" 1194 | typedarray "^0.0.6" 1195 | 1196 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1197 | version "1.1.0" 1198 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1199 | 1200 | contains-path@^0.1.0: 1201 | version "0.1.0" 1202 | resolved "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1203 | 1204 | convert-source-map@^1.1.0: 1205 | version "1.6.0" 1206 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1207 | dependencies: 1208 | safe-buffer "~5.1.1" 1209 | 1210 | copy-descriptor@^0.1.0: 1211 | version "0.1.1" 1212 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1213 | 1214 | core-js@^2.4.0: 1215 | version "2.5.7" 1216 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1217 | 1218 | core-js@^2.5.7: 1219 | version "2.6.1" 1220 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.1.tgz#87416ae817de957a3f249b3b5ca475d4aaed6042" 1221 | 1222 | core-util-is@~1.0.0: 1223 | version "1.0.2" 1224 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1225 | 1226 | cross-env@^5.2.0: 1227 | version "5.2.0" 1228 | resolved "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2" 1229 | dependencies: 1230 | cross-spawn "^6.0.5" 1231 | is-windows "^1.0.0" 1232 | 1233 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1234 | version "5.1.0" 1235 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1236 | dependencies: 1237 | lru-cache "^4.0.1" 1238 | shebang-command "^1.2.0" 1239 | which "^1.2.9" 1240 | 1241 | cross-spawn@^6.0.5: 1242 | version "6.0.5" 1243 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1244 | dependencies: 1245 | nice-try "^1.0.4" 1246 | path-key "^2.0.1" 1247 | semver "^5.5.0" 1248 | shebang-command "^1.2.0" 1249 | which "^1.2.9" 1250 | 1251 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1252 | version "2.6.9" 1253 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1254 | dependencies: 1255 | ms "2.0.0" 1256 | 1257 | debug@^3.1.0: 1258 | version "3.2.6" 1259 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1260 | dependencies: 1261 | ms "^2.1.1" 1262 | 1263 | debug@^4.0.1, debug@^4.1.0: 1264 | version "4.1.0" 1265 | resolved "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" 1266 | dependencies: 1267 | ms "^2.1.1" 1268 | 1269 | decamelize@^1.1.1: 1270 | version "1.2.0" 1271 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1272 | 1273 | decode-uri-component@^0.2.0: 1274 | version "0.2.0" 1275 | resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1276 | 1277 | deep-extend@^0.6.0: 1278 | version "0.6.0" 1279 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1280 | 1281 | deep-is@~0.1.3: 1282 | version "0.1.3" 1283 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1284 | 1285 | define-properties@^1.1.2: 1286 | version "1.1.3" 1287 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1288 | dependencies: 1289 | object-keys "^1.0.12" 1290 | 1291 | define-property@^0.2.5: 1292 | version "0.2.5" 1293 | resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1294 | dependencies: 1295 | is-descriptor "^0.1.0" 1296 | 1297 | define-property@^1.0.0: 1298 | version "1.0.0" 1299 | resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1300 | dependencies: 1301 | is-descriptor "^1.0.0" 1302 | 1303 | define-property@^2.0.2: 1304 | version "2.0.2" 1305 | resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1306 | dependencies: 1307 | is-descriptor "^1.0.2" 1308 | isobject "^3.0.1" 1309 | 1310 | del@^3.0.0: 1311 | version "3.0.0" 1312 | resolved "https://registry.npmjs.org/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" 1313 | dependencies: 1314 | globby "^6.1.0" 1315 | is-path-cwd "^1.0.0" 1316 | is-path-in-cwd "^1.0.0" 1317 | p-map "^1.1.1" 1318 | pify "^3.0.0" 1319 | rimraf "^2.2.8" 1320 | 1321 | delegates@^1.0.0: 1322 | version "1.0.0" 1323 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1324 | 1325 | depd@^1.1.0: 1326 | version "1.1.2" 1327 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1328 | 1329 | detect-libc@^1.0.2: 1330 | version "1.0.3" 1331 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1332 | 1333 | dlv@^1.1.0: 1334 | version "1.1.2" 1335 | resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" 1336 | 1337 | doctrine@1.5.0: 1338 | version "1.5.0" 1339 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1340 | dependencies: 1341 | esutils "^2.0.2" 1342 | isarray "^1.0.0" 1343 | 1344 | doctrine@^2.1.0: 1345 | version "2.1.0" 1346 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1347 | dependencies: 1348 | esutils "^2.0.2" 1349 | 1350 | dottie@^2.0.0: 1351 | version "2.0.1" 1352 | resolved "https://registry.npmjs.org/dottie/-/dottie-2.0.1.tgz#697ad9d72004db7574d21f892466a3c285893659" 1353 | 1354 | electron-to-chromium@^1.3.92: 1355 | version "1.3.95" 1356 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.95.tgz#79fac438813ca7f3db182a525c2ab432934f6484" 1357 | 1358 | error-ex@^1.2.0, error-ex@^1.3.1: 1359 | version "1.3.2" 1360 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1361 | dependencies: 1362 | is-arrayish "^0.2.1" 1363 | 1364 | es-abstract@^1.4.3, es-abstract@^1.6.1: 1365 | version "1.12.0" 1366 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1367 | dependencies: 1368 | es-to-primitive "^1.1.1" 1369 | function-bind "^1.1.1" 1370 | has "^1.0.1" 1371 | is-callable "^1.1.3" 1372 | is-regex "^1.0.4" 1373 | 1374 | es-to-primitive@^1.1.1: 1375 | version "1.2.0" 1376 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1377 | dependencies: 1378 | is-callable "^1.1.4" 1379 | is-date-object "^1.0.1" 1380 | is-symbol "^1.0.2" 1381 | 1382 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1383 | version "1.0.5" 1384 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1385 | 1386 | eslint-config-airbnb-base@^13.1.0: 1387 | version "13.1.0" 1388 | resolved "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz#b5a1b480b80dfad16433d6c4ad84e6605052c05c" 1389 | dependencies: 1390 | eslint-restricted-globals "^0.1.1" 1391 | object.assign "^4.1.0" 1392 | object.entries "^1.0.4" 1393 | 1394 | eslint-config-prettier@^3.3.0: 1395 | version "3.3.0" 1396 | resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz#41afc8d3b852e757f06274ed6c44ca16f939a57d" 1397 | dependencies: 1398 | get-stdin "^6.0.0" 1399 | 1400 | eslint-import-resolver-node@^0.3.1: 1401 | version "0.3.2" 1402 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1403 | dependencies: 1404 | debug "^2.6.9" 1405 | resolve "^1.5.0" 1406 | 1407 | eslint-module-utils@^2.2.0: 1408 | version "2.2.0" 1409 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1410 | dependencies: 1411 | debug "^2.6.8" 1412 | pkg-dir "^1.0.0" 1413 | 1414 | eslint-plugin-flowtype@^3.2.0: 1415 | version "3.2.0" 1416 | resolved "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.2.0.tgz#824364ed5940a404b91326fdb5a313a2a74760df" 1417 | dependencies: 1418 | lodash "^4.17.10" 1419 | 1420 | eslint-plugin-import@^2.14.0: 1421 | version "2.14.0" 1422 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8" 1423 | dependencies: 1424 | contains-path "^0.1.0" 1425 | debug "^2.6.8" 1426 | doctrine "1.5.0" 1427 | eslint-import-resolver-node "^0.3.1" 1428 | eslint-module-utils "^2.2.0" 1429 | has "^1.0.1" 1430 | lodash "^4.17.4" 1431 | minimatch "^3.0.3" 1432 | read-pkg-up "^2.0.0" 1433 | resolve "^1.6.0" 1434 | 1435 | eslint-restricted-globals@^0.1.1: 1436 | version "0.1.1" 1437 | resolved "https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1438 | 1439 | eslint-scope@3.7.1: 1440 | version "3.7.1" 1441 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1442 | dependencies: 1443 | esrecurse "^4.1.0" 1444 | estraverse "^4.1.1" 1445 | 1446 | eslint-scope@^3.7.1: 1447 | version "3.7.3" 1448 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 1449 | dependencies: 1450 | esrecurse "^4.1.0" 1451 | estraverse "^4.1.1" 1452 | 1453 | eslint-scope@^4.0.0: 1454 | version "4.0.0" 1455 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1456 | dependencies: 1457 | esrecurse "^4.1.0" 1458 | estraverse "^4.1.1" 1459 | 1460 | eslint-utils@^1.3.1: 1461 | version "1.3.1" 1462 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" 1463 | 1464 | eslint-visitor-keys@^1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1467 | 1468 | eslint@^4.0.0, eslint@^4.5.0: 1469 | version "4.19.1" 1470 | resolved "http://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 1471 | dependencies: 1472 | ajv "^5.3.0" 1473 | babel-code-frame "^6.22.0" 1474 | chalk "^2.1.0" 1475 | concat-stream "^1.6.0" 1476 | cross-spawn "^5.1.0" 1477 | debug "^3.1.0" 1478 | doctrine "^2.1.0" 1479 | eslint-scope "^3.7.1" 1480 | eslint-visitor-keys "^1.0.0" 1481 | espree "^3.5.4" 1482 | esquery "^1.0.0" 1483 | esutils "^2.0.2" 1484 | file-entry-cache "^2.0.0" 1485 | functional-red-black-tree "^1.0.1" 1486 | glob "^7.1.2" 1487 | globals "^11.0.1" 1488 | ignore "^3.3.3" 1489 | imurmurhash "^0.1.4" 1490 | inquirer "^3.0.6" 1491 | is-resolvable "^1.0.0" 1492 | js-yaml "^3.9.1" 1493 | json-stable-stringify-without-jsonify "^1.0.1" 1494 | levn "^0.3.0" 1495 | lodash "^4.17.4" 1496 | minimatch "^3.0.2" 1497 | mkdirp "^0.5.1" 1498 | natural-compare "^1.4.0" 1499 | optionator "^0.8.2" 1500 | path-is-inside "^1.0.2" 1501 | pluralize "^7.0.0" 1502 | progress "^2.0.0" 1503 | regexpp "^1.0.1" 1504 | require-uncached "^1.0.3" 1505 | semver "^5.3.0" 1506 | strip-ansi "^4.0.0" 1507 | strip-json-comments "~2.0.1" 1508 | table "4.0.2" 1509 | text-table "~0.2.0" 1510 | 1511 | eslint@^5.10.0: 1512 | version "5.10.0" 1513 | resolved "https://registry.npmjs.org/eslint/-/eslint-5.10.0.tgz#24adcbe92bf5eb1fc2d2f2b1eebe0c5e0713903a" 1514 | dependencies: 1515 | "@babel/code-frame" "^7.0.0" 1516 | ajv "^6.5.3" 1517 | chalk "^2.1.0" 1518 | cross-spawn "^6.0.5" 1519 | debug "^4.0.1" 1520 | doctrine "^2.1.0" 1521 | eslint-scope "^4.0.0" 1522 | eslint-utils "^1.3.1" 1523 | eslint-visitor-keys "^1.0.0" 1524 | espree "^5.0.0" 1525 | esquery "^1.0.1" 1526 | esutils "^2.0.2" 1527 | file-entry-cache "^2.0.0" 1528 | functional-red-black-tree "^1.0.1" 1529 | glob "^7.1.2" 1530 | globals "^11.7.0" 1531 | ignore "^4.0.6" 1532 | imurmurhash "^0.1.4" 1533 | inquirer "^6.1.0" 1534 | js-yaml "^3.12.0" 1535 | json-stable-stringify-without-jsonify "^1.0.1" 1536 | levn "^0.3.0" 1537 | lodash "^4.17.5" 1538 | minimatch "^3.0.4" 1539 | mkdirp "^0.5.1" 1540 | natural-compare "^1.4.0" 1541 | optionator "^0.8.2" 1542 | path-is-inside "^1.0.2" 1543 | pluralize "^7.0.0" 1544 | progress "^2.0.0" 1545 | regexpp "^2.0.1" 1546 | require-uncached "^1.0.3" 1547 | semver "^5.5.1" 1548 | strip-ansi "^4.0.0" 1549 | strip-json-comments "^2.0.1" 1550 | table "^5.0.2" 1551 | text-table "^0.2.0" 1552 | 1553 | espree@^3.5.2, espree@^3.5.4: 1554 | version "3.5.4" 1555 | resolved "http://registry.npmjs.org/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1556 | dependencies: 1557 | acorn "^5.5.0" 1558 | acorn-jsx "^3.0.0" 1559 | 1560 | espree@^5.0.0: 1561 | version "5.0.0" 1562 | resolved "https://registry.npmjs.org/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c" 1563 | dependencies: 1564 | acorn "^6.0.2" 1565 | acorn-jsx "^5.0.0" 1566 | eslint-visitor-keys "^1.0.0" 1567 | 1568 | esprima@^4.0.0: 1569 | version "4.0.1" 1570 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1571 | 1572 | esquery@^1.0.0, esquery@^1.0.1: 1573 | version "1.0.1" 1574 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1575 | dependencies: 1576 | estraverse "^4.0.0" 1577 | 1578 | esrecurse@^4.1.0: 1579 | version "4.2.1" 1580 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1581 | dependencies: 1582 | estraverse "^4.1.0" 1583 | 1584 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1585 | version "4.2.0" 1586 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1587 | 1588 | esutils@^2.0.2: 1589 | version "2.0.2" 1590 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1591 | 1592 | execa@^0.7.0: 1593 | version "0.7.0" 1594 | resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1595 | dependencies: 1596 | cross-spawn "^5.0.1" 1597 | get-stream "^3.0.0" 1598 | is-stream "^1.1.0" 1599 | npm-run-path "^2.0.0" 1600 | p-finally "^1.0.0" 1601 | signal-exit "^3.0.0" 1602 | strip-eof "^1.0.0" 1603 | 1604 | expand-brackets@^2.1.4: 1605 | version "2.1.4" 1606 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1607 | dependencies: 1608 | debug "^2.3.3" 1609 | define-property "^0.2.5" 1610 | extend-shallow "^2.0.1" 1611 | posix-character-classes "^0.1.0" 1612 | regex-not "^1.0.0" 1613 | snapdragon "^0.8.1" 1614 | to-regex "^3.0.1" 1615 | 1616 | extend-shallow@^2.0.1: 1617 | version "2.0.1" 1618 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1619 | dependencies: 1620 | is-extendable "^0.1.0" 1621 | 1622 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1623 | version "3.0.2" 1624 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1625 | dependencies: 1626 | assign-symbols "^1.0.0" 1627 | is-extendable "^1.0.1" 1628 | 1629 | external-editor@^2.0.4: 1630 | version "2.2.0" 1631 | resolved "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1632 | dependencies: 1633 | chardet "^0.4.0" 1634 | iconv-lite "^0.4.17" 1635 | tmp "^0.0.33" 1636 | 1637 | external-editor@^3.0.0: 1638 | version "3.0.3" 1639 | resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" 1640 | dependencies: 1641 | chardet "^0.7.0" 1642 | iconv-lite "^0.4.24" 1643 | tmp "^0.0.33" 1644 | 1645 | extglob@^2.0.4: 1646 | version "2.0.4" 1647 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1648 | dependencies: 1649 | array-unique "^0.3.2" 1650 | define-property "^1.0.0" 1651 | expand-brackets "^2.1.4" 1652 | extend-shallow "^2.0.1" 1653 | fragment-cache "^0.2.1" 1654 | regex-not "^1.0.0" 1655 | snapdragon "^0.8.1" 1656 | to-regex "^3.0.1" 1657 | 1658 | fast-deep-equal@^1.0.0: 1659 | version "1.1.0" 1660 | resolved "http://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1661 | 1662 | fast-deep-equal@^2.0.1: 1663 | version "2.0.1" 1664 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1665 | 1666 | fast-json-stable-stringify@^2.0.0: 1667 | version "2.0.0" 1668 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1669 | 1670 | fast-levenshtein@~2.0.4: 1671 | version "2.0.6" 1672 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1673 | 1674 | figures@^2.0.0: 1675 | version "2.0.0" 1676 | resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1677 | dependencies: 1678 | escape-string-regexp "^1.0.5" 1679 | 1680 | file-entry-cache@^2.0.0: 1681 | version "2.0.0" 1682 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1683 | dependencies: 1684 | flat-cache "^1.2.1" 1685 | object-assign "^4.0.1" 1686 | 1687 | fill-range@^4.0.0: 1688 | version "4.0.0" 1689 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1690 | dependencies: 1691 | extend-shallow "^2.0.1" 1692 | is-number "^3.0.0" 1693 | repeat-string "^1.6.1" 1694 | to-regex-range "^2.1.0" 1695 | 1696 | find-cache-dir@^1.0.0: 1697 | version "1.0.0" 1698 | resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1699 | dependencies: 1700 | commondir "^1.0.1" 1701 | make-dir "^1.0.0" 1702 | pkg-dir "^2.0.0" 1703 | 1704 | find-up@^1.0.0: 1705 | version "1.1.2" 1706 | resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1707 | dependencies: 1708 | path-exists "^2.0.0" 1709 | pinkie-promise "^2.0.0" 1710 | 1711 | find-up@^2.0.0, find-up@^2.1.0: 1712 | version "2.1.0" 1713 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1714 | dependencies: 1715 | locate-path "^2.0.0" 1716 | 1717 | flat-cache@^1.2.1: 1718 | version "1.3.2" 1719 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.2.tgz#7f852d70be573dac874a4c4129d340a34fba7e65" 1720 | dependencies: 1721 | circular-json "^0.3.1" 1722 | del "^3.0.0" 1723 | graceful-fs "^4.1.2" 1724 | write "^0.2.1" 1725 | 1726 | for-in@^1.0.2: 1727 | version "1.0.2" 1728 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1729 | 1730 | fragment-cache@^0.2.1: 1731 | version "0.2.1" 1732 | resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1733 | dependencies: 1734 | map-cache "^0.2.2" 1735 | 1736 | fs-minipass@^1.2.5: 1737 | version "1.2.5" 1738 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1739 | dependencies: 1740 | minipass "^2.2.1" 1741 | 1742 | fs-readdir-recursive@^1.1.0: 1743 | version "1.1.0" 1744 | resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1745 | 1746 | fs.realpath@^1.0.0: 1747 | version "1.0.0" 1748 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1749 | 1750 | fsevents@^1.2.2: 1751 | version "1.2.4" 1752 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1753 | dependencies: 1754 | nan "^2.9.2" 1755 | node-pre-gyp "^0.10.0" 1756 | 1757 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: 1758 | version "1.1.1" 1759 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1760 | 1761 | functional-red-black-tree@^1.0.1: 1762 | version "1.0.1" 1763 | resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1764 | 1765 | gauge@~2.7.3: 1766 | version "2.7.4" 1767 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1768 | dependencies: 1769 | aproba "^1.0.3" 1770 | console-control-strings "^1.0.0" 1771 | has-unicode "^2.0.0" 1772 | object-assign "^4.1.0" 1773 | signal-exit "^3.0.0" 1774 | string-width "^1.0.1" 1775 | strip-ansi "^3.0.1" 1776 | wide-align "^1.1.0" 1777 | 1778 | generic-pool@^3.4.0: 1779 | version "3.4.2" 1780 | resolved "https://registry.npmjs.org/generic-pool/-/generic-pool-3.4.2.tgz#92ff7196520d670839a67308092a12aadf2f6a59" 1781 | 1782 | get-caller-file@^1.0.1: 1783 | version "1.0.3" 1784 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1785 | 1786 | get-stdin@^5.0.1: 1787 | version "5.0.1" 1788 | resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1789 | 1790 | get-stdin@^6.0.0: 1791 | version "6.0.0" 1792 | resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1793 | 1794 | get-stream@^3.0.0: 1795 | version "3.0.0" 1796 | resolved "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1797 | 1798 | get-value@^2.0.3, get-value@^2.0.6: 1799 | version "2.0.6" 1800 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1801 | 1802 | glob-parent@^3.1.0: 1803 | version "3.1.0" 1804 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1805 | dependencies: 1806 | is-glob "^3.1.0" 1807 | path-dirname "^1.0.0" 1808 | 1809 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1810 | version "7.1.3" 1811 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1812 | dependencies: 1813 | fs.realpath "^1.0.0" 1814 | inflight "^1.0.4" 1815 | inherits "2" 1816 | minimatch "^3.0.4" 1817 | once "^1.3.0" 1818 | path-is-absolute "^1.0.0" 1819 | 1820 | glob@~7.0.6: 1821 | version "7.0.6" 1822 | resolved "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1823 | dependencies: 1824 | fs.realpath "^1.0.0" 1825 | inflight "^1.0.4" 1826 | inherits "2" 1827 | minimatch "^3.0.2" 1828 | once "^1.3.0" 1829 | path-is-absolute "^1.0.0" 1830 | 1831 | globals@^11.0.1, globals@^11.7.0: 1832 | version "11.8.0" 1833 | resolved "https://registry.npmjs.org/globals/-/globals-11.8.0.tgz#c1ef45ee9bed6badf0663c5cb90e8d1adec1321d" 1834 | 1835 | globals@^11.1.0: 1836 | version "11.9.0" 1837 | resolved "https://registry.npmjs.org/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" 1838 | 1839 | globby@^6.1.0: 1840 | version "6.1.0" 1841 | resolved "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1842 | dependencies: 1843 | array-union "^1.0.1" 1844 | glob "^7.0.3" 1845 | object-assign "^4.0.1" 1846 | pify "^2.0.0" 1847 | pinkie-promise "^2.0.0" 1848 | 1849 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1850 | version "4.1.15" 1851 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1852 | 1853 | has-ansi@^2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1856 | dependencies: 1857 | ansi-regex "^2.0.0" 1858 | 1859 | has-flag@^2.0.0: 1860 | version "2.0.0" 1861 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1862 | 1863 | has-flag@^3.0.0: 1864 | version "3.0.0" 1865 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1866 | 1867 | has-symbols@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1870 | 1871 | has-unicode@^2.0.0: 1872 | version "2.0.1" 1873 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1874 | 1875 | has-value@^0.3.1: 1876 | version "0.3.1" 1877 | resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1878 | dependencies: 1879 | get-value "^2.0.3" 1880 | has-values "^0.1.4" 1881 | isobject "^2.0.0" 1882 | 1883 | has-value@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1886 | dependencies: 1887 | get-value "^2.0.6" 1888 | has-values "^1.0.0" 1889 | isobject "^3.0.0" 1890 | 1891 | has-values@^0.1.4: 1892 | version "0.1.4" 1893 | resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1894 | 1895 | has-values@^1.0.0: 1896 | version "1.0.0" 1897 | resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1898 | dependencies: 1899 | is-number "^3.0.0" 1900 | kind-of "^4.0.0" 1901 | 1902 | has@^1.0.1: 1903 | version "1.0.3" 1904 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1905 | dependencies: 1906 | function-bind "^1.1.1" 1907 | 1908 | home-or-tmp@^3.0.0: 1909 | version "3.0.0" 1910 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb" 1911 | 1912 | homedir-polyfill@^1.0.1: 1913 | version "1.0.1" 1914 | resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1915 | dependencies: 1916 | parse-passwd "^1.0.0" 1917 | 1918 | hosted-git-info@^2.1.4: 1919 | version "2.7.1" 1920 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1921 | 1922 | iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4: 1923 | version "0.4.24" 1924 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1925 | dependencies: 1926 | safer-buffer ">= 2.1.2 < 3" 1927 | 1928 | ignore-walk@^3.0.1: 1929 | version "3.0.1" 1930 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1931 | dependencies: 1932 | minimatch "^3.0.4" 1933 | 1934 | ignore@^3.2.7, ignore@^3.3.3: 1935 | version "3.3.10" 1936 | resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1937 | 1938 | ignore@^4.0.6: 1939 | version "4.0.6" 1940 | resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1941 | 1942 | imurmurhash@^0.1.4: 1943 | version "0.1.4" 1944 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1945 | 1946 | indent-string@^3.1.0, indent-string@^3.2.0: 1947 | version "3.2.0" 1948 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1949 | 1950 | inflection@1.12.0: 1951 | version "1.12.0" 1952 | resolved "https://registry.npmjs.org/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416" 1953 | 1954 | inflight@^1.0.4: 1955 | version "1.0.6" 1956 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1957 | dependencies: 1958 | once "^1.3.0" 1959 | wrappy "1" 1960 | 1961 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1962 | version "2.0.3" 1963 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1964 | 1965 | ini@~1.3.0: 1966 | version "1.3.5" 1967 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1968 | 1969 | inquirer@^3.0.6: 1970 | version "3.3.0" 1971 | resolved "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1972 | dependencies: 1973 | ansi-escapes "^3.0.0" 1974 | chalk "^2.0.0" 1975 | cli-cursor "^2.1.0" 1976 | cli-width "^2.0.0" 1977 | external-editor "^2.0.4" 1978 | figures "^2.0.0" 1979 | lodash "^4.3.0" 1980 | mute-stream "0.0.7" 1981 | run-async "^2.2.0" 1982 | rx-lite "^4.0.8" 1983 | rx-lite-aggregates "^4.0.8" 1984 | string-width "^2.1.0" 1985 | strip-ansi "^4.0.0" 1986 | through "^2.3.6" 1987 | 1988 | inquirer@^6.1.0: 1989 | version "6.2.0" 1990 | resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8" 1991 | dependencies: 1992 | ansi-escapes "^3.0.0" 1993 | chalk "^2.0.0" 1994 | cli-cursor "^2.1.0" 1995 | cli-width "^2.0.0" 1996 | external-editor "^3.0.0" 1997 | figures "^2.0.0" 1998 | lodash "^4.17.10" 1999 | mute-stream "0.0.7" 2000 | run-async "^2.2.0" 2001 | rxjs "^6.1.0" 2002 | string-width "^2.1.0" 2003 | strip-ansi "^4.0.0" 2004 | through "^2.3.6" 2005 | 2006 | invariant@^2.2.2: 2007 | version "2.2.4" 2008 | resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2009 | dependencies: 2010 | loose-envify "^1.0.0" 2011 | 2012 | invert-kv@^1.0.0: 2013 | version "1.0.0" 2014 | resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2015 | 2016 | is-accessor-descriptor@^0.1.6: 2017 | version "0.1.6" 2018 | resolved "http://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2019 | dependencies: 2020 | kind-of "^3.0.2" 2021 | 2022 | is-accessor-descriptor@^1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2025 | dependencies: 2026 | kind-of "^6.0.0" 2027 | 2028 | is-arrayish@^0.2.1: 2029 | version "0.2.1" 2030 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2031 | 2032 | is-binary-path@^1.0.0: 2033 | version "1.0.1" 2034 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2035 | dependencies: 2036 | binary-extensions "^1.0.0" 2037 | 2038 | is-bluebird@^1.0.2: 2039 | version "1.0.2" 2040 | resolved "https://registry.npmjs.org/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" 2041 | 2042 | is-buffer@^1.1.5: 2043 | version "1.1.6" 2044 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2045 | 2046 | is-builtin-module@^1.0.0: 2047 | version "1.0.0" 2048 | resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2049 | dependencies: 2050 | builtin-modules "^1.0.0" 2051 | 2052 | is-callable@^1.1.3, is-callable@^1.1.4: 2053 | version "1.1.4" 2054 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 2055 | 2056 | is-data-descriptor@^0.1.4: 2057 | version "0.1.4" 2058 | resolved "http://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2059 | dependencies: 2060 | kind-of "^3.0.2" 2061 | 2062 | is-data-descriptor@^1.0.0: 2063 | version "1.0.0" 2064 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2065 | dependencies: 2066 | kind-of "^6.0.0" 2067 | 2068 | is-date-object@^1.0.1: 2069 | version "1.0.1" 2070 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2071 | 2072 | is-descriptor@^0.1.0: 2073 | version "0.1.6" 2074 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2075 | dependencies: 2076 | is-accessor-descriptor "^0.1.6" 2077 | is-data-descriptor "^0.1.4" 2078 | kind-of "^5.0.0" 2079 | 2080 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2081 | version "1.0.2" 2082 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2083 | dependencies: 2084 | is-accessor-descriptor "^1.0.0" 2085 | is-data-descriptor "^1.0.0" 2086 | kind-of "^6.0.2" 2087 | 2088 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2089 | version "0.1.1" 2090 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2091 | 2092 | is-extendable@^1.0.1: 2093 | version "1.0.1" 2094 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2095 | dependencies: 2096 | is-plain-object "^2.0.4" 2097 | 2098 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2099 | version "2.1.1" 2100 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2101 | 2102 | is-fullwidth-code-point@^1.0.0: 2103 | version "1.0.0" 2104 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2105 | dependencies: 2106 | number-is-nan "^1.0.0" 2107 | 2108 | is-fullwidth-code-point@^2.0.0: 2109 | version "2.0.0" 2110 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2111 | 2112 | is-glob@^3.1.0: 2113 | version "3.1.0" 2114 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2115 | dependencies: 2116 | is-extglob "^2.1.0" 2117 | 2118 | is-glob@^4.0.0: 2119 | version "4.0.0" 2120 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2121 | dependencies: 2122 | is-extglob "^2.1.1" 2123 | 2124 | is-number@^3.0.0: 2125 | version "3.0.0" 2126 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2127 | dependencies: 2128 | kind-of "^3.0.2" 2129 | 2130 | is-path-cwd@^1.0.0: 2131 | version "1.0.0" 2132 | resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2133 | 2134 | is-path-in-cwd@^1.0.0: 2135 | version "1.0.1" 2136 | resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 2137 | dependencies: 2138 | is-path-inside "^1.0.0" 2139 | 2140 | is-path-inside@^1.0.0: 2141 | version "1.0.1" 2142 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2143 | dependencies: 2144 | path-is-inside "^1.0.1" 2145 | 2146 | is-plain-obj@^1.1.0: 2147 | version "1.1.0" 2148 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2149 | 2150 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2151 | version "2.0.4" 2152 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2153 | dependencies: 2154 | isobject "^3.0.1" 2155 | 2156 | is-promise@^2.1.0: 2157 | version "2.1.0" 2158 | resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2159 | 2160 | is-regex@^1.0.4: 2161 | version "1.0.4" 2162 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2163 | dependencies: 2164 | has "^1.0.1" 2165 | 2166 | is-resolvable@^1.0.0: 2167 | version "1.1.0" 2168 | resolved "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2169 | 2170 | is-stream@^1.1.0: 2171 | version "1.1.0" 2172 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2173 | 2174 | is-symbol@^1.0.2: 2175 | version "1.0.2" 2176 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 2177 | dependencies: 2178 | has-symbols "^1.0.0" 2179 | 2180 | is-windows@^1.0.0, is-windows@^1.0.2: 2181 | version "1.0.2" 2182 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2183 | 2184 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2185 | version "1.0.0" 2186 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2187 | 2188 | isexe@^2.0.0: 2189 | version "2.0.0" 2190 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2191 | 2192 | isobject@^2.0.0: 2193 | version "2.1.0" 2194 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2195 | dependencies: 2196 | isarray "1.0.0" 2197 | 2198 | isobject@^3.0.0, isobject@^3.0.1: 2199 | version "3.0.1" 2200 | resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2201 | 2202 | js-levenshtein@^1.1.3: 2203 | version "1.1.4" 2204 | resolved "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.4.tgz#3a56e3cbf589ca0081eb22cd9ba0b1290a16d26e" 2205 | 2206 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2207 | version "4.0.0" 2208 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2209 | 2210 | js-tokens@^3.0.2: 2211 | version "3.0.2" 2212 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2213 | 2214 | js-yaml@^3.12.0, js-yaml@^3.9.1: 2215 | version "3.12.0" 2216 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2217 | dependencies: 2218 | argparse "^1.0.7" 2219 | esprima "^4.0.0" 2220 | 2221 | jsesc@^2.5.1: 2222 | version "2.5.2" 2223 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2224 | 2225 | jsesc@~0.5.0: 2226 | version "0.5.0" 2227 | resolved "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2228 | 2229 | json-parse-better-errors@^1.0.1: 2230 | version "1.0.2" 2231 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2232 | 2233 | json-schema-traverse@^0.3.0: 2234 | version "0.3.1" 2235 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2236 | 2237 | json-schema-traverse@^0.4.1: 2238 | version "0.4.1" 2239 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2240 | 2241 | json-stable-stringify-without-jsonify@^1.0.1: 2242 | version "1.0.1" 2243 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2244 | 2245 | json5@^2.1.0: 2246 | version "2.1.0" 2247 | resolved "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 2248 | dependencies: 2249 | minimist "^1.2.0" 2250 | 2251 | jsonify@~0.0.0: 2252 | version "0.0.0" 2253 | resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2254 | 2255 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2256 | version "3.2.2" 2257 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2258 | dependencies: 2259 | is-buffer "^1.1.5" 2260 | 2261 | kind-of@^4.0.0: 2262 | version "4.0.0" 2263 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2264 | dependencies: 2265 | is-buffer "^1.1.5" 2266 | 2267 | kind-of@^5.0.0: 2268 | version "5.1.0" 2269 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2270 | 2271 | kind-of@^6.0.0, kind-of@^6.0.2: 2272 | version "6.0.2" 2273 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2274 | 2275 | lcid@^1.0.0: 2276 | version "1.0.0" 2277 | resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2278 | dependencies: 2279 | invert-kv "^1.0.0" 2280 | 2281 | levn@^0.3.0, levn@~0.3.0: 2282 | version "0.3.0" 2283 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2284 | dependencies: 2285 | prelude-ls "~1.1.2" 2286 | type-check "~0.3.2" 2287 | 2288 | load-json-file@^2.0.0: 2289 | version "2.0.0" 2290 | resolved "http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2291 | dependencies: 2292 | graceful-fs "^4.1.2" 2293 | parse-json "^2.2.0" 2294 | pify "^2.0.0" 2295 | strip-bom "^3.0.0" 2296 | 2297 | load-json-file@^4.0.0: 2298 | version "4.0.0" 2299 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2300 | dependencies: 2301 | graceful-fs "^4.1.2" 2302 | parse-json "^4.0.0" 2303 | pify "^3.0.0" 2304 | strip-bom "^3.0.0" 2305 | 2306 | locate-path@^2.0.0: 2307 | version "2.0.0" 2308 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2309 | dependencies: 2310 | p-locate "^2.0.0" 2311 | path-exists "^3.0.0" 2312 | 2313 | lodash.debounce@^4.0.8: 2314 | version "4.0.8" 2315 | resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2316 | 2317 | lodash.isplainobject@^4.0.6: 2318 | version "4.0.6" 2319 | resolved "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2320 | 2321 | lodash.memoize@^4.1.2: 2322 | version "4.1.2" 2323 | resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2324 | 2325 | lodash.merge@^4.6.0: 2326 | version "4.6.1" 2327 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 2328 | 2329 | lodash.some@^4.6.0: 2330 | version "4.6.0" 2331 | resolved "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2332 | 2333 | lodash.unescape@4.0.1: 2334 | version "4.0.1" 2335 | resolved "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 2336 | 2337 | lodash@^4.17.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0: 2338 | version "4.17.11" 2339 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2340 | 2341 | loglevel-colored-level-prefix@^1.0.0: 2342 | version "1.0.0" 2343 | resolved "https://registry.npmjs.org/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" 2344 | dependencies: 2345 | chalk "^1.1.3" 2346 | loglevel "^1.4.1" 2347 | 2348 | loglevel@^1.4.1: 2349 | version "1.6.1" 2350 | resolved "https://registry.npmjs.org/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" 2351 | 2352 | loose-envify@^1.0.0: 2353 | version "1.4.0" 2354 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2355 | dependencies: 2356 | js-tokens "^3.0.0 || ^4.0.0" 2357 | 2358 | lru-cache@^4.0.1: 2359 | version "4.1.3" 2360 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2361 | dependencies: 2362 | pseudomap "^1.0.2" 2363 | yallist "^2.1.2" 2364 | 2365 | make-dir@^1.0.0: 2366 | version "1.3.0" 2367 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2368 | dependencies: 2369 | pify "^3.0.0" 2370 | 2371 | make-plural@^4.1.1: 2372 | version "4.3.0" 2373 | resolved "https://registry.npmjs.org/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" 2374 | optionalDependencies: 2375 | minimist "^1.2.0" 2376 | 2377 | map-cache@^0.2.2: 2378 | version "0.2.2" 2379 | resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2380 | 2381 | map-obj@^2.0.0: 2382 | version "2.0.0" 2383 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 2384 | 2385 | map-visit@^1.0.0: 2386 | version "1.0.0" 2387 | resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2388 | dependencies: 2389 | object-visit "^1.0.0" 2390 | 2391 | mem@^1.1.0: 2392 | version "1.1.0" 2393 | resolved "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2394 | dependencies: 2395 | mimic-fn "^1.0.0" 2396 | 2397 | memorystream@^0.3.1: 2398 | version "0.3.1" 2399 | resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 2400 | 2401 | messageformat-parser@^1.1.0: 2402 | version "1.1.0" 2403 | resolved "https://registry.npmjs.org/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a" 2404 | 2405 | messageformat@^1.0.2: 2406 | version "1.1.1" 2407 | resolved "https://registry.npmjs.org/messageformat/-/messageformat-1.1.1.tgz#ceaa2e6c86929d4807058275a7372b1bd963bdf6" 2408 | dependencies: 2409 | glob "~7.0.6" 2410 | make-plural "^4.1.1" 2411 | messageformat-parser "^1.1.0" 2412 | nopt "~3.0.6" 2413 | reserved-words "^0.1.2" 2414 | 2415 | micromatch@^3.1.10, micromatch@^3.1.4: 2416 | version "3.1.10" 2417 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2418 | dependencies: 2419 | arr-diff "^4.0.0" 2420 | array-unique "^0.3.2" 2421 | braces "^2.3.1" 2422 | define-property "^2.0.2" 2423 | extend-shallow "^3.0.2" 2424 | extglob "^2.0.4" 2425 | fragment-cache "^0.2.1" 2426 | kind-of "^6.0.2" 2427 | nanomatch "^1.2.9" 2428 | object.pick "^1.3.0" 2429 | regex-not "^1.0.0" 2430 | snapdragon "^0.8.1" 2431 | to-regex "^3.0.2" 2432 | 2433 | mimic-fn@^1.0.0: 2434 | version "1.2.0" 2435 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2436 | 2437 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2438 | version "3.0.4" 2439 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2440 | dependencies: 2441 | brace-expansion "^1.1.7" 2442 | 2443 | minimist@0.0.8: 2444 | version "0.0.8" 2445 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2446 | 2447 | minimist@^1.2.0: 2448 | version "1.2.0" 2449 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2450 | 2451 | minipass@^2.2.1, minipass@^2.3.4: 2452 | version "2.3.5" 2453 | resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 2454 | dependencies: 2455 | safe-buffer "^5.1.2" 2456 | yallist "^3.0.0" 2457 | 2458 | minizlib@^1.1.1: 2459 | version "1.2.1" 2460 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 2461 | dependencies: 2462 | minipass "^2.2.1" 2463 | 2464 | mixin-deep@^1.2.0: 2465 | version "1.3.1" 2466 | resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2467 | dependencies: 2468 | for-in "^1.0.2" 2469 | is-extendable "^1.0.1" 2470 | 2471 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2472 | version "0.5.1" 2473 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2474 | dependencies: 2475 | minimist "0.0.8" 2476 | 2477 | moment-timezone@^0.5.14: 2478 | version "0.5.23" 2479 | resolved "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.23.tgz#7cbb00db2c14c71b19303cb47b0fb0a6d8651463" 2480 | dependencies: 2481 | moment ">= 2.9.0" 2482 | 2483 | "moment@>= 2.9.0", moment@^2.20.0: 2484 | version "2.23.0" 2485 | resolved "https://registry.npmjs.org/moment/-/moment-2.23.0.tgz#759ea491ac97d54bac5ad776996e2a58cc1bc225" 2486 | 2487 | ms@2.0.0: 2488 | version "2.0.0" 2489 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2490 | 2491 | ms@^2.1.1: 2492 | version "2.1.1" 2493 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2494 | 2495 | mute-stream@0.0.7: 2496 | version "0.0.7" 2497 | resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2498 | 2499 | nan@^2.9.2: 2500 | version "2.12.1" 2501 | resolved "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" 2502 | 2503 | nanomatch@^1.2.9: 2504 | version "1.2.13" 2505 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2506 | dependencies: 2507 | arr-diff "^4.0.0" 2508 | array-unique "^0.3.2" 2509 | define-property "^2.0.2" 2510 | extend-shallow "^3.0.2" 2511 | fragment-cache "^0.2.1" 2512 | is-windows "^1.0.2" 2513 | kind-of "^6.0.2" 2514 | object.pick "^1.3.0" 2515 | regex-not "^1.0.0" 2516 | snapdragon "^0.8.1" 2517 | to-regex "^3.0.1" 2518 | 2519 | natural-compare@^1.4.0: 2520 | version "1.4.0" 2521 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2522 | 2523 | needle@^2.2.1: 2524 | version "2.2.4" 2525 | resolved "https://registry.npmjs.org/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 2526 | dependencies: 2527 | debug "^2.1.2" 2528 | iconv-lite "^0.4.4" 2529 | sax "^1.2.4" 2530 | 2531 | nice-try@^1.0.4: 2532 | version "1.0.5" 2533 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2534 | 2535 | node-modules-regexp@^1.0.0: 2536 | version "1.0.0" 2537 | resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2538 | 2539 | node-pre-gyp@^0.10.0: 2540 | version "0.10.3" 2541 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2542 | dependencies: 2543 | detect-libc "^1.0.2" 2544 | mkdirp "^0.5.1" 2545 | needle "^2.2.1" 2546 | nopt "^4.0.1" 2547 | npm-packlist "^1.1.6" 2548 | npmlog "^4.0.2" 2549 | rc "^1.2.7" 2550 | rimraf "^2.6.1" 2551 | semver "^5.3.0" 2552 | tar "^4" 2553 | 2554 | node-releases@^1.1.1: 2555 | version "1.1.2" 2556 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.2.tgz#93c17fba5eec8650ad908de5433fa8763baebe4d" 2557 | dependencies: 2558 | semver "^5.3.0" 2559 | 2560 | nopt@^4.0.1: 2561 | version "4.0.1" 2562 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2563 | dependencies: 2564 | abbrev "1" 2565 | osenv "^0.1.4" 2566 | 2567 | nopt@~3.0.6: 2568 | version "3.0.6" 2569 | resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2570 | dependencies: 2571 | abbrev "1" 2572 | 2573 | normalize-package-data@^2.3.2: 2574 | version "2.4.0" 2575 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2576 | dependencies: 2577 | hosted-git-info "^2.1.4" 2578 | is-builtin-module "^1.0.0" 2579 | semver "2 || 3 || 4 || 5" 2580 | validate-npm-package-license "^3.0.1" 2581 | 2582 | normalize-path@^2.1.1: 2583 | version "2.1.1" 2584 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2585 | dependencies: 2586 | remove-trailing-separator "^1.0.1" 2587 | 2588 | npm-bundled@^1.0.1: 2589 | version "1.0.5" 2590 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 2591 | 2592 | npm-packlist@^1.1.6: 2593 | version "1.1.12" 2594 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" 2595 | dependencies: 2596 | ignore-walk "^3.0.1" 2597 | npm-bundled "^1.0.1" 2598 | 2599 | npm-run-all@^4.1.5: 2600 | version "4.1.5" 2601 | resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 2602 | dependencies: 2603 | ansi-styles "^3.2.1" 2604 | chalk "^2.4.1" 2605 | cross-spawn "^6.0.5" 2606 | memorystream "^0.3.1" 2607 | minimatch "^3.0.4" 2608 | pidtree "^0.3.0" 2609 | read-pkg "^3.0.0" 2610 | shell-quote "^1.6.1" 2611 | string.prototype.padend "^3.0.0" 2612 | 2613 | npm-run-path@^2.0.0: 2614 | version "2.0.2" 2615 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2616 | dependencies: 2617 | path-key "^2.0.0" 2618 | 2619 | npmlog@^4.0.2: 2620 | version "4.1.2" 2621 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2622 | dependencies: 2623 | are-we-there-yet "~1.1.2" 2624 | console-control-strings "~1.1.0" 2625 | gauge "~2.7.3" 2626 | set-blocking "~2.0.0" 2627 | 2628 | number-is-nan@^1.0.0: 2629 | version "1.0.1" 2630 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2631 | 2632 | object-assign@^4.0.1, object-assign@^4.1.0: 2633 | version "4.1.1" 2634 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2635 | 2636 | object-copy@^0.1.0: 2637 | version "0.1.0" 2638 | resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2639 | dependencies: 2640 | copy-descriptor "^0.1.0" 2641 | define-property "^0.2.5" 2642 | kind-of "^3.0.3" 2643 | 2644 | object-keys@^1.0.11, object-keys@^1.0.12: 2645 | version "1.0.12" 2646 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2647 | 2648 | object-visit@^1.0.0: 2649 | version "1.0.1" 2650 | resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2651 | dependencies: 2652 | isobject "^3.0.0" 2653 | 2654 | object.assign@^4.1.0: 2655 | version "4.1.0" 2656 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2657 | dependencies: 2658 | define-properties "^1.1.2" 2659 | function-bind "^1.1.1" 2660 | has-symbols "^1.0.0" 2661 | object-keys "^1.0.11" 2662 | 2663 | object.entries@^1.0.4: 2664 | version "1.0.4" 2665 | resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2666 | dependencies: 2667 | define-properties "^1.1.2" 2668 | es-abstract "^1.6.1" 2669 | function-bind "^1.1.0" 2670 | has "^1.0.1" 2671 | 2672 | object.pick@^1.3.0: 2673 | version "1.3.0" 2674 | resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2675 | dependencies: 2676 | isobject "^3.0.1" 2677 | 2678 | once@^1.3.0: 2679 | version "1.4.0" 2680 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2681 | dependencies: 2682 | wrappy "1" 2683 | 2684 | onetime@^2.0.0: 2685 | version "2.0.1" 2686 | resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2687 | dependencies: 2688 | mimic-fn "^1.0.0" 2689 | 2690 | optionator@^0.8.2: 2691 | version "0.8.2" 2692 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2693 | dependencies: 2694 | deep-is "~0.1.3" 2695 | fast-levenshtein "~2.0.4" 2696 | levn "~0.3.0" 2697 | prelude-ls "~1.1.2" 2698 | type-check "~0.3.2" 2699 | wordwrap "~1.0.0" 2700 | 2701 | os-homedir@^1.0.0: 2702 | version "1.0.2" 2703 | resolved "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2704 | 2705 | os-locale@^2.0.0: 2706 | version "2.1.0" 2707 | resolved "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2708 | dependencies: 2709 | execa "^0.7.0" 2710 | lcid "^1.0.0" 2711 | mem "^1.1.0" 2712 | 2713 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 2714 | version "1.0.2" 2715 | resolved "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2716 | 2717 | osenv@^0.1.4: 2718 | version "0.1.5" 2719 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2720 | dependencies: 2721 | os-homedir "^1.0.0" 2722 | os-tmpdir "^1.0.0" 2723 | 2724 | output-file-sync@^2.0.0: 2725 | version "2.0.1" 2726 | resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" 2727 | dependencies: 2728 | graceful-fs "^4.1.11" 2729 | is-plain-obj "^1.1.0" 2730 | mkdirp "^0.5.1" 2731 | 2732 | p-finally@^1.0.0: 2733 | version "1.0.0" 2734 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2735 | 2736 | p-limit@^1.1.0: 2737 | version "1.3.0" 2738 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2739 | dependencies: 2740 | p-try "^1.0.0" 2741 | 2742 | p-locate@^2.0.0: 2743 | version "2.0.0" 2744 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2745 | dependencies: 2746 | p-limit "^1.1.0" 2747 | 2748 | p-map@^1.1.1: 2749 | version "1.2.0" 2750 | resolved "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2751 | 2752 | p-try@^1.0.0: 2753 | version "1.0.0" 2754 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2755 | 2756 | parse-json@^2.2.0: 2757 | version "2.2.0" 2758 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2759 | dependencies: 2760 | error-ex "^1.2.0" 2761 | 2762 | parse-json@^4.0.0: 2763 | version "4.0.0" 2764 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2765 | dependencies: 2766 | error-ex "^1.3.1" 2767 | json-parse-better-errors "^1.0.1" 2768 | 2769 | parse-passwd@^1.0.0: 2770 | version "1.0.0" 2771 | resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2772 | 2773 | pascalcase@^0.1.1: 2774 | version "0.1.1" 2775 | resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2776 | 2777 | path-dirname@^1.0.0: 2778 | version "1.0.2" 2779 | resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2780 | 2781 | path-exists@^2.0.0: 2782 | version "2.1.0" 2783 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2784 | dependencies: 2785 | pinkie-promise "^2.0.0" 2786 | 2787 | path-exists@^3.0.0: 2788 | version "3.0.0" 2789 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2790 | 2791 | path-is-absolute@^1.0.0: 2792 | version "1.0.1" 2793 | resolved "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2794 | 2795 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2796 | version "1.0.2" 2797 | resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2798 | 2799 | path-key@^2.0.0, path-key@^2.0.1: 2800 | version "2.0.1" 2801 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2802 | 2803 | path-parse@^1.0.5, path-parse@^1.0.6: 2804 | version "1.0.6" 2805 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2806 | 2807 | path-type@^2.0.0: 2808 | version "2.0.0" 2809 | resolved "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2810 | dependencies: 2811 | pify "^2.0.0" 2812 | 2813 | path-type@^3.0.0: 2814 | version "3.0.0" 2815 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2816 | dependencies: 2817 | pify "^3.0.0" 2818 | 2819 | pidtree@^0.3.0: 2820 | version "0.3.0" 2821 | resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b" 2822 | 2823 | pify@^2.0.0: 2824 | version "2.3.0" 2825 | resolved "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2826 | 2827 | pify@^3.0.0: 2828 | version "3.0.0" 2829 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2830 | 2831 | pinkie-promise@^2.0.0: 2832 | version "2.0.1" 2833 | resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2834 | dependencies: 2835 | pinkie "^2.0.0" 2836 | 2837 | pinkie@^2.0.0: 2838 | version "2.0.4" 2839 | resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2840 | 2841 | pirates@^4.0.0: 2842 | version "4.0.0" 2843 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd" 2844 | dependencies: 2845 | node-modules-regexp "^1.0.0" 2846 | 2847 | pkg-dir@^1.0.0: 2848 | version "1.0.0" 2849 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2850 | dependencies: 2851 | find-up "^1.0.0" 2852 | 2853 | pkg-dir@^2.0.0: 2854 | version "2.0.0" 2855 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2856 | dependencies: 2857 | find-up "^2.1.0" 2858 | 2859 | pluralize@^7.0.0: 2860 | version "7.0.0" 2861 | resolved "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2862 | 2863 | posix-character-classes@^0.1.0: 2864 | version "0.1.1" 2865 | resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2866 | 2867 | prelude-ls@~1.1.2: 2868 | version "1.1.2" 2869 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2870 | 2871 | prettier-eslint-cli@^4.7.1: 2872 | version "4.7.1" 2873 | resolved "https://registry.npmjs.org/prettier-eslint-cli/-/prettier-eslint-cli-4.7.1.tgz#3d103c494baa4e80b99ad53e2b9db7620101859f" 2874 | dependencies: 2875 | arrify "^1.0.1" 2876 | babel-runtime "^6.23.0" 2877 | boolify "^1.0.0" 2878 | camelcase-keys "^4.1.0" 2879 | chalk "2.3.0" 2880 | common-tags "^1.4.0" 2881 | eslint "^4.5.0" 2882 | find-up "^2.1.0" 2883 | get-stdin "^5.0.1" 2884 | glob "^7.1.1" 2885 | ignore "^3.2.7" 2886 | indent-string "^3.1.0" 2887 | lodash.memoize "^4.1.2" 2888 | loglevel-colored-level-prefix "^1.0.0" 2889 | messageformat "^1.0.2" 2890 | prettier-eslint "^8.5.0" 2891 | rxjs "^5.3.0" 2892 | yargs "10.0.3" 2893 | 2894 | prettier-eslint@^8.5.0, prettier-eslint@^8.8.2: 2895 | version "8.8.2" 2896 | resolved "https://registry.npmjs.org/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b" 2897 | dependencies: 2898 | babel-runtime "^6.26.0" 2899 | common-tags "^1.4.0" 2900 | dlv "^1.1.0" 2901 | eslint "^4.0.0" 2902 | indent-string "^3.2.0" 2903 | lodash.merge "^4.6.0" 2904 | loglevel-colored-level-prefix "^1.0.0" 2905 | prettier "^1.7.0" 2906 | pretty-format "^23.0.1" 2907 | require-relative "^0.8.7" 2908 | typescript "^2.5.1" 2909 | typescript-eslint-parser "^16.0.0" 2910 | vue-eslint-parser "^2.0.2" 2911 | 2912 | prettier@^1.7.0: 2913 | version "1.15.1" 2914 | resolved "https://registry.npmjs.org/prettier/-/prettier-1.15.1.tgz#06c67106afb1b40e74b002353b2079cc7e0e67bf" 2915 | 2916 | pretty-format@^23.0.1: 2917 | version "23.6.0" 2918 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760" 2919 | dependencies: 2920 | ansi-regex "^3.0.0" 2921 | ansi-styles "^3.2.0" 2922 | 2923 | private@^0.1.6: 2924 | version "0.1.8" 2925 | resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2926 | 2927 | process-nextick-args@~2.0.0: 2928 | version "2.0.0" 2929 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2930 | 2931 | progress@^2.0.0: 2932 | version "2.0.1" 2933 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.1.tgz#c9242169342b1c29d275889c95734621b1952e31" 2934 | 2935 | pseudomap@^1.0.2: 2936 | version "1.0.2" 2937 | resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2938 | 2939 | punycode@^2.1.0: 2940 | version "2.1.1" 2941 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2942 | 2943 | quick-lru@^1.0.0: 2944 | version "1.1.0" 2945 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 2946 | 2947 | rc@^1.2.7: 2948 | version "1.2.8" 2949 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2950 | dependencies: 2951 | deep-extend "^0.6.0" 2952 | ini "~1.3.0" 2953 | minimist "^1.2.0" 2954 | strip-json-comments "~2.0.1" 2955 | 2956 | read-pkg-up@^2.0.0: 2957 | version "2.0.0" 2958 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2959 | dependencies: 2960 | find-up "^2.0.0" 2961 | read-pkg "^2.0.0" 2962 | 2963 | read-pkg@^2.0.0: 2964 | version "2.0.0" 2965 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2966 | dependencies: 2967 | load-json-file "^2.0.0" 2968 | normalize-package-data "^2.3.2" 2969 | path-type "^2.0.0" 2970 | 2971 | read-pkg@^3.0.0: 2972 | version "3.0.0" 2973 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2974 | dependencies: 2975 | load-json-file "^4.0.0" 2976 | normalize-package-data "^2.3.2" 2977 | path-type "^3.0.0" 2978 | 2979 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 2980 | version "2.3.6" 2981 | resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2982 | dependencies: 2983 | core-util-is "~1.0.0" 2984 | inherits "~2.0.3" 2985 | isarray "~1.0.0" 2986 | process-nextick-args "~2.0.0" 2987 | safe-buffer "~5.1.1" 2988 | string_decoder "~1.1.1" 2989 | util-deprecate "~1.0.1" 2990 | 2991 | readdirp@^2.0.0: 2992 | version "2.2.1" 2993 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2994 | dependencies: 2995 | graceful-fs "^4.1.11" 2996 | micromatch "^3.1.10" 2997 | readable-stream "^2.0.2" 2998 | 2999 | regenerate-unicode-properties@^7.0.0: 3000 | version "7.0.0" 3001 | resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c" 3002 | dependencies: 3003 | regenerate "^1.4.0" 3004 | 3005 | regenerate@^1.4.0: 3006 | version "1.4.0" 3007 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 3008 | 3009 | regenerator-runtime@^0.11.0: 3010 | version "0.11.1" 3011 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3012 | 3013 | regenerator-runtime@^0.12.0: 3014 | version "0.12.1" 3015 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de" 3016 | 3017 | regenerator-transform@^0.13.3: 3018 | version "0.13.3" 3019 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb" 3020 | dependencies: 3021 | private "^0.1.6" 3022 | 3023 | regex-not@^1.0.0, regex-not@^1.0.2: 3024 | version "1.0.2" 3025 | resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3026 | dependencies: 3027 | extend-shallow "^3.0.2" 3028 | safe-regex "^1.1.0" 3029 | 3030 | regexpp@^1.0.1: 3031 | version "1.1.0" 3032 | resolved "http://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 3033 | 3034 | regexpp@^2.0.1: 3035 | version "2.0.1" 3036 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 3037 | 3038 | regexpu-core@^4.1.3, regexpu-core@^4.2.0: 3039 | version "4.4.0" 3040 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32" 3041 | dependencies: 3042 | regenerate "^1.4.0" 3043 | regenerate-unicode-properties "^7.0.0" 3044 | regjsgen "^0.5.0" 3045 | regjsparser "^0.6.0" 3046 | unicode-match-property-ecmascript "^1.0.4" 3047 | unicode-match-property-value-ecmascript "^1.0.2" 3048 | 3049 | regjsgen@^0.5.0: 3050 | version "0.5.0" 3051 | resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" 3052 | 3053 | regjsparser@^0.6.0: 3054 | version "0.6.0" 3055 | resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" 3056 | dependencies: 3057 | jsesc "~0.5.0" 3058 | 3059 | remove-trailing-separator@^1.0.1: 3060 | version "1.1.0" 3061 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3062 | 3063 | repeat-element@^1.1.2: 3064 | version "1.1.3" 3065 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3066 | 3067 | repeat-string@^1.6.1: 3068 | version "1.6.1" 3069 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3070 | 3071 | require-directory@^2.1.1: 3072 | version "2.1.1" 3073 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3074 | 3075 | require-main-filename@^1.0.1: 3076 | version "1.0.1" 3077 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3078 | 3079 | require-relative@^0.8.7: 3080 | version "0.8.7" 3081 | resolved "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3082 | 3083 | require-uncached@^1.0.3: 3084 | version "1.0.3" 3085 | resolved "http://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3086 | dependencies: 3087 | caller-path "^0.1.0" 3088 | resolve-from "^1.0.0" 3089 | 3090 | reserved-words@^0.1.2: 3091 | version "0.1.2" 3092 | resolved "https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1" 3093 | 3094 | resolve-from@^1.0.0: 3095 | version "1.0.1" 3096 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3097 | 3098 | resolve-url@^0.2.1: 3099 | version "0.2.1" 3100 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3101 | 3102 | resolve@^1.3.2: 3103 | version "1.9.0" 3104 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06" 3105 | dependencies: 3106 | path-parse "^1.0.6" 3107 | 3108 | resolve@^1.5.0, resolve@^1.6.0: 3109 | version "1.8.1" 3110 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 3111 | dependencies: 3112 | path-parse "^1.0.5" 3113 | 3114 | restore-cursor@^2.0.0: 3115 | version "2.0.0" 3116 | resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3117 | dependencies: 3118 | onetime "^2.0.0" 3119 | signal-exit "^3.0.2" 3120 | 3121 | ret@~0.1.10: 3122 | version "0.1.15" 3123 | resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3124 | 3125 | retry-as-promised@^2.3.2: 3126 | version "2.3.2" 3127 | resolved "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-2.3.2.tgz#cd974ee4fd9b5fe03cbf31871ee48221c07737b7" 3128 | dependencies: 3129 | bluebird "^3.4.6" 3130 | debug "^2.6.9" 3131 | 3132 | rimraf@^2.2.8, rimraf@^2.6.1, rimraf@^2.6.2: 3133 | version "2.6.2" 3134 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3135 | dependencies: 3136 | glob "^7.0.5" 3137 | 3138 | run-async@^2.2.0: 3139 | version "2.3.0" 3140 | resolved "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3141 | dependencies: 3142 | is-promise "^2.1.0" 3143 | 3144 | rx-lite-aggregates@^4.0.8: 3145 | version "4.0.8" 3146 | resolved "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3147 | dependencies: 3148 | rx-lite "*" 3149 | 3150 | rx-lite@*, rx-lite@^4.0.8: 3151 | version "4.0.8" 3152 | resolved "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3153 | 3154 | rxjs@^5.3.0: 3155 | version "5.5.12" 3156 | resolved "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" 3157 | dependencies: 3158 | symbol-observable "1.0.1" 3159 | 3160 | rxjs@^6.1.0: 3161 | version "6.3.3" 3162 | resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" 3163 | dependencies: 3164 | tslib "^1.9.0" 3165 | 3166 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3167 | version "5.1.2" 3168 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3169 | 3170 | safe-regex@^1.1.0: 3171 | version "1.1.0" 3172 | resolved "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3173 | dependencies: 3174 | ret "~0.1.10" 3175 | 3176 | "safer-buffer@>= 2.1.2 < 3": 3177 | version "2.1.2" 3178 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3179 | 3180 | sax@^1.2.4: 3181 | version "1.2.4" 3182 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3183 | 3184 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1: 3185 | version "5.6.0" 3186 | resolved "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 3187 | 3188 | semver@5.5.0: 3189 | version "5.5.0" 3190 | resolved "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3191 | 3192 | sequelize@^4.42.0: 3193 | version "4.42.0" 3194 | resolved "https://registry.npmjs.org/sequelize/-/sequelize-4.42.0.tgz#439467ba7bfe7d5afcc56d62b3e091860fbf18f3" 3195 | dependencies: 3196 | bluebird "^3.5.0" 3197 | cls-bluebird "^2.1.0" 3198 | debug "^3.1.0" 3199 | depd "^1.1.0" 3200 | dottie "^2.0.0" 3201 | generic-pool "^3.4.0" 3202 | inflection "1.12.0" 3203 | lodash "^4.17.1" 3204 | moment "^2.20.0" 3205 | moment-timezone "^0.5.14" 3206 | retry-as-promised "^2.3.2" 3207 | semver "^5.5.0" 3208 | terraformer-wkt-parser "^1.1.2" 3209 | toposort-class "^1.0.1" 3210 | uuid "^3.2.1" 3211 | validator "^10.4.0" 3212 | wkx "^0.4.1" 3213 | 3214 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3215 | version "2.0.0" 3216 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3217 | 3218 | set-value@^0.4.3: 3219 | version "0.4.3" 3220 | resolved "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3221 | dependencies: 3222 | extend-shallow "^2.0.1" 3223 | is-extendable "^0.1.1" 3224 | is-plain-object "^2.0.1" 3225 | to-object-path "^0.3.0" 3226 | 3227 | set-value@^2.0.0: 3228 | version "2.0.0" 3229 | resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3230 | dependencies: 3231 | extend-shallow "^2.0.1" 3232 | is-extendable "^0.1.1" 3233 | is-plain-object "^2.0.3" 3234 | split-string "^3.0.1" 3235 | 3236 | shebang-command@^1.2.0: 3237 | version "1.2.0" 3238 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3239 | dependencies: 3240 | shebang-regex "^1.0.0" 3241 | 3242 | shebang-regex@^1.0.0: 3243 | version "1.0.0" 3244 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3245 | 3246 | shell-quote@^1.6.1: 3247 | version "1.6.1" 3248 | resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3249 | dependencies: 3250 | array-filter "~0.0.0" 3251 | array-map "~0.0.0" 3252 | array-reduce "~0.0.0" 3253 | jsonify "~0.0.0" 3254 | 3255 | shimmer@^1.1.0: 3256 | version "1.2.0" 3257 | resolved "https://registry.npmjs.org/shimmer/-/shimmer-1.2.0.tgz#f966f7555789763e74d8841193685a5e78736665" 3258 | 3259 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3260 | version "3.0.2" 3261 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3262 | 3263 | slash@^2.0.0: 3264 | version "2.0.0" 3265 | resolved "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3266 | 3267 | slice-ansi@1.0.0: 3268 | version "1.0.0" 3269 | resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3270 | dependencies: 3271 | is-fullwidth-code-point "^2.0.0" 3272 | 3273 | snapdragon-node@^2.0.1: 3274 | version "2.1.1" 3275 | resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3276 | dependencies: 3277 | define-property "^1.0.0" 3278 | isobject "^3.0.0" 3279 | snapdragon-util "^3.0.1" 3280 | 3281 | snapdragon-util@^3.0.1: 3282 | version "3.0.1" 3283 | resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3284 | dependencies: 3285 | kind-of "^3.2.0" 3286 | 3287 | snapdragon@^0.8.1: 3288 | version "0.8.2" 3289 | resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3290 | dependencies: 3291 | base "^0.11.1" 3292 | debug "^2.2.0" 3293 | define-property "^0.2.5" 3294 | extend-shallow "^2.0.1" 3295 | map-cache "^0.2.2" 3296 | source-map "^0.5.6" 3297 | source-map-resolve "^0.5.0" 3298 | use "^3.1.0" 3299 | 3300 | source-map-resolve@^0.5.0: 3301 | version "0.5.2" 3302 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3303 | dependencies: 3304 | atob "^2.1.1" 3305 | decode-uri-component "^0.2.0" 3306 | resolve-url "^0.2.1" 3307 | source-map-url "^0.4.0" 3308 | urix "^0.1.0" 3309 | 3310 | source-map-support@^0.5.9: 3311 | version "0.5.9" 3312 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 3313 | dependencies: 3314 | buffer-from "^1.0.0" 3315 | source-map "^0.6.0" 3316 | 3317 | source-map-url@^0.4.0: 3318 | version "0.4.0" 3319 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3320 | 3321 | source-map@^0.5.0, source-map@^0.5.6: 3322 | version "0.5.7" 3323 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3324 | 3325 | source-map@^0.6.0: 3326 | version "0.6.1" 3327 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3328 | 3329 | spdx-correct@^3.0.0: 3330 | version "3.0.2" 3331 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" 3332 | dependencies: 3333 | spdx-expression-parse "^3.0.0" 3334 | spdx-license-ids "^3.0.0" 3335 | 3336 | spdx-exceptions@^2.1.0: 3337 | version "2.2.0" 3338 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 3339 | 3340 | spdx-expression-parse@^3.0.0: 3341 | version "3.0.0" 3342 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3343 | dependencies: 3344 | spdx-exceptions "^2.1.0" 3345 | spdx-license-ids "^3.0.0" 3346 | 3347 | spdx-license-ids@^3.0.0: 3348 | version "3.0.2" 3349 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" 3350 | 3351 | split-string@^3.0.1, split-string@^3.0.2: 3352 | version "3.1.0" 3353 | resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3354 | dependencies: 3355 | extend-shallow "^3.0.0" 3356 | 3357 | sprintf-js@~1.0.2: 3358 | version "1.0.3" 3359 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3360 | 3361 | static-extend@^0.1.1: 3362 | version "0.1.2" 3363 | resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3364 | dependencies: 3365 | define-property "^0.2.5" 3366 | object-copy "^0.1.0" 3367 | 3368 | string-width@^1.0.1: 3369 | version "1.0.2" 3370 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3371 | dependencies: 3372 | code-point-at "^1.0.0" 3373 | is-fullwidth-code-point "^1.0.0" 3374 | strip-ansi "^3.0.0" 3375 | 3376 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3377 | version "2.1.1" 3378 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3379 | dependencies: 3380 | is-fullwidth-code-point "^2.0.0" 3381 | strip-ansi "^4.0.0" 3382 | 3383 | string.prototype.padend@^3.0.0: 3384 | version "3.0.0" 3385 | resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" 3386 | dependencies: 3387 | define-properties "^1.1.2" 3388 | es-abstract "^1.4.3" 3389 | function-bind "^1.0.2" 3390 | 3391 | string_decoder@~1.1.1: 3392 | version "1.1.1" 3393 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3394 | dependencies: 3395 | safe-buffer "~5.1.0" 3396 | 3397 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3398 | version "3.0.1" 3399 | resolved "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3400 | dependencies: 3401 | ansi-regex "^2.0.0" 3402 | 3403 | strip-ansi@^4.0.0: 3404 | version "4.0.0" 3405 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3406 | dependencies: 3407 | ansi-regex "^3.0.0" 3408 | 3409 | strip-bom@^3.0.0: 3410 | version "3.0.0" 3411 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3412 | 3413 | strip-eof@^1.0.0: 3414 | version "1.0.0" 3415 | resolved "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3416 | 3417 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3418 | version "2.0.1" 3419 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3420 | 3421 | supports-color@^2.0.0: 3422 | version "2.0.0" 3423 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3424 | 3425 | supports-color@^4.0.0: 3426 | version "4.5.0" 3427 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3428 | dependencies: 3429 | has-flag "^2.0.0" 3430 | 3431 | supports-color@^5.3.0: 3432 | version "5.5.0" 3433 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3434 | dependencies: 3435 | has-flag "^3.0.0" 3436 | 3437 | symbol-observable@1.0.1: 3438 | version "1.0.1" 3439 | resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 3440 | 3441 | table@4.0.2: 3442 | version "4.0.2" 3443 | resolved "https://registry.npmjs.org/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3444 | dependencies: 3445 | ajv "^5.2.3" 3446 | ajv-keywords "^2.1.0" 3447 | chalk "^2.1.0" 3448 | lodash "^4.17.4" 3449 | slice-ansi "1.0.0" 3450 | string-width "^2.1.1" 3451 | 3452 | table@^5.0.2: 3453 | version "5.1.0" 3454 | resolved "https://registry.npmjs.org/table/-/table-5.1.0.tgz#69a54644f6f01ad1628f8178715b408dc6bf11f7" 3455 | dependencies: 3456 | ajv "^6.5.3" 3457 | lodash "^4.17.10" 3458 | slice-ansi "1.0.0" 3459 | string-width "^2.1.1" 3460 | 3461 | tar@^4: 3462 | version "4.4.8" 3463 | resolved "https://registry.npmjs.org/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 3464 | dependencies: 3465 | chownr "^1.1.1" 3466 | fs-minipass "^1.2.5" 3467 | minipass "^2.3.4" 3468 | minizlib "^1.1.1" 3469 | mkdirp "^0.5.0" 3470 | safe-buffer "^5.1.2" 3471 | yallist "^3.0.2" 3472 | 3473 | terraformer-wkt-parser@^1.1.2: 3474 | version "1.2.0" 3475 | resolved "https://registry.npmjs.org/terraformer-wkt-parser/-/terraformer-wkt-parser-1.2.0.tgz#c9d6ac3dff25f4c0bd344e961f42694961834c34" 3476 | dependencies: 3477 | "@types/geojson" "^1.0.0" 3478 | terraformer "~1.0.5" 3479 | 3480 | terraformer@~1.0.5: 3481 | version "1.0.9" 3482 | resolved "https://registry.npmjs.org/terraformer/-/terraformer-1.0.9.tgz#77851fef4a49c90b345dc53cf26809fdf29dcda6" 3483 | optionalDependencies: 3484 | "@types/geojson" "^1.0.0" 3485 | 3486 | text-table@^0.2.0, text-table@~0.2.0: 3487 | version "0.2.0" 3488 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3489 | 3490 | through@^2.3.6: 3491 | version "2.3.8" 3492 | resolved "http://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3493 | 3494 | tmp@^0.0.33: 3495 | version "0.0.33" 3496 | resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3497 | dependencies: 3498 | os-tmpdir "~1.0.2" 3499 | 3500 | to-fast-properties@^2.0.0: 3501 | version "2.0.0" 3502 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3503 | 3504 | to-object-path@^0.3.0: 3505 | version "0.3.0" 3506 | resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3507 | dependencies: 3508 | kind-of "^3.0.2" 3509 | 3510 | to-regex-range@^2.1.0: 3511 | version "2.1.1" 3512 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3513 | dependencies: 3514 | is-number "^3.0.0" 3515 | repeat-string "^1.6.1" 3516 | 3517 | to-regex@^3.0.1, to-regex@^3.0.2: 3518 | version "3.0.2" 3519 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3520 | dependencies: 3521 | define-property "^2.0.2" 3522 | extend-shallow "^3.0.2" 3523 | regex-not "^1.0.2" 3524 | safe-regex "^1.1.0" 3525 | 3526 | toposort-class@^1.0.1: 3527 | version "1.0.1" 3528 | resolved "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988" 3529 | 3530 | trim-right@^1.0.1: 3531 | version "1.0.1" 3532 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3533 | 3534 | tslib@^1.9.0: 3535 | version "1.9.3" 3536 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3537 | 3538 | type-check@~0.3.2: 3539 | version "0.3.2" 3540 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3541 | dependencies: 3542 | prelude-ls "~1.1.2" 3543 | 3544 | typedarray@^0.0.6: 3545 | version "0.0.6" 3546 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3547 | 3548 | typescript-eslint-parser@^16.0.0: 3549 | version "16.0.1" 3550 | resolved "https://registry.npmjs.org/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b" 3551 | dependencies: 3552 | lodash.unescape "4.0.1" 3553 | semver "5.5.0" 3554 | 3555 | typescript@^2.5.1: 3556 | version "2.9.2" 3557 | resolved "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 3558 | 3559 | unicode-canonical-property-names-ecmascript@^1.0.4: 3560 | version "1.0.4" 3561 | resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3562 | 3563 | unicode-match-property-ecmascript@^1.0.4: 3564 | version "1.0.4" 3565 | resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3566 | dependencies: 3567 | unicode-canonical-property-names-ecmascript "^1.0.4" 3568 | unicode-property-aliases-ecmascript "^1.0.4" 3569 | 3570 | unicode-match-property-value-ecmascript@^1.0.2: 3571 | version "1.0.2" 3572 | resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4" 3573 | 3574 | unicode-property-aliases-ecmascript@^1.0.4: 3575 | version "1.0.4" 3576 | resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" 3577 | 3578 | union-value@^1.0.0: 3579 | version "1.0.0" 3580 | resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3581 | dependencies: 3582 | arr-union "^3.1.0" 3583 | get-value "^2.0.6" 3584 | is-extendable "^0.1.1" 3585 | set-value "^0.4.3" 3586 | 3587 | unset-value@^1.0.0: 3588 | version "1.0.0" 3589 | resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3590 | dependencies: 3591 | has-value "^0.3.1" 3592 | isobject "^3.0.0" 3593 | 3594 | upath@^1.0.5: 3595 | version "1.1.0" 3596 | resolved "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 3597 | 3598 | uri-js@^4.2.2: 3599 | version "4.2.2" 3600 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3601 | dependencies: 3602 | punycode "^2.1.0" 3603 | 3604 | urix@^0.1.0: 3605 | version "0.1.0" 3606 | resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3607 | 3608 | use@^3.1.0: 3609 | version "3.1.1" 3610 | resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3611 | 3612 | util-deprecate@~1.0.1: 3613 | version "1.0.2" 3614 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3615 | 3616 | uuid@^3.2.1, uuid@^3.3.2: 3617 | version "3.3.2" 3618 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3619 | 3620 | v8flags@^3.1.1: 3621 | version "3.1.2" 3622 | resolved "https://registry.npmjs.org/v8flags/-/v8flags-3.1.2.tgz#fc5cd0c227428181e6c29b2992e4f8f1da5e0c9f" 3623 | dependencies: 3624 | homedir-polyfill "^1.0.1" 3625 | 3626 | validate-npm-package-license@^3.0.1: 3627 | version "3.0.4" 3628 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3629 | dependencies: 3630 | spdx-correct "^3.0.0" 3631 | spdx-expression-parse "^3.0.0" 3632 | 3633 | validator@^10.4.0: 3634 | version "10.9.0" 3635 | resolved "https://registry.npmjs.org/validator/-/validator-10.9.0.tgz#d10c11673b5061fb7ccf4c1114412411b2bac2a8" 3636 | 3637 | vue-eslint-parser@^2.0.2: 3638 | version "2.0.3" 3639 | resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1" 3640 | dependencies: 3641 | debug "^3.1.0" 3642 | eslint-scope "^3.7.1" 3643 | eslint-visitor-keys "^1.0.0" 3644 | espree "^3.5.2" 3645 | esquery "^1.0.0" 3646 | lodash "^4.17.4" 3647 | 3648 | which-module@^2.0.0: 3649 | version "2.0.0" 3650 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3651 | 3652 | which@^1.2.9: 3653 | version "1.3.1" 3654 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3655 | dependencies: 3656 | isexe "^2.0.0" 3657 | 3658 | wide-align@^1.1.0: 3659 | version "1.1.3" 3660 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3661 | dependencies: 3662 | string-width "^1.0.2 || 2" 3663 | 3664 | wkx@^0.4.1: 3665 | version "0.4.6" 3666 | resolved "https://registry.npmjs.org/wkx/-/wkx-0.4.6.tgz#228ab592e6457382ea6fb79fc825058d07fce523" 3667 | dependencies: 3668 | "@types/node" "*" 3669 | 3670 | wordwrap@~1.0.0: 3671 | version "1.0.0" 3672 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3673 | 3674 | wrap-ansi@^2.0.0: 3675 | version "2.1.0" 3676 | resolved "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3677 | dependencies: 3678 | string-width "^1.0.1" 3679 | strip-ansi "^3.0.1" 3680 | 3681 | wrappy@1: 3682 | version "1.0.2" 3683 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3684 | 3685 | write@^0.2.1: 3686 | version "0.2.1" 3687 | resolved "https://registry.npmjs.org/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3688 | dependencies: 3689 | mkdirp "^0.5.1" 3690 | 3691 | y18n@^3.2.1: 3692 | version "3.2.1" 3693 | resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3694 | 3695 | yallist@^2.1.2: 3696 | version "2.1.2" 3697 | resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3698 | 3699 | yallist@^3.0.0, yallist@^3.0.2: 3700 | version "3.0.3" 3701 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3702 | 3703 | yargs-parser@^8.0.0: 3704 | version "8.1.0" 3705 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3706 | dependencies: 3707 | camelcase "^4.1.0" 3708 | 3709 | yargs@10.0.3: 3710 | version "10.0.3" 3711 | resolved "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" 3712 | dependencies: 3713 | cliui "^3.2.0" 3714 | decamelize "^1.1.1" 3715 | find-up "^2.1.0" 3716 | get-caller-file "^1.0.1" 3717 | os-locale "^2.0.0" 3718 | require-directory "^2.1.1" 3719 | require-main-filename "^1.0.1" 3720 | set-blocking "^2.0.0" 3721 | string-width "^2.0.0" 3722 | which-module "^2.0.0" 3723 | y18n "^3.2.1" 3724 | yargs-parser "^8.0.0" 3725 | --------------------------------------------------------------------------------