diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 1aecb57..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,926 +0,0 @@
-// 2017 April 17
-// https://github.com/bevry/base
-// http://eslint.org
-// This code must be able to run on Node 0.10
-/* eslint no-warning-comments: 0 */
-'use strict'
-
-const IGNORE = 0, WARN = 1, ERROR = 2, MAX_PARAMS = 4
-
-const config = {
- extends: ['eslint:recommended'],
- plugins: [],
- parserOptions: {ecmaFeatures: {}},
- env: {},
- rules: {
- // ----------------------------
- // Problems with these rules
- // If we can figure out how to enable the following, that would be great
-
- // Two spaces after one line if or else:
- // if ( blah ) return
- // Insead of one space:
- // if ( blah ) return
-
- // No spaces on embedded function:
- // .forEach(function(key, value){
- // instead of:
- // .forEach(function (key, value) {
-
- // Else and catch statements on the same line as closing brace:
- // } else {
- // } catch (e) {
- // instead of:
- // }
- // else {
-
-
- // --------------------------------------
- // Possible Errors
- // The following rules point out areas where you might have made mistakes.
-
- // Don't allow assignments in conditional statements (if, while, etc.)
- 'no-cond-assign': [ERROR, 'always'],
-
- // Warn but don't error about console statements
- 'no-console': WARN,
-
- // Sometimes useful for debugging
- // Allow while(true) loops
- 'no-constant-condition': WARN,
-
- // Seems like a good idea to error about this
- 'no-control-regex': ERROR,
-
- // Warn but don't error about console statements
- 'no-debugger': WARN,
-
- // Don't allow duplicate arguments in a function, they can cause errors
- 'no-dupe-args': ERROR,
-
- // Disallow duplicate keys in an object, they can cause errors
- 'no-dupe-keys': ERROR,
-
- // Disallow duplicate case statements in a switch
- 'no-duplicate-case': ERROR,
-
- // Allow empty block statements, they are useful for clarity
- 'no-empty': IGNORE,
-
- // Disallow empty [] in regular expressions as they cause unexpected behaviour
- 'no-empty-character-class': ERROR,
-
- // Overwriting the exception argument in a catch statement can cause memory leaks in some browsers
- 'no-ex-assign': ERROR,
-
- // Disallow superflous boolean casts, they offer no value
- 'no-extra-boolean-cast': ERROR,
-
- // Allow superflous parenthesis as they offer clarity in some cases
- 'no-extra-parens': IGNORE,
-
- // Disallow superflous semicolons, they offer no value
- 'no-extra-semi': ERROR,
-
- // Seems like a good idea to error about this
- 'no-func-assign': ERROR,
-
- // Seems like a good idea to error about this
- 'no-inner-declarations': ERROR,
-
- // Seems like a good idea to error about this
- 'no-invalid-regexp': ERROR,
-
- // Seems like a good idea to error about this
- 'no-irregular-whitespace': ERROR,
-
- // Seems like a good idea to error about this
- 'no-obj-calls': ERROR,
-
- // Not enough justification to change our existing use
- 'no-prototype-builtins': IGNORE,
-
- // Seems like a good idea to error about this
- // Instead of / / used / {ERROR}/ instead
- 'no-regex-spaces': ERROR,
-
- // Seems like a good idea to error about this
- 'no-sparse-arrays': ERROR,
-
- // Probably an error on our part, so warn
- 'no-template-curly-in-string': WARN,
-
- // Seems like a good idea to error about this
- 'no-unexpected-multiline': ERROR,
-
- // Seems like a good idea to error about this
- 'no-unreachable': ERROR,
-
- // Seems like a good idea to error about this
- 'no-unsafe-finally': ERROR,
-
- // Seems like a good idea to error about this
- 'no-unsafe-negation': ERROR,
-
- // Seems like a good idea to error about this
- 'use-isnan': ERROR,
-
- // We use JSDoc again
- 'valid-jsdoc': [ERROR, {
- requireParamDescription: false,
- requireReturnDescription: false
- }],
-
- // Seems like a good idea to error about this
- 'valid-typeof': ERROR,
-
-
- // --------------------------------------
- // Best Practices
- // These are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns.
-
- // Often we only need one, setting both doesn't make sense
- // Enforces getter/setter pairs in objects
- 'accessor-pairs': IGNORE,
-
- // Seems sensible
- // Enforces return statements in callbacks of array's methods
- 'array-callback-return': ERROR,
-
- // This rule seems buggy
- 'block-scoped-var': IGNORE,
-
- // Seems interesting, lets give it a go
- 'class-methods-use-this': WARN,
-
- // Disable complexity checks, they are annoying and not that useful in detecting actual complexity
- 'complexity': IGNORE,
-
- // We use blank returns for break statements and for returning void
- 'consistent-return': IGNORE,
-
- // Always require curly braces unless the statement is all on a single line
- 'curly': [ERROR, 'multi-line'],
-
- // If we don't have a default cause, it probably means we should throw an error
- 'default-case': ERROR,
-
- // Dots should be on the newlines
- // chainableThingy
- // .doSomething()
- // .doSomethingElse()
- 'dot-location': [ERROR, 'property'],
-
- // Use dot notation where possible
- 'dot-notation': ERROR,
-
- // Unless you are doing == null, then force === to avoid truthy/falsey mistakes
- 'eqeqeq': [ERROR, 'allow-null'],
-
- // Always use hasOwnProperty when doing for in
- 'guard-for-in': ERROR,
-
- // Warn about alert statements in our code
- // Use one of the suggested alternatives instead
- // Reasoning is they could be mistaken for left over debugging statements
- 'no-alert': WARN,
-
- // They are very slow
- 'no-caller': ERROR,
-
- // Wow...
- 'no-case-declarations': ERROR,
-
- // Seems like a good idea to error about this
- 'no-div-regex': ERROR,
-
- // Returns in else statements offer code clarity, so disable this rule
- 'no-else-return': IGNORE,
-
- // Up to developer sensibility
- // disallow use of empty functions
- 'no-empty-function': IGNORE,
-
- // Seems sensible
- 'no-empty-pattern': ERROR,
-
- // We know that == null is a null and undefined check
- 'no-eq-null': IGNORE,
-
- // Eval is slow and unsafe, use vm's instead
- 'no-eval': ERROR,
-
- // There is never a good reason for this
- 'no-extend-native': ERROR,
-
- // Don't allow useless binds
- 'no-extra-bind': ERROR,
-
- // Seems sensible
- 'no-extra-label': ERROR,
-
- // Don't allow switch case statements to follow through, use continue keyword instead
- 'no-fallthrough': ERROR,
-
- // Use zero when doing decimals, otherwise it is confusing
- 'no-floating-decimal': ERROR,
-
- // Seems sensible
- 'no-global-assign': ERROR,
-
- // Cleverness is unclear
- 'no-implicit-coercion': ERROR,
-
- // Seems sensible providing detection works correctly
- 'no-implicit-globals': ERROR,
-
- // A sneaky way to do evals
- 'no-implied-eval': ERROR,
-
- // This throws for a lot of senseless things, like chainy functions
- 'no-invalid-this': IGNORE,
-
- // Use proper iterators instead
- 'no-iterator': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-labels': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-lone-blocks': ERROR,
-
- // Loop functions always cause problems, as the scope isn't clear through iterations
- 'no-loop-func': ERROR,
-
- // Far too annoying
- 'no-magic-numbers': IGNORE,
-
- // We like multi spaces for clarity
- // E.g. We like
- // if ( blah ) return foo
- // Instead of:
- // if ( blah ) return foo
- // @TODO would be great to enforce the above
- 'no-multi-spaces': IGNORE,
-
- // Use ES6 template strings instead
- 'no-multi-str': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-new-func': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-new-wrappers': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-new': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-octal-escape': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-octal': ERROR,
-
- // We got to be pretty silly if we don't realise we are doing this
- // As such, take any usage as intentional and aware
- 'no-param-reassign': IGNORE,
-
- // We never use this, it seems silly to allow this
- 'no-proto': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-redeclare': ERROR,
-
- // No defaults for this that are useful
- 'no-restricted-properties': IGNORE,
-
- // We never use this, it seems silly to allow this
- 'no-return-assign': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-script-url': ERROR,
-
- // Seems sensible
- 'no-self-assign': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-self-compare': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-sequences': ERROR,
-
- // We always want proper error objects as they have stack traces and respond to instanceof Error checks
- 'no-throw-literal': ERROR,
-
- // Could be a getter, so warn
- 'no-unmodified-loop-condition': WARN,
-
- // We never use this, it seems silly to allow this
- 'no-unused-expressions': ERROR,
-
- // Seems sensible
- 'no-unused-labels': ERROR,
-
- // Seems sensible
- 'no-useless-call': ERROR,
-
- // Seems sensible
- 'no-useless-concat': ERROR,
-
- // Seems sensible
- 'no-useless-escape': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-void': ERROR,
-
- // Warn about todos
- 'no-warning-comments': [WARN, { terms: ['todo', 'fixme'], location: 'anywhere' }],
-
- // We never use this, it seems silly to allow this
- 'no-with': ERROR,
-
- // Always specify a radix to avoid errors
- 'radix': ERROR,
-
- // We appreciate the clarity late defines offer
- 'vars-on-top': IGNORE,
-
- // Wrap instant called functions in parenthesis for clearer intent
- 'wrap-iife': ERROR,
-
- // Because we force === and never allow assignments in conditions
- // we have no need for yoda statements, so disable them
- 'yoda': [ERROR, 'never'],
-
-
- // --------------------------------------
- // Strict Mode
- // These rules relate to using strict mode.
-
- // Ensure that use strict is specified to prevent the runtime erorr:
- // SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
- 'strict': [ERROR, 'global'],
-
-
- // --------------------------------------
- // Variables
- // These rules have to do with variable declarations.
-
- // We don't care
- 'init-declarations': IGNORE,
-
- // Don't allow the catch method to shadow objects as browsers handle this differently
- // Update: We don't care for IE8
- 'no-catch-shadow': IGNORE,
-
- // Don't use delete, it disables optimisations
- 'no-delete-var': ERROR,
-
- // We never use this, it seems silly to allow this
- 'no-label-var': ERROR,
-
- // No useful defaults
- 'no-restricted-globals': IGNORE,
-
- // We never use this, it seems silly to allow this
- 'no-shadow-restricted-names': ERROR,
-
- // We use shadowing
- 'no-shadow': IGNORE,
-
- // Makes sense
- 'no-undef-init': ERROR,
-
- // Error when an undefined variable is used
- 'no-undef': ERROR,
-
- // typeof blah === 'undefined' should always be used
- 'no-undefined': ERROR,
-
- // Warn us when we don't use something
- 'no-unused-vars': WARN,
-
- // Error when we try and use something before it is defined
- 'no-use-before-define': ERROR,
-
-
- // --------------------------------------
- // Node.js and CommonJS
- // These rules are specific to JavaScript running on Node.js or using CommonJS in the browser.
-
- // Seems to difficult to enforce
- 'callback-return': IGNORE,
-
- // We use require where it is appropriate to use it
- 'global-require': IGNORE,
-
- // Force handling of callback errors
- 'handle-callback-err': ERROR,
-
- // @TODO decide if this is good or not
- 'no-mixed-requires': ERROR,
-
- // Disallow error prone syntax
- 'no-new-require': ERROR,
-
- // Always use path.join for windows support
- 'no-path-concat': ERROR,
-
- // We use process.env wisely
- 'no-process-env': IGNORE,
-
- // We know what we are doing
- 'no-process-exit': IGNORE,
-
- // No need to disallow any modules
- 'no-restricted-modules': IGNORE,
-
- // Sometimes sync methods are useful, so warn but don't error
- 'no-sync': WARN,
-
-
- // --------------------------------------
- // Stylistic
- // These rules are purely matters of style and are quite subjective.
-
- // We don't use spaces with brackets
- 'array-bracket-spacing': [ERROR, 'never'],
-
- // Disallow or enforce spaces inside of single line blocks
- 'block-spacing': [ERROR, 'always'],
-
- // Opening brace on same line, closing brace on its own line, except when statement is a single line
- 'brace-style': [ERROR, 'stroustrup', { allowSingleLine: true }],
-
- // Use camel case
- 'camelcase': ERROR,
-
- // ES6 supports dangling commas
- 'comma-dangle': [ERROR, 'never'],
-
- // Require a comma after always
- 'comma-spacing': [ERROR, { before: false, after: true }],
-
- // Commas go last, we have tooling to detect if we forget a comma
- 'comma-style': [ERROR, 'last'],
-
- // Require or disallow padding inside computed properties
- 'computed-property-spacing': [ERROR, 'never'],
-
- // Enabling this was incredibly annoying when doing layers of nesting
- 'consistent-this': IGNORE,
-
- // Enable to make UNIX people's lives easier
- 'eol-last': ERROR,
-
- // We never use this, it seems silly to allow this
- 'func-call-spacing': [ERROR, 'never'],
-
- // This rule is not currently useful
- 'func-name-matching': IGNORE,
-
- // We like anonymous functions
- 'func-names': IGNORE,
-
- // Prefer to define functions via variables
- 'func-style': [WARN, 'declaration'],
-
- // Nothing we want to blacklist
- // blacklist certain identifiers to prevent them being used
- 'id-blacklist': IGNORE,
-
- // Sometimes short names are appropriate
- 'id-length': IGNORE,
-
- // Camel case handles this for us
- 'id-match': IGNORE,
-
- // Use tabs and indent case blocks
- 'indent': [ERROR, 'tab', {
- SwitchCase: 1,
- VariableDeclarator: 0,
- outerIIFEBody: 1,
- MemberExpression: 1,
- FunctionDeclaration: {
- body: 1,
- parameters: 0
- },
- FunctionExpression: {
- body: 1,
- parameters: 0
- }
- }],
- // ^ broken before, let us try again
-
- // Prefer double qoutes for JSX properties: ,
- 'jsx-quotes': [ERROR, 'prefer-double'],
-
- // Space after the colon
- 'key-spacing': [ERROR, {
- beforeColon: false,
- afterColon: true
- }],
-
- // Always force a space before and after a keyword
- 'keyword-spacing': [ERROR],
-
- // we use both
- 'line-comment-position': IGNORE,
-
- // Enforce unix line breaks
- 'linebreak-style': [ERROR, 'unix'],
-
- // Enforce new lines before block comments
- 'lines-around-comment': [ERROR, {
- beforeBlockComment: true,
- allowBlockStart: true
- }],
-
- // Enforce directives with no line above but a line below
- 'lines-around-directive': [ERROR, {
- before: 'never',
- after: 'always'
- }],
-
- // Disabled to ensure consistency with complexity option
- 'max-depth': IGNORE,
-
- // We use soft wrap
- 'max-len': IGNORE,
-
- // Perhaps in the future we can set this to 300 or so
- // but for now it is not useful for the things we write and maintain
- 'max-lines': IGNORE,
-
- // We are smart enough to know if this is bad or not
- 'max-nested-callbacks': IGNORE,
-
- // Sometimes we have no control over this for compat reasons, so just warn
- 'max-params': [WARN, MAX_PARAMS],
-
- // Let's give this a go and see what is appropriate for our usage
- 'max-statements-per-line': [WARN, {max: 1}],
-
- // We should be able to use whatever feels right
- 'max-statements': IGNORE,
-
- // Current options are not useful
- 'multiline-ternary': IGNORE,
-
- // Constructors should be CamelCase
- 'new-cap': ERROR,
-
- // Always use parens when instantiating a class
- 'new-parens': ERROR,
-
- // Too difficult to enforce correctly as too many edge-cases
- // require or disallow an empty newline after variable declarations
- 'newline-after-var': IGNORE,
-
- // Let the author decide
- // enforce newline after each call when chaining the calls
- 'newline-per-chained-call': IGNORE,
-
- // Don't use the array constructor when it is not needed
- 'no-array-constructor': ERROR,
-
- // We never use bitwise, they are too clever
- 'no-bitwise': ERROR,
-
- // We use continue
- 'no-continue': IGNORE,
-
- // We like inline comments
- 'no-inline-comments': IGNORE,
-
- // The code could be optimised if this error occurs
- 'no-lonely-if': ERROR,
-
- // Seems sensible, let's see how we go with this
- 'no-mixed-operators': ERROR,
-
- // Don't mix spaces and tabs
- // Maybe [ERROR, 'smart-tabs'] will be better, we will see
- 'no-mixed-spaces-and-tabs': ERROR,
-
- // We use multiple empty lines for styling
- 'no-multiple-empty-lines': IGNORE,
-
- // Sometimes it is more understandable with a negated condition
- 'no-negated-condition': IGNORE,
-
- // Sometimes these are useful
- 'no-nested-ternary': IGNORE,
-
- // Use {} instead of new Object()
- 'no-new-object': ERROR,
-
- // We use plus plus
- 'no-plusplus': IGNORE,
-
- // Handled by other rules
- 'no-restricted-syntax': IGNORE,
-
- // We use tabs
- 'no-tabs': IGNORE,
-
- // Sometimes ternaries are useful
- 'no-ternary': IGNORE,
-
- // Disallow trailing spaces
- 'no-trailing-spaces': ERROR,
-
- // Sometimes this is useful when avoiding shadowing
- 'no-underscore-dangle': IGNORE,
-
- // Sensible
- 'no-unneeded-ternary': ERROR,
-
- // Seems sensible
- 'no-whitespace-before-property': ERROR,
-
- // Object indentation should be consistent within the object
- // Ignore until https://github.com/eslint/eslint/issues/7434 is done
- 'object-curly-newline': [IGNORE, {multiline: true}],
-
- // Desirable, but too many edge cases it turns out where it is actually preferred
- 'object-curly-spacing': IGNORE,
-
- // We like multiple var statements
- 'one-var': IGNORE,
- 'one-var-declaration-per-line': IGNORE,
-
- // Force use of shorthands when available
- 'operator-assignment': [ERROR, 'always'],
-
- // Should be before, but not with =, *=, /=, += lines
- // @TODO figure out how to enforce
- 'operator-linebreak': IGNORE,
-
- // This rule doesn't appear to work correclty
- 'padded-blocks': IGNORE,
-
- // Seems like a good idea to error about this
- // was broken before, but lets give a go again
- 'quote-props': [ERROR, 'consistent-as-needed'],
-
- // Use single quotes where escaping isn't needed
- 'quotes': [ERROR, 'single', 'avoid-escape'],
-
- // We use YUIdoc
- 'require-jsdoc': IGNORE,
-
- // If semi's are used, then add spacing after
- 'semi-spacing': [ERROR, { before: false, after: true }],
-
- // Never use semicolons
- 'semi': [ERROR, 'never'],
-
- // Importance makes more sense than alphabetical
- 'sort-keys': IGNORE,
-
- // Importance makes more sense than alphabetical
- 'sort-vars': IGNORE,
-
- // Always force a space before a {
- 'space-before-blocks': [ERROR, 'always'],
-
- // function () {, get blah () {
- 'space-before-function-paren': [ERROR, 'always'],
-
- // This is for spacing between (), so doSomething( WARN, ERROR, 3 ) or if ( WARN === 3 )
- // which we want for ifs, but don't want for calls
- 'space-in-parens': IGNORE,
-
- // We use this
- 'space-infix-ops': ERROR,
-
- // We use this
- 'space-unary-ops': ERROR,
-
- // We use this
- // 'spaced-line-comment': ERROR,
- 'spaced-comment': ERROR,
-
- // When would we ever do this? Makes no sense
- 'unicode-bom': [ERROR, 'never'],
-
- // We do this, seems to work well
- 'wrap-regex': ERROR,
-
-
- // --------------------------------------
- // ECMAScript 6 / ES6
-
- // Sensible to create more informed and clear code
- 'arrow-body-style': [ERROR, 'as-needed'],
-
- // We do this, no reason why, just what we do
- 'arrow-parens': [ERROR, 'always'],
-
- // Require consistent spacing for arrow functions
- 'arrow-spacing': ERROR,
-
- // Makes sense as otherwise runtime error will occur
- 'constructor-super': ERROR,
-
- // Seems the most consistent location for it
- 'generator-star-spacing': [ERROR, 'before'],
-
- // Makes sense
- 'no-class-assign': ERROR,
-
- // Makes sense
- 'no-confusing-arrow': ERROR,
-
- // Of course
- 'no-const-assign': ERROR,
-
- // Of course
- 'no-dupe-class-members': ERROR,
-
- // Seems sensible, may be times when we want this
- 'no-duplicate-imports': WARN,
-
- // Seems sensible
- 'no-new-symbol': ERROR,
-
- // No need to disallow any imports
- 'no-restricted-imports': IGNORE,
-
- // Makes sense as otherwise runtime error will occur
- 'no-this-before-super': ERROR,
-
- // Seems sensible
- 'no-useless-computed-key': ERROR,
-
- // Seems sensible
- 'no-useless-constructor': ERROR,
-
- // Seems sensible
- 'no-useless-rename': ERROR,
-
- // Of course
- // However, would be good to have this adjusted per environment
- 'no-var': WARN,
-
- // Enforce ES6 object shorthand
- 'object-shorthand': ERROR,
-
- // Better performance when running native
- // but horrible performance if not running native as could fallback to bind
- // https://travis-ci.org/bevry/es6-benchmarks
- 'prefer-arrow-callback': IGNORE,
-
- // Of course
- 'prefer-const': ERROR,
-
- // Makes sense
- 'prefer-numeric-literals': ERROR,
-
- // Controversial change, but makes sense to move towards to reduce the risk of bad people overwriting apply and call
- // https://github.com/eslint/eslint/issues/ERROR939
- // Ignoring because node does not yet support it, so we don't want to get the performance hit of using the compiled ES5 version
- 'prefer-reflect': IGNORE,
-
- // Makes sense to enforce, exceptions should be opted out of on case by case
- 'prefer-rest-params': ERROR,
-
- // Sure, why not
- 'prefer-spread': ERROR,
-
- // Too annoying to enforce
- 'prefer-template': IGNORE,
-
- // Makes sense
- 'require-yield': ERROR,
-
- // Makes sense
- 'rest-spread-spacing': [ERROR, 'never'],
-
- // Importance makes more sense than alphabetical
- 'sort-imports': IGNORE,
-
- // Makes sense
- 'symbol-description': ERROR,
-
- // Makes sense
- 'template-curly-spacing': [ERROR, 'never'],
-
- // Our preference
- 'yield-star-spacing': [ERROR, 'both'],
-
-
- // --------------------------------------
- // Plugins
-
- // Not sure why, but okay
- 'flow-vars/define-flow-type': WARN,
- 'flow-vars/use-flow-type': WARN
- }
-}
-
-// ------------------------------------
-// Enhancements
-
-// Load data.json file if it exists
-const rules = Object.keys(config.rules)
-let data = {}, devDeps = []
-try {
- data = require('./package.json') || {}
- devDeps = Object.keys(data.devDependencies || {})
-}
-catch ( err ) {}
-
-// Set the parser options depending on our editions
-if ( data.editions ) {
- const sourceEdition = data.editions[0]
- for ( let syntaxIndex = 0; syntaxIndex < sourceEdition.syntaxes.length; ++syntaxIndex ) {
- const syntax = sourceEdition.syntaxes[syntaxIndex]
- if ( syntax === 'esnext' ) {
- config.parserOptions.ecmaVersion = 8
- break
- }
- else if ( syntax.indexOf('es') === 0 ) {
- config.parserOptions.ecmaVersion = Number(syntax.substr(2))
- break
- }
- }
- config.parserOptions.sourceType = sourceEdition.syntaxes.indexOf('import') !== -1 ? 'module' : 'script'
- config.parserOptions.ecmaFeatures.jsx = sourceEdition.syntaxes.indexOf('jsx') !== -1
-}
-else {
- // node version
- const node = data.engines && data.engines.node && data.engines.node.replace('>=', '').replace(/ /g, '').replace(/\..+$/, '')
- config.parserOptions.ecmaVersion = node >= 6 ? 6 : 5
-}
-
-// Set the environments depending on whether we need them or not
-config.env.es6 = Boolean(config.parserOptions.ecmaVersion && config.parserOptions.ecmaVersion >= 6)
-config.env.node = Boolean(data.engines && data.engines.node)
-config.env.browser = Boolean(data.browser)
-if ( config.env.browser ) {
- config.env.commonjs = true
- if ( config.env.node ) {
- config.env['shared-node-browser'] = true
- }
-}
-
-// If not on legacy javascript, disable esnext rules
-if ( config.parserOptions.ecmaVersion && config.parserOptions.ecmaVersion <= 5 ) {
- config.rules['no-var'] = IGNORE
- config.rules['object-shorthand'] = [ERROR, 'never']
-}
-
-// Add babel parsing if installed
-if ( devDeps.indexOf('babel-eslint') !== -1 ) {
- config.parser = 'babel-eslint'
-}
-
-// Add react linting if installed
-if ( devDeps.indexOf('eslint-plugin-react') !== -1 ) {
- config.extends.push('plugin:react/recommended')
- config.plugins.push('react')
-}
-
-if ( devDeps.indexOf('eslint-plugin-babel') !== -1 ) {
- // Remove rules that babel rules replace
- config.plugins.push('babel')
- const replacements = [
- 'new-cap',
- 'object-curly-spacing'
- ]
- replacements.forEach(function (key) {
- if ( rules.indexOf(key) !== -1 ) {
- config.rules['babel/' + key] = config.rules[key]
- config.rules[key] = IGNORE
- }
- })
-}
-else {
- // Remove babel rules if not using babel
- rules.forEach(function (key) {
- if ( key.indexOf('babel/') === 0 ) {
- delete config.rules[key]
- }
- })
-}
-
-if ( devDeps.indexOf('eslint-plugin-flow-vars') !== -1 ) {
- // Add flow plugin if installed
- config.plugins.push('flow-vars')
-}
-else {
- // Remove flow rules if plugin not installed
- rules.forEach(function (key) {
- if ( key.indexOf('flow-vars/') === 0 ) {
- delete config.rules[key]
- }
- })
-}
-
-
-// ------------------------------------
-// Export
-
-module.exports = config
diff --git a/.gitignore b/.gitignore
index 74f7df3..ea6fc92 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,4 +39,8 @@ docs/
# =====================================
# CUSTOM
+# TypeScript artifacts
+*.js
+*.js.map
+
# None
diff --git a/index.d.ts b/index.d.ts
new file mode 100644
index 0000000..8f109b0
--- /dev/null
+++ b/index.d.ts
@@ -0,0 +1,2 @@
+import ProgressBar from "./source";
+export = ProgressBar;
diff --git a/package-lock.json b/package-lock.json
index cac59c6..ccb09ed 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,30 +1,20 @@
{
"name": "progressbar",
- "version": "1.2.1",
+ "version": "1.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
- "acorn": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.3.0.tgz",
- "integrity": "sha512-Yej+zOJ1Dm/IMZzzj78OntP/r3zHEaKcyNoU2lAaxPtrseM6rF0xwqoz5Q5ysAiED9hTjI2hgtvLXitlCN1/Ug==",
- "dev": true
+ "@types/node": {
+ "version": "10.12.18",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz",
+ "integrity": "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
},
- "acorn-jsx": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
- "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
- "dev": true,
+ "@types/progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@types/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-bPOsfCZ4tsTlKiBjBhKnM8jpY5nmIll166IPD58D92hR7G7kZDfx5iB9wGF4NfZrdKolebjeAr3GouYkSGoJ/A==",
"requires": {
- "acorn": "3.3.0"
- },
- "dependencies": {
- "acorn": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
- "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
- "dev": true
- }
+ "@types/node": "*"
}
},
"ajv": {
@@ -33,34 +23,22 @@
"integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
"dev": true,
"requires": {
- "co": "4.6.0",
- "fast-deep-equal": "1.0.0",
- "fast-json-stable-stringify": "2.0.0",
- "json-schema-traverse": "0.3.1"
+ "co": "^4.6.0",
+ "fast-deep-equal": "^1.0.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.3.0"
}
},
- "ajv-keywords": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz",
- "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=",
- "dev": true
- },
"ambi": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/ambi/-/ambi-2.5.0.tgz",
"integrity": "sha1-fI43K+SIkRV+fOoBy2+RQ9H3QiA=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "typechecker": "4.4.1"
+ "editions": "^1.1.1",
+ "typechecker": "^4.3.0"
}
},
- "ansi-escapes": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz",
- "integrity": "sha512-O/klc27mWNUigtv0F8NJWbLF00OcegQalkqKURWdosW08YZKi4m6CnSUSvIZG1otNJbTWhN01Hhz389DW7mvDQ==",
- "dev": true
- },
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
@@ -92,8 +70,8 @@
"dev": true,
"optional": true,
"requires": {
- "micromatch": "2.3.11",
- "normalize-path": "2.1.1"
+ "micromatch": "^2.1.5",
+ "normalize-path": "^2.0.0"
}
},
"argparse": {
@@ -102,7 +80,7 @@
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
- "sprintf-js": "1.0.3"
+ "sprintf-js": "~1.0.2"
}
},
"arr-diff": {
@@ -112,7 +90,7 @@
"dev": true,
"optional": true,
"requires": {
- "arr-flatten": "1.1.0"
+ "arr-flatten": "^1.0.1"
}
},
"arr-flatten": {
@@ -122,21 +100,6 @@
"dev": true,
"optional": true
},
- "array-union": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
- "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
- "dev": true,
- "requires": {
- "array-uniq": "1.0.3"
- }
- },
- "array-uniq": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
- "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
- "dev": true
- },
"array-unique": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
@@ -144,12 +107,6 @@
"dev": true,
"optional": true
},
- "arrify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
- "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
- "dev": true
- },
"asn1": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
@@ -162,9 +119,9 @@
"integrity": "sha1-IecDVQNIBlYh8V3br7DbOzJfL6Q=",
"dev": true,
"requires": {
- "ansicolors": "0.3.2",
- "diff": "3.4.0",
- "editions": "1.3.3"
+ "ansicolors": "^0.3.2",
+ "diff": "^3.2.0",
+ "editions": "^1.3.3"
}
},
"assert-plus": {
@@ -204,21 +161,21 @@
"integrity": "sha1-UCq1SHTX24itALiHoGODzgPQAvE=",
"dev": true,
"requires": {
- "babel-core": "6.26.0",
- "babel-polyfill": "6.26.0",
- "babel-register": "6.26.0",
- "babel-runtime": "6.26.0",
- "chokidar": "1.7.0",
- "commander": "2.13.0",
- "convert-source-map": "1.5.1",
- "fs-readdir-recursive": "1.1.0",
- "glob": "7.1.2",
- "lodash": "4.17.4",
- "output-file-sync": "1.1.2",
- "path-is-absolute": "1.0.1",
- "slash": "1.0.0",
- "source-map": "0.5.7",
- "v8flags": "2.1.1"
+ "babel-core": "^6.26.0",
+ "babel-polyfill": "^6.26.0",
+ "babel-register": "^6.26.0",
+ "babel-runtime": "^6.26.0",
+ "chokidar": "^1.6.1",
+ "commander": "^2.11.0",
+ "convert-source-map": "^1.5.0",
+ "fs-readdir-recursive": "^1.0.0",
+ "glob": "^7.1.2",
+ "lodash": "^4.17.4",
+ "output-file-sync": "^1.1.2",
+ "path-is-absolute": "^1.0.1",
+ "slash": "^1.0.0",
+ "source-map": "^0.5.6",
+ "v8flags": "^2.1.1"
}
},
"babel-code-frame": {
@@ -227,9 +184,9 @@
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
"dev": true,
"requires": {
- "chalk": "1.1.3",
- "esutils": "2.0.2",
- "js-tokens": "3.0.2"
+ "chalk": "^1.1.3",
+ "esutils": "^2.0.2",
+ "js-tokens": "^3.0.2"
}
},
"babel-core": {
@@ -238,25 +195,25 @@
"integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=",
"dev": true,
"requires": {
- "babel-code-frame": "6.26.0",
- "babel-generator": "6.26.0",
- "babel-helpers": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-register": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "convert-source-map": "1.5.1",
- "debug": "2.6.9",
- "json5": "0.5.1",
- "lodash": "4.17.4",
- "minimatch": "3.0.4",
- "path-is-absolute": "1.0.1",
- "private": "0.1.8",
- "slash": "1.0.0",
- "source-map": "0.5.7"
+ "babel-code-frame": "^6.26.0",
+ "babel-generator": "^6.26.0",
+ "babel-helpers": "^6.24.1",
+ "babel-messages": "^6.23.0",
+ "babel-register": "^6.26.0",
+ "babel-runtime": "^6.26.0",
+ "babel-template": "^6.26.0",
+ "babel-traverse": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "babylon": "^6.18.0",
+ "convert-source-map": "^1.5.0",
+ "debug": "^2.6.8",
+ "json5": "^0.5.1",
+ "lodash": "^4.17.4",
+ "minimatch": "^3.0.4",
+ "path-is-absolute": "^1.0.1",
+ "private": "^0.1.7",
+ "slash": "^1.0.0",
+ "source-map": "^0.5.6"
}
},
"babel-generator": {
@@ -265,14 +222,14 @@
"integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=",
"dev": true,
"requires": {
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "detect-indent": "4.0.0",
- "jsesc": "1.3.0",
- "lodash": "4.17.4",
- "source-map": "0.5.7",
- "trim-right": "1.0.1"
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "detect-indent": "^4.0.0",
+ "jsesc": "^1.3.0",
+ "lodash": "^4.17.4",
+ "source-map": "^0.5.6",
+ "trim-right": "^1.0.1"
}
},
"babel-helper-call-delegate": {
@@ -281,10 +238,10 @@
"integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
"dev": true,
"requires": {
- "babel-helper-hoist-variables": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-hoist-variables": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-define-map": {
@@ -293,10 +250,10 @@
"integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
"dev": true,
"requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-runtime": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "lodash": "^4.17.4"
}
},
"babel-helper-function-name": {
@@ -305,11 +262,11 @@
"integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
"dev": true,
"requires": {
- "babel-helper-get-function-arity": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-get-function-arity": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-get-function-arity": {
@@ -318,8 +275,8 @@
"integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-hoist-variables": {
@@ -328,8 +285,8 @@
"integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-optimise-call-expression": {
@@ -338,8 +295,8 @@
"integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-regex": {
@@ -348,9 +305,9 @@
"integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
+ "babel-runtime": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "lodash": "^4.17.4"
}
},
"babel-helper-replace-supers": {
@@ -359,12 +316,12 @@
"integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
"dev": true,
"requires": {
- "babel-helper-optimise-call-expression": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-optimise-call-expression": "^6.24.1",
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helpers": {
@@ -373,8 +330,8 @@
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-messages": {
@@ -383,7 +340,7 @@
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-check-es2015-constants": {
@@ -392,7 +349,7 @@
"integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-arrow-functions": {
@@ -401,7 +358,7 @@
"integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-block-scoped-functions": {
@@ -410,7 +367,7 @@
"integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-block-scoping": {
@@ -419,11 +376,11 @@
"integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "4.17.4"
+ "babel-runtime": "^6.26.0",
+ "babel-template": "^6.26.0",
+ "babel-traverse": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "lodash": "^4.17.4"
}
},
"babel-plugin-transform-es2015-classes": {
@@ -432,15 +389,15 @@
"integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
"dev": true,
"requires": {
- "babel-helper-define-map": "6.26.0",
- "babel-helper-function-name": "6.24.1",
- "babel-helper-optimise-call-expression": "6.24.1",
- "babel-helper-replace-supers": "6.24.1",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-define-map": "^6.24.1",
+ "babel-helper-function-name": "^6.24.1",
+ "babel-helper-optimise-call-expression": "^6.24.1",
+ "babel-helper-replace-supers": "^6.24.1",
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-computed-properties": {
@@ -449,8 +406,8 @@
"integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-destructuring": {
@@ -459,7 +416,7 @@
"integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-duplicate-keys": {
@@ -468,8 +425,8 @@
"integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-for-of": {
@@ -478,7 +435,7 @@
"integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-function-name": {
@@ -487,9 +444,9 @@
"integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
"dev": true,
"requires": {
- "babel-helper-function-name": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-literals": {
@@ -498,7 +455,7 @@
"integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-modules-amd": {
@@ -507,9 +464,9 @@
"integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
"dev": true,
"requires": {
- "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-modules-commonjs": {
@@ -518,10 +475,10 @@
"integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=",
"dev": true,
"requires": {
- "babel-plugin-transform-strict-mode": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-plugin-transform-strict-mode": "^6.24.1",
+ "babel-runtime": "^6.26.0",
+ "babel-template": "^6.26.0",
+ "babel-types": "^6.26.0"
}
},
"babel-plugin-transform-es2015-modules-systemjs": {
@@ -530,9 +487,9 @@
"integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
"dev": true,
"requires": {
- "babel-helper-hoist-variables": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
+ "babel-helper-hoist-variables": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-modules-umd": {
@@ -541,9 +498,9 @@
"integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
"dev": true,
"requires": {
- "babel-plugin-transform-es2015-modules-amd": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0"
+ "babel-plugin-transform-es2015-modules-amd": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-object-super": {
@@ -552,8 +509,8 @@
"integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
"dev": true,
"requires": {
- "babel-helper-replace-supers": "6.24.1",
- "babel-runtime": "6.26.0"
+ "babel-helper-replace-supers": "^6.24.1",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-parameters": {
@@ -562,12 +519,12 @@
"integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
"dev": true,
"requires": {
- "babel-helper-call-delegate": "6.24.1",
- "babel-helper-get-function-arity": "6.24.1",
- "babel-runtime": "6.26.0",
- "babel-template": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-call-delegate": "^6.24.1",
+ "babel-helper-get-function-arity": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-shorthand-properties": {
@@ -576,8 +533,8 @@
"integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-spread": {
@@ -586,7 +543,7 @@
"integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-sticky-regex": {
@@ -595,9 +552,9 @@
"integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
"dev": true,
"requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-helper-regex": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-template-literals": {
@@ -606,7 +563,7 @@
"integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-typeof-symbol": {
@@ -615,7 +572,7 @@
"integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-unicode-regex": {
@@ -624,9 +581,9 @@
"integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
"dev": true,
"requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "6.26.0",
- "regexpu-core": "2.0.0"
+ "babel-helper-regex": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "regexpu-core": "^2.0.0"
}
},
"babel-plugin-transform-regenerator": {
@@ -635,7 +592,7 @@
"integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
"dev": true,
"requires": {
- "regenerator-transform": "0.10.1"
+ "regenerator-transform": "^0.10.0"
}
},
"babel-plugin-transform-strict-mode": {
@@ -644,8 +601,8 @@
"integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-polyfill": {
@@ -654,9 +611,9 @@
"integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "core-js": "2.5.3",
- "regenerator-runtime": "0.10.5"
+ "babel-runtime": "^6.26.0",
+ "core-js": "^2.5.0",
+ "regenerator-runtime": "^0.10.5"
},
"dependencies": {
"regenerator-runtime": {
@@ -673,30 +630,30 @@
"integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=",
"dev": true,
"requires": {
- "babel-plugin-check-es2015-constants": "6.22.0",
- "babel-plugin-transform-es2015-arrow-functions": "6.22.0",
- "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
- "babel-plugin-transform-es2015-block-scoping": "6.26.0",
- "babel-plugin-transform-es2015-classes": "6.24.1",
- "babel-plugin-transform-es2015-computed-properties": "6.24.1",
- "babel-plugin-transform-es2015-destructuring": "6.23.0",
- "babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
- "babel-plugin-transform-es2015-for-of": "6.23.0",
- "babel-plugin-transform-es2015-function-name": "6.24.1",
- "babel-plugin-transform-es2015-literals": "6.22.0",
- "babel-plugin-transform-es2015-modules-amd": "6.24.1",
- "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
- "babel-plugin-transform-es2015-modules-systemjs": "6.24.1",
- "babel-plugin-transform-es2015-modules-umd": "6.24.1",
- "babel-plugin-transform-es2015-object-super": "6.24.1",
- "babel-plugin-transform-es2015-parameters": "6.24.1",
- "babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
- "babel-plugin-transform-es2015-spread": "6.22.0",
- "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
- "babel-plugin-transform-es2015-template-literals": "6.22.0",
- "babel-plugin-transform-es2015-typeof-symbol": "6.23.0",
- "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
- "babel-plugin-transform-regenerator": "6.26.0"
+ "babel-plugin-check-es2015-constants": "^6.22.0",
+ "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
+ "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
+ "babel-plugin-transform-es2015-block-scoping": "^6.24.1",
+ "babel-plugin-transform-es2015-classes": "^6.24.1",
+ "babel-plugin-transform-es2015-computed-properties": "^6.24.1",
+ "babel-plugin-transform-es2015-destructuring": "^6.22.0",
+ "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
+ "babel-plugin-transform-es2015-for-of": "^6.22.0",
+ "babel-plugin-transform-es2015-function-name": "^6.24.1",
+ "babel-plugin-transform-es2015-literals": "^6.22.0",
+ "babel-plugin-transform-es2015-modules-amd": "^6.24.1",
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
+ "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
+ "babel-plugin-transform-es2015-modules-umd": "^6.24.1",
+ "babel-plugin-transform-es2015-object-super": "^6.24.1",
+ "babel-plugin-transform-es2015-parameters": "^6.24.1",
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
+ "babel-plugin-transform-es2015-spread": "^6.22.0",
+ "babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
+ "babel-plugin-transform-es2015-template-literals": "^6.22.0",
+ "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0",
+ "babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
+ "babel-plugin-transform-regenerator": "^6.24.1"
}
},
"babel-register": {
@@ -705,13 +662,13 @@
"integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
"dev": true,
"requires": {
- "babel-core": "6.26.0",
- "babel-runtime": "6.26.0",
- "core-js": "2.5.3",
- "home-or-tmp": "2.0.0",
- "lodash": "4.17.4",
- "mkdirp": "0.5.1",
- "source-map-support": "0.4.18"
+ "babel-core": "^6.26.0",
+ "babel-runtime": "^6.26.0",
+ "core-js": "^2.5.0",
+ "home-or-tmp": "^2.0.0",
+ "lodash": "^4.17.4",
+ "mkdirp": "^0.5.1",
+ "source-map-support": "^0.4.15"
}
},
"babel-runtime": {
@@ -720,8 +677,8 @@
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"dev": true,
"requires": {
- "core-js": "2.5.3",
- "regenerator-runtime": "0.11.1"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
}
},
"babel-template": {
@@ -730,11 +687,11 @@
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-traverse": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "lodash": "4.17.4"
+ "babel-runtime": "^6.26.0",
+ "babel-traverse": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "babylon": "^6.18.0",
+ "lodash": "^4.17.4"
}
},
"babel-traverse": {
@@ -743,15 +700,15 @@
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
"dev": true,
"requires": {
- "babel-code-frame": "6.26.0",
- "babel-messages": "6.23.0",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "babylon": "6.18.0",
- "debug": "2.6.9",
- "globals": "9.18.0",
- "invariant": "2.2.2",
- "lodash": "4.17.4"
+ "babel-code-frame": "^6.26.0",
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "babylon": "^6.18.0",
+ "debug": "^2.6.8",
+ "globals": "^9.18.0",
+ "invariant": "^2.2.2",
+ "lodash": "^4.17.4"
}
},
"babel-types": {
@@ -760,10 +717,10 @@
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "esutils": "2.0.2",
- "lodash": "4.17.4",
- "to-fast-properties": "1.0.3"
+ "babel-runtime": "^6.26.0",
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.4",
+ "to-fast-properties": "^1.0.3"
}
},
"babylon": {
@@ -778,7 +735,7 @@
"integrity": "sha1-jHts1k/3GrvAZpcvAtWdxCc/H5A=",
"dev": true,
"requires": {
- "editions": "1.3.3"
+ "editions": "^1.3.3"
}
},
"balanced-match": {
@@ -794,7 +751,7 @@
"dev": true,
"optional": true,
"requires": {
- "tweetnacl": "0.14.5"
+ "tweetnacl": "^0.14.3"
}
},
"binary-extensions": {
@@ -816,7 +773,7 @@
"integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
"dev": true,
"requires": {
- "hoek": "4.2.0"
+ "hoek": "4.x.x"
}
},
"brace-expansion": {
@@ -825,7 +782,7 @@
"integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"dev": true,
"requires": {
- "balanced-match": "1.0.0",
+ "balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
@@ -836,24 +793,15 @@
"dev": true,
"optional": true,
"requires": {
- "expand-range": "1.8.2",
- "preserve": "0.2.0",
- "repeat-element": "1.1.2"
- }
- },
- "caller-path": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
- "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
- "dev": true,
- "requires": {
- "callsites": "0.2.0"
+ "expand-range": "^1.8.1",
+ "preserve": "^0.2.0",
+ "repeat-element": "^1.1.2"
}
},
- "callsites": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
- "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
+ "builtin-modules": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
+ "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
"caseless": {
@@ -868,8 +816,8 @@
"integrity": "sha1-RUZagV/tAe8RLGj89Dp+bdO8Gbo=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "extendr": "3.2.2"
+ "editions": "^1.1.1",
+ "extendr": "^3.2.0"
}
},
"caterpillar-filter": {
@@ -878,7 +826,7 @@
"integrity": "sha1-WDOMJpwhB0AmuAPQUmi0DwL52IE=",
"dev": true,
"requires": {
- "editions": "1.3.3"
+ "editions": "^1.1.1"
}
},
"caterpillar-human": {
@@ -887,9 +835,9 @@
"integrity": "sha1-PcytsXL7fuifjSo1skdc0/FaFXo=",
"dev": true,
"requires": {
- "ansicolors": "0.3.2",
- "ansistyles": "0.1.3",
- "editions": "1.3.3"
+ "ansicolors": "~0.3.2",
+ "ansistyles": "~0.1.3",
+ "editions": "^1.1.1"
}
},
"chainy-core": {
@@ -898,8 +846,8 @@
"integrity": "sha1-9E1KE6QBcfsV6Lz1zb+t9FV2GSk=",
"dev": true,
"requires": {
- "csextends": "1.1.1",
- "taskgroup": "5.0.1"
+ "csextends": "^1.0.3",
+ "taskgroup": "^4.3.1 || ^5.0.0"
}
},
"chainy-plugin-each": {
@@ -908,7 +856,7 @@
"integrity": "sha1-glJBg6Ln+sf7pE/opxznSapczcY=",
"dev": true,
"requires": {
- "taskgroup": "5.0.1"
+ "taskgroup": "5"
}
},
"chainy-plugin-feed": {
@@ -917,7 +865,7 @@
"integrity": "sha1-GvUyyzgk6HVjnFX9A1Ko38HNA3w=",
"dev": true,
"requires": {
- "feedr": "2.13.5"
+ "feedr": "^2.9.0"
}
},
"chainy-plugin-map": {
@@ -938,19 +886,13 @@
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"requires": {
- "ansi-styles": "2.2.1",
- "escape-string-regexp": "1.0.5",
- "has-ansi": "2.0.0",
- "strip-ansi": "3.0.1",
- "supports-color": "2.0.0"
+ "ansi-styles": "^2.2.1",
+ "escape-string-regexp": "^1.0.2",
+ "has-ansi": "^2.0.0",
+ "strip-ansi": "^3.0.0",
+ "supports-color": "^2.0.0"
}
},
- "chardet": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz",
- "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=",
- "dev": true
- },
"chokidar": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz",
@@ -958,22 +900,16 @@
"dev": true,
"optional": true,
"requires": {
- "anymatch": "1.3.2",
- "async-each": "1.0.1",
- "fsevents": "1.1.3",
- "glob-parent": "2.0.0",
- "inherits": "2.0.3",
- "is-binary-path": "1.0.1",
- "is-glob": "2.0.1",
- "path-is-absolute": "1.0.1",
- "readdirp": "2.1.0"
- }
- },
- "circular-json": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
- "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
- "dev": true
+ "anymatch": "^1.3.0",
+ "async-each": "^1.0.0",
+ "fsevents": "^1.0.0",
+ "glob-parent": "^2.0.0",
+ "inherits": "^2.0.1",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^2.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.0.0"
+ }
},
"cli-color": {
"version": "1.2.0",
@@ -982,29 +918,14 @@
"dev": true,
"optional": true,
"requires": {
- "ansi-regex": "2.1.1",
- "d": "1.0.0",
- "es5-ext": "0.10.38",
- "es6-iterator": "2.0.3",
- "memoizee": "0.4.11",
- "timers-ext": "0.1.2"
- }
- },
- "cli-cursor": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
- "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
- "dev": true,
- "requires": {
- "restore-cursor": "2.0.0"
+ "ansi-regex": "^2.1.1",
+ "d": "1",
+ "es5-ext": "^0.10.12",
+ "es6-iterator": "2",
+ "memoizee": "^0.4.3",
+ "timers-ext": "0.1"
}
},
- "cli-width": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
- "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
- "dev": true
- },
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
@@ -1018,9 +939,9 @@
"dev": true
},
"color-convert": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
- "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
"color-name": "1.1.3"
@@ -1038,7 +959,7 @@
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"dev": true,
"requires": {
- "delayed-stream": "1.0.0"
+ "delayed-stream": "~1.0.0"
}
},
"commander": {
@@ -1053,17 +974,6 @@
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
- "concat-stream": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
- "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
- "dev": true,
- "requires": {
- "inherits": "2.0.3",
- "readable-stream": "2.3.3",
- "typedarray": "0.0.6"
- }
- },
"convert-source-map": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz",
@@ -1082,24 +992,13 @@
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"dev": true
},
- "cross-spawn": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
- "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
- "dev": true,
- "requires": {
- "lru-cache": "4.1.1",
- "shebang-command": "1.2.0",
- "which": "1.3.0"
- }
- },
"cryptiles": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
"integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
"dev": true,
"requires": {
- "boom": "5.2.0"
+ "boom": "5.x.x"
},
"dependencies": {
"boom": {
@@ -1108,7 +1007,7 @@
"integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==",
"dev": true,
"requires": {
- "hoek": "4.2.0"
+ "hoek": "4.x.x"
}
}
}
@@ -1119,7 +1018,7 @@
"integrity": "sha1-zFPBNJ+vfwrmzfb2xKTZFW08TsE=",
"dev": true,
"requires": {
- "coffee-script": "1.12.7"
+ "coffee-script": "^1.12.5"
}
},
"cson": {
@@ -1128,11 +1027,11 @@
"integrity": "sha1-sQdTRPqdn+XPiNgPIdk2Ypa4Zcc=",
"dev": true,
"requires": {
- "coffee-script": "1.12.7",
- "cson-parser": "1.3.5",
- "extract-opts": "3.3.1",
- "requirefresh": "2.1.0",
- "safefs": "4.1.0"
+ "coffee-script": "^1.12.4",
+ "cson-parser": "^1.3.4",
+ "extract-opts": "^3.3.1",
+ "requirefresh": "^2.1.0",
+ "safefs": "^4.1.0"
}
},
"cson-parser": {
@@ -1141,7 +1040,7 @@
"integrity": "sha1-fsZ14DkUVTO/KmqFYHPxWZ2cLSQ=",
"dev": true,
"requires": {
- "coffee-script": "1.12.7"
+ "coffee-script": "^1.10.0"
}
},
"d": {
@@ -1150,7 +1049,7 @@
"integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
"dev": true,
"requires": {
- "es5-ext": "0.10.38"
+ "es5-ext": "^0.10.9"
}
},
"dashdash": {
@@ -1159,7 +1058,7 @@
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"dev": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
}
},
"debug": {
@@ -1171,27 +1070,6 @@
"ms": "2.0.0"
}
},
- "deep-is": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
- "dev": true
- },
- "del": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz",
- "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=",
- "dev": true,
- "requires": {
- "globby": "5.0.0",
- "is-path-cwd": "1.0.0",
- "is-path-in-cwd": "1.0.0",
- "object-assign": "4.1.1",
- "pify": "2.3.0",
- "pinkie-promise": "2.0.1",
- "rimraf": "2.6.2"
- }
- },
"delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
@@ -1204,7 +1082,7 @@
"integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
"dev": true,
"requires": {
- "repeating": "2.0.1"
+ "repeating": "^2.0.0"
}
},
"diff": {
@@ -1213,23 +1091,14 @@
"integrity": "sha512-QpVuMTEoJMF7cKzi6bvWhRulU1fZqZnvyVQgNhPaxxuTYwyjn/j1v9falseQ/uXWwPnO56RBfwtg4h/EQXmucA==",
"dev": true
},
- "doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "requires": {
- "esutils": "2.0.2"
- }
- },
"eachr": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/eachr/-/eachr-3.2.0.tgz",
"integrity": "sha1-LDXkPqCGUW95l8+At6pk1VpKRIQ=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "typechecker": "4.4.1"
+ "editions": "^1.1.1",
+ "typechecker": "^4.3.0"
}
},
"ecc-jsbn": {
@@ -1239,7 +1108,7 @@
"dev": true,
"optional": true,
"requires": {
- "jsbn": "0.1.1"
+ "jsbn": "~0.1.0"
}
},
"editions": {
@@ -1253,8 +1122,8 @@
"integrity": "sha512-jCMyePo7AXbUESwbl8Qi01VSH2piY9s/a3rSU/5w/MlTIx8HPL1xn2InGN8ejt/xulcJgnTO7vqNtOAxzYd2Kg==",
"dev": true,
"requires": {
- "es6-iterator": "2.0.3",
- "es6-symbol": "3.1.1"
+ "es6-iterator": "~2.0.3",
+ "es6-symbol": "~3.1.1"
}
},
"es6-iterator": {
@@ -1263,9 +1132,9 @@
"integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
"dev": true,
"requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.38",
- "es6-symbol": "3.1.1"
+ "d": "1",
+ "es5-ext": "^0.10.35",
+ "es6-symbol": "^3.1.1"
}
},
"es6-symbol": {
@@ -1274,8 +1143,8 @@
"integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
"dev": true,
"requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.38"
+ "d": "1",
+ "es5-ext": "~0.10.14"
}
},
"es6-weak-map": {
@@ -1285,10 +1154,10 @@
"dev": true,
"optional": true,
"requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.38",
- "es6-iterator": "2.0.3",
- "es6-symbol": "3.1.1"
+ "d": "1",
+ "es5-ext": "^0.10.14",
+ "es6-iterator": "^2.0.1",
+ "es6-symbol": "^3.1.1"
}
},
"escape-string-regexp": {
@@ -1297,175 +1166,12 @@
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"dev": true
},
- "eslint": {
- "version": "4.16.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.16.0.tgz",
- "integrity": "sha512-YVXV4bDhNoHHcv0qzU4Meof7/P26B4EuaktMi5L1Tnt52Aov85KmYA8c5D+xyZr/BkhvwUqr011jDSD/QTULxg==",
- "dev": true,
- "requires": {
- "ajv": "5.5.2",
- "babel-code-frame": "6.26.0",
- "chalk": "2.3.0",
- "concat-stream": "1.6.0",
- "cross-spawn": "5.1.0",
- "debug": "3.1.0",
- "doctrine": "2.1.0",
- "eslint-scope": "3.7.1",
- "eslint-visitor-keys": "1.0.0",
- "espree": "3.5.2",
- "esquery": "1.0.0",
- "esutils": "2.0.2",
- "file-entry-cache": "2.0.0",
- "functional-red-black-tree": "1.0.1",
- "glob": "7.1.2",
- "globals": "11.1.0",
- "ignore": "3.3.7",
- "imurmurhash": "0.1.4",
- "inquirer": "3.3.0",
- "is-resolvable": "1.1.0",
- "js-yaml": "3.10.0",
- "json-stable-stringify-without-jsonify": "1.0.1",
- "levn": "0.3.0",
- "lodash": "4.17.4",
- "minimatch": "3.0.4",
- "mkdirp": "0.5.1",
- "natural-compare": "1.4.0",
- "optionator": "0.8.2",
- "path-is-inside": "1.0.2",
- "pluralize": "7.0.0",
- "progress": "2.0.0",
- "require-uncached": "1.0.3",
- "semver": "5.5.0",
- "strip-ansi": "4.0.0",
- "strip-json-comments": "2.0.1",
- "table": "4.0.2",
- "text-table": "0.2.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
- },
- "ansi-styles": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
- "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
- "dev": true,
- "requires": {
- "color-convert": "1.9.1"
- }
- },
- "chalk": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
- "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
- "dev": true,
- "requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "1.0.5",
- "supports-color": "4.5.0"
- }
- },
- "debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "globals": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.1.0.tgz",
- "integrity": "sha512-uEuWt9mqTlPDwSqi+sHjD4nWU/1N+q0fiWI9T1mZpD2UENqX20CFD5T/ziLZvztPaBKl7ZylUi1q6Qfm7E2CiQ==",
- "dev": true
- },
- "progress": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz",
- "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=",
- "dev": true
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
- "requires": {
- "ansi-regex": "3.0.0"
- }
- },
- "supports-color": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
- "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
- "dev": true,
- "requires": {
- "has-flag": "2.0.0"
- }
- }
- }
- },
- "eslint-scope": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz",
- "integrity": "sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=",
- "dev": true,
- "requires": {
- "esrecurse": "4.2.0",
- "estraverse": "4.2.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
- "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==",
- "dev": true
- },
- "espree": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.2.tgz",
- "integrity": "sha512-sadKeYwaR/aJ3stC2CdvgXu1T16TdYN+qwCpcWbMnGJ8s0zNWemzrvb2GbD4OhmJ/fwpJjudThAlLobGbWZbCQ==",
- "dev": true,
- "requires": {
- "acorn": "5.3.0",
- "acorn-jsx": "3.0.1"
- }
- },
"esprima": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz",
"integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==",
"dev": true
},
- "esquery": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz",
- "integrity": "sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo=",
- "dev": true,
- "requires": {
- "estraverse": "4.2.0"
- }
- },
- "esrecurse": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz",
- "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=",
- "dev": true,
- "requires": {
- "estraverse": "4.2.0",
- "object-assign": "4.1.1"
- }
- },
- "estraverse": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
- "dev": true
- },
"esutils": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
@@ -1479,8 +1185,8 @@
"dev": true,
"optional": true,
"requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.38"
+ "d": "1",
+ "es5-ext": "~0.10.14"
}
},
"event-emitter-grouped": {
@@ -1489,9 +1195,9 @@
"integrity": "sha1-tsWioksdb3HIttuONCvY309ZIvw=",
"dev": true,
"requires": {
- "ambi": "2.5.0",
- "editions": "1.3.3",
- "taskgroup": "5.0.1"
+ "ambi": "~2.5.0",
+ "editions": "^1.1.1",
+ "taskgroup": "^5.0.0"
}
},
"expand-brackets": {
@@ -1501,7 +1207,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-posix-bracket": "0.1.1"
+ "is-posix-bracket": "^0.1.0"
}
},
"expand-range": {
@@ -1511,7 +1217,7 @@
"dev": true,
"optional": true,
"requires": {
- "fill-range": "2.2.3"
+ "fill-range": "^2.1.0"
}
},
"extend": {
@@ -1526,19 +1232,8 @@
"integrity": "sha1-xuRv5tkLLj6IEqZlS9YYLL+RzQY=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "typechecker": "4.4.1"
- }
- },
- "external-editor": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz",
- "integrity": "sha512-E44iT5QVOUJBKij4IIV3uvxuNlbKS38Tw1HiupxEIHPv9qtC2PrDYohbXV5U+1jnfIXttny8gUhj+oZvflFlzA==",
- "dev": true,
- "requires": {
- "chardet": "0.4.2",
- "iconv-lite": "0.4.19",
- "tmp": "0.0.33"
+ "editions": "^1.1.2",
+ "typechecker": "^4.3.0"
}
},
"extglob": {
@@ -1548,7 +1243,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-extglob": "1.0.0"
+ "is-extglob": "^1.0.0"
}
},
"extract-opts": {
@@ -1557,9 +1252,9 @@
"integrity": "sha1-WrvtyYwNUgLjJ4cn+Rktfghsa+E=",
"dev": true,
"requires": {
- "eachr": "3.2.0",
- "editions": "1.3.3",
- "typechecker": "4.4.1"
+ "eachr": "^3.2.0",
+ "editions": "^1.1.1",
+ "typechecker": "^4.3.0"
}
},
"extsprintf": {
@@ -1580,30 +1275,24 @@
"integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
"dev": true
},
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
- },
"feedr": {
"version": "2.13.5",
"resolved": "https://registry.npmjs.org/feedr/-/feedr-2.13.5.tgz",
"integrity": "sha1-Wr26NAH2c0JlccT8PiOMFmvsey0=",
"dev": true,
"requires": {
- "cson": "4.1.0",
- "eachr": "3.2.0",
- "editions": "1.3.3",
- "extendr": "3.2.2",
- "istextorbinary": "2.1.0",
- "js-yaml": "3.10.0",
- "request": "2.83.0",
- "safefs": "4.1.0",
- "safeps": "6.4.0",
- "taskgroup": "5.0.1",
- "typechecker": "4.4.1",
- "xml2js": "0.4.19"
+ "cson": "^4.0.0",
+ "eachr": "^3.2.0",
+ "editions": "^1.3.3",
+ "extendr": "^3.2.2",
+ "istextorbinary": "^2.1.0",
+ "js-yaml": "^3.8.1",
+ "request": "^2.79.0",
+ "safefs": "^4.1.0",
+ "safeps": "^6.3.0",
+ "taskgroup": "^5.0.1",
+ "typechecker": "^4.4.1",
+ "xml2js": "~0.4.17"
}
},
"fellow": {
@@ -1612,26 +1301,7 @@
"integrity": "sha1-Gr/9OeKKdF5ClPn9GtbdhSFqY1w=",
"dev": true,
"requires": {
- "editions": "1.3.3"
- }
- },
- "figures": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
- "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
- "dev": true,
- "requires": {
- "escape-string-regexp": "1.0.5"
- }
- },
- "file-entry-cache": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz",
- "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=",
- "dev": true,
- "requires": {
- "flat-cache": "1.3.0",
- "object-assign": "4.1.1"
+ "editions": "^1.1.1"
}
},
"filename-regex": {
@@ -1648,23 +1318,11 @@
"dev": true,
"optional": true,
"requires": {
- "is-number": "2.1.0",
- "isobject": "2.1.0",
- "randomatic": "1.1.7",
- "repeat-element": "1.1.2",
- "repeat-string": "1.6.1"
- }
- },
- "flat-cache": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz",
- "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=",
- "dev": true,
- "requires": {
- "circular-json": "0.3.3",
- "del": "2.2.2",
- "graceful-fs": "4.1.11",
- "write": "0.2.1"
+ "is-number": "^2.1.0",
+ "isobject": "^2.0.0",
+ "randomatic": "^1.1.3",
+ "repeat-element": "^1.1.2",
+ "repeat-string": "^1.5.2"
}
},
"for-in": {
@@ -1681,7 +1339,7 @@
"dev": true,
"optional": true,
"requires": {
- "for-in": "1.0.2"
+ "for-in": "^1.0.1"
}
},
"forever-agent": {
@@ -1696,9 +1354,9 @@
"integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=",
"dev": true,
"requires": {
- "asynckit": "0.4.0",
- "combined-stream": "1.0.5",
- "mime-types": "2.1.17"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.12"
}
},
"fs-readdir-recursive": {
@@ -1720,8 +1378,8 @@
"dev": true,
"optional": true,
"requires": {
- "nan": "2.8.0",
- "node-pre-gyp": "0.6.39"
+ "nan": "^2.3.0",
+ "node-pre-gyp": "^0.6.39"
},
"dependencies": {
"abbrev": {
@@ -1736,8 +1394,8 @@
"dev": true,
"optional": true,
"requires": {
- "co": "4.6.0",
- "json-stable-stringify": "1.0.1"
+ "co": "^4.6.0",
+ "json-stable-stringify": "^1.0.1"
}
},
"ansi-regex": {
@@ -1757,8 +1415,8 @@
"dev": true,
"optional": true,
"requires": {
- "delegates": "1.0.0",
- "readable-stream": "2.2.9"
+ "delegates": "^1.0.0",
+ "readable-stream": "^2.0.6"
}
},
"asn1": {
@@ -1802,7 +1460,7 @@
"dev": true,
"optional": true,
"requires": {
- "tweetnacl": "0.14.5"
+ "tweetnacl": "^0.14.3"
}
},
"block-stream": {
@@ -1810,7 +1468,7 @@
"bundled": true,
"dev": true,
"requires": {
- "inherits": "2.0.3"
+ "inherits": "~2.0.0"
}
},
"boom": {
@@ -1818,7 +1476,7 @@
"bundled": true,
"dev": true,
"requires": {
- "hoek": "2.16.3"
+ "hoek": "2.x.x"
}
},
"brace-expansion": {
@@ -1826,7 +1484,7 @@
"bundled": true,
"dev": true,
"requires": {
- "balanced-match": "0.4.2",
+ "balanced-match": "^0.4.1",
"concat-map": "0.0.1"
}
},
@@ -1857,7 +1515,7 @@
"bundled": true,
"dev": true,
"requires": {
- "delayed-stream": "1.0.0"
+ "delayed-stream": "~1.0.0"
}
},
"concat-map": {
@@ -1880,7 +1538,7 @@
"bundled": true,
"dev": true,
"requires": {
- "boom": "2.10.1"
+ "boom": "2.x.x"
}
},
"dashdash": {
@@ -1889,7 +1547,7 @@
"dev": true,
"optional": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -1938,7 +1596,7 @@
"dev": true,
"optional": true,
"requires": {
- "jsbn": "0.1.1"
+ "jsbn": "~0.1.0"
}
},
"extend": {
@@ -1964,9 +1622,9 @@
"dev": true,
"optional": true,
"requires": {
- "asynckit": "0.4.0",
- "combined-stream": "1.0.5",
- "mime-types": "2.1.15"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.12"
}
},
"fs.realpath": {
@@ -1979,10 +1637,10 @@
"bundled": true,
"dev": true,
"requires": {
- "graceful-fs": "4.1.11",
- "inherits": "2.0.3",
- "mkdirp": "0.5.1",
- "rimraf": "2.6.1"
+ "graceful-fs": "^4.1.2",
+ "inherits": "~2.0.0",
+ "mkdirp": ">=0.5 0",
+ "rimraf": "2"
}
},
"fstream-ignore": {
@@ -1991,9 +1649,9 @@
"dev": true,
"optional": true,
"requires": {
- "fstream": "1.0.11",
- "inherits": "2.0.3",
- "minimatch": "3.0.4"
+ "fstream": "^1.0.0",
+ "inherits": "2",
+ "minimatch": "^3.0.0"
}
},
"gauge": {
@@ -2002,14 +1660,14 @@
"dev": true,
"optional": true,
"requires": {
- "aproba": "1.1.1",
- "console-control-strings": "1.1.0",
- "has-unicode": "2.0.1",
- "object-assign": "4.1.1",
- "signal-exit": "3.0.2",
- "string-width": "1.0.2",
- "strip-ansi": "3.0.1",
- "wide-align": "1.1.2"
+ "aproba": "^1.0.3",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.0",
+ "object-assign": "^4.1.0",
+ "signal-exit": "^3.0.0",
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wide-align": "^1.1.0"
}
},
"getpass": {
@@ -2018,7 +1676,7 @@
"dev": true,
"optional": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -2034,12 +1692,12 @@
"bundled": true,
"dev": true,
"requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"graceful-fs": {
@@ -2059,8 +1717,8 @@
"dev": true,
"optional": true,
"requires": {
- "ajv": "4.11.8",
- "har-schema": "1.0.5"
+ "ajv": "^4.9.1",
+ "har-schema": "^1.0.5"
}
},
"has-unicode": {
@@ -2074,10 +1732,10 @@
"bundled": true,
"dev": true,
"requires": {
- "boom": "2.10.1",
- "cryptiles": "2.0.5",
- "hoek": "2.16.3",
- "sntp": "1.0.9"
+ "boom": "2.x.x",
+ "cryptiles": "2.x.x",
+ "hoek": "2.x.x",
+ "sntp": "1.x.x"
}
},
"hoek": {
@@ -2091,9 +1749,9 @@
"dev": true,
"optional": true,
"requires": {
- "assert-plus": "0.2.0",
- "jsprim": "1.4.0",
- "sshpk": "1.13.0"
+ "assert-plus": "^0.2.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
}
},
"inflight": {
@@ -2101,8 +1759,8 @@
"bundled": true,
"dev": true,
"requires": {
- "once": "1.4.0",
- "wrappy": "1.0.2"
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
"inherits": {
@@ -2121,7 +1779,7 @@
"bundled": true,
"dev": true,
"requires": {
- "number-is-nan": "1.0.1"
+ "number-is-nan": "^1.0.0"
}
},
"is-typedarray": {
@@ -2147,7 +1805,7 @@
"dev": true,
"optional": true,
"requires": {
- "jsbn": "0.1.1"
+ "jsbn": "~0.1.0"
}
},
"jsbn": {
@@ -2168,7 +1826,7 @@
"dev": true,
"optional": true,
"requires": {
- "jsonify": "0.0.0"
+ "jsonify": "~0.0.0"
}
},
"json-stringify-safe": {
@@ -2213,7 +1871,7 @@
"bundled": true,
"dev": true,
"requires": {
- "mime-db": "1.27.0"
+ "mime-db": "~1.27.0"
}
},
"minimatch": {
@@ -2221,7 +1879,7 @@
"bundled": true,
"dev": true,
"requires": {
- "brace-expansion": "1.1.7"
+ "brace-expansion": "^1.1.7"
}
},
"minimist": {
@@ -2249,17 +1907,17 @@
"dev": true,
"optional": true,
"requires": {
- "detect-libc": "1.0.2",
+ "detect-libc": "^1.0.2",
"hawk": "3.1.3",
- "mkdirp": "0.5.1",
- "nopt": "4.0.1",
- "npmlog": "4.1.0",
- "rc": "1.2.1",
+ "mkdirp": "^0.5.1",
+ "nopt": "^4.0.1",
+ "npmlog": "^4.0.2",
+ "rc": "^1.1.7",
"request": "2.81.0",
- "rimraf": "2.6.1",
- "semver": "5.3.0",
- "tar": "2.2.1",
- "tar-pack": "3.4.0"
+ "rimraf": "^2.6.1",
+ "semver": "^5.3.0",
+ "tar": "^2.2.1",
+ "tar-pack": "^3.4.0"
}
},
"nopt": {
@@ -2268,8 +1926,8 @@
"dev": true,
"optional": true,
"requires": {
- "abbrev": "1.1.0",
- "osenv": "0.1.4"
+ "abbrev": "1",
+ "osenv": "^0.1.4"
}
},
"npmlog": {
@@ -2278,10 +1936,10 @@
"dev": true,
"optional": true,
"requires": {
- "are-we-there-yet": "1.1.4",
- "console-control-strings": "1.1.0",
- "gauge": "2.7.4",
- "set-blocking": "2.0.0"
+ "are-we-there-yet": "~1.1.2",
+ "console-control-strings": "~1.1.0",
+ "gauge": "~2.7.3",
+ "set-blocking": "~2.0.0"
}
},
"number-is-nan": {
@@ -2306,7 +1964,7 @@
"bundled": true,
"dev": true,
"requires": {
- "wrappy": "1.0.2"
+ "wrappy": "1"
}
},
"os-homedir": {
@@ -2327,8 +1985,8 @@
"dev": true,
"optional": true,
"requires": {
- "os-homedir": "1.0.2",
- "os-tmpdir": "1.0.2"
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
}
},
"path-is-absolute": {
@@ -2365,10 +2023,10 @@
"dev": true,
"optional": true,
"requires": {
- "deep-extend": "0.4.2",
- "ini": "1.3.4",
- "minimist": "1.2.0",
- "strip-json-comments": "2.0.1"
+ "deep-extend": "~0.4.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
},
"dependencies": {
"minimist": {
@@ -2384,13 +2042,13 @@
"bundled": true,
"dev": true,
"requires": {
- "buffer-shims": "1.0.0",
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "isarray": "1.0.0",
- "process-nextick-args": "1.0.7",
- "string_decoder": "1.0.1",
- "util-deprecate": "1.0.2"
+ "buffer-shims": "~1.0.0",
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~1.0.6",
+ "string_decoder": "~1.0.0",
+ "util-deprecate": "~1.0.1"
}
},
"request": {
@@ -2399,28 +2057,28 @@
"dev": true,
"optional": true,
"requires": {
- "aws-sign2": "0.6.0",
- "aws4": "1.6.0",
- "caseless": "0.12.0",
- "combined-stream": "1.0.5",
- "extend": "3.0.1",
- "forever-agent": "0.6.1",
- "form-data": "2.1.4",
- "har-validator": "4.2.1",
- "hawk": "3.1.3",
- "http-signature": "1.1.1",
- "is-typedarray": "1.0.0",
- "isstream": "0.1.2",
- "json-stringify-safe": "5.0.1",
- "mime-types": "2.1.15",
- "oauth-sign": "0.8.2",
- "performance-now": "0.2.0",
- "qs": "6.4.0",
- "safe-buffer": "5.0.1",
- "stringstream": "0.0.5",
- "tough-cookie": "2.3.2",
- "tunnel-agent": "0.6.0",
- "uuid": "3.0.1"
+ "aws-sign2": "~0.6.0",
+ "aws4": "^1.2.1",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.5",
+ "extend": "~3.0.0",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.1.1",
+ "har-validator": "~4.2.1",
+ "hawk": "~3.1.3",
+ "http-signature": "~1.1.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.7",
+ "oauth-sign": "~0.8.1",
+ "performance-now": "^0.2.0",
+ "qs": "~6.4.0",
+ "safe-buffer": "^5.0.1",
+ "stringstream": "~0.0.4",
+ "tough-cookie": "~2.3.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.0.0"
}
},
"rimraf": {
@@ -2428,7 +2086,7 @@
"bundled": true,
"dev": true,
"requires": {
- "glob": "7.1.2"
+ "glob": "^7.0.5"
}
},
"safe-buffer": {
@@ -2459,7 +2117,7 @@
"bundled": true,
"dev": true,
"requires": {
- "hoek": "2.16.3"
+ "hoek": "2.x.x"
}
},
"sshpk": {
@@ -2468,15 +2126,15 @@
"dev": true,
"optional": true,
"requires": {
- "asn1": "0.2.3",
- "assert-plus": "1.0.0",
- "bcrypt-pbkdf": "1.0.1",
- "dashdash": "1.14.1",
- "ecc-jsbn": "0.1.1",
- "getpass": "0.1.7",
- "jodid25519": "1.0.2",
- "jsbn": "0.1.1",
- "tweetnacl": "0.14.5"
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jodid25519": "^1.0.0",
+ "jsbn": "~0.1.0",
+ "tweetnacl": "~0.14.0"
},
"dependencies": {
"assert-plus": {
@@ -2492,9 +2150,9 @@
"bundled": true,
"dev": true,
"requires": {
- "code-point-at": "1.1.0",
- "is-fullwidth-code-point": "1.0.0",
- "strip-ansi": "3.0.1"
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
}
},
"string_decoder": {
@@ -2502,7 +2160,7 @@
"bundled": true,
"dev": true,
"requires": {
- "safe-buffer": "5.0.1"
+ "safe-buffer": "^5.0.1"
}
},
"stringstream": {
@@ -2516,7 +2174,7 @@
"bundled": true,
"dev": true,
"requires": {
- "ansi-regex": "2.1.1"
+ "ansi-regex": "^2.0.0"
}
},
"strip-json-comments": {
@@ -2530,9 +2188,9 @@
"bundled": true,
"dev": true,
"requires": {
- "block-stream": "0.0.9",
- "fstream": "1.0.11",
- "inherits": "2.0.3"
+ "block-stream": "*",
+ "fstream": "^1.0.2",
+ "inherits": "2"
}
},
"tar-pack": {
@@ -2541,14 +2199,14 @@
"dev": true,
"optional": true,
"requires": {
- "debug": "2.6.8",
- "fstream": "1.0.11",
- "fstream-ignore": "1.0.5",
- "once": "1.4.0",
- "readable-stream": "2.2.9",
- "rimraf": "2.6.1",
- "tar": "2.2.1",
- "uid-number": "0.0.6"
+ "debug": "^2.2.0",
+ "fstream": "^1.0.10",
+ "fstream-ignore": "^1.0.5",
+ "once": "^1.3.3",
+ "readable-stream": "^2.1.4",
+ "rimraf": "^2.5.1",
+ "tar": "^2.2.1",
+ "uid-number": "^0.0.6"
}
},
"tough-cookie": {
@@ -2557,7 +2215,7 @@
"dev": true,
"optional": true,
"requires": {
- "punycode": "1.4.1"
+ "punycode": "^1.4.1"
}
},
"tunnel-agent": {
@@ -2566,7 +2224,7 @@
"dev": true,
"optional": true,
"requires": {
- "safe-buffer": "5.0.1"
+ "safe-buffer": "^5.0.1"
}
},
"tweetnacl": {
@@ -2607,7 +2265,7 @@
"dev": true,
"optional": true,
"requires": {
- "string-width": "1.0.2"
+ "string-width": "^1.0.2"
}
},
"wrappy": {
@@ -2617,19 +2275,13 @@
}
}
},
- "functional-red-black-tree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
- "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
- "dev": true
- },
"getpass": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
"dev": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
}
},
"glob": {
@@ -2638,12 +2290,12 @@
"integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
"dev": true,
"requires": {
- "fs.realpath": "1.0.0",
- "inflight": "1.0.6",
- "inherits": "2.0.3",
- "minimatch": "3.0.4",
- "once": "1.4.0",
- "path-is-absolute": "1.0.1"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"glob-base": {
@@ -2653,8 +2305,8 @@
"dev": true,
"optional": true,
"requires": {
- "glob-parent": "2.0.0",
- "is-glob": "2.0.1"
+ "glob-parent": "^2.0.0",
+ "is-glob": "^2.0.0"
}
},
"glob-parent": {
@@ -2663,7 +2315,7 @@
"integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
"dev": true,
"requires": {
- "is-glob": "2.0.1"
+ "is-glob": "^2.0.0"
}
},
"globals": {
@@ -2672,20 +2324,6 @@
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
"dev": true
},
- "globby": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz",
- "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=",
- "dev": true,
- "requires": {
- "array-union": "1.0.2",
- "arrify": "1.0.1",
- "glob": "7.1.2",
- "object-assign": "4.1.1",
- "pify": "2.3.0",
- "pinkie-promise": "2.0.1"
- }
- },
"graceful-fs": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
@@ -2704,8 +2342,8 @@
"integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
"dev": true,
"requires": {
- "ajv": "5.5.2",
- "har-schema": "2.0.0"
+ "ajv": "^5.1.0",
+ "har-schema": "^2.0.0"
}
},
"has-ansi": {
@@ -2714,25 +2352,19 @@
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
"dev": true,
"requires": {
- "ansi-regex": "2.1.1"
+ "ansi-regex": "^2.0.0"
}
},
- "has-flag": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
- "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=",
- "dev": true
- },
"hawk": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
"integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
"dev": true,
"requires": {
- "boom": "4.3.1",
- "cryptiles": "3.1.2",
- "hoek": "4.2.0",
- "sntp": "2.1.0"
+ "boom": "4.x.x",
+ "cryptiles": "3.x.x",
+ "hoek": "4.x.x",
+ "sntp": "2.x.x"
}
},
"hoek": {
@@ -2747,8 +2379,8 @@
"integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
"dev": true,
"requires": {
- "os-homedir": "1.0.2",
- "os-tmpdir": "1.0.2"
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.1"
}
},
"http-signature": {
@@ -2757,37 +2389,19 @@
"integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
"dev": true,
"requires": {
- "assert-plus": "1.0.0",
- "jsprim": "1.4.1",
- "sshpk": "1.13.1"
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
}
},
- "iconv-lite": {
- "version": "0.4.19",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
- "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==",
- "dev": true
- },
- "ignore": {
- "version": "3.3.7",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz",
- "integrity": "sha512-YGG3ejvBNHRqu0559EOxxNFihD0AjpvHlC/pdGKd3X3ofe+CoJkYazwNJYTNebqpPKN+VVQbh4ZFn1DivMNuHA==",
- "dev": true
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true
- },
"inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
"dev": true,
"requires": {
- "once": "1.4.0",
- "wrappy": "1.0.2"
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
"inherits": {
@@ -2796,81 +2410,13 @@
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
"dev": true
},
- "inquirer": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz",
- "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==",
- "dev": true,
- "requires": {
- "ansi-escapes": "3.0.0",
- "chalk": "2.3.0",
- "cli-cursor": "2.1.0",
- "cli-width": "2.2.0",
- "external-editor": "2.1.0",
- "figures": "2.0.0",
- "lodash": "4.17.4",
- "mute-stream": "0.0.7",
- "run-async": "2.3.0",
- "rx-lite": "4.0.8",
- "rx-lite-aggregates": "4.0.8",
- "string-width": "2.1.1",
- "strip-ansi": "4.0.0",
- "through": "2.3.8"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
- },
- "ansi-styles": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
- "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
- "dev": true,
- "requires": {
- "color-convert": "1.9.1"
- }
- },
- "chalk": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
- "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
- "dev": true,
- "requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "1.0.5",
- "supports-color": "4.5.0"
- }
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
- "requires": {
- "ansi-regex": "3.0.0"
- }
- },
- "supports-color": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
- "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
- "dev": true,
- "requires": {
- "has-flag": "2.0.0"
- }
- }
- }
- },
"invariant": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
"integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
"dev": true,
"requires": {
- "loose-envify": "1.3.1"
+ "loose-envify": "^1.0.0"
}
},
"is-binary-path": {
@@ -2880,7 +2426,7 @@
"dev": true,
"optional": true,
"requires": {
- "binary-extensions": "1.11.0"
+ "binary-extensions": "^1.0.0"
}
},
"is-buffer": {
@@ -2903,7 +2449,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-primitive": "2.0.0"
+ "is-primitive": "^2.0.0"
}
},
"is-extendable": {
@@ -2925,22 +2471,16 @@
"integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
"dev": true,
"requires": {
- "number-is-nan": "1.0.1"
+ "number-is-nan": "^1.0.0"
}
},
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
- "dev": true
- },
"is-glob": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
"integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
"dev": true,
"requires": {
- "is-extglob": "1.0.0"
+ "is-extglob": "^1.0.0"
}
},
"is-number": {
@@ -2950,31 +2490,7 @@
"dev": true,
"optional": true,
"requires": {
- "kind-of": "3.2.2"
- }
- },
- "is-path-cwd": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
- "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=",
- "dev": true
- },
- "is-path-in-cwd": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
- "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=",
- "dev": true,
- "requires": {
- "is-path-inside": "1.0.1"
- }
- },
- "is-path-inside": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
- "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
- "dev": true,
- "requires": {
- "path-is-inside": "1.0.2"
+ "kind-of": "^3.0.2"
}
},
"is-posix-bracket": {
@@ -2995,13 +2511,8 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
"integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
- "dev": true
- },
- "is-resolvable": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
- "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
- "dev": true
+ "dev": true,
+ "optional": true
},
"is-typedarray": {
"version": "1.0.0",
@@ -3015,12 +2526,6 @@
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"dev": true
},
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
"isobject": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
@@ -3043,9 +2548,9 @@
"integrity": "sha1-2+0qb1G+L3R1to+JRlgRFBt1iHQ=",
"dev": true,
"requires": {
- "binaryextensions": "2.0.0",
- "editions": "1.3.3",
- "textextensions": "2.1.0"
+ "binaryextensions": "1 || 2",
+ "editions": "^1.1.1",
+ "textextensions": "1 || 2"
}
},
"joe": {
@@ -3054,9 +2559,9 @@
"integrity": "sha1-iHTrV9w+tDFVj37RX9VYBdDvb08=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "event-emitter-grouped": "2.5.0",
- "taskgroup": "5.0.1"
+ "editions": "^1.3.1",
+ "event-emitter-grouped": "^2.5.0",
+ "taskgroup": "^5.0.1"
}
},
"joe-reporter-console": {
@@ -3065,8 +2570,8 @@
"integrity": "sha1-4BAbH/wN3s/7o0YE8AqxK6qfzzY=",
"dev": true,
"requires": {
- "cli-color": "1.2.0",
- "editions": "1.3.3"
+ "cli-color": "^1.1.0",
+ "editions": "^1.3.1"
}
},
"js-tokens": {
@@ -3081,8 +2586,8 @@
"integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
"dev": true,
"requires": {
- "argparse": "1.0.9",
- "esprima": "4.0.0"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
}
},
"jsbn": {
@@ -3110,12 +2615,6 @@
"integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=",
"dev": true
},
- "json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
- "dev": true
- },
"json-stringify-safe": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
@@ -3146,17 +2645,7 @@
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"dev": true,
"requires": {
- "is-buffer": "1.1.6"
- }
- },
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "requires": {
- "prelude-ls": "1.1.2",
- "type-check": "0.3.2"
+ "is-buffer": "^1.1.5"
}
},
"lodash": {
@@ -3171,17 +2660,7 @@
"integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
"dev": true,
"requires": {
- "js-tokens": "3.0.2"
- }
- },
- "lru-cache": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz",
- "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==",
- "dev": true,
- "requires": {
- "pseudomap": "1.0.2",
- "yallist": "2.1.2"
+ "js-tokens": "^3.0.0"
}
},
"lru-queue": {
@@ -3191,7 +2670,7 @@
"dev": true,
"optional": true,
"requires": {
- "es5-ext": "0.10.38"
+ "es5-ext": "~0.10.2"
}
},
"memoizee": {
@@ -3201,14 +2680,14 @@
"dev": true,
"optional": true,
"requires": {
- "d": "1.0.0",
- "es5-ext": "0.10.38",
- "es6-weak-map": "2.0.2",
- "event-emitter": "0.3.5",
- "is-promise": "2.1.0",
- "lru-queue": "0.1.0",
- "next-tick": "1.0.0",
- "timers-ext": "0.1.2"
+ "d": "1",
+ "es5-ext": "^0.10.30",
+ "es6-weak-map": "^2.0.2",
+ "event-emitter": "^0.3.5",
+ "is-promise": "^2.1",
+ "lru-queue": "0.1",
+ "next-tick": "1",
+ "timers-ext": "^0.1.2"
}
},
"micromatch": {
@@ -3218,19 +2697,19 @@
"dev": true,
"optional": true,
"requires": {
- "arr-diff": "2.0.0",
- "array-unique": "0.2.1",
- "braces": "1.8.5",
- "expand-brackets": "0.1.5",
- "extglob": "0.3.2",
- "filename-regex": "2.0.1",
- "is-extglob": "1.0.0",
- "is-glob": "2.0.1",
- "kind-of": "3.2.2",
- "normalize-path": "2.1.1",
- "object.omit": "2.0.1",
- "parse-glob": "3.0.4",
- "regex-cache": "0.4.4"
+ "arr-diff": "^2.0.0",
+ "array-unique": "^0.2.1",
+ "braces": "^1.8.2",
+ "expand-brackets": "^0.1.4",
+ "extglob": "^0.3.1",
+ "filename-regex": "^2.0.0",
+ "is-extglob": "^1.0.0",
+ "is-glob": "^2.0.1",
+ "kind-of": "^3.0.2",
+ "normalize-path": "^2.0.1",
+ "object.omit": "^2.0.0",
+ "parse-glob": "^3.0.4",
+ "regex-cache": "^0.4.2"
}
},
"mime-db": {
@@ -3245,22 +2724,16 @@
"integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
"dev": true,
"requires": {
- "mime-db": "1.30.0"
+ "mime-db": "~1.30.0"
}
},
- "mimic-fn": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz",
- "integrity": "sha1-5md4PZLonb00KBi1IwudYqZyrRg=",
- "dev": true
- },
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"dev": true,
"requires": {
- "brace-expansion": "1.1.8"
+ "brace-expansion": "^1.1.7"
}
},
"minimist": {
@@ -3284,12 +2757,6 @@
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
"dev": true
},
- "mute-stream": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz",
- "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=",
- "dev": true
- },
"nan": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz",
@@ -3297,12 +2764,6 @@
"dev": true,
"optional": true
},
- "natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
- "dev": true
- },
"next-tick": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
@@ -3315,7 +2776,7 @@
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"dev": true,
"requires": {
- "remove-trailing-separator": "1.1.0"
+ "remove-trailing-separator": "^1.0.1"
}
},
"number-is-nan": {
@@ -3343,8 +2804,8 @@
"dev": true,
"optional": true,
"requires": {
- "for-own": "0.1.5",
- "is-extendable": "0.1.1"
+ "for-own": "^0.1.4",
+ "is-extendable": "^0.1.1"
}
},
"once": {
@@ -3353,30 +2814,7 @@
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
"dev": true,
"requires": {
- "wrappy": "1.0.2"
- }
- },
- "onetime": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
- "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
- "dev": true,
- "requires": {
- "mimic-fn": "1.1.0"
- }
- },
- "optionator": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
- "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
- "dev": true,
- "requires": {
- "deep-is": "0.1.3",
- "fast-levenshtein": "2.0.6",
- "levn": "0.3.0",
- "prelude-ls": "1.1.2",
- "type-check": "0.3.2",
- "wordwrap": "1.0.0"
+ "wrappy": "1"
}
},
"os-homedir": {
@@ -3397,9 +2835,9 @@
"integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=",
"dev": true,
"requires": {
- "graceful-fs": "4.1.11",
- "mkdirp": "0.5.1",
- "object-assign": "4.1.1"
+ "graceful-fs": "^4.1.4",
+ "mkdirp": "^0.5.1",
+ "object-assign": "^4.1.0"
}
},
"parse-glob": {
@@ -3409,10 +2847,10 @@
"dev": true,
"optional": true,
"requires": {
- "glob-base": "0.3.0",
- "is-dotfile": "1.0.3",
- "is-extglob": "1.0.0",
- "is-glob": "2.0.1"
+ "glob-base": "^0.3.0",
+ "is-dotfile": "^1.0.0",
+ "is-extglob": "^1.0.0",
+ "is-glob": "^2.0.0"
}
},
"path-is-absolute": {
@@ -3421,10 +2859,10 @@
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
"dev": true
},
- "path-is-inside": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
+ "path-parse": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
+ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
"dev": true
},
"performance-now": {
@@ -3433,39 +2871,6 @@
"integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
"dev": true
},
- "pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
- "dev": true
- },
- "pinkie": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
- "dev": true
- },
- "pinkie-promise": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
- "dev": true,
- "requires": {
- "pinkie": "2.0.4"
- }
- },
- "pluralize": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
- "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==",
- "dev": true
- },
- "prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true
- },
"preserve": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
@@ -3483,12 +2888,13 @@
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=",
- "dev": true
+ "dev": true,
+ "optional": true
},
"progress": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
- "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74="
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz",
+ "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8="
},
"projectz": {
"version": "1.4.0",
@@ -3496,33 +2902,27 @@
"integrity": "sha1-Iq3X40bb+3BMjsHrK0PTbts2AlA=",
"dev": true,
"requires": {
- "badges": "1.2.4",
- "caterpillar": "3.0.1",
- "caterpillar-filter": "3.0.0",
- "caterpillar-human": "3.0.0",
- "chainy-core": "1.6.0",
- "chainy-plugin-each": "1.1.0",
- "chainy-plugin-feed": "1.0.0",
- "chainy-plugin-map": "1.0.5",
- "chainy-plugin-set": "1.0.2",
- "commander": "2.13.0",
- "cson": "4.1.0",
- "eachr": "3.2.0",
- "editions": "1.3.3",
- "extendr": "3.2.2",
- "fellow": "2.3.0",
- "safefs": "4.1.0",
- "spdx": "0.5.1",
- "spdx-license-list": "3.0.1",
- "taskgroup": "5.0.1",
- "typechecker": "4.4.1"
- }
- },
- "pseudomap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
- "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
- "dev": true
+ "badges": "^1.2.4",
+ "caterpillar": "^3.0.1",
+ "caterpillar-filter": "^3.0.0",
+ "caterpillar-human": "^3.0.0",
+ "chainy-core": "^1.6.0",
+ "chainy-plugin-each": "^1.1.0",
+ "chainy-plugin-feed": "^1.0.0",
+ "chainy-plugin-map": "^1.0.5",
+ "chainy-plugin-set": "^1.0.2",
+ "commander": "^2.9.0",
+ "cson": "^4.0.0",
+ "eachr": "^3.2.0",
+ "editions": "^1.3.3",
+ "extendr": "^3.2.2",
+ "fellow": "^2.3.0",
+ "safefs": "^4.1.0",
+ "spdx": "^0.5.1",
+ "spdx-license-list": "^3.0.1",
+ "taskgroup": "5",
+ "typechecker": "^4.4.1"
+ }
},
"punycode": {
"version": "1.4.1",
@@ -3543,8 +2943,8 @@
"dev": true,
"optional": true,
"requires": {
- "is-number": "3.0.0",
- "kind-of": "4.0.0"
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
},
"dependencies": {
"is-number": {
@@ -3554,7 +2954,7 @@
"dev": true,
"optional": true,
"requires": {
- "kind-of": "3.2.2"
+ "kind-of": "^3.0.2"
},
"dependencies": {
"kind-of": {
@@ -3564,7 +2964,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-buffer": "1.1.6"
+ "is-buffer": "^1.1.5"
}
}
}
@@ -3576,7 +2976,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-buffer": "1.1.6"
+ "is-buffer": "^1.1.5"
}
}
}
@@ -3586,14 +2986,15 @@
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz",
"integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==",
"dev": true,
+ "optional": true,
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "isarray": "1.0.0",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~1.0.6",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.0.3",
+ "util-deprecate": "~1.0.1"
}
},
"readdirp": {
@@ -3603,10 +3004,10 @@
"dev": true,
"optional": true,
"requires": {
- "graceful-fs": "4.1.11",
- "minimatch": "3.0.4",
- "readable-stream": "2.3.3",
- "set-immediate-shim": "1.0.1"
+ "graceful-fs": "^4.1.2",
+ "minimatch": "^3.0.2",
+ "readable-stream": "^2.0.2",
+ "set-immediate-shim": "^1.0.1"
}
},
"regenerate": {
@@ -3627,9 +3028,9 @@
"integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
"dev": true,
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "private": "0.1.8"
+ "babel-runtime": "^6.18.0",
+ "babel-types": "^6.19.0",
+ "private": "^0.1.6"
}
},
"regex-cache": {
@@ -3639,7 +3040,7 @@
"dev": true,
"optional": true,
"requires": {
- "is-equal-shallow": "0.1.3"
+ "is-equal-shallow": "^0.1.3"
}
},
"regexpu-core": {
@@ -3648,9 +3049,9 @@
"integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
"dev": true,
"requires": {
- "regenerate": "1.3.3",
- "regjsgen": "0.2.0",
- "regjsparser": "0.1.5"
+ "regenerate": "^1.2.1",
+ "regjsgen": "^0.2.0",
+ "regjsparser": "^0.1.4"
}
},
"regjsgen": {
@@ -3665,7 +3066,7 @@
"integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
"dev": true,
"requires": {
- "jsesc": "0.5.0"
+ "jsesc": "~0.5.0"
},
"dependencies": {
"jsesc": {
@@ -3701,7 +3102,7 @@
"integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
"dev": true,
"requires": {
- "is-finite": "1.0.2"
+ "is-finite": "^1.0.0"
}
},
"request": {
@@ -3710,38 +3111,28 @@
"integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==",
"dev": true,
"requires": {
- "aws-sign2": "0.7.0",
- "aws4": "1.6.0",
- "caseless": "0.12.0",
- "combined-stream": "1.0.5",
- "extend": "3.0.1",
- "forever-agent": "0.6.1",
- "form-data": "2.3.1",
- "har-validator": "5.0.3",
- "hawk": "6.0.2",
- "http-signature": "1.2.0",
- "is-typedarray": "1.0.0",
- "isstream": "0.1.2",
- "json-stringify-safe": "5.0.1",
- "mime-types": "2.1.17",
- "oauth-sign": "0.8.2",
- "performance-now": "2.1.0",
- "qs": "6.5.1",
- "safe-buffer": "5.1.1",
- "stringstream": "0.0.5",
- "tough-cookie": "2.3.3",
- "tunnel-agent": "0.6.0",
- "uuid": "3.2.1"
- }
- },
- "require-uncached": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz",
- "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=",
- "dev": true,
- "requires": {
- "caller-path": "0.1.0",
- "resolve-from": "1.0.1"
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.6.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.5",
+ "extend": "~3.0.1",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.1",
+ "har-validator": "~5.0.3",
+ "hawk": "~6.0.2",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.17",
+ "oauth-sign": "~0.8.2",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.1",
+ "safe-buffer": "^5.1.1",
+ "stringstream": "~0.0.5",
+ "tough-cookie": "~2.3.3",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.1.0"
}
},
"requirefresh": {
@@ -3750,56 +3141,16 @@
"integrity": "sha1-dC3Mwg86lpGNZsbxWX3I/+vE9vU=",
"dev": true,
"requires": {
- "editions": "1.3.3"
+ "editions": "^1.1.1"
}
},
- "resolve-from": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz",
- "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=",
- "dev": true
- },
- "restore-cursor": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
- "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
- "dev": true,
- "requires": {
- "onetime": "2.0.1",
- "signal-exit": "3.0.2"
- }
- },
- "rimraf": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
- "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
+ "resolve": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.9.0.tgz",
+ "integrity": "sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ==",
"dev": true,
"requires": {
- "glob": "7.1.2"
- }
- },
- "run-async": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
- "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
- "dev": true,
- "requires": {
- "is-promise": "2.1.0"
- }
- },
- "rx-lite": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz",
- "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=",
- "dev": true
- },
- "rx-lite-aggregates": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz",
- "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=",
- "dev": true,
- "requires": {
- "rx-lite": "4.0.8"
+ "path-parse": "^1.0.6"
}
},
"safe-buffer": {
@@ -3814,8 +3165,8 @@
"integrity": "sha1-+CrrS9165R9lPrIPZyizBYyNZEU=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "graceful-fs": "4.1.11"
+ "editions": "^1.1.1",
+ "graceful-fs": "^4.1.4"
}
},
"safeps": {
@@ -3824,11 +3175,11 @@
"integrity": "sha1-s2Kxfd5GVS9xtn1nW1GQKHz3tjw=",
"dev": true,
"requires": {
- "editions": "1.3.3",
- "extract-opts": "3.3.1",
- "safefs": "4.1.0",
- "taskgroup": "5.0.1",
- "typechecker": "4.4.1"
+ "editions": "^1.3.3",
+ "extract-opts": "^3.3.1",
+ "safefs": "^4.1.0",
+ "taskgroup": "^5.0.0",
+ "typechecker": "^4.3.0"
}
},
"sax": {
@@ -3838,9 +3189,9 @@
"dev": true
},
"semver": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
- "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
+ "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
"dev": true
},
"set-immediate-shim": {
@@ -3850,49 +3201,19 @@
"dev": true,
"optional": true
},
- "shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "requires": {
- "shebang-regex": "1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
- },
- "signal-exit": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
- "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
- "dev": true
- },
"slash": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
"dev": true
},
- "slice-ansi": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz",
- "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==",
- "dev": true,
- "requires": {
- "is-fullwidth-code-point": "2.0.0"
- }
- },
"sntp": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
"integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==",
"dev": true,
"requires": {
- "hoek": "4.2.0"
+ "hoek": "4.x.x"
}
},
"source-map": {
@@ -3907,7 +3228,7 @@
"integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
"dev": true,
"requires": {
- "source-map": "0.5.7"
+ "source-map": "^0.5.6"
}
},
"spdx": {
@@ -3916,8 +3237,8 @@
"integrity": "sha1-02wnUIi0jXWpBGzUSoOM5LUzmZg=",
"dev": true,
"requires": {
- "spdx-exceptions": "1.0.5",
- "spdx-license-ids": "1.2.2"
+ "spdx-exceptions": "^1.0.0",
+ "spdx-license-ids": "^1.0.0"
}
},
"spdx-exceptions": {
@@ -3950,41 +3271,14 @@
"integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=",
"dev": true,
"requires": {
- "asn1": "0.2.3",
- "assert-plus": "1.0.0",
- "bcrypt-pbkdf": "1.0.1",
- "dashdash": "1.14.1",
- "ecc-jsbn": "0.1.1",
- "getpass": "0.1.7",
- "jsbn": "0.1.1",
- "tweetnacl": "0.14.5"
- }
- },
- "string-width": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
- "dev": true,
- "requires": {
- "is-fullwidth-code-point": "2.0.0",
- "strip-ansi": "4.0.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
- "requires": {
- "ansi-regex": "3.0.0"
- }
- }
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jsbn": "~0.1.0",
+ "tweetnacl": "~0.14.0"
}
},
"string_decoder": {
@@ -3992,8 +3286,9 @@
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
"dev": true,
+ "optional": true,
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "~5.1.0"
}
},
"stringstream": {
@@ -4008,113 +3303,41 @@
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"dev": true,
"requires": {
- "ansi-regex": "2.1.1"
+ "ansi-regex": "^2.0.0"
}
},
- "strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
- "dev": true
- },
"supports-color": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
"dev": true
},
- "table": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz",
- "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==",
- "dev": true,
- "requires": {
- "ajv": "5.5.2",
- "ajv-keywords": "2.1.1",
- "chalk": "2.3.0",
- "lodash": "4.17.4",
- "slice-ansi": "1.0.0",
- "string-width": "2.1.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
- "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
- "dev": true,
- "requires": {
- "color-convert": "1.9.1"
- }
- },
- "chalk": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
- "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
- "dev": true,
- "requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "1.0.5",
- "supports-color": "4.5.0"
- }
- },
- "supports-color": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
- "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
- "dev": true,
- "requires": {
- "has-flag": "2.0.0"
- }
- }
- }
- },
"taskgroup": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/taskgroup/-/taskgroup-5.0.1.tgz",
"integrity": "sha1-CHNsmyRoOxQ0d0Ix60tzqnw/ebU=",
"dev": true,
"requires": {
- "ambi": "2.5.0",
- "eachr": "3.2.0",
- "editions": "1.3.3",
- "extendr": "3.2.2"
+ "ambi": "^2.5.0",
+ "eachr": "^3.2.0",
+ "editions": "^1.1.1",
+ "extendr": "^3.2.0"
}
},
- "text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
- "dev": true
- },
"textextensions": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/textextensions/-/textextensions-2.1.0.tgz",
"integrity": "sha1-G+DcKg3CRNRL6KCa9qha+5PE28M=",
"dev": true
},
- "through": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
- "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
- "dev": true
- },
"timers-ext": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.2.tgz",
"integrity": "sha1-YcxHp2wavTGV8UUn+XjViulMUgQ=",
"dev": true,
"requires": {
- "es5-ext": "0.10.38",
- "next-tick": "1.0.0"
- }
- },
- "tmp": {
- "version": "0.0.33",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
- "dev": true,
- "requires": {
- "os-tmpdir": "1.0.2"
+ "es5-ext": "~0.10.14",
+ "next-tick": "1"
}
},
"to-fast-properties": {
@@ -4129,7 +3352,7 @@
"integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=",
"dev": true,
"requires": {
- "punycode": "1.4.1"
+ "punycode": "^1.4.1"
}
},
"trim-right": {
@@ -4138,13 +3361,85 @@
"integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
"dev": true
},
+ "tslib": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
+ "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==",
+ "dev": true
+ },
+ "tslint": {
+ "version": "5.12.0",
+ "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.12.0.tgz",
+ "integrity": "sha512-CKEcH1MHUBhoV43SA/Jmy1l24HJJgI0eyLbBNSRyFlsQvb9v6Zdq+Nz2vEOH00nC5SUx4SneJ59PZUS/ARcokQ==",
+ "dev": true,
+ "requires": {
+ "babel-code-frame": "^6.22.0",
+ "builtin-modules": "^1.1.1",
+ "chalk": "^2.3.0",
+ "commander": "^2.12.1",
+ "diff": "^3.2.0",
+ "glob": "^7.1.1",
+ "js-yaml": "^3.7.0",
+ "minimatch": "^3.0.4",
+ "resolve": "^1.3.2",
+ "semver": "^5.3.0",
+ "tslib": "^1.8.0",
+ "tsutils": "^2.27.2"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
+ "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "tsutils": {
+ "version": "2.29.0",
+ "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz",
+ "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.8.1"
+ }
+ },
"tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
"dev": true,
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "^5.0.1"
}
},
"tweetnacl": {
@@ -4154,28 +3449,19 @@
"dev": true,
"optional": true
},
- "type-check": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
- "requires": {
- "prelude-ls": "1.1.2"
- }
- },
"typechecker": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/typechecker/-/typechecker-4.4.1.tgz",
"integrity": "sha1-+XuV9RsDhBchLWd9RaNz7nvO1+Y=",
"dev": true,
"requires": {
- "editions": "1.3.3"
+ "editions": "^1.3.3"
}
},
- "typedarray": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
- "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+ "typescript": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.2.2.tgz",
+ "integrity": "sha512-VCj5UiSyHBjwfYacmDuc/NOk4QQixbE+Wn7MFJuS0nRuPQbof132Pw4u53dm264O8LPc2MVsc7RJNml5szurkg==",
"dev": true
},
"user-home": {
@@ -4188,7 +3474,8 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
- "dev": true
+ "dev": true,
+ "optional": true
},
"uuid": {
"version": "3.2.1",
@@ -4202,7 +3489,7 @@
"integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=",
"dev": true,
"requires": {
- "user-home": "1.1.1"
+ "user-home": "^1.1.1"
}
},
"verror": {
@@ -4211,49 +3498,25 @@
"integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
"dev": true,
"requires": {
- "assert-plus": "1.0.0",
+ "assert-plus": "^1.0.0",
"core-util-is": "1.0.2",
- "extsprintf": "1.3.0"
- }
- },
- "which": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
- "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==",
- "dev": true,
- "requires": {
- "isexe": "2.0.0"
+ "extsprintf": "^1.2.0"
}
},
- "wordwrap": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
- "dev": true
- },
"wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
"dev": true
},
- "write": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz",
- "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=",
- "dev": true,
- "requires": {
- "mkdirp": "0.5.1"
- }
- },
"xml2js": {
"version": "0.4.19",
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz",
"integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==",
"dev": true,
"requires": {
- "sax": "1.2.4",
- "xmlbuilder": "9.0.4"
+ "sax": ">=0.6.0",
+ "xmlbuilder": "~9.0.1"
}
},
"xmlbuilder": {
@@ -4261,12 +3524,6 @@
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz",
"integrity": "sha1-UZy0ymhtAFqEINNJbz8MruzKWA8=",
"dev": true
- },
- "yallist": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
- "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
- "dev": true
}
}
}
diff --git a/package.json b/package.json
index 390bbef..f27ba06 100755
--- a/package.json
+++ b/package.json
@@ -50,7 +50,8 @@
"contributors": [
"Benjamin Lupton (http://balupton.com)",
"Tim Oxley (http://campjs.com/)",
- "Zearin (https://github.com/Zearin)"
+ "Zearin (https://github.com/Zearin)",
+ "Arne Schubert (https://github.com/atd-schubert)"
],
"bugs": {
"url": "https://github.com/bevry/progressbar/issues"
@@ -91,6 +92,7 @@
],
"main": "index.js",
"dependencies": {
+ "@types/progress": "^2.0.3",
"editions": "^1.3.3",
"progress": "2.0.0"
},
@@ -98,22 +100,23 @@
"assert-helpers": "^4.5.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
- "eslint": "^4.16.0",
"joe": "^2.0.2",
"joe-reporter-console": "^2.0.1",
- "projectz": "^1.4.0"
+ "projectz": "^1.4.0",
+ "tslint": "^5.12.0",
+ "typescript": "^3.2.2"
},
"scripts": {
"our:setup": "npm run our:setup:npm",
"our:setup:npm": "npm install",
"our:clean": "rm -Rf ./docs ./es2015 ./es5 ./out",
- "our:compile": "npm run our:compile:es2015",
+ "our:compile": "npm run transpile && npm run our:compile:es2015",
"our:compile:es2015": "babel ./source --out-dir ./es2015 --presets es2015",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
- "our:verify": "npm run our:verify:eslint",
- "our:verify:eslint": "eslint --fix ./source",
- "our:test": "npm run our:verify && npm test",
+ "our:verify": "npm run our:verify:tslint",
+ "our:verify:tslint": "tslint --fix source/*.ts",
+ "our:test": "npm run our:verify && npm run test:only",
"our:release": "npm run our:release:prepare && npm run our:release:check && npm run our:release:tag && npm run our:release:push",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:check": "npm run our:release:check:changelog && npm run our:release:check:dirty",
@@ -121,6 +124,9 @@
"our:release:check:dirty": "git diff --exit-code",
"our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
"our:release:push": "git push origin master && git push origin --tags",
- "test": "node --harmony ./test.js --joe-reporter=console"
+ "test:only": "node --harmony ./test.js --joe-reporter=console",
+ "transpile": "tsc",
+ "lint": "tslint source/*.ts",
+ "test": "npm run transpile && npm run lint && npm run test:only"
}
}
diff --git a/source/index.js b/source/index.js
deleted file mode 100755
index 38a19ec..0000000
--- a/source/index.js
+++ /dev/null
@@ -1,185 +0,0 @@
-'use strict'
-
-const Progress = require('progress')
-
-class ProgressBar extends require('events').EventEmitter {
-
- static create (...args) {
- return new this(...args)
- }
-
- constructor (...args) {
- super(...args)
-
- this._tick = null
- this._total = null
- this._bar = null
- this._step = null
- this._domain = null
-
- this.start()
- }
-
- start () {
- const me = this
- this._tick = 0
- this._total = 1
- try {
- this._domain = require('domain').create()
- }
- catch (err) { }
-
- // bubble domain errors
- if (this._domain) {
- this._domain.on('error', function (err) {
- me.emit('error', err)
- })
- }
-
- // destroy the old progressbar and create our new one
- this.on('step', function () {
- me.destroy()
- const message = `Performing ${me._step} at :current/:total :percent :bar`
- if (me._domain) {
- me._domain.run(me.onStep.bind(me, message))
- }
- else {
- me.onStep()
- }
- })
-
- // update our bar's total
- this.on('total', function () {
- if (me._bar) me._bar.total = me._total
- })
-
- // update our bar's progress
- this.on('tick', function () {
- if (me._bar) me._bar.tick(me._tick - me._bar.curr)
- })
-
- // chain
- return this
- }
-
- onStep (message) {
- try {
- this._bar = new Progress(message, {
- width: 50,
- total: this._total,
- clear: true
- })
- }
- catch (err) {
- if (this._domain) {
- this._domain.emit('error', err)
- }
- else {
- this.emit('error', err)
- }
- }
- }
-
- step (s) {
- if (s != null) {
- this.setStep(s)
- }
- else {
- throw new Error('step is now just an alias for setStep to ensure consistent return value')
- }
- return this
- }
- getStep () {
- return this._step
- }
- setStep (s) {
- if (!s) throw new Error('no step param defined')
- this._step = s
- this.emit('step', this._step)
- this.setTick(0)
- this.setTotal(1)
- return this
- }
-
- total (t) {
- if (t != null) {
- this.setTotal(t)
- }
- else {
- this.addTotal()
- }
- return this
- }
- getTotal () {
- return this._total
- }
- addTotal (t = 1) {
- this._total += t
- this.emit('total', this._total)
- return this
- }
- setTotal (t) {
- this._total = t || 1 // must be truthy rather than null, otherwise: RangeError: Invalid array length
- this.emit('total', this._total)
- return this
- }
-
- tick (t) {
- if (t != null) {
- this.setTick(t)
- }
- else {
- this.addTick()
- }
- return this
- }
- getTick () {
- return this._tick
- }
- addTick (t = 1) {
- this._tick += t
- this.emit('tick', this._tick)
- return this
- }
- setTick (t) {
- this._tick = t
- this.emit('tick', this._tick)
- return this
- }
-
- destroy (next) {
- if (this._bar != null) {
- const me = this
- if (this._domain) {
- this._domain.run(function () {
- me._bar.terminate()
- })
- this._domain.run(function () {
- me._bar = null
- })
- }
- else {
- me._bar.terminate()
- me._bar = null
- }
- }
- if (next) next()
- return this
- }
- finish (next) {
- const me = this
- this.destroy(function () {
- me.emit('finish')
- if (me._domain) me._domain.exit()
- me.removeAllListeners()
- if (next) next()
- })
- return this
- }
-}
-
-// Export
-module.exports = ProgressBar
-
-// Backwards API Compat
-module.exports.ProgressBar = ProgressBar
diff --git a/source/index.ts b/source/index.ts
new file mode 100755
index 0000000..ef7d162
--- /dev/null
+++ b/source/index.ts
@@ -0,0 +1,172 @@
+import Domain from "domain";
+import { EventEmitter } from "events";
+import Progress from "progress";
+
+class ProgressBar extends EventEmitter {
+ public static ProgressBar = ProgressBar; // Backwards API Compat
+
+ public static create(): ProgressBar {
+ return new ProgressBar();
+ }
+
+ private _tick = 0;
+ private _total = 1;
+ private _bar: Progress | null = null;
+ private _step: string | null = null;
+ private _domain: Domain.Domain | null = null;
+
+ constructor() {
+ super();
+ this.start();
+ }
+
+ public step(s: string): this {
+ if (s != null) {
+ this.setStep(s);
+ } else {
+ throw new Error("step is now just an alias for setStep to ensure consistent return value");
+ }
+ return this;
+ }
+ public getStep(): string | null {
+ return this._step;
+ }
+ public setStep(s: string): this {
+ if (!s) { throw new Error("no step param defined"); }
+ this._step = s;
+ this.emit("step", this._step);
+ this.setTick(0);
+ this.setTotal(1);
+ return this;
+ }
+
+ public total(t: number): this {
+ if (t != null) {
+ this.setTotal(t);
+ } else {
+ this.addTotal();
+ }
+ return this;
+ }
+ public getTotal(): number {
+ return this._total;
+ }
+ public addTotal(t: number = 1): this {
+ this._total += t;
+ this.emit("total", this._total);
+ return this;
+ }
+ public setTotal(t: number): this {
+ this._total = t || 1; // must be truthy rather than null, otherwise: RangeError: Invalid array length
+ this.emit("total", this._total);
+ return this;
+ }
+
+ public tick(t: number | null) {
+ if (t != null) {
+ this.setTick(t);
+ } else {
+ this.addTick();
+ }
+ return this;
+ }
+ public getTick(): number {
+ return this._tick;
+ }
+ public addTick(t: number = 1): this {
+ this._tick += t;
+ this.emit("tick", this._tick);
+ return this;
+ }
+ public setTick(t: number): this {
+ this._tick = t;
+ this.emit("tick", this._tick);
+ return this;
+ }
+
+ public finish(next?: () => void) {
+ this.destroy(() => {
+ this.emit("finish");
+ if (this._domain) { this._domain.exit(); }
+ this.removeAllListeners();
+ if (next) { next(); }
+ });
+ return this;
+ }
+
+ protected destroy(next?: () => void) {
+ if (this._bar != null) {
+ if (this._domain) {
+ this._domain.run(() => {
+ if (this._bar) {
+ this._bar.terminate();
+ }
+ });
+ this._domain.run(() => {
+ this._bar = null;
+ });
+ } else {
+ this._bar.terminate();
+ this._bar = null;
+ }
+ }
+ if (next) { next(); }
+ return this;
+ }
+ protected start(): this {
+ this._tick = 0;
+ this._total = 1;
+ try {
+ this._domain = Domain.create();
+ } catch (err) { /* Just ignore */ }
+
+ // bubble domain errors
+ if (this._domain) {
+ this._domain.on("error", (err) => {
+ this.emit("error", err);
+ });
+ }
+
+ // destroy the old progressbar and create our new one
+ this.on("step", () => {
+ this.destroy();
+ const message = `Performing ${this._step} at :current/:total :percent :bar`;
+ if (this._domain) {
+ this._domain.run(this.onStep.bind(this, message));
+ } else {
+ this.onStep(message);
+ }
+ });
+
+ // update our bar's total
+ this.on("total", () => {
+ if (this._bar) { this._bar.total = this._total; }
+ });
+
+ // update our bar's progress
+ this.on("tick", () => {
+ if (this._bar) { this._bar.tick(this._tick - this._bar.curr); }
+ });
+
+ // chain
+ return this;
+ }
+
+ private onStep(message: string) {
+ try {
+ this._bar = new Progress(message, {
+ clear: true,
+ total: this._total,
+ width: 50,
+ });
+ } catch (err) {
+ if (this._domain) {
+ this._domain.emit("error", err);
+ } else {
+ this.emit("error", err);
+ }
+ }
+ }
+}
+
+export = ProgressBar;
diff --git a/source/test.js b/source/test.ts
similarity index 57%
rename from source/test.js
rename to source/test.ts
index 8607d4b..c300502 100644
--- a/source/test.js
+++ b/source/test.ts
@@ -1,6 +1,6 @@
-'use strict'
+import ProgressBar from "../";
-const progress = require('../').create().step('the task you are currently performing')
+const progress = ProgressBar.create().step("the task you are currently performing");
// use an array of steps that execute one second after each other
// as if we do them all instantly
@@ -12,9 +12,9 @@ const steps = [
() => progress.setTick(3),
() => progress.addTick(),
() => progress.addTick(),
- () => progress.finish() // remove and destroy the progress bar
-]
+ () => progress.finish(), // remove and destroy the progress bar
+];
-steps.forEach(function (step, index) {
- setTimeout(step, index * 1000)
-})
+steps.forEach((step, index) => {
+ setTimeout(step, index * 1000);
+});
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..bf2dd06
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,16 @@
+{
+ "compilerOptions": {
+ "module": "commonjs",
+ "esModuleInterop": true,
+ "target": "ES2017",
+ "sourceMap": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUnusedParameters": true,
+ "noUnusedLocals": true,
+ "strict": true
+ },
+ "exclude": [
+ "./node_modules"
+ ]
+}
diff --git a/tslint.json b/tslint.json
new file mode 100644
index 0000000..628a496
--- /dev/null
+++ b/tslint.json
@@ -0,0 +1,12 @@
+{
+ "extends": "tslint:recommended",
+ "rules": {
+ "indent": [
+ true,
+ "tabs"
+ ],
+ "variable-name": [
+ false
+ ]
+ }
+}