babel-preset-es2015 compile class error

Created on 31 May 2017  ยท  35Comments  ยท  Source: babel/babel

Choose one: is this a bug report or feature request?

Input Code


class Test {
    testFun() {
        return 0;
    }
}

Babel Configuration (.babelrc, package.json, cli command)

{
  "babel-preset-es2015": "7.0.0-alpha.10",
}

Expected Behavior



I used babel-preset-es2015 7.0.0-alpha.10
when I compile Test.js
compile error "path.get(...).arrowFunctionToExpression is not a function while parsing"

regression bug outdated

Most helpful comment

This is likely the opposite, you're using the new preset with an older babel-core.

All 35 comments

Hey @acklj1! We really appreciate you taking the time to report an issue. The collaborators
on this project attempt to help as many people as possible, but we're a limited number of volunteers,
so it's possible this won't be addressed swiftly.

If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack
community that typically always has someone willing to help. You can sign-up here
for an invite.

Seems to be a regression from #5677.

Could you please provide the stack trace?

I think it's a bug.
I use "babel-preset-es2015": "7.0.0-alpha.9".
compile class Test, who have a function named "testFun", no problem
but when I used 7.0.0-alpha.10, compile error "path.get(...).arrowFunctionToExpression is not a function while parsing".
when I used 7.0.0-alpha.10, if class Test's function
testFun() {
return 0;
} // have problem
testFun=function() {
return 0;
} // no problem
when I used 7.0.0-alpha.10, if class Test's function's name is constructor(only constructor), no problem.
constructor() {
return 0;
} // no problem
Sorry, I'm not very good at English.

I think 7.0.0-alpha.10
"path.get("callee").arrowFunctionToExpression();"
Influenced class's function(this bug)

Stack Trace:

TypeError: path.arrowFunctionToExpression is not a function
    at PluginPass.ArrowFunctionExpression (node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:11:14)
    at newFn (node_modules/babel-core/node_modules/babel-traverse/lib/visitors.js:276:21)
    at NodePath._call (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:76:18)
    at NodePath.call (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:48:17)
    at NodePath.visit (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:105:12)
    at TraversalContext.visitQueue (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:150:16)
    at TraversalContext.visitSingle (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:108:19)
    at TraversalContext.visit (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:192:19)
    at Function.traverse.node (node_modules/babel-core/node_modules/babel-traverse/lib/index.js:114:17)
    at NodePath.visit (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:115:19)

@xtuc the PR that removed shadow functions, removed methods on path such as arrowFunctionToExpression. This means there is an old version of plugins like babel-plugin-transform-es2015-arrow-functions that is running against a newer version of babel-traverse that removed those methods. Not sure why this is the case yet though. Although it might be that other bug I found, hopefully the next release fixes this..

This is likely the opposite, you're using the new preset with an older babel-core.

Repro:

git clone --depth 1 [email protected]:twbs/bootstrap.git && cd bootstrap yarn && yarn run js-compile


Babel deps tree


โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-core@^6.24.1
โ”‚  โ”œโ”€ babel-polyfill@^6.23.0
โ”‚  โ”œโ”€ babel-register@^6.24.1
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-code-frame@^6.22.0
โ”‚  โ”œโ”€ babel-generator@^6.24.1
โ”‚  โ”œโ”€ babel-helpers@^6.24.1
โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”œโ”€ babel-register@^6.24.1
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”œโ”€ babel-template@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-traverse@^6.24.1
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ babel-traverse@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-code-frame@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-code-frame@^6.22.0
โ”‚  โ”œโ”€ babel-traverse@^6.23.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-code-frame@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ babel-types@^6.23.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”œโ”€ babel-template@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-traverse@^6.24.1
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-code-frame@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.24.1
โ”‚  โ””โ”€ [email protected]
โ”‚     โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.10
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.10
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.10
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.10
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-core@^6.24.1
โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-code-frame@^6.16.0
โ”‚  โ”œโ”€ babel-runtime@^6.18.0
โ”‚  โ”œโ”€ babel-types@^6.19.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0

If you're using a 7.0 alpha preset, you need to use the 7.0 alpha babel-core/cli too

@loganfsmyth Oops yeah that's what I meant - if you have any 6.x packages they may not be compatible (and that PR shows it)

Can confirm downgrading babel-preset-es2015 to ^6 works for my case.

What's the top level package.json look like @silverwind? It should be a preset at 6.x and babel-cli/core/loader at 6.x or both at 7.x-alpha

Yeah that's really weird.. definetely not what we intended.. ๐Ÿ˜…

"babel-cli": "7.0.0-alpha.7",
"babel-preset-es2015": "7.0.0-alpha.7"
"babel-cli": "^6",
"babel-preset-es2015": "^6"

EDIT: during alpha, we will try to republish all the packages in sync so they can all be the same version number (at least for the ones in the monorepo)

Using a semver range on something marked alpha is a hugely bad idea

Yeah it should be pinned. Should we be rethinking peerDeps on babel-core? I'm actually surprised it has been working for that long

I don't have a firm enough grasp of just how peerdeps work, so it's hard to answer. At the very least, the plugins/presets could absolutely validate the Babel version.

"devDependencies": {
    "babel-core": "7.0.0-alpha.10",
    "babel-cli": "7.0.0-alpha.10",
    "babel-plugin-static-fs": "^1.1.0",
    "babel-plugin-version-inline": "^1.0.0",
    "babel-preset-es2015": "^7.0.0-alpha.10",
    "babel-preset-es2016": "^7.0.0-alpha.10",
    "babel-preset-es2017": "^7.0.0-alpha.10",
    "babel-preset-react": "^7.0.0-alpha.10",
    "babel-preset-stage-0": "^7.0.0-alpha.10",
    "babel-preset-stage-1": "^7.0.0-alpha.10",
    "babel-preset-stage-2": "^7.0.0-alpha.10",
    "babel-preset-stage-3": "^7.0.0-alpha.10",
    "babelify": "^7.3.0",
    "browserify": "^13.1.0",
    "chalk": "^1.1.3",
    "gulp": "^3.9.1",
    "gulp-if": "^2.0.1",
    "gulp-sourcemaps": "^1.6.0",
    "gulp-uglify": "^2.0.0",
    "minimist": "^1.2.0",
    "vinyl-buffer": "^1.0.0",
    "vinyl-source-stream": "^1.1.0",
    "watchify": "^3.9.0"
}

still "path.get(...).arrowFunctionToExpression is not a function while parsing"
when "babel-preset-es2015": "7.0.0-alpha.9", no problem

@acklj1 [email protected] is unfortunately the version that uses babel-core@6. I don't think we've currently published a release of babelify that will work with Babel 7.x-alpha

I've run into a similar problem, in my case babel-plugin-transform-es2015-arrow-functions was trying to use a stable version of babel-traverse, so I had to install the alpha version by myself.

Here's the workaround I've found to get it working:

Error:

~/web/personal/random-utilities master* โ‡ก
โฏ npm run test:jest

> [email protected] test:jest /Users/alexxnica/web/personal/random-utilities
> jest --env=node --no-cache

 FAIL  src/__tests__/sum.test.js
  โ— Test suite failed to run

    TypeError: /Users/alexxnica/web/personal/random-utilities/src/__tests__/sum.test.js: path.arrowFunctionToExpression is not a function

      at PluginPass.ArrowFunctionExpression (node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:11:14)
      at newFn (node_modules/babel-traverse/lib/visitors.js:276:21)
      at NodePath._call (node_modules/babel-traverse/lib/path/context.js:76:18)
      at NodePath.call (node_modules/babel-traverse/lib/path/context.js:48:17)
      at NodePath.visit (node_modules/babel-traverse/lib/path/context.js:105:12)
      at TraversalContext.visitQueue (node_modules/babel-traverse/lib/context.js:150:16)
      at TraversalContext.visitMultiple (node_modules/babel-traverse/lib/context.js:103:17)
      at TraversalContext.visit (node_modules/babel-traverse/lib/context.js:190:19)
      at Function.traverse.node (node_modules/babel-traverse/lib/index.js:114:17)
      at NodePath.visit (node_modules/babel-traverse/lib/path/context.js:115:19)

Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        5.595s
Ran all test suites.

Workaround:

~/web/personal/random-utilities master* โ‡ก 9s
โฏ npm i --no-save babel-traverse@next

+ [email protected]
removed 11 packages and updated 2 packages in 10.692s

Successful result:

~/web/personal/random-utilities master* โ‡ก 11s
โฏ npm run test:jest

> [email protected] test:jest /Users/alexxnica/web/personal/random-utilities
> jest --env=node --no-cache

 PASS  src/__tests__/sum.test.js (6.446s)
  โœ“ adds 1 + 2 to equal 3 (7ms)

Test Suites: 1 passed, 1 total
Tests:       1 passed, 1 total
Snapshots:   0 total
Time:        6.506s
Ran all test suites.
## Screenshot: ![unknown](https://user-images.githubusercontent.com/14338588/26994684-f71e7fdc-4d3e-11e7-8bc7-3bfa681cc937.png)

You definetely shouldn't have to install traverse explicitly - something that is using babel-{core/cli/loader} is on 6.x.

This isn't a bug per se, just that the other ecosystem packages already updated to babel-core 7.x (and it wasn't an issue earlier probably since we never made any other breaking changes before)

Solutions: need to update other packages like gulp, jest, etc to also have alpha versions.. and on the babel side we need to figure out a better error message if you try to use a plugin with an incompatible babel-core version?

I have fixed โ€œPluginPass.ArrowFunctionExpressionโ€ error by replacing โ€˜=>โ€™ with a function!
Now I got no error!

Ok all the issues seem to be with using an older babel-core and newer preset (or vice-versa), will close.

We'll need to figure out a way to determine compat with a versioning thing (to throw if it's not the same or compat to a babel-core version)

You sure that is the issue @hzoo ? I am running same version of both of them, and I am still getting the: path.arrowFunctionToExpression is not a function error.

Even with the same versions, I had to use "function", instead of "=>" on my test file. That is not doable for my whole codebase.

I'm getting this error with the following deps.

"babel-cli": "^7.0.0-beta.1",
"babel-jest": "^21.0.2",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.1",
"babel-preset-env": "^2.0.0-beta.1",
"babel-preset-react": "^7.0.0-beta.1",

Can you run yarn list or npm list?

Now I'm getting a different error.


Here is the error
yarn test v1.0.2
$ jest
FAIL ./test.js
โ— Test suite failed to run

Cannot find module 'fbjs/lib/warning' from 'ReactNoopUpdateQueue.js'

  at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:192:17)
  at Object.<anonymous> (node_modules/react/lib/ReactNoopUpdateQueue.js:13:15)

Test Suites: 1 failed, 1 total
Tests: 0 total
Snapshots: 0 total
Time: 0.817s
Ran all test suites.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.


Here is my package.json

{
  "name": "wtf",
  "version": "1.0.0",
  "main": "index.js",
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^7.0.0-beta.1",
    "babel-jest": "^21.0.2",
    "babel-plugin-transform-object-rest-spread": "^7.0.0-beta.1",
    "babel-preset-env": "^2.0.0-beta.1",
    "babel-preset-react": "^7.0.0-beta.1",
    "jest": "^21.1.0"
  },
  "scripts": {
    "test": "jest"
  },
  "dependencies": {
    "react": "^15.6.1",
    "react-dom": "^15.6.1"
  }
}


And here is yarn list

yarn list v1.0.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ acorn@^4.0.4
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ co@^4.6.0
โ”‚  โ””โ”€ json-stable-stringify@^1.0.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ kind-of@^3.0.2
โ”‚  โ”œโ”€ longest@^1.0.1
โ”‚  โ””โ”€ repeat-string@^1.5.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ color-convert@^1.9.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ micromatch@^2.1.5
โ”‚  โ””โ”€ normalize-path@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ default-require-extensions@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ delegates@^1.0.0
โ”‚  โ””โ”€ readable-stream@^2.0.6
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ sprintf-js@~1.0.2
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ arr-flatten@^1.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ lodash@^4.14.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chokidar@^1.6.1
โ”‚  โ”œโ”€ commander@^2.8.1
โ”‚  โ”œโ”€ convert-source-map@^1.1.0
โ”‚  โ”œโ”€ fs-readdir-recursive@^1.0.0
โ”‚  โ”œโ”€ glob@^7.0.0
โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ output-file-sync@^2.0.0
โ”‚  โ”œโ”€ slash@^1.0.0
โ”‚  โ”œโ”€ source-map@^0.5.0
โ”‚  โ””โ”€ v8flags@^3.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^1.1.3
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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
โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”œโ”€ js-tokens@^3.0.2
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ chalk@^2.0.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ””โ”€ js-tokens@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ jsesc@^2.5.1
โ”‚  โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”‚  โ”œโ”€ source-map@^0.5.0
โ”‚  โ”‚  โ””โ”€ trim-right@^1.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ debug@^3.0.1
โ”‚  โ”‚  โ”œโ”€ globals@^10.0.0
โ”‚  โ”‚  โ”œโ”€ invariant@^2.2.0
โ”‚  โ”‚  โ””โ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^2.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ convert-source-map@^1.1.0
โ”‚  โ”œโ”€ debug@^3.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ json5@^0.5.0
โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ”œโ”€ resolve@^1.3.2
โ”‚  โ””โ”€ source-map@^0.5.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-messages@^6.23.0
โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”œโ”€ babel-types@^6.26.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^1.0.3
โ”‚  โ”œโ”€ detect-indent@^4.0.0
โ”‚  โ”œโ”€ jsesc@^1.3.0
โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”œโ”€ source-map@^0.5.6
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ trim-right@^1.0.1
โ”œโ”€ babel-helper-builder-binary-assignment-operator-visitor@7.0.0-beta.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^2.0.0
โ”‚  โ””โ”€ esutils@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ lodash@^4.2.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ lodash@^4.2.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ chalk@^2.0.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ””โ”€ js-tokens@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ debug@^3.0.1
โ”‚  โ”‚  โ”œโ”€ globals@^10.0.0
โ”‚  โ”‚  โ”œโ”€ invariant@^2.2.0
โ”‚  โ”‚  โ””โ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^2.0.0
โ”‚  โ””โ”€ [email protected]
โ”‚     โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-plugin-istanbul@^4.0.0
โ”‚  โ””โ”€ babel-preset-jest@^21.0.2
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ babel-runtime@^6.22.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ find-up@^2.1.0
โ”‚  โ”œโ”€ istanbul-lib-instrument@^1.7.5
โ”‚  โ””โ”€ test-exclude@^4.1.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-beta.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ lodash@^4.2.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ regexpu-core@^4.0.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-helper-builder-binary-assignment-operator-visitor@7.0.0-beta.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-helper-regex@^6.26.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.26.0
โ”‚  โ”‚  โ””โ”€ lodash@^4.17.4
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^1.0.3
โ”‚  โ”œโ”€ regexpu-core@^4.1.3
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ core-js@^2.4.0
โ”‚  โ””โ”€ regenerator-runtime@^0.11.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-beta.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-plugin-transform-unicode-property-regex@^2.0.5
โ”‚  โ”œโ”€ browserslist@^2.4.0
โ”‚  โ”œโ”€ invariant@^2.2.2
โ”‚  โ””โ”€ semver@^5.3.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ babel-plugin-jest-hoist@^21.0.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ core-js@^2.4.0
โ”‚  โ”œโ”€ find-cache-dir@^1.0.0
โ”‚  โ”œโ”€ home-or-tmp@^3.0.0
โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ”œโ”€ pirates@^3.0.1
โ”‚  โ””โ”€ source-map-support@^0.4.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ core-js@^2.4.0
โ”‚  โ””โ”€ regenerator-runtime@^0.11.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ lodash@^4.2.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ chalk@^2.0.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ””โ”€ js-tokens@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ debug@^3.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ globals@^10.0.0
โ”‚  โ”œโ”€ invariant@^2.2.0
โ”‚  โ””โ”€ lodash@^4.2.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”œโ”€ lodash@^4.2.0
โ”‚  โ””โ”€ to-fast-properties@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ tweetnacl@^0.14.3
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ inherits@~2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ balanced-match@^1.0.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ expand-range@^1.8.1
โ”‚  โ”œโ”€ preserve@^0.2.0
โ”‚  โ””โ”€ repeat-element@^1.1.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ caniuse-lite@^1.0.30000718
โ”‚  โ””โ”€ electron-to-chromium@^1.3.18
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ node-int64@^0.4.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ align-text@^0.1.3
โ”‚  โ””โ”€ lazy-cache@^1.0.3
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ ansi-styles@^3.1.0
โ”‚  โ”œโ”€ escape-string-regexp@^1.0.5
โ”‚  โ””โ”€ supports-color@^4.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ string-width@^1.0.1
โ”‚  โ”œโ”€ strip-ansi@^3.0.1
โ”‚  โ””โ”€ wrap-ansi@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ color-name@^1.1.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ delayed-stream@~1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ fbjs@^0.8.9
โ”‚  โ”œโ”€ loose-envify@^1.3.1
โ”‚  โ””โ”€ object-assign@^4.1.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ lru-cache@^4.0.1
โ”‚  โ”œโ”€ shebang-command@^1.2.0
โ”‚  โ””โ”€ which@^1.2.9
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ assert-plus@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ strip-bom@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ repeating@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ jsbn@~0.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ iconv-lite@~0.4.13
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ prr@~0.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-arrayish@^0.2.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ esprima@^3.1.3
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ estraverse@^4.2.0
โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”œโ”€ optionator@^0.8.1
โ”‚  โ””โ”€ source-map@~0.5.6
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ merge@^1.1.3
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ cross-spawn@^5.0.1
โ”‚  โ”œโ”€ get-stream@^3.0.0
โ”‚  โ”œโ”€ is-stream@^1.1.0
โ”‚  โ”œโ”€ npm-run-path@^2.0.0
โ”‚  โ”œโ”€ p-finally@^1.0.0
โ”‚  โ”œโ”€ signal-exit@^3.0.0
โ”‚  โ””โ”€ strip-eof@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-posix-bracket@^0.1.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ fill-range@^2.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ ansi-styles@^3.2.0
โ”‚  โ”œโ”€ jest-diff@^21.1.0
โ”‚  โ”œโ”€ jest-get-type@^21.0.2
โ”‚  โ”œโ”€ jest-matcher-utils@^21.1.0
โ”‚  โ”œโ”€ jest-message-util@^21.1.0
โ”‚  โ””โ”€ jest-regex-util@^21.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-extglob@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ bser@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ core-js@^1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ isomorphic-fetch@^2.1.1
โ”‚  โ”œโ”€ loose-envify@^1.0.0
โ”‚  โ”œโ”€ object-assign@^4.1.0
โ”‚  โ”œโ”€ promise@^7.1.1
โ”‚  โ”œโ”€ setimmediate@^1.0.5
โ”‚  โ””โ”€ ua-parser-js@^0.7.9
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ glob@^7.0.3
โ”‚  โ””โ”€ minimatch@^3.0.3
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ is-number@^2.1.0
โ”‚  โ”œโ”€ isobject@^2.0.0
โ”‚  โ”œโ”€ randomatic@^1.1.3
โ”‚  โ”œโ”€ repeat-element@^1.1.2
โ”‚  โ””โ”€ repeat-string@^1.5.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ commondir@^1.0.1
โ”‚  โ”œโ”€ make-dir@^1.0.0
โ”‚  โ””โ”€ pkg-dir@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ locate-path@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ for-in@^1.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ asynckit@^0.4.0
โ”‚  โ”œโ”€ combined-stream@^1.0.5
โ”‚  โ””โ”€ mime-types@^2.1.12
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ nan@^2.3.0
โ”‚  โ””โ”€ node-pre-gyp@^0.6.36
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ fstream@^1.0.0
โ”‚  โ”œโ”€ inherits@2
โ”‚  โ””โ”€ minimatch@^3.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.2
โ”‚  โ”œโ”€ inherits@~2.0.0
โ”‚  โ”œโ”€ mkdirp@>=0.5 0
โ”‚  โ””โ”€ rimraf@2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ assert-plus@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ glob-parent@^2.0.0
โ”‚  โ””โ”€ is-glob@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-glob@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ async@^1.4.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ optimist@^0.6.1
โ”‚  โ”œโ”€ source-map@^0.4.4
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ amdefine@>=0.0.4
โ”‚  โ””โ”€ uglify-js@^2.6
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ ajv@^4.9.1
โ”‚  โ””โ”€ har-schema@^1.0.5
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ ansi-regex@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ whatwg-encoding@^1.0.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ assert-plus@^0.2.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ jsprim@^1.2.2
โ”‚  โ””โ”€ sshpk@^1.7.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ once@^1.3.0
โ”‚  โ””โ”€ wrappy@1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ loose-envify@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ binary-extensions@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ builtin-modules@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ ci-info@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-primitive@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ number-is-nan@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ number-is-nan@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-extglob@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ kind-of@^3.0.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ node-fetch@^1.0.1
โ”‚  โ””โ”€ whatwg-fetch@>=0.10.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ async@^2.1.4
โ”‚  โ”œโ”€ fileset@^2.0.2
โ”‚  โ”œโ”€ istanbul-lib-coverage@^1.1.1
โ”‚  โ”œโ”€ istanbul-lib-hook@^1.0.7
โ”‚  โ”œโ”€ istanbul-lib-instrument@^1.8.0
โ”‚  โ”œโ”€ istanbul-lib-report@^1.1.1
โ”‚  โ”œโ”€ istanbul-lib-source-maps@^1.2.1
โ”‚  โ”œโ”€ istanbul-reports@^1.1.2
โ”‚  โ”œโ”€ js-yaml@^3.7.0
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ””โ”€ once@^1.4.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ append-transform@^0.4.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-generator@^6.18.0
โ”‚  โ”œโ”€ babel-template@^6.16.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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@^6.18.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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@^6.18.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^1.0.3
โ”‚  โ”œโ”€ babylon@^6.18.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ istanbul-lib-coverage@^1.1.1
โ”‚  โ”œโ”€ semver@^5.3.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ istanbul-lib-coverage@^1.1.1
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ”œโ”€ path-parse@^1.0.5
โ”‚  โ”œโ”€ supports-color@^3.1.2
โ”‚  โ””โ”€ [email protected]
โ”‚     โ””โ”€ has-flag@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ debug@^2.6.3
โ”‚  โ”œโ”€ istanbul-lib-coverage@^1.1.1
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ”œโ”€ rimraf@^2.6.1
โ”‚  โ””โ”€ source-map@^0.5.3
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ handlebars@^4.0.3
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ throat@^4.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ ansi-escapes@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ glob@^7.1.2
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ is-ci@^1.0.10
โ”‚  โ”œโ”€ istanbul-api@^1.1.1
โ”‚  โ”œโ”€ istanbul-lib-coverage@^1.0.1
โ”‚  โ”œโ”€ istanbul-lib-instrument@^1.4.2
โ”‚  โ”œโ”€ istanbul-lib-source-maps@^1.1.0
โ”‚  โ”œโ”€ jest-changed-files@^21.1.0
โ”‚  โ”œโ”€ jest-config@^21.1.0
โ”‚  โ”œโ”€ jest-environment-jsdom@^21.1.0
โ”‚  โ”œโ”€ jest-haste-map@^21.1.0
โ”‚  โ”œโ”€ jest-message-util@^21.1.0
โ”‚  โ”œโ”€ jest-regex-util@^21.1.0
โ”‚  โ”œโ”€ jest-resolve-dependencies@^21.1.0
โ”‚  โ”œโ”€ jest-runner@^21.1.0
โ”‚  โ”œโ”€ jest-runtime@^21.1.0
โ”‚  โ”œโ”€ jest-snapshot@^21.1.0
โ”‚  โ”œโ”€ jest-util@^21.1.0
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ”œโ”€ node-notifier@^5.0.2
โ”‚  โ”œโ”€ pify@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ slash@^1.0.0
โ”‚  โ”œโ”€ string-length@^2.0.0
โ”‚  โ”œโ”€ strip-ansi@^4.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ ansi-regex@^3.0.0
โ”‚  โ”œโ”€ which@^1.2.12
โ”‚  โ”œโ”€ worker-farm@^1.3.1
โ”‚  โ””โ”€ yargs@^9.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ glob@^7.1.1
โ”‚  โ”œโ”€ jest-environment-jsdom@^21.1.0
โ”‚  โ”œโ”€ jest-environment-node@^21.1.0
โ”‚  โ”œโ”€ jest-get-type@^21.0.2
โ”‚  โ”œโ”€ jest-jasmine2@^21.1.0
โ”‚  โ”œโ”€ jest-regex-util@^21.1.0
โ”‚  โ”œโ”€ jest-resolve@^21.1.0
โ”‚  โ”œโ”€ jest-util@^21.1.0
โ”‚  โ”œโ”€ jest-validate@^21.1.0
โ”‚  โ””โ”€ pretty-format@^21.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ diff@^3.2.0
โ”‚  โ”œโ”€ jest-get-type@^21.0.2
โ”‚  โ””โ”€ pretty-format@^21.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ jest-mock@^21.1.0
โ”‚  โ”œโ”€ jest-util@^21.1.0
โ”‚  โ””โ”€ jsdom@^9.12.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ jest-mock@^21.1.0
โ”‚  โ””โ”€ jest-util@^21.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ fb-watchman@^2.0.0
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ jest-docblock@^21.1.0
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ”œโ”€ sane@^2.0.0
โ”‚  โ””โ”€ worker-farm@^1.3.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ expect@^21.1.0
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ jest-diff@^21.1.0
โ”‚  โ”œโ”€ jest-matcher-utils@^21.1.0
โ”‚  โ”œโ”€ jest-message-util@^21.1.0
โ”‚  โ”œโ”€ jest-snapshot@^21.1.0
โ”‚  โ””โ”€ p-cancelable@^0.3.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ jest-get-type@^21.0.2
โ”‚  โ””โ”€ pretty-format@^21.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ””โ”€ slash@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ jest-regex-util@^21.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ browser-resolve@^1.11.2
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ””โ”€ is-builtin-module@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ jest-config@^21.1.0
โ”‚  โ”œโ”€ jest-docblock@^21.1.0
โ”‚  โ”œโ”€ jest-haste-map@^21.1.0
โ”‚  โ”œโ”€ jest-jasmine2@^21.1.0
โ”‚  โ”œโ”€ jest-message-util@^21.1.0
โ”‚  โ”œโ”€ jest-runtime@^21.1.0
โ”‚  โ”œโ”€ jest-util@^21.1.0
โ”‚  โ”œโ”€ pify@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ throat@^4.0.0
โ”‚  โ””โ”€ worker-farm@^1.3.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-core@^6.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.22.0
โ”‚  โ”‚  โ””โ”€ babel-template@^6.24.1
โ”‚  โ”œโ”€ babel-jest@^21.0.2
โ”‚  โ”œโ”€ babel-plugin-istanbul@^4.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ babel-traverse@^6.26.0
โ”‚  โ”‚  โ”œโ”€ babel-types@^6.26.0
โ”‚  โ”‚  โ”œโ”€ babylon@^6.18.0
โ”‚  โ”‚  โ””โ”€ lodash@^4.17.4
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^1.0.3
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ convert-source-map@^1.4.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ os-homedir@^1.0.0
โ”‚  โ”‚  โ””โ”€ os-tmpdir@^1.0.1
โ”‚  โ”œโ”€ jest-config@^21.1.0
โ”‚  โ”œโ”€ jest-haste-map@^21.1.0
โ”‚  โ”œโ”€ jest-regex-util@^21.1.0
โ”‚  โ”œโ”€ jest-resolve@^21.1.0
โ”‚  โ”œโ”€ jest-util@^21.1.0
โ”‚  โ”œโ”€ json-stable-stringify@^1.0.1
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ”œโ”€ slash@^1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ write-file-atomic@^2.1.0
โ”‚  โ””โ”€ yargs@^9.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ jest-diff@^21.1.0
โ”‚  โ”œโ”€ jest-matcher-utils@^21.1.0
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ”œโ”€ natural-compare@^1.4.0
โ”‚  โ””โ”€ pretty-format@^21.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ callsites@^2.0.0
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ jest-message-util@^21.1.0
โ”‚  โ”œโ”€ jest-mock@^21.1.0
โ”‚  โ”œโ”€ jest-validate@^21.1.0
โ”‚  โ””โ”€ mkdirp@^0.5.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ chalk@^2.0.1
โ”‚  โ”œโ”€ jest-get-type@^21.0.2
โ”‚  โ”œโ”€ leven@^2.1.0
โ”‚  โ””โ”€ pretty-format@^21.1.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ jest-cli@^21.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ argparse@^1.0.7
โ”‚  โ””โ”€ esprima@^4.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ abab@^1.0.3
โ”‚  โ”œโ”€ acorn-globals@^3.1.0
โ”‚  โ”œโ”€ acorn@^4.0.4
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ co@^4.6.0
โ”‚  โ”‚  โ”œโ”€ fast-deep-equal@^1.0.0
โ”‚  โ”‚  โ”œโ”€ json-schema-traverse@^0.3.0
โ”‚  โ”‚  โ””โ”€ json-stable-stringify@^1.0.1
โ”‚  โ”œโ”€ array-equal@^1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ content-type-parser@^1.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ cssom@>= 0.3.2 < 0.4.0
โ”‚  โ”œโ”€ cssstyle@>= 0.2.37 < 0.3.0
โ”‚  โ”œโ”€ escodegen@^1.6.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ asynckit@^0.4.0
โ”‚  โ”‚  โ”œโ”€ combined-stream@^1.0.5
โ”‚  โ”‚  โ””โ”€ mime-types@^2.1.12
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ ajv@^5.1.0
โ”‚  โ”‚  โ””โ”€ har-schema@^2.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ html-encoding-sniffer@^1.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ assert-plus@^1.0.0
โ”‚  โ”‚  โ”œโ”€ jsprim@^1.2.2
โ”‚  โ”‚  โ””โ”€ sshpk@^1.7.0
โ”‚  โ”œโ”€ nwmatcher@>= 1.3.9 < 2.0.0
โ”‚  โ”œโ”€ parse5@^1.5.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ request@^2.79.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ 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.2
โ”‚  โ”‚  โ”œโ”€ tunnel-agent@^0.6.0
โ”‚  โ”‚  โ””โ”€ uuid@^3.1.0
โ”‚  โ”œโ”€ sax@^1.2.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ symbol-tree@^3.2.1
โ”‚  โ”œโ”€ tough-cookie@^2.3.2
โ”‚  โ”œโ”€ webidl-conversions@^4.0.0
โ”‚  โ”œโ”€ whatwg-encoding@^1.0.1
โ”‚  โ”œโ”€ whatwg-url@^4.3.0
โ”‚  โ””โ”€ xml-name-validator@^2.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ jsonify@~0.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-buffer@^1.1.5
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ invert-kv@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ prelude-ls@~1.1.2
โ”‚  โ””โ”€ type-check@~0.3.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.2
โ”‚  โ”œโ”€ parse-json@^2.2.0
โ”‚  โ”œโ”€ pify@^2.0.0
โ”‚  โ”œโ”€ strip-bom@^3.0.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ p-locate@^2.0.0
โ”‚  โ””โ”€ path-exists@^3.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ js-tokens@^3.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ pseudomap@^1.0.2
โ”‚  โ””โ”€ yallist@^2.1.2
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ pify@^2.3.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ mimic-fn@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ mime-db@~1.30.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ brace-expansion@^1.1.7
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ encoding@^0.1.11
โ”‚  โ””โ”€ is-stream@^1.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ growly@^1.3.0
โ”‚  โ”œโ”€ semver@^5.3.0
โ”‚  โ”œโ”€ shellwords@^0.1.0
โ”‚  โ””โ”€ which@^1.2.12
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ mkdirp@^0.5.1
โ”‚  โ”œโ”€ nopt@^4.0.1
โ”‚  โ”œโ”€ npmlog@^4.0.2
โ”‚  โ”œโ”€ rc@^1.1.7
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ rimraf@^2.6.1
โ”‚  โ”œโ”€ semver@^5.3.0
โ”‚  โ”œโ”€ tar-pack@^3.4.0
โ”‚  โ””โ”€ tar@^2.2.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ abbrev@1
โ”‚  โ””โ”€ osenv@^0.1.4
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ hosted-git-info@^2.1.4
โ”‚  โ”œโ”€ is-builtin-module@^1.0.0
โ”‚  โ”œโ”€ semver@2 || 3 || 4 || 5
โ”‚  โ””โ”€ validate-npm-package-license@^3.0.1
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ remove-trailing-separator@^1.0.1
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ path-key@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ are-we-there-yet@~1.1.2
โ”‚  โ”œโ”€ console-control-strings@~1.1.0
โ”‚  โ”œโ”€ gauge@~2.7.3
โ”‚  โ””โ”€ set-blocking@~2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ for-own@^0.1.4
โ”‚  โ””โ”€ is-extendable@^0.1.1
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ wrappy@1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ minimist@~0.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ wordwrap@~0.0.2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ deep-is@~0.1.3
โ”‚  โ”œโ”€ fast-levenshtein@~2.0.4
โ”‚  โ”œโ”€ levn@~0.3.0
โ”‚  โ”œโ”€ prelude-ls@~1.1.2
โ”‚  โ”œโ”€ type-check@~0.3.2
โ”‚  โ”œโ”€ wordwrap@~1.0.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ execa@^0.7.0
โ”‚  โ”œโ”€ lcid@^1.0.0
โ”‚  โ””โ”€ mem@^1.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ os-homedir@^1.0.0
โ”‚  โ””โ”€ os-tmpdir@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ is-plain-obj@^1.1.0
โ”‚  โ””โ”€ mkdirp@^0.5.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ p-limit@^1.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ glob-base@^0.3.0
โ”‚  โ”œโ”€ is-dotfile@^1.0.0
โ”‚  โ”œโ”€ is-extglob@^1.0.0
โ”‚  โ””โ”€ is-glob@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ error-ex@^1.2.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ pify@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ pinkie@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ node-modules-regexp@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ find-up@^2.1.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ ansi-regex@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ ansi-styles@^3.2.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ asap@~2.0.3
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ fbjs@^0.8.9
โ”‚  โ””โ”€ loose-envify@^1.3.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ is-number@^3.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ kind-of@^3.0.2
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”‚     โ””โ”€ is-buffer@^1.1.5
โ”‚  โ”œโ”€ kind-of@^4.0.0
โ”‚  โ””โ”€ [email protected]
โ”‚     โ””โ”€ is-buffer@^1.1.5
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ deep-extend@~0.4.0
โ”‚  โ”œโ”€ ini@~1.3.0
โ”‚  โ”œโ”€ minimist@^1.2.0
โ”‚  โ””โ”€ strip-json-comments@~2.0.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ fbjs@^0.8.9
โ”‚  โ”œโ”€ loose-envify@^1.1.0
โ”‚  โ”œโ”€ object-assign@^4.1.0
โ”‚  โ””โ”€ prop-types@^15.5.10
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ create-react-class@^15.6.0
โ”‚  โ”œโ”€ fbjs@^0.8.9
โ”‚  โ”œโ”€ loose-envify@^1.1.0
โ”‚  โ”œโ”€ object-assign@^4.1.0
โ”‚  โ””โ”€ prop-types@^15.5.10
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ find-up@^2.0.0
โ”‚  โ””โ”€ read-pkg@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ load-json-file@^2.0.0
โ”‚  โ”œโ”€ normalize-package-data@^2.3.2
โ”‚  โ””โ”€ path-type@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.2
โ”‚  โ”œโ”€ minimatch@^3.0.2
โ”‚  โ”œโ”€ readable-stream@^2.0.2
โ”‚  โ””โ”€ set-immediate-shim@^1.0.1
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ regenerate@^1.3.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ babel-runtime@^6.18.0
โ”‚  โ”œโ”€ babel-types@^6.19.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ babel-runtime@^6.26.0
โ”‚  โ”‚  โ”œโ”€ esutils@^2.0.2
โ”‚  โ”‚  โ”œโ”€ lodash@^4.17.4
โ”‚  โ”‚  โ””โ”€ to-fast-properties@^1.0.3
โ”‚  โ”œโ”€ private@^0.1.6
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-equal-shallow@^0.1.3
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ regenerate-unicode-properties@^5.1.1
โ”‚  โ”œโ”€ regenerate@^1.3.3
โ”‚  โ”œโ”€ regjsgen@^0.3.0
โ”‚  โ”œโ”€ regjsparser@^0.2.1
โ”‚  โ”œโ”€ unicode-match-property-ecmascript@^1.0.3
โ”‚  โ””โ”€ unicode-match-property-value-ecmascript@^1.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ jsesc@~0.5.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-finite@^1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ path-parse@^1.0.5
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ align-text@^0.1.1
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ glob@^7.0.5
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ anymatch@^1.3.0
โ”‚  โ”œโ”€ exec-sh@^0.2.0
โ”‚  โ”œโ”€ fb-watchman@^2.0.0
โ”‚  โ”œโ”€ fsevents@^1.1.1
โ”‚  โ”œโ”€ minimatch@^3.0.2
โ”‚  โ”œโ”€ minimist@^1.1.1
โ”‚  โ”œโ”€ walker@~1.0.5
โ”‚  โ””โ”€ watch@~0.10.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ shebang-regex@^1.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ source-map@^0.5.6
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ spdx-license-ids@^1.0.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ 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
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ safe-buffer@~5.1.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ astral-regex@^1.0.0
โ”‚  โ”œโ”€ strip-ansi@^4.0.0
โ”‚  โ””โ”€ [email protected]
โ”‚     โ””โ”€ ansi-regex@^3.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ code-point-at@^1.0.0
โ”‚  โ”œโ”€ is-fullwidth-code-point@^1.0.0
โ”‚  โ””โ”€ strip-ansi@^3.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ ansi-regex@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ is-utf8@^0.2.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ has-flag@^2.0.0
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ debug@^2.2.0
โ”‚  โ”œโ”€ fstream-ignore@^1.0.5
โ”‚  โ”œโ”€ fstream@^1.0.10
โ”‚  โ”œโ”€ once@^1.3.3
โ”‚  โ”œโ”€ readable-stream@^2.1.4
โ”‚  โ”œโ”€ rimraf@^2.5.1
โ”‚  โ”œโ”€ tar@^2.2.1
โ”‚  โ””โ”€ uid-number@^0.0.6
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ block-stream@*
โ”‚  โ”œโ”€ fstream@^1.0.2
โ”‚  โ””โ”€ inherits@2
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ arrify@^1.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ path-exists@^2.0.0
โ”‚  โ”‚  โ””โ”€ pinkie-promise@^2.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ graceful-fs@^4.1.2
โ”‚  โ”‚  โ”œโ”€ parse-json@^2.2.0
โ”‚  โ”‚  โ”œโ”€ pify@^2.0.0
โ”‚  โ”‚  โ”œโ”€ pinkie-promise@^2.0.0
โ”‚  โ”‚  โ””โ”€ strip-bom@^2.0.0
โ”‚  โ”œโ”€ micromatch@^2.3.11
โ”‚  โ”œโ”€ object-assign@^4.1.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ””โ”€ pinkie-promise@^2.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ graceful-fs@^4.1.2
โ”‚  โ”‚  โ”œโ”€ pify@^2.0.0
โ”‚  โ”‚  โ””โ”€ pinkie-promise@^2.0.0
โ”‚  โ”œโ”€ read-pkg-up@^1.0.1
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ find-up@^1.0.0
โ”‚  โ”‚  โ””โ”€ read-pkg@^1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ load-json-file@^1.0.0
โ”‚  โ”‚  โ”œโ”€ normalize-package-data@^2.3.2
โ”‚  โ”‚  โ””โ”€ path-type@^1.0.0
โ”‚  โ””โ”€ require-main-filename@^1.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ punycode@^1.4.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ safe-buffer@^5.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ prelude-ls@~1.1.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”‚  โ”œโ”€ center-align@^0.1.1
โ”‚  โ”‚  โ”œโ”€ right-align@^0.1.1
โ”‚  โ”‚  โ””โ”€ [email protected]
โ”‚  โ”œโ”€ source-map@~0.5.1
โ”‚  โ”œโ”€ uglify-to-browserify@~1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ yargs@~3.10.0
โ”‚  โ””โ”€ [email protected]
โ”‚     โ”œโ”€ camelcase@^1.0.2
โ”‚     โ”œโ”€ cliui@^2.1.0
โ”‚     โ”œโ”€ decamelize@^1.0.0
โ”‚     โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ unicode-canonical-property-names-ecmascript@^1.0.2
โ”‚  โ””โ”€ unicode-property-aliases-ecmascript@^1.0.3
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ user-home@^1.1.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ spdx-correct@~1.0.0
โ”‚  โ””โ”€ spdx-expression-parse@~1.0.0
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ assert-plus@^1.0.0
โ”‚  โ”œโ”€ [email protected]
โ”‚  โ””โ”€ extsprintf@^1.2.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ tr46@~0.0.3
โ”‚  โ”œโ”€ webidl-conversions@^3.0.0
โ”‚  โ””โ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ isexe@^2.0.0
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ string-width@^1.0.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ errno@^0.1.4
โ”‚  โ””โ”€ xtend@^4.0.1
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ string-width@^1.0.1
โ”‚  โ””โ”€ strip-ansi@^3.0.1
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ”œโ”€ graceful-fs@^4.1.11
โ”‚  โ”œโ”€ imurmurhash@^0.1.4
โ”‚  โ””โ”€ signal-exit@^3.0.2
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”œโ”€ [email protected]
โ”‚  โ””โ”€ camelcase@^4.1.0
โ””โ”€ [email protected]
   โ”œโ”€ [email protected]
   โ”œโ”€ camelcase@^4.1.0
   โ”œโ”€ cliui@^3.2.0
   โ”œโ”€ decamelize@^1.1.1
   โ”œโ”€ get-caller-file@^1.0.1
   โ”œโ”€ [email protected]
   โ”œโ”€ os-locale@^2.0.0
   โ”œโ”€ read-pkg-up@^2.0.0
   โ”œโ”€ require-directory@^2.1.1
   โ”œโ”€ require-main-filename@^1.0.1
   โ”œโ”€ set-blocking@^2.0.0
   โ”œโ”€ string-width@^2.0.0
   โ”œโ”€ [email protected]
   โ”‚  โ”œโ”€ is-fullwidth-code-point@^2.0.0
   โ”‚  โ””โ”€ strip-ansi@^4.0.0
   โ”œโ”€ [email protected]
   โ”‚  โ””โ”€ ansi-regex@^3.0.0
   โ”œโ”€ which-module@^2.0.0
   โ”œโ”€ y18n@^3.2.1
   โ””โ”€ yargs-parser@^7.0.0
Done in 0.50s.

I think the problem might be caused by jest-runtime, which uses Babel 6.

Any suggestions on how to fix? ๐Ÿ˜€

It may not be feasible at this point, if some of your packages have strong ties to dependencies that expect Babel 6.

You could open an issue or a PR the jest repo, asking them to allow the user to use babel 7! ๐Ÿ˜‰

    "babel-core": "^7.0.0-beta.3",
    "babel-eslint": "^8.0.1",
    "babel-loader": "^7.1.2",
    "babel-plugin-syntax-dynamic-import": "^7.0.0-beta.3",
    "babel-plugin-transform-class-properties": "^7.0.0-beta.3",
    "babel-plugin-transform-es2015-arrow-functions": "^7.0.0-beta.3",
    "babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
    "babel-polyfill": "^7.0.0-beta.3",
    "babel-preset-env": "^2.0.0-beta.2",
    "babel-preset-es2015": "^7.0.0-beta.3",
{
  "presets": [
//    "es2015",
    ["env", {
      "modules": false,
      "targets": {
        "browsers": "> 1%",
        "forceAllTransforms": true
      },
      "useBuiltIns": "usage",
      "include": ["transform-object-rest-spread"]
    }]
  ],

  "plugins": [
//    "syntax-dynamic-import",
//    "transform-object-rest-spread",
//    ["transform-class-properties", { "spec": true, "loose": true }]
  ]
}



md5-7b345fcdea1dad5f3c7b183f3437d12a



ERROR in ./client/packs/application.js
Module build failed: TypeError: /Users/anatoly/work/client/packs/application.js: path.arrowFunctionToExpression is not a function
    at PluginPass.ArrowFunctionExpression (/Users/anatoly/work/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:10:14)
    at newFn (/Users/anatoly/work/node_modules/babel-traverse/lib/visitors.js:276:21)
    at NodePath._call (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:76:18)
    at NodePath.call (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:48:17)
    at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:105:12)
    at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)
    at TraversalContext.visitMultiple (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:103:17)
    at TraversalContext.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:190:19)
    at Function.traverse.node (/Users/anatoly/work/node_modules/babel-traverse/lib/index.js:114:17)
    at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:115:19)
    at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)
    at TraversalContext.visitSingle (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:108:19)
    at TraversalContext.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:192:19)
    at Function.traverse.node (/Users/anatoly/work/node_modules/babel-traverse/lib/index.js:114:17)
    at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:115:19)
    at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)

Can you try [email protected]?

@loganfsmyth there are no such version https://github.com/babel/babel-preset-env/releases

Looks like we haven't explicitly called it out, but we've moved preset-env into Babel's main repo, so it was published as part of https://github.com/babel/babel/releases/tag/v7.0.0-beta.3 At the moment the main callout is in the README https://github.com/babel/babel-preset-env#we-only-moved-the-package-babel-preset-env-into-the-main-babel-repo-under-a-different-folder-instead-of-in-this-repo-we-are-still-in-the-process-of-moving-over-the-issueslabelsprsetc

Was this page helpful?
0 / 5 - 0 ratings

Related issues

loganfsmyth picture loganfsmyth  ยท  73Comments

jenniferlynparsons picture jenniferlynparsons  ยท  50Comments

ocombe picture ocombe  ยท  35Comments

xuchenchenBoy picture xuchenchenBoy  ยท  48Comments

armpogart picture armpogart  ยท  34Comments