├── .babelrc
├── .eslintignore
├── .eslintrc.json
├── .flowconfig
├── .gitignore
├── .npmignore
├── LICENSE.md
├── README.md
├── package.json
├── src
└── index.js
├── test
├── fixtures
│ ├── arrow-function-without-block-statement
│ │ ├── actual.js
│ │ └── expected.js
│ ├── arrow-function
│ │ ├── actual.js
│ │ └── expected.js
│ ├── class-methods
│ │ ├── actual.js
│ │ └── expected.js
│ ├── debugger
│ │ ├── actual.js
│ │ └── expected.js
│ ├── directives-only
│ │ ├── actual.js
│ │ └── expected.js
│ ├── empty-function
│ │ ├── actual.js
│ │ └── expected.js
│ ├── explicit-return
│ │ ├── actual.js
│ │ └── expected.js
│ ├── flow
│ │ ├── actual.js
│ │ └── expected.js
│ ├── if-with-early-return
│ │ ├── actual.js
│ │ └── expected.js
│ ├── labeled-statement
│ │ ├── actual.js
│ │ └── expected.js
│ ├── nested-arrow-functions
│ │ ├── actual.js
│ │ └── expected.js
│ ├── nested-functions-with-semicolons
│ │ ├── actual.js
│ │ └── expected.js
│ ├── nested-functions
│ │ ├── actual.js
│ │ └── expected.js
│ ├── object-properties
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-array-spread
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-array
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-arrow-function-expression
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-arrow-function
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-await
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-class-with-methods
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-class
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-do-while
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-for-in
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-for-of
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-for
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-function-call-result
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-function-in-braces
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-if-else
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-if
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-multiple-variables-declation
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-nested-for
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-nested-if-else-for
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-nested-if-else
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-number
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-object-in-braces
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-object-spread
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-react-element
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-switch-case
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-this
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-try-catch-finally
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-try-catch
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-unary-operation
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-variable-declaration
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-while
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-yield-await
│ │ ├── actual.js
│ │ └── expected.js
│ ├── return-yield
│ │ ├── actual.js
│ │ └── expected.js
│ └── throw
│ │ ├── actual.js
│ │ └── expected.js
└── index.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015"],
3 | "plugins": ["strict-equality"]
4 | }
5 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | lib
3 | test/fixtures
4 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "es6": true,
4 | "node": true,
5 | "browser": true,
6 | "mocha": true
7 | },
8 | "extends": "eslint:recommended",
9 | "parser": "babel-eslint",
10 | "parserOptions": {
11 | "sourceType": "module"
12 | },
13 | "rules": {
14 | "array-bracket-spacing": [2, "never"],
15 | "arrow-parens": [2, "always"],
16 | "arrow-spacing": [2, { "before": true, "after": true }],
17 | "block-spacing": [2, "always"],
18 | "brace-style": [2, "1tbs", { "allowSingleLine": true }],
19 | "camelcase": [2, { "properties": "always" }],
20 | "comma-spacing": [2, { "before": false, "after": true }],
21 | "computed-property-spacing": [2, "never"],
22 | "constructor-super": [2],
23 | "func-style": [2, "expression", { "allowArrowFunctions": true }],
24 | "generator-star-spacing": [2, { "before": false, "after": true }],
25 | "indent": [2, 2],
26 | "jsx-quotes": [2, "prefer-double"],
27 | "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
28 | "keyword-spacing": [2, { "before": true, "after": true }],
29 | "linebreak-style": [2, "unix"],
30 | "max-len": [2, 120, 2],
31 | "no-array-constructor": [2],
32 | "no-bitwise": [2],
33 | "no-class-assign": [2],
34 | "no-const-assign": [2],
35 | "no-const-assign": [2],
36 | "no-constant-condition": [2],
37 | "no-dupe-class-members": [2],
38 | "no-lonely-if": [2],
39 | "no-multiple-empty-lines": [2, { "max": 1, "maxEOF": 1 }],
40 | "no-negated-condition": [2],
41 | "no-nested-ternary": [2],
42 | "no-new-object": [2],
43 | "no-plusplus": [2],
44 | "no-restricted-syntax": [2, "WithStatement"],
45 | "no-spaced-func": [2],
46 | "no-this-before-super": [2],
47 | "no-trailing-spaces": [2],
48 | "no-unused-vars": [2, { "vars": "all", "args": "after-used", "varsIgnorePattern": "React" }],
49 | "no-var": [2],
50 | "object-curly-spacing": [2, "always"],
51 | "object-shorthand": [2],
52 | "one-var": [2, "never"],
53 | "operator-assignment": [2, "always"],
54 | "operator-linebreak": [2, "after"],
55 | "padded-blocks": [2, "never"],
56 | "prefer-arrow-callback": [2],
57 | "prefer-const": [2],
58 | "prefer-spread": [2],
59 | "prefer-template": [2],
60 | "quote-props": [2, "as-needed"],
61 | "quotes": [2, "double"],
62 | "require-yield": [2],
63 | "semi": [2, "never"],
64 | "space-before-blocks": [2, "always"],
65 | "space-before-function-paren": [2, "never"],
66 | "space-in-parens": [2, "never"],
67 | "space-unary-ops": [2, { "words": true, "nonwords": false }]
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/.flowconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/miraks/babel-plugin-implicit-return/40c0f82c6e9f2bf29a322788ac13ca81025edf62/.flowconfig
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | lib
3 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | src
3 | test
4 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | # The MIT License (MIT)
2 |
3 | Copyright (C) 2016 Alexey Volodkin
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining
6 | a copy of this software and associated documentation files (the
7 | "Software"), to deal in the Software without restriction, including
8 | without limitation the rights to use, copy, modify, merge, publish,
9 | distribute, sublicense, and/or sell copies of the Software, and to
10 | permit persons to whom the Software is furnished to do so, subject to
11 | the following conditions:
12 |
13 | The above copyright notice and this permission notice shall be
14 | included in all copies or substantial portions of the Software.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # babel-plugin-implicit-return
2 |
3 | Implicitly return function result
4 |
5 | ## Examples
6 |
7 | ```javascript
8 | // Before
9 | function Pi() {
10 | 3.14;
11 | }
12 |
13 | // After
14 | function Pi() {
15 | return 3.14;
16 | }
17 | ```
18 |
19 | ```javascript
20 | // Before
21 | function abs(n) {
22 | if (n > 0) {
23 | 1;
24 | } else if (n < 0) {
25 | -1;
26 | } else {
27 | 0;
28 | }
29 | }
30 |
31 | // After
32 | function abs(n) {
33 | if (n > 0) {
34 | return 1;
35 | } else if (n < 0) {
36 | return -1;
37 | } else {
38 | return 0;
39 | }
40 | }
41 | ```
42 |
43 | ```javascript
44 | // Before
45 | function sum(array) {
46 | let result = 0;
47 | for (let i = 0; i < array.length; i++) {
48 | result += array[i]
49 | }
50 | }
51 |
52 | // After
53 | function sum(array) {
54 | var _ret;
55 |
56 | let result = 0;
57 | for (let i = 0; i < array.length; i++) {
58 | _ret = result += array[i];
59 | }
60 | return _ret;
61 | }
62 | ```
63 |
64 | ```javascript
65 | // Before
66 | function classFactory() {
67 | class Thingy extends Thing {
68 | constructor() {
69 | super();
70 | }
71 |
72 | fn() {
73 | () => 1;
74 | }
75 |
76 | static fn() {
77 | class Other {};
78 | }
79 | }
80 | }
81 |
82 | // After
83 | function classFactory() {
84 | return class Thingy extends Thing {
85 | constructor() {
86 | return super();
87 | }
88 |
89 | fn() {
90 | return () => 1;
91 | }
92 |
93 | static fn() {
94 | return class Other {};
95 | }
96 | }
97 | }
98 | ```
99 |
100 | ## Requirements
101 |
102 | Your compiling enviroment must have support for:
103 |
104 | * [Set](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set)
105 |
106 | ## Installation
107 |
108 | ```sh
109 | $ npm install --save-dev babel-plugin-implicit-return
110 | ```
111 |
112 | ## Usage
113 |
114 | ### Via `.babelrc` (Recommended)
115 |
116 | **.babelrc**
117 |
118 | ```json
119 | {
120 | "plugins": ["implicit-return"]
121 | }
122 | ```
123 |
124 | ### Via CLI
125 |
126 | ```sh
127 | $ babel --plugins implicit-return script.js
128 | ```
129 |
130 | ### Via Node API
131 |
132 | ```javascript
133 | require("babel-core").transform("code", {
134 | plugins: ["implicit-return"]
135 | });
136 | ```
137 |
138 | ## Quirks
139 |
140 | Due to JavaScript syntax limitations this plugin can't make a function to implicitly return:
141 |
142 | ### Object literal
143 |
144 | This won't work:
145 |
146 | ```javascript
147 | function getObject() {
148 | { key1: value1, key2: value2 }; // Syntax Error
149 | }
150 | ```
151 |
152 | There're two workarounds:
153 |
154 | ```javascript
155 | // first - assign an object to a variable/constant
156 | function getObject() {
157 | const obj = { key1: value1, key2: value2 };
158 | }
159 |
160 | // second - wrap an object literal with braces
161 | function getObject() {
162 | ({ key1: value1, key2: value2 });
163 | }
164 | ```
165 |
166 | ### Function expression
167 |
168 | This won't work:
169 |
170 | ```javascript
171 | function getFunction() {
172 | function() {}; // Syntax Error
173 | }
174 | ```
175 |
176 | There're four workarounds:
177 |
178 | ```javascript
179 | // first - use arrow function
180 | function getFunction() {
181 | () => {};
182 | }
183 |
184 | // second - give your function a name
185 | function getObject() {
186 | function fn() {};
187 | }
188 |
189 | // third - assign a function to a variable/constant
190 | function getObject() {
191 | const fn = function() {};
192 | }
193 |
194 | // fourth - wrap a function with braces
195 | function getObject() {
196 | (function() {});
197 | }
198 | ```
199 |
200 | # License
201 |
202 | MIT
203 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "babel-plugin-implicit-return",
3 | "version": "1.0.1",
4 | "description": "Implicitly return function result",
5 | "main": "lib/index.js",
6 | "scripts": {
7 | "build": "babel src/index.js -o lib/index.js",
8 | "watch-build": "npm run build -- -w",
9 | "test": "mocha --compilers js:babel-register",
10 | "watch-test": "npm test -- -w",
11 | "lint": "eslint **/*.js --quiet"
12 | },
13 | "repository": {
14 | "type": "git",
15 | "url": "https://github.com/miraks/babel-plugin-implicit-return"
16 | },
17 | "keywords": [
18 | "babel",
19 | "babel-plugin",
20 | "implicit return",
21 | "auto return"
22 | ],
23 | "author": "Alexey Volodkin ",
24 | "license": "MIT",
25 | "bugs": {
26 | "url": "https://github.com/miraks/babel-plugin-implicit-return/issues"
27 | },
28 | "homepage": "https://github.com/miraks/babel-plugin-implicit-return",
29 | "devDependencies": {
30 | "babel-cli": "^6.18.0",
31 | "babel-core": "^6.21.0",
32 | "babel-eslint": "^7.1.1",
33 | "babel-plugin-strict-equality": "^1.0.0",
34 | "babel-plugin-syntax-async-functions": "^6.13.0",
35 | "babel-plugin-syntax-async-generators": "^6.13.0",
36 | "babel-plugin-syntax-flow": "^6.18.0",
37 | "babel-plugin-syntax-object-rest-spread": "^6.13.0",
38 | "babel-plugin-transform-react-jsx": "^6.8.0",
39 | "babel-preset-es2015": "^6.18.0",
40 | "babel-register": "^6.18.0",
41 | "chai": "^3.5.0",
42 | "eslint": "^3.12.2",
43 | "mocha": "^3.2.0"
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | export default ({ types: t }) => {
2 | const unreturnableStatements = new Set(["DebuggerStatement", "WithStatement", "ReturnStatement", "LabeledStatement",
3 | "BreakStatement", "ContinueStatement", "ThrowStatement"])
4 | const returnableStatements = new Set(["IfStatement", "SwitchStatement", "TryStatement", "WhileStatement",
5 | "DoWhileStatement", "ForStatement", "ForInStatement", "ForOfStatement"])
6 |
7 | const last = (array) => array[array.length - 1]
8 |
9 | const lastNotEmptyIndex = (nodes) => {
10 | for (let index = nodes.length - 1; index >= 0; index -= 1) {
11 | if (!t.isEmptyStatement(nodes[index])) return index
12 | }
13 | }
14 |
15 | // like babel-types#toExpression, but preserves function expressions
16 | const toExpression = (node) => {
17 | if (t.isExpressionStatement(node)) node = node.expression
18 |
19 | if (t.isClass(node)) {
20 | node.type = "ClassExpression"
21 | } else if (t.isFunctionDeclaration(node)) {
22 | node.type = "FunctionExpression"
23 | }
24 |
25 | if (t.isExpression(node)) return node
26 | throw new Error(`cannot turn ${node.type} to an expression`)
27 | }
28 |
29 | return {
30 | visitor: {
31 | Function(path) {
32 | const { node } = path
33 |
34 | // arrow function expression
35 | if (node.expression) return
36 |
37 | const { body, directives } = node.body
38 |
39 | if (body.length == 0) {
40 | // empty function
41 | if (directives.length == 0) return
42 |
43 | // function with directives only
44 | const directive = directives.pop()
45 | body.push(t.returnStatement(t.stringLiteral(directive.value.value)))
46 |
47 | return
48 | }
49 |
50 | const lastIndex = lastNotEmptyIndex(body)
51 | const lastPath = path.get(`body.body.${lastIndex}`)
52 | const lastNode = body[lastIndex]
53 |
54 | // skip unreturnable statements
55 | if (unreturnableStatements.has(lastNode.type)) return
56 |
57 | // convert returnable statements
58 | if (returnableStatements.has(lastNode.type)) {
59 | const completionRecords = lastPath.getCompletionRecords()
60 | let returnUid = null
61 |
62 | completionRecords.forEach((subPath) => {
63 | if (!subPath.isExpressionStatement()) return
64 |
65 | const isLoop = subPath.findParent((subPath) => subPath.isLoop())
66 |
67 | if (isLoop) {
68 | if (!returnUid) returnUid = path.scope.generateDeclaredUidIdentifier("ret")
69 | subPath.get("expression").replaceWith(t.assignmentExpression("=", returnUid, subPath.node.expression))
70 | } else {
71 | subPath.replaceWith(t.returnStatement(subPath.node.expression))
72 | }
73 | })
74 |
75 | if (returnUid) {
76 | path.get("body").pushContainer("body", t.returnStatement(returnUid))
77 | }
78 |
79 | return
80 | }
81 |
82 | // variables declaration
83 | if (t.isVariableDeclaration(lastNode)) {
84 | let { id } = last(lastNode.declarations)
85 |
86 | if (t.isArrayPattern(id)) {
87 | id = last(id.elements).argument
88 | }
89 |
90 | if (t.isObjectPattern(id)) {
91 | id = last(id.properties).argument
92 | }
93 |
94 | body.push(t.returnStatement(id))
95 |
96 | return
97 | }
98 |
99 | body[lastIndex] = t.returnStatement(toExpression(lastNode))
100 | }
101 | }
102 | }
103 | }
104 |
--------------------------------------------------------------------------------
/test/fixtures/arrow-function-without-block-statement/actual.js:
--------------------------------------------------------------------------------
1 | () => 1
2 |
--------------------------------------------------------------------------------
/test/fixtures/arrow-function-without-block-statement/expected.js:
--------------------------------------------------------------------------------
1 | () => 1;
2 |
--------------------------------------------------------------------------------
/test/fixtures/arrow-function/actual.js:
--------------------------------------------------------------------------------
1 | const fn = () => {
2 | 1
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/arrow-function/expected.js:
--------------------------------------------------------------------------------
1 | const fn = () => {
2 | return 1;
3 | };
4 |
--------------------------------------------------------------------------------
/test/fixtures/class-methods/actual.js:
--------------------------------------------------------------------------------
1 | class Thing {
2 | constructor() {
3 | super()
4 | }
5 |
6 | fn() {
7 | 1
8 | }
9 |
10 | static fn() {
11 | 1
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/test/fixtures/class-methods/expected.js:
--------------------------------------------------------------------------------
1 | class Thing {
2 | constructor() {
3 | return super();
4 | }
5 |
6 | fn() {
7 | return 1;
8 | }
9 |
10 | static fn() {
11 | return 1;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/test/fixtures/debugger/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | debugger
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/debugger/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | debugger;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/directives-only/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | "a"
3 | "b"
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/directives-only/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | "a";
3 |
4 | return "b";
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/empty-function/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {}
2 |
--------------------------------------------------------------------------------
/test/fixtures/empty-function/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {}
2 |
--------------------------------------------------------------------------------
/test/fixtures/explicit-return/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return "str"
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/explicit-return/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return "str";
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/flow/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a: string, b: number): string {
2 | a + b
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/flow/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a: string, b: number): string {
2 | return a + b;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/if-with-early-return/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a >= 0) {
3 | if (a == 0) return 0
4 | 1
5 | } else {
6 | -1
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/test/fixtures/if-with-early-return/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a >= 0) {
3 | if (a == 0) return 0;
4 | return 1;
5 | } else {
6 | return -1;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/test/fixtures/labeled-statement/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | name: {
3 | 1
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/labeled-statement/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | name: {
3 | 1;
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/nested-arrow-functions/actual.js:
--------------------------------------------------------------------------------
1 | () => {
2 | () => {
3 | () => () => 1
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/nested-arrow-functions/expected.js:
--------------------------------------------------------------------------------
1 | () => {
2 | return () => {
3 | return () => () => 1;
4 | };
5 | };
6 |
--------------------------------------------------------------------------------
/test/fixtures/nested-functions-with-semicolons/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | function fn() {
3 | function fn() {
4 | 1
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/nested-functions-with-semicolons/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return function fn() {
3 | return function fn() {
4 | return 1;
5 | };
6 | };
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/nested-functions/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | function fn() {
3 | function fn() {
4 | 1
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/nested-functions/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return function fn() {
3 | return function fn() {
4 | return 1;
5 | };
6 | };
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/object-properties/actual.js:
--------------------------------------------------------------------------------
1 | const obj = {
2 | a: function() {
3 | 1
4 | },
5 | b: () => {
6 | 2
7 | },
8 | c: () => 3,
9 | d() {
10 | 4
11 | },
12 | ["a" + "b"]: () => {
13 | 5
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/test/fixtures/object-properties/expected.js:
--------------------------------------------------------------------------------
1 | const obj = {
2 | a: function () {
3 | return 1;
4 | },
5 | b: () => {
6 | return 2;
7 | },
8 | c: () => 3,
9 | d() {
10 | return 4;
11 | },
12 | ["a" + "b"]: () => {
13 | return 5;
14 | }
15 | };
16 |
--------------------------------------------------------------------------------
/test/fixtures/return-array-spread/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const arr = [1, 2, 3]
3 | const [a, ...b] = arr
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-array-spread/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const arr = [1, 2, 3];
3 | const [a, ...b] = arr;
4 | return b;
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/return-array/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | [1, 2]
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-array/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return [1, 2];
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-arrow-function-expression/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | () => 1
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-arrow-function-expression/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return () => 1;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-arrow-function/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | () => {}
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-arrow-function/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return () => {};
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-await/actual.js:
--------------------------------------------------------------------------------
1 | async function fn(promise) {
2 | await promise
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-await/expected.js:
--------------------------------------------------------------------------------
1 | async function fn(promise) {
2 | return await promise;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-class-with-methods/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | class Thing {
3 | constructor() {
4 | super()
5 | }
6 | fn() {
7 | 1
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/test/fixtures/return-class-with-methods/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return class Thing {
3 | constructor() {
4 | return super();
5 | }
6 | fn() {
7 | return 1;
8 | }
9 | };
10 | }
11 |
--------------------------------------------------------------------------------
/test/fixtures/return-class/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | class Thing {}
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-class/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return class Thing {};
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-do-while/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | let n = 0
3 | do {
4 | n += 1
5 | } while (n < 5)
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-do-while/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | let n = 0;
5 | do {
6 | _ret = n += 1;
7 | } while (n < 5);
8 | return _ret;
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-for-in/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const arr = [1, 2, 3]
3 | for (let n in arr) {
4 | n + 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-for-in/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | const arr = [1, 2, 3];
5 | for (let n in arr) {
6 | _ret = n + 1;
7 | }
8 | return _ret;
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-for-of/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const obj = { a: 1, b: 2 }
3 | for (let entry of obj) {
4 | entry[0] + entry[1]
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-for-of/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | const obj = { a: 1, b: 2 };
5 | for (let entry of obj) {
6 | _ret = entry[0] + entry[1];
7 | }
8 | return _ret;
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-for/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | for (let n = 0; n < 5; n += 1) {
3 | n - 1
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/return-for/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | for (let n = 0; n < 5; n += 1) {
5 | _ret = n - 1;
6 | }
7 | return _ret;
8 | }
9 |
--------------------------------------------------------------------------------
/test/fixtures/return-function-call-result/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const fn = () => 1
3 | fn()
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-function-call-result/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const fn = () => 1;
3 | return fn();
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-function-in-braces/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | (function () {})
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-function-in-braces/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return function () {};
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-if-else/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a > 0) {
3 | 1
4 | } else {
5 | -1
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/return-if-else/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a > 0) {
3 | return 1;
4 | } else {
5 | return -1;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/return-if/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a > 0) {
3 | 1
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/return-if/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a > 0) {
3 | return 1;
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/return-multiple-variables-declation/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const a = 1, b = "str", c = { key: "value", other: 1 }
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-multiple-variables-declation/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const a = 1,
3 | b = "str",
4 | c = { key: "value", other: 1 };
5 | return c;
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-for/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | for (let n = 0; n < 5; n += 1) {
3 | for (let k = 0; k < n; k += 1) {
4 | n + k
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-for/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | for (let n = 0; n < 5; n += 1) {
5 | for (let k = 0; k < n; k += 1) {
6 | _ret = n + k;
7 | }
8 | }
9 | return _ret;
10 | }
11 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-if-else-for/actual.js:
--------------------------------------------------------------------------------
1 | function foo() {
2 | let res = 1
3 |
4 | if (a > 0) {
5 | for (let b in arr) {
6 | if (b > 0) {
7 | for (let c in arr2) {
8 | res += b + c
9 | }
10 | } else {
11 | for (let d in arr3) {
12 | res += b + d
13 | }
14 | }
15 | }
16 | } else {
17 | for (let b in arr) {
18 | res *= b
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-if-else-for/expected.js:
--------------------------------------------------------------------------------
1 | function foo() {
2 | var _ret;
3 |
4 | let res = 1;
5 |
6 | if (a > 0) {
7 | for (let b in arr) {
8 | if (b > 0) {
9 | for (let c in arr2) {
10 | _ret = res += b + c;
11 | }
12 | } else {
13 | for (let d in arr3) {
14 | _ret = res += b + d;
15 | }
16 | }
17 | }
18 | } else {
19 | for (let b in arr) {
20 | _ret = res *= b;
21 | }
22 | }
23 | return _ret;
24 | }
25 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-if-else/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a >= 0) {
3 | if (a == 0) {
4 | 0
5 | } else {
6 | 1
7 | }
8 | } else {
9 | -1
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/test/fixtures/return-nested-if-else/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | if (a >= 0) {
3 | if (a == 0) {
4 | return 0;
5 | } else {
6 | return 1;
7 | }
8 | } else {
9 | return -1;
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/test/fixtures/return-number/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | 1
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-number/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return 1;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-object-in-braces/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | ({ key: "value", other: 1 })
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-object-in-braces/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return { key: "value", other: 1 };
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-object-spread/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const obj = { a: 1, b: 2 }
3 | const { a, ...c } = obj
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-object-spread/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const obj = { a: 1, b: 2 };
3 | const { a, ...c } = obj;
4 | return c;
5 | }
6 |
--------------------------------------------------------------------------------
/test/fixtures/return-react-element/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const content = "content";
3 |
4 | {content}
5 |
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-react-element/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const content = "content";
3 | return React.createElement(
4 | "div",
5 | null,
6 | React.createElement(
7 | "span",
8 | null,
9 | content
10 | )
11 | );
12 | }
13 |
--------------------------------------------------------------------------------
/test/fixtures/return-switch-case/actual.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | switch (a) {
3 | case "a":
4 | 1
5 | case "b":
6 | 2
7 | break
8 | case "c":
9 | 3
10 | default:
11 | 4
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/test/fixtures/return-switch-case/expected.js:
--------------------------------------------------------------------------------
1 | function fn(a) {
2 | switch (a) {
3 | case "a":
4 | 1;
5 | case "b":
6 | 2;
7 | break;
8 | case "c":
9 | 3;
10 | default:
11 | 4;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/test/fixtures/return-this/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | this
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-this/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return this;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-try-catch-finally/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | try {
3 | 1
4 | } catch (e) {
5 | 2
6 | } finally {
7 | 3
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-try-catch-finally/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | try {
3 | return 1;
4 | } catch (e) {
5 | 2;
6 | } finally {
7 | return 3;
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-try-catch/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | try {
3 | 1
4 | } catch(e) {
5 | 2
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/return-try-catch/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | try {
3 | return 1;
4 | } catch (e) {
5 | 2;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/test/fixtures/return-unary-operation/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | -a
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-unary-operation/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | return -a;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-variable-declaration/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const obj = { key: "value", other: 1 }
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-variable-declaration/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | const obj = { key: "value", other: 1 };
3 | return obj;
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-while/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | let n = 0
3 | while (n < 5) {
4 | n += 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/test/fixtures/return-while/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | var _ret;
3 |
4 | let n = 0;
5 | while (n < 5) {
6 | _ret = n += 1;
7 | }
8 | return _ret;
9 | }
10 |
--------------------------------------------------------------------------------
/test/fixtures/return-yield-await/actual.js:
--------------------------------------------------------------------------------
1 | async function* fn(promise) {
2 | yield await promise
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-yield-await/expected.js:
--------------------------------------------------------------------------------
1 | async function* fn(promise) {
2 | return yield await promise;
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/return-yield/actual.js:
--------------------------------------------------------------------------------
1 | function* fn() {
2 | yield 1
3 | yield 2
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/return-yield/expected.js:
--------------------------------------------------------------------------------
1 | function* fn() {
2 | yield 1;
3 | return yield 2;
4 | }
5 |
--------------------------------------------------------------------------------
/test/fixtures/throw/actual.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | throw new Error("error")
3 | }
4 |
--------------------------------------------------------------------------------
/test/fixtures/throw/expected.js:
--------------------------------------------------------------------------------
1 | function fn() {
2 | throw new Error("error");
3 | }
4 |
--------------------------------------------------------------------------------
/test/index.js:
--------------------------------------------------------------------------------
1 | import fs from "fs"
2 | import path from "path"
3 | import { expect } from "chai"
4 | import { transformFileSync } from "babel-core"
5 | import plugin from "../src/index"
6 |
7 | describe("Check", () => {
8 | const fixturesDir = path.join(__dirname, "fixtures")
9 |
10 | fs.readdirSync(fixturesDir).forEach((caseName) => {
11 | it(caseName, () => {
12 | const fixtureDir = path.join(fixturesDir, caseName)
13 | const actualPath = path.join(fixtureDir, "actual.js")
14 | const actual = transformFileSync(actualPath, {
15 | babelrc: false,
16 | plugins: [
17 | "syntax-object-rest-spread",
18 | "syntax-async-functions",
19 | "syntax-async-generators",
20 | "transform-react-jsx",
21 | "syntax-flow",
22 | plugin
23 | ]
24 | }).code
25 | const expected = fs.readFileSync(path.join(fixtureDir, "expected.js")).toString()
26 |
27 | expect(actual.trim()).to.eq(expected.trim())
28 | })
29 | })
30 | })
31 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.0.9"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
8 |
9 | acorn-jsx@^3.0.0:
10 | version "3.0.1"
11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
12 | dependencies:
13 | acorn "^3.0.4"
14 |
15 | acorn@^3.0.4:
16 | version "3.3.0"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
18 |
19 | acorn@^4.0.1:
20 | version "4.0.4"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
22 |
23 | ajv-keywords@^1.0.0:
24 | version "1.4.1"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.4.1.tgz#f080e635e230baae26537ce727f260ae62b43802"
26 |
27 | ajv@^4.7.0:
28 | version "4.10.3"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.3.tgz#3e4fea9675b157de7888b80dd0ed735b83f28e11"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | ansi-escapes@^1.1.0:
35 | version "1.4.0"
36 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
37 |
38 | ansi-regex@^2.0.0:
39 | version "2.0.0"
40 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
41 |
42 | ansi-styles@^2.2.1:
43 | version "2.2.1"
44 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
45 |
46 | anymatch@^1.3.0:
47 | version "1.3.0"
48 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
49 | dependencies:
50 | arrify "^1.0.0"
51 | micromatch "^2.1.5"
52 |
53 | aproba@^1.0.3:
54 | version "1.0.4"
55 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0"
56 |
57 | are-we-there-yet@~1.1.2:
58 | version "1.1.2"
59 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
60 | dependencies:
61 | delegates "^1.0.0"
62 | readable-stream "^2.0.0 || ^1.1.13"
63 |
64 | argparse@^1.0.7:
65 | version "1.0.9"
66 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
67 | dependencies:
68 | sprintf-js "~1.0.2"
69 |
70 | arr-diff@^2.0.0:
71 | version "2.0.0"
72 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
73 | dependencies:
74 | arr-flatten "^1.0.1"
75 |
76 | arr-flatten@^1.0.1:
77 | version "1.0.1"
78 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
79 |
80 | array-union@^1.0.1:
81 | version "1.0.2"
82 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
83 | dependencies:
84 | array-uniq "^1.0.1"
85 |
86 | array-uniq@^1.0.1:
87 | version "1.0.3"
88 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
89 |
90 | array-unique@^0.2.1:
91 | version "0.2.1"
92 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
93 |
94 | arrify@^1.0.0:
95 | version "1.0.1"
96 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
97 |
98 | asn1@~0.2.3:
99 | version "0.2.3"
100 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
101 |
102 | assert-plus@^0.2.0:
103 | version "0.2.0"
104 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
105 |
106 | assert-plus@^1.0.0:
107 | version "1.0.0"
108 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
109 |
110 | assertion-error@^1.0.1:
111 | version "1.0.2"
112 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c"
113 |
114 | async-each@^1.0.0:
115 | version "1.0.1"
116 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
117 |
118 | asynckit@^0.4.0:
119 | version "0.4.0"
120 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
121 |
122 | aws-sign2@~0.6.0:
123 | version "0.6.0"
124 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
125 |
126 | aws4@^1.2.1:
127 | version "1.5.0"
128 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
129 |
130 | babel-cli@^6.18.0:
131 | version "6.18.0"
132 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186"
133 | dependencies:
134 | babel-core "^6.18.0"
135 | babel-polyfill "^6.16.0"
136 | babel-register "^6.18.0"
137 | babel-runtime "^6.9.0"
138 | commander "^2.8.1"
139 | convert-source-map "^1.1.0"
140 | fs-readdir-recursive "^1.0.0"
141 | glob "^5.0.5"
142 | lodash "^4.2.0"
143 | output-file-sync "^1.1.0"
144 | path-is-absolute "^1.0.0"
145 | slash "^1.0.0"
146 | source-map "^0.5.0"
147 | v8flags "^2.0.10"
148 | optionalDependencies:
149 | chokidar "^1.0.0"
150 |
151 | babel-code-frame@^6.16.0, babel-code-frame@^6.20.0:
152 | version "6.20.0"
153 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26"
154 | dependencies:
155 | chalk "^1.1.0"
156 | esutils "^2.0.2"
157 | js-tokens "^2.0.0"
158 |
159 | babel-core@^6.18.0, babel-core@^6.21.0:
160 | version "6.21.0"
161 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724"
162 | dependencies:
163 | babel-code-frame "^6.20.0"
164 | babel-generator "^6.21.0"
165 | babel-helpers "^6.16.0"
166 | babel-messages "^6.8.0"
167 | babel-register "^6.18.0"
168 | babel-runtime "^6.20.0"
169 | babel-template "^6.16.0"
170 | babel-traverse "^6.21.0"
171 | babel-types "^6.21.0"
172 | babylon "^6.11.0"
173 | convert-source-map "^1.1.0"
174 | debug "^2.1.1"
175 | json5 "^0.5.0"
176 | lodash "^4.2.0"
177 | minimatch "^3.0.2"
178 | path-is-absolute "^1.0.0"
179 | private "^0.1.6"
180 | slash "^1.0.0"
181 | source-map "^0.5.0"
182 |
183 | babel-eslint@^7.1.1:
184 | version "7.1.1"
185 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
186 | dependencies:
187 | babel-code-frame "^6.16.0"
188 | babel-traverse "^6.15.0"
189 | babel-types "^6.15.0"
190 | babylon "^6.13.0"
191 | lodash.pickby "^4.6.0"
192 |
193 | babel-generator@^6.21.0:
194 | version "6.21.0"
195 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494"
196 | dependencies:
197 | babel-messages "^6.8.0"
198 | babel-runtime "^6.20.0"
199 | babel-types "^6.21.0"
200 | detect-indent "^4.0.0"
201 | jsesc "^1.3.0"
202 | lodash "^4.2.0"
203 | source-map "^0.5.0"
204 |
205 | babel-helper-builder-react-jsx@^6.8.0:
206 | version "6.21.1"
207 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.21.1.tgz#c4a24208655be9dc1cccf14d366da176f20645e4"
208 | dependencies:
209 | babel-runtime "^6.9.0"
210 | babel-types "^6.21.0"
211 | esutils "^2.0.0"
212 | lodash "^4.2.0"
213 |
214 | babel-helper-call-delegate@^6.18.0:
215 | version "6.18.0"
216 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd"
217 | dependencies:
218 | babel-helper-hoist-variables "^6.18.0"
219 | babel-runtime "^6.0.0"
220 | babel-traverse "^6.18.0"
221 | babel-types "^6.18.0"
222 |
223 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0:
224 | version "6.18.0"
225 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2"
226 | dependencies:
227 | babel-helper-function-name "^6.18.0"
228 | babel-runtime "^6.9.0"
229 | babel-types "^6.18.0"
230 | lodash "^4.2.0"
231 |
232 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0:
233 | version "6.18.0"
234 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6"
235 | dependencies:
236 | babel-helper-get-function-arity "^6.18.0"
237 | babel-runtime "^6.0.0"
238 | babel-template "^6.8.0"
239 | babel-traverse "^6.18.0"
240 | babel-types "^6.18.0"
241 |
242 | babel-helper-get-function-arity@^6.18.0:
243 | version "6.18.0"
244 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24"
245 | dependencies:
246 | babel-runtime "^6.0.0"
247 | babel-types "^6.18.0"
248 |
249 | babel-helper-hoist-variables@^6.18.0:
250 | version "6.18.0"
251 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a"
252 | dependencies:
253 | babel-runtime "^6.0.0"
254 | babel-types "^6.18.0"
255 |
256 | babel-helper-optimise-call-expression@^6.18.0:
257 | version "6.18.0"
258 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f"
259 | dependencies:
260 | babel-runtime "^6.0.0"
261 | babel-types "^6.18.0"
262 |
263 | babel-helper-regex@^6.8.0:
264 | version "6.18.0"
265 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6"
266 | dependencies:
267 | babel-runtime "^6.9.0"
268 | babel-types "^6.18.0"
269 | lodash "^4.2.0"
270 |
271 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0:
272 | version "6.18.0"
273 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e"
274 | dependencies:
275 | babel-helper-optimise-call-expression "^6.18.0"
276 | babel-messages "^6.8.0"
277 | babel-runtime "^6.0.0"
278 | babel-template "^6.16.0"
279 | babel-traverse "^6.18.0"
280 | babel-types "^6.18.0"
281 |
282 | babel-helpers@^6.16.0:
283 | version "6.16.0"
284 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3"
285 | dependencies:
286 | babel-runtime "^6.0.0"
287 | babel-template "^6.16.0"
288 |
289 | babel-messages@^6.8.0:
290 | version "6.8.0"
291 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
292 | dependencies:
293 | babel-runtime "^6.0.0"
294 |
295 | babel-plugin-check-es2015-constants@^6.3.13:
296 | version "6.8.0"
297 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7"
298 | dependencies:
299 | babel-runtime "^6.0.0"
300 |
301 | babel-plugin-strict-equality@^1.0.0:
302 | version "1.0.0"
303 | resolved "https://registry.yarnpkg.com/babel-plugin-strict-equality/-/babel-plugin-strict-equality-1.0.0.tgz#158c27bd745136110c86965ad06552b628925166"
304 |
305 | babel-plugin-syntax-async-functions@^6.13.0:
306 | version "6.13.0"
307 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
308 |
309 | babel-plugin-syntax-async-generators@^6.13.0:
310 | version "6.13.0"
311 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
312 |
313 | babel-plugin-syntax-flow@^6.18.0:
314 | version "6.18.0"
315 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
316 |
317 | babel-plugin-syntax-jsx@^6.8.0:
318 | version "6.18.0"
319 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
320 |
321 | babel-plugin-syntax-object-rest-spread@^6.13.0:
322 | version "6.13.0"
323 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
324 |
325 | babel-plugin-transform-es2015-arrow-functions@^6.3.13:
326 | version "6.8.0"
327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d"
328 | dependencies:
329 | babel-runtime "^6.0.0"
330 |
331 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13:
332 | version "6.8.0"
333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d"
334 | dependencies:
335 | babel-runtime "^6.0.0"
336 |
337 | babel-plugin-transform-es2015-block-scoping@^6.18.0:
338 | version "6.21.0"
339 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz#e840687f922e70fb2c42bb13501838c174a115ed"
340 | dependencies:
341 | babel-runtime "^6.20.0"
342 | babel-template "^6.15.0"
343 | babel-traverse "^6.21.0"
344 | babel-types "^6.21.0"
345 | lodash "^4.2.0"
346 |
347 | babel-plugin-transform-es2015-classes@^6.18.0:
348 | version "6.18.0"
349 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9"
350 | dependencies:
351 | babel-helper-define-map "^6.18.0"
352 | babel-helper-function-name "^6.18.0"
353 | babel-helper-optimise-call-expression "^6.18.0"
354 | babel-helper-replace-supers "^6.18.0"
355 | babel-messages "^6.8.0"
356 | babel-runtime "^6.9.0"
357 | babel-template "^6.14.0"
358 | babel-traverse "^6.18.0"
359 | babel-types "^6.18.0"
360 |
361 | babel-plugin-transform-es2015-computed-properties@^6.3.13:
362 | version "6.8.0"
363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870"
364 | dependencies:
365 | babel-helper-define-map "^6.8.0"
366 | babel-runtime "^6.0.0"
367 | babel-template "^6.8.0"
368 |
369 | babel-plugin-transform-es2015-destructuring@^6.18.0:
370 | version "6.19.0"
371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533"
372 | dependencies:
373 | babel-runtime "^6.9.0"
374 |
375 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0:
376 | version "6.8.0"
377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d"
378 | dependencies:
379 | babel-runtime "^6.0.0"
380 | babel-types "^6.8.0"
381 |
382 | babel-plugin-transform-es2015-for-of@^6.18.0:
383 | version "6.18.0"
384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70"
385 | dependencies:
386 | babel-runtime "^6.0.0"
387 |
388 | babel-plugin-transform-es2015-function-name@^6.9.0:
389 | version "6.9.0"
390 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719"
391 | dependencies:
392 | babel-helper-function-name "^6.8.0"
393 | babel-runtime "^6.9.0"
394 | babel-types "^6.9.0"
395 |
396 | babel-plugin-transform-es2015-literals@^6.3.13:
397 | version "6.8.0"
398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468"
399 | dependencies:
400 | babel-runtime "^6.0.0"
401 |
402 | babel-plugin-transform-es2015-modules-amd@^6.18.0:
403 | version "6.18.0"
404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40"
405 | dependencies:
406 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
407 | babel-runtime "^6.0.0"
408 | babel-template "^6.8.0"
409 |
410 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0:
411 | version "6.18.0"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc"
413 | dependencies:
414 | babel-plugin-transform-strict-mode "^6.18.0"
415 | babel-runtime "^6.0.0"
416 | babel-template "^6.16.0"
417 | babel-types "^6.18.0"
418 |
419 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0:
420 | version "6.19.0"
421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6"
422 | dependencies:
423 | babel-helper-hoist-variables "^6.18.0"
424 | babel-runtime "^6.11.6"
425 | babel-template "^6.14.0"
426 |
427 | babel-plugin-transform-es2015-modules-umd@^6.18.0:
428 | version "6.18.0"
429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50"
430 | dependencies:
431 | babel-plugin-transform-es2015-modules-amd "^6.18.0"
432 | babel-runtime "^6.0.0"
433 | babel-template "^6.8.0"
434 |
435 | babel-plugin-transform-es2015-object-super@^6.3.13:
436 | version "6.8.0"
437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5"
438 | dependencies:
439 | babel-helper-replace-supers "^6.8.0"
440 | babel-runtime "^6.0.0"
441 |
442 | babel-plugin-transform-es2015-parameters@^6.18.0:
443 | version "6.21.0"
444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz#46a655e6864ef984091448cdf024d87b60b2a7d8"
445 | dependencies:
446 | babel-helper-call-delegate "^6.18.0"
447 | babel-helper-get-function-arity "^6.18.0"
448 | babel-runtime "^6.9.0"
449 | babel-template "^6.16.0"
450 | babel-traverse "^6.21.0"
451 | babel-types "^6.21.0"
452 |
453 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0:
454 | version "6.18.0"
455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43"
456 | dependencies:
457 | babel-runtime "^6.0.0"
458 | babel-types "^6.18.0"
459 |
460 | babel-plugin-transform-es2015-spread@^6.3.13:
461 | version "6.8.0"
462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c"
463 | dependencies:
464 | babel-runtime "^6.0.0"
465 |
466 | babel-plugin-transform-es2015-sticky-regex@^6.3.13:
467 | version "6.8.0"
468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be"
469 | dependencies:
470 | babel-helper-regex "^6.8.0"
471 | babel-runtime "^6.0.0"
472 | babel-types "^6.8.0"
473 |
474 | babel-plugin-transform-es2015-template-literals@^6.6.0:
475 | version "6.8.0"
476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b"
477 | dependencies:
478 | babel-runtime "^6.0.0"
479 |
480 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0:
481 | version "6.18.0"
482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798"
483 | dependencies:
484 | babel-runtime "^6.0.0"
485 |
486 | babel-plugin-transform-es2015-unicode-regex@^6.3.13:
487 | version "6.11.0"
488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c"
489 | dependencies:
490 | babel-helper-regex "^6.8.0"
491 | babel-runtime "^6.0.0"
492 | regexpu-core "^2.0.0"
493 |
494 | babel-plugin-transform-react-jsx@^6.8.0:
495 | version "6.8.0"
496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.8.0.tgz#94759942f70af18c617189aa7f3593f1644a71ab"
497 | dependencies:
498 | babel-helper-builder-react-jsx "^6.8.0"
499 | babel-plugin-syntax-jsx "^6.8.0"
500 | babel-runtime "^6.0.0"
501 |
502 | babel-plugin-transform-regenerator@^6.16.0:
503 | version "6.21.0"
504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.21.0.tgz#75d0c7e7f84f379358f508451c68a2c5fa5a9703"
505 | dependencies:
506 | regenerator-transform "0.9.8"
507 |
508 | babel-plugin-transform-strict-mode@^6.18.0:
509 | version "6.18.0"
510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d"
511 | dependencies:
512 | babel-runtime "^6.0.0"
513 | babel-types "^6.18.0"
514 |
515 | babel-polyfill@^6.16.0:
516 | version "6.20.0"
517 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.20.0.tgz#de4a371006139e20990aac0be367d398331204e7"
518 | dependencies:
519 | babel-runtime "^6.20.0"
520 | core-js "^2.4.0"
521 | regenerator-runtime "^0.10.0"
522 |
523 | babel-preset-es2015@^6.18.0:
524 | version "6.18.0"
525 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312"
526 | dependencies:
527 | babel-plugin-check-es2015-constants "^6.3.13"
528 | babel-plugin-transform-es2015-arrow-functions "^6.3.13"
529 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13"
530 | babel-plugin-transform-es2015-block-scoping "^6.18.0"
531 | babel-plugin-transform-es2015-classes "^6.18.0"
532 | babel-plugin-transform-es2015-computed-properties "^6.3.13"
533 | babel-plugin-transform-es2015-destructuring "^6.18.0"
534 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0"
535 | babel-plugin-transform-es2015-for-of "^6.18.0"
536 | babel-plugin-transform-es2015-function-name "^6.9.0"
537 | babel-plugin-transform-es2015-literals "^6.3.13"
538 | babel-plugin-transform-es2015-modules-amd "^6.18.0"
539 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
540 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0"
541 | babel-plugin-transform-es2015-modules-umd "^6.18.0"
542 | babel-plugin-transform-es2015-object-super "^6.3.13"
543 | babel-plugin-transform-es2015-parameters "^6.18.0"
544 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0"
545 | babel-plugin-transform-es2015-spread "^6.3.13"
546 | babel-plugin-transform-es2015-sticky-regex "^6.3.13"
547 | babel-plugin-transform-es2015-template-literals "^6.6.0"
548 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0"
549 | babel-plugin-transform-es2015-unicode-regex "^6.3.13"
550 | babel-plugin-transform-regenerator "^6.16.0"
551 |
552 | babel-register@^6.18.0:
553 | version "6.18.0"
554 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68"
555 | dependencies:
556 | babel-core "^6.18.0"
557 | babel-runtime "^6.11.6"
558 | core-js "^2.4.0"
559 | home-or-tmp "^2.0.0"
560 | lodash "^4.2.0"
561 | mkdirp "^0.5.1"
562 | source-map-support "^0.4.2"
563 |
564 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.9.0:
565 | version "6.20.0"
566 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f"
567 | dependencies:
568 | core-js "^2.4.0"
569 | regenerator-runtime "^0.10.0"
570 |
571 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0:
572 | version "6.16.0"
573 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
574 | dependencies:
575 | babel-runtime "^6.9.0"
576 | babel-traverse "^6.16.0"
577 | babel-types "^6.16.0"
578 | babylon "^6.11.0"
579 | lodash "^4.2.0"
580 |
581 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.21.0:
582 | version "6.21.0"
583 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad"
584 | dependencies:
585 | babel-code-frame "^6.20.0"
586 | babel-messages "^6.8.0"
587 | babel-runtime "^6.20.0"
588 | babel-types "^6.21.0"
589 | babylon "^6.11.0"
590 | debug "^2.2.0"
591 | globals "^9.0.0"
592 | invariant "^2.2.0"
593 | lodash "^4.2.0"
594 |
595 | babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.8.0, babel-types@^6.9.0:
596 | version "6.21.0"
597 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2"
598 | dependencies:
599 | babel-runtime "^6.20.0"
600 | esutils "^2.0.2"
601 | lodash "^4.2.0"
602 | to-fast-properties "^1.0.1"
603 |
604 | babylon@^6.11.0, babylon@^6.13.0:
605 | version "6.14.1"
606 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815"
607 |
608 | balanced-match@^0.4.1:
609 | version "0.4.2"
610 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
611 |
612 | bcrypt-pbkdf@^1.0.0:
613 | version "1.0.0"
614 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
615 | dependencies:
616 | tweetnacl "^0.14.3"
617 |
618 | binary-extensions@^1.0.0:
619 | version "1.8.0"
620 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
621 |
622 | block-stream@*:
623 | version "0.0.9"
624 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
625 | dependencies:
626 | inherits "~2.0.0"
627 |
628 | boom@2.x.x:
629 | version "2.10.1"
630 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
631 | dependencies:
632 | hoek "2.x.x"
633 |
634 | brace-expansion@^1.0.0:
635 | version "1.1.6"
636 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
637 | dependencies:
638 | balanced-match "^0.4.1"
639 | concat-map "0.0.1"
640 |
641 | braces@^1.8.2:
642 | version "1.8.5"
643 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
644 | dependencies:
645 | expand-range "^1.8.1"
646 | preserve "^0.2.0"
647 | repeat-element "^1.1.2"
648 |
649 | browser-stdout@1.3.0:
650 | version "1.3.0"
651 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f"
652 |
653 | buffer-shims@^1.0.0:
654 | version "1.0.0"
655 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
656 |
657 | caller-path@^0.1.0:
658 | version "0.1.0"
659 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
660 | dependencies:
661 | callsites "^0.2.0"
662 |
663 | callsites@^0.2.0:
664 | version "0.2.0"
665 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
666 |
667 | caseless@~0.11.0:
668 | version "0.11.0"
669 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
670 |
671 | chai@^3.5.0:
672 | version "3.5.0"
673 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247"
674 | dependencies:
675 | assertion-error "^1.0.1"
676 | deep-eql "^0.1.3"
677 | type-detect "^1.0.0"
678 |
679 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
680 | version "1.1.3"
681 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
682 | dependencies:
683 | ansi-styles "^2.2.1"
684 | escape-string-regexp "^1.0.2"
685 | has-ansi "^2.0.0"
686 | strip-ansi "^3.0.0"
687 | supports-color "^2.0.0"
688 |
689 | chokidar@^1.0.0:
690 | version "1.6.1"
691 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
692 | dependencies:
693 | anymatch "^1.3.0"
694 | async-each "^1.0.0"
695 | glob-parent "^2.0.0"
696 | inherits "^2.0.1"
697 | is-binary-path "^1.0.0"
698 | is-glob "^2.0.0"
699 | path-is-absolute "^1.0.0"
700 | readdirp "^2.0.0"
701 | optionalDependencies:
702 | fsevents "^1.0.0"
703 |
704 | circular-json@^0.3.1:
705 | version "0.3.1"
706 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
707 |
708 | cli-cursor@^1.0.1:
709 | version "1.0.2"
710 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
711 | dependencies:
712 | restore-cursor "^1.0.1"
713 |
714 | cli-width@^2.0.0:
715 | version "2.1.0"
716 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
717 |
718 | co@^4.6.0:
719 | version "4.6.0"
720 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
721 |
722 | code-point-at@^1.0.0:
723 | version "1.1.0"
724 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
725 |
726 | combined-stream@^1.0.5, combined-stream@~1.0.5:
727 | version "1.0.5"
728 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
729 | dependencies:
730 | delayed-stream "~1.0.0"
731 |
732 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0:
733 | version "2.9.0"
734 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
735 | dependencies:
736 | graceful-readlink ">= 1.0.0"
737 |
738 | concat-map@0.0.1:
739 | version "0.0.1"
740 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
741 |
742 | concat-stream@^1.4.6:
743 | version "1.6.0"
744 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
745 | dependencies:
746 | inherits "^2.0.3"
747 | readable-stream "^2.2.2"
748 | typedarray "^0.0.6"
749 |
750 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
751 | version "1.1.0"
752 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
753 |
754 | convert-source-map@^1.1.0:
755 | version "1.3.0"
756 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67"
757 |
758 | core-js@^2.4.0:
759 | version "2.4.1"
760 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
761 |
762 | core-util-is@~1.0.0:
763 | version "1.0.2"
764 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
765 |
766 | cryptiles@2.x.x:
767 | version "2.0.5"
768 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
769 | dependencies:
770 | boom "2.x.x"
771 |
772 | d@^0.1.1, d@~0.1.1:
773 | version "0.1.1"
774 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
775 | dependencies:
776 | es5-ext "~0.10.2"
777 |
778 | dashdash@^1.12.0:
779 | version "1.14.1"
780 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
781 | dependencies:
782 | assert-plus "^1.0.0"
783 |
784 | debug@2.2.0, debug@~2.2.0:
785 | version "2.2.0"
786 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
787 | dependencies:
788 | ms "0.7.1"
789 |
790 | debug@^2.1.1, debug@^2.2.0:
791 | version "2.5.2"
792 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.5.2.tgz#50c295a53dbf1657146e0c1b21307275e90d49cb"
793 | dependencies:
794 | ms "0.7.2"
795 |
796 | deep-eql@^0.1.3:
797 | version "0.1.3"
798 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
799 | dependencies:
800 | type-detect "0.1.1"
801 |
802 | deep-extend@~0.4.0:
803 | version "0.4.1"
804 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
805 |
806 | deep-is@~0.1.3:
807 | version "0.1.3"
808 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
809 |
810 | del@^2.0.2:
811 | version "2.2.2"
812 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
813 | dependencies:
814 | globby "^5.0.0"
815 | is-path-cwd "^1.0.0"
816 | is-path-in-cwd "^1.0.0"
817 | object-assign "^4.0.1"
818 | pify "^2.0.0"
819 | pinkie-promise "^2.0.0"
820 | rimraf "^2.2.8"
821 |
822 | delayed-stream@~1.0.0:
823 | version "1.0.0"
824 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
825 |
826 | delegates@^1.0.0:
827 | version "1.0.0"
828 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
829 |
830 | detect-indent@^4.0.0:
831 | version "4.0.0"
832 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
833 | dependencies:
834 | repeating "^2.0.0"
835 |
836 | diff@1.4.0:
837 | version "1.4.0"
838 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"
839 |
840 | doctrine@^1.2.2:
841 | version "1.5.0"
842 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
843 | dependencies:
844 | esutils "^2.0.2"
845 | isarray "^1.0.0"
846 |
847 | ecc-jsbn@~0.1.1:
848 | version "0.1.1"
849 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
850 | dependencies:
851 | jsbn "~0.1.0"
852 |
853 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
854 | version "0.10.12"
855 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
856 | dependencies:
857 | es6-iterator "2"
858 | es6-symbol "~3.1"
859 |
860 | es6-iterator@2:
861 | version "2.0.0"
862 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
863 | dependencies:
864 | d "^0.1.1"
865 | es5-ext "^0.10.7"
866 | es6-symbol "3"
867 |
868 | es6-map@^0.1.3:
869 | version "0.1.4"
870 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
871 | dependencies:
872 | d "~0.1.1"
873 | es5-ext "~0.10.11"
874 | es6-iterator "2"
875 | es6-set "~0.1.3"
876 | es6-symbol "~3.1.0"
877 | event-emitter "~0.3.4"
878 |
879 | es6-set@~0.1.3:
880 | version "0.1.4"
881 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
882 | dependencies:
883 | d "~0.1.1"
884 | es5-ext "~0.10.11"
885 | es6-iterator "2"
886 | es6-symbol "3"
887 | event-emitter "~0.3.4"
888 |
889 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
890 | version "3.1.0"
891 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
892 | dependencies:
893 | d "~0.1.1"
894 | es5-ext "~0.10.11"
895 |
896 | es6-weak-map@^2.0.1:
897 | version "2.0.1"
898 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
899 | dependencies:
900 | d "^0.1.1"
901 | es5-ext "^0.10.8"
902 | es6-iterator "2"
903 | es6-symbol "3"
904 |
905 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
906 | version "1.0.5"
907 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
908 |
909 | escope@^3.6.0:
910 | version "3.6.0"
911 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
912 | dependencies:
913 | es6-map "^0.1.3"
914 | es6-weak-map "^2.0.1"
915 | esrecurse "^4.1.0"
916 | estraverse "^4.1.1"
917 |
918 | eslint@^3.12.2:
919 | version "3.12.2"
920 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.12.2.tgz#6be5a9aa29658252abd7f91e9132bab1f26f3c34"
921 | dependencies:
922 | babel-code-frame "^6.16.0"
923 | chalk "^1.1.3"
924 | concat-stream "^1.4.6"
925 | debug "^2.1.1"
926 | doctrine "^1.2.2"
927 | escope "^3.6.0"
928 | espree "^3.3.1"
929 | estraverse "^4.2.0"
930 | esutils "^2.0.2"
931 | file-entry-cache "^2.0.0"
932 | glob "^7.0.3"
933 | globals "^9.14.0"
934 | ignore "^3.2.0"
935 | imurmurhash "^0.1.4"
936 | inquirer "^0.12.0"
937 | is-my-json-valid "^2.10.0"
938 | is-resolvable "^1.0.0"
939 | js-yaml "^3.5.1"
940 | json-stable-stringify "^1.0.0"
941 | levn "^0.3.0"
942 | lodash "^4.0.0"
943 | mkdirp "^0.5.0"
944 | natural-compare "^1.4.0"
945 | optionator "^0.8.2"
946 | path-is-inside "^1.0.1"
947 | pluralize "^1.2.1"
948 | progress "^1.1.8"
949 | require-uncached "^1.0.2"
950 | shelljs "^0.7.5"
951 | strip-bom "^3.0.0"
952 | strip-json-comments "~1.0.1"
953 | table "^3.7.8"
954 | text-table "~0.2.0"
955 | user-home "^2.0.0"
956 |
957 | espree@^3.3.1:
958 | version "3.3.2"
959 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c"
960 | dependencies:
961 | acorn "^4.0.1"
962 | acorn-jsx "^3.0.0"
963 |
964 | esprima@^2.6.0:
965 | version "2.7.3"
966 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
967 |
968 | esrecurse@^4.1.0:
969 | version "4.1.0"
970 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
971 | dependencies:
972 | estraverse "~4.1.0"
973 | object-assign "^4.0.1"
974 |
975 | estraverse@^4.1.1, estraverse@^4.2.0:
976 | version "4.2.0"
977 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
978 |
979 | estraverse@~4.1.0:
980 | version "4.1.1"
981 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
982 |
983 | esutils@^2.0.0, esutils@^2.0.2:
984 | version "2.0.2"
985 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
986 |
987 | event-emitter@~0.3.4:
988 | version "0.3.4"
989 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
990 | dependencies:
991 | d "~0.1.1"
992 | es5-ext "~0.10.7"
993 |
994 | exit-hook@^1.0.0:
995 | version "1.1.1"
996 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
997 |
998 | expand-brackets@^0.1.4:
999 | version "0.1.5"
1000 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1001 | dependencies:
1002 | is-posix-bracket "^0.1.0"
1003 |
1004 | expand-range@^1.8.1:
1005 | version "1.8.2"
1006 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1007 | dependencies:
1008 | fill-range "^2.1.0"
1009 |
1010 | extend@~3.0.0:
1011 | version "3.0.0"
1012 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1013 |
1014 | extglob@^0.3.1:
1015 | version "0.3.2"
1016 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1017 | dependencies:
1018 | is-extglob "^1.0.0"
1019 |
1020 | extsprintf@1.0.2:
1021 | version "1.0.2"
1022 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1023 |
1024 | fast-levenshtein@~2.0.4:
1025 | version "2.0.5"
1026 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
1027 |
1028 | figures@^1.3.5:
1029 | version "1.7.0"
1030 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1031 | dependencies:
1032 | escape-string-regexp "^1.0.5"
1033 | object-assign "^4.1.0"
1034 |
1035 | file-entry-cache@^2.0.0:
1036 | version "2.0.0"
1037 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1038 | dependencies:
1039 | flat-cache "^1.2.1"
1040 | object-assign "^4.0.1"
1041 |
1042 | filename-regex@^2.0.0:
1043 | version "2.0.0"
1044 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1045 |
1046 | fill-range@^2.1.0:
1047 | version "2.2.3"
1048 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1049 | dependencies:
1050 | is-number "^2.1.0"
1051 | isobject "^2.0.0"
1052 | randomatic "^1.1.3"
1053 | repeat-element "^1.1.2"
1054 | repeat-string "^1.5.2"
1055 |
1056 | flat-cache@^1.2.1:
1057 | version "1.2.2"
1058 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
1059 | dependencies:
1060 | circular-json "^0.3.1"
1061 | del "^2.0.2"
1062 | graceful-fs "^4.1.2"
1063 | write "^0.2.1"
1064 |
1065 | for-in@^0.1.5:
1066 | version "0.1.6"
1067 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
1068 |
1069 | for-own@^0.1.4:
1070 | version "0.1.4"
1071 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
1072 | dependencies:
1073 | for-in "^0.1.5"
1074 |
1075 | forever-agent@~0.6.1:
1076 | version "0.6.1"
1077 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1078 |
1079 | form-data@~2.1.1:
1080 | version "2.1.2"
1081 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
1082 | dependencies:
1083 | asynckit "^0.4.0"
1084 | combined-stream "^1.0.5"
1085 | mime-types "^2.1.12"
1086 |
1087 | fs-readdir-recursive@^1.0.0:
1088 | version "1.0.0"
1089 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560"
1090 |
1091 | fs.realpath@^1.0.0:
1092 | version "1.0.0"
1093 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1094 |
1095 | fsevents@^1.0.0:
1096 | version "1.0.15"
1097 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44"
1098 | dependencies:
1099 | nan "^2.3.0"
1100 | node-pre-gyp "^0.6.29"
1101 |
1102 | fstream-ignore@~1.0.5:
1103 | version "1.0.5"
1104 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1105 | dependencies:
1106 | fstream "^1.0.0"
1107 | inherits "2"
1108 | minimatch "^3.0.0"
1109 |
1110 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
1111 | version "1.0.10"
1112 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822"
1113 | dependencies:
1114 | graceful-fs "^4.1.2"
1115 | inherits "~2.0.0"
1116 | mkdirp ">=0.5 0"
1117 | rimraf "2"
1118 |
1119 | gauge@~2.7.1:
1120 | version "2.7.2"
1121 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774"
1122 | dependencies:
1123 | aproba "^1.0.3"
1124 | console-control-strings "^1.0.0"
1125 | has-unicode "^2.0.0"
1126 | object-assign "^4.1.0"
1127 | signal-exit "^3.0.0"
1128 | string-width "^1.0.1"
1129 | strip-ansi "^3.0.1"
1130 | supports-color "^0.2.0"
1131 | wide-align "^1.1.0"
1132 |
1133 | generate-function@^2.0.0:
1134 | version "2.0.0"
1135 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1136 |
1137 | generate-object-property@^1.1.0:
1138 | version "1.2.0"
1139 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1140 | dependencies:
1141 | is-property "^1.0.0"
1142 |
1143 | getpass@^0.1.1:
1144 | version "0.1.6"
1145 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1146 | dependencies:
1147 | assert-plus "^1.0.0"
1148 |
1149 | glob-base@^0.3.0:
1150 | version "0.3.0"
1151 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1152 | dependencies:
1153 | glob-parent "^2.0.0"
1154 | is-glob "^2.0.0"
1155 |
1156 | glob-parent@^2.0.0:
1157 | version "2.0.0"
1158 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1159 | dependencies:
1160 | is-glob "^2.0.0"
1161 |
1162 | glob@7.0.5:
1163 | version "7.0.5"
1164 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95"
1165 | dependencies:
1166 | fs.realpath "^1.0.0"
1167 | inflight "^1.0.4"
1168 | inherits "2"
1169 | minimatch "^3.0.2"
1170 | once "^1.3.0"
1171 | path-is-absolute "^1.0.0"
1172 |
1173 | glob@^5.0.5:
1174 | version "5.0.15"
1175 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
1176 | dependencies:
1177 | inflight "^1.0.4"
1178 | inherits "2"
1179 | minimatch "2 || 3"
1180 | once "^1.3.0"
1181 | path-is-absolute "^1.0.0"
1182 |
1183 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
1184 | version "7.1.1"
1185 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1186 | dependencies:
1187 | fs.realpath "^1.0.0"
1188 | inflight "^1.0.4"
1189 | inherits "2"
1190 | minimatch "^3.0.2"
1191 | once "^1.3.0"
1192 | path-is-absolute "^1.0.0"
1193 |
1194 | globals@^9.0.0, globals@^9.14.0:
1195 | version "9.14.0"
1196 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
1197 |
1198 | globby@^5.0.0:
1199 | version "5.0.0"
1200 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1201 | dependencies:
1202 | array-union "^1.0.1"
1203 | arrify "^1.0.0"
1204 | glob "^7.0.3"
1205 | object-assign "^4.0.1"
1206 | pify "^2.0.0"
1207 | pinkie-promise "^2.0.0"
1208 |
1209 | graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1210 | version "4.1.11"
1211 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1212 |
1213 | "graceful-readlink@>= 1.0.0":
1214 | version "1.0.1"
1215 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1216 |
1217 | growl@1.9.2:
1218 | version "1.9.2"
1219 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f"
1220 |
1221 | har-validator@~2.0.6:
1222 | version "2.0.6"
1223 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
1224 | dependencies:
1225 | chalk "^1.1.1"
1226 | commander "^2.9.0"
1227 | is-my-json-valid "^2.12.4"
1228 | pinkie-promise "^2.0.0"
1229 |
1230 | has-ansi@^2.0.0:
1231 | version "2.0.0"
1232 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1233 | dependencies:
1234 | ansi-regex "^2.0.0"
1235 |
1236 | has-flag@^1.0.0:
1237 | version "1.0.0"
1238 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1239 |
1240 | has-unicode@^2.0.0:
1241 | version "2.0.1"
1242 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1243 |
1244 | hawk@~3.1.3:
1245 | version "3.1.3"
1246 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1247 | dependencies:
1248 | boom "2.x.x"
1249 | cryptiles "2.x.x"
1250 | hoek "2.x.x"
1251 | sntp "1.x.x"
1252 |
1253 | hoek@2.x.x:
1254 | version "2.16.3"
1255 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1256 |
1257 | home-or-tmp@^2.0.0:
1258 | version "2.0.0"
1259 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1260 | dependencies:
1261 | os-homedir "^1.0.0"
1262 | os-tmpdir "^1.0.1"
1263 |
1264 | http-signature@~1.1.0:
1265 | version "1.1.1"
1266 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1267 | dependencies:
1268 | assert-plus "^0.2.0"
1269 | jsprim "^1.2.2"
1270 | sshpk "^1.7.0"
1271 |
1272 | ignore@^3.2.0:
1273 | version "3.2.0"
1274 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435"
1275 |
1276 | imurmurhash@^0.1.4:
1277 | version "0.1.4"
1278 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1279 |
1280 | inflight@^1.0.4:
1281 | version "1.0.6"
1282 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1283 | dependencies:
1284 | once "^1.3.0"
1285 | wrappy "1"
1286 |
1287 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1:
1288 | version "2.0.3"
1289 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1290 |
1291 | ini@~1.3.0:
1292 | version "1.3.4"
1293 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1294 |
1295 | inquirer@^0.12.0:
1296 | version "0.12.0"
1297 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
1298 | dependencies:
1299 | ansi-escapes "^1.1.0"
1300 | ansi-regex "^2.0.0"
1301 | chalk "^1.0.0"
1302 | cli-cursor "^1.0.1"
1303 | cli-width "^2.0.0"
1304 | figures "^1.3.5"
1305 | lodash "^4.3.0"
1306 | readline2 "^1.0.1"
1307 | run-async "^0.1.0"
1308 | rx-lite "^3.1.2"
1309 | string-width "^1.0.1"
1310 | strip-ansi "^3.0.0"
1311 | through "^2.3.6"
1312 |
1313 | interpret@^1.0.0:
1314 | version "1.0.1"
1315 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
1316 |
1317 | invariant@^2.2.0:
1318 | version "2.2.2"
1319 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1320 | dependencies:
1321 | loose-envify "^1.0.0"
1322 |
1323 | is-binary-path@^1.0.0:
1324 | version "1.0.1"
1325 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1326 | dependencies:
1327 | binary-extensions "^1.0.0"
1328 |
1329 | is-buffer@^1.0.2:
1330 | version "1.1.4"
1331 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
1332 |
1333 | is-dotfile@^1.0.0:
1334 | version "1.0.2"
1335 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
1336 |
1337 | is-equal-shallow@^0.1.3:
1338 | version "0.1.3"
1339 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1340 | dependencies:
1341 | is-primitive "^2.0.0"
1342 |
1343 | is-extendable@^0.1.1:
1344 | version "0.1.1"
1345 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1346 |
1347 | is-extglob@^1.0.0:
1348 | version "1.0.0"
1349 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1350 |
1351 | is-finite@^1.0.0:
1352 | version "1.0.2"
1353 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1354 | dependencies:
1355 | number-is-nan "^1.0.0"
1356 |
1357 | is-fullwidth-code-point@^1.0.0:
1358 | version "1.0.0"
1359 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1360 | dependencies:
1361 | number-is-nan "^1.0.0"
1362 |
1363 | is-fullwidth-code-point@^2.0.0:
1364 | version "2.0.0"
1365 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1366 |
1367 | is-glob@^2.0.0, is-glob@^2.0.1:
1368 | version "2.0.1"
1369 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1370 | dependencies:
1371 | is-extglob "^1.0.0"
1372 |
1373 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4:
1374 | version "2.15.0"
1375 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
1376 | dependencies:
1377 | generate-function "^2.0.0"
1378 | generate-object-property "^1.1.0"
1379 | jsonpointer "^4.0.0"
1380 | xtend "^4.0.0"
1381 |
1382 | is-number@^2.0.2, is-number@^2.1.0:
1383 | version "2.1.0"
1384 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1385 | dependencies:
1386 | kind-of "^3.0.2"
1387 |
1388 | is-path-cwd@^1.0.0:
1389 | version "1.0.0"
1390 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1391 |
1392 | is-path-in-cwd@^1.0.0:
1393 | version "1.0.0"
1394 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1395 | dependencies:
1396 | is-path-inside "^1.0.0"
1397 |
1398 | is-path-inside@^1.0.0:
1399 | version "1.0.0"
1400 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1401 | dependencies:
1402 | path-is-inside "^1.0.1"
1403 |
1404 | is-posix-bracket@^0.1.0:
1405 | version "0.1.1"
1406 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1407 |
1408 | is-primitive@^2.0.0:
1409 | version "2.0.0"
1410 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1411 |
1412 | is-property@^1.0.0:
1413 | version "1.0.2"
1414 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1415 |
1416 | is-resolvable@^1.0.0:
1417 | version "1.0.0"
1418 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1419 | dependencies:
1420 | tryit "^1.0.1"
1421 |
1422 | is-typedarray@~1.0.0:
1423 | version "1.0.0"
1424 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1425 |
1426 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1427 | version "1.0.0"
1428 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1429 |
1430 | isobject@^2.0.0:
1431 | version "2.1.0"
1432 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1433 | dependencies:
1434 | isarray "1.0.0"
1435 |
1436 | isstream@~0.1.2:
1437 | version "0.1.2"
1438 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1439 |
1440 | jodid25519@^1.0.0:
1441 | version "1.0.2"
1442 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
1443 | dependencies:
1444 | jsbn "~0.1.0"
1445 |
1446 | js-tokens@^2.0.0:
1447 | version "2.0.0"
1448 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
1449 |
1450 | js-yaml@^3.5.1:
1451 | version "3.7.0"
1452 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
1453 | dependencies:
1454 | argparse "^1.0.7"
1455 | esprima "^2.6.0"
1456 |
1457 | jsbn@~0.1.0:
1458 | version "0.1.0"
1459 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
1460 |
1461 | jsesc@^1.3.0:
1462 | version "1.3.0"
1463 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1464 |
1465 | jsesc@~0.5.0:
1466 | version "0.5.0"
1467 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1468 |
1469 | json-schema@0.2.3:
1470 | version "0.2.3"
1471 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1472 |
1473 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1474 | version "1.0.1"
1475 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1476 | dependencies:
1477 | jsonify "~0.0.0"
1478 |
1479 | json-stringify-safe@~5.0.1:
1480 | version "5.0.1"
1481 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1482 |
1483 | json3@3.3.2:
1484 | version "3.3.2"
1485 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1486 |
1487 | json5@^0.5.0:
1488 | version "0.5.1"
1489 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1490 |
1491 | jsonify@~0.0.0:
1492 | version "0.0.0"
1493 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1494 |
1495 | jsonpointer@^4.0.0:
1496 | version "4.0.1"
1497 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
1498 |
1499 | jsprim@^1.2.2:
1500 | version "1.3.1"
1501 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
1502 | dependencies:
1503 | extsprintf "1.0.2"
1504 | json-schema "0.2.3"
1505 | verror "1.3.6"
1506 |
1507 | kind-of@^3.0.2:
1508 | version "3.1.0"
1509 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
1510 | dependencies:
1511 | is-buffer "^1.0.2"
1512 |
1513 | levn@^0.3.0, levn@~0.3.0:
1514 | version "0.3.0"
1515 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1516 | dependencies:
1517 | prelude-ls "~1.1.2"
1518 | type-check "~0.3.2"
1519 |
1520 | lodash._baseassign@^3.0.0:
1521 | version "3.2.0"
1522 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e"
1523 | dependencies:
1524 | lodash._basecopy "^3.0.0"
1525 | lodash.keys "^3.0.0"
1526 |
1527 | lodash._basecopy@^3.0.0:
1528 | version "3.0.1"
1529 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
1530 |
1531 | lodash._basecreate@^3.0.0:
1532 | version "3.0.3"
1533 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821"
1534 |
1535 | lodash._getnative@^3.0.0:
1536 | version "3.9.1"
1537 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
1538 |
1539 | lodash._isiterateecall@^3.0.0:
1540 | version "3.0.9"
1541 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
1542 |
1543 | lodash.create@3.1.1:
1544 | version "3.1.1"
1545 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7"
1546 | dependencies:
1547 | lodash._baseassign "^3.0.0"
1548 | lodash._basecreate "^3.0.0"
1549 | lodash._isiterateecall "^3.0.0"
1550 |
1551 | lodash.isarguments@^3.0.0:
1552 | version "3.1.0"
1553 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
1554 |
1555 | lodash.isarray@^3.0.0:
1556 | version "3.0.4"
1557 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
1558 |
1559 | lodash.keys@^3.0.0:
1560 | version "3.1.2"
1561 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
1562 | dependencies:
1563 | lodash._getnative "^3.0.0"
1564 | lodash.isarguments "^3.0.0"
1565 | lodash.isarray "^3.0.0"
1566 |
1567 | lodash.pickby@^4.6.0:
1568 | version "4.6.0"
1569 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
1570 |
1571 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0:
1572 | version "4.17.3"
1573 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.3.tgz#557ed7d2a9438cac5fd5a43043ca60cb455e01f7"
1574 |
1575 | loose-envify@^1.0.0:
1576 | version "1.3.0"
1577 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
1578 | dependencies:
1579 | js-tokens "^2.0.0"
1580 |
1581 | micromatch@^2.1.5:
1582 | version "2.3.11"
1583 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1584 | dependencies:
1585 | arr-diff "^2.0.0"
1586 | array-unique "^0.2.1"
1587 | braces "^1.8.2"
1588 | expand-brackets "^0.1.4"
1589 | extglob "^0.3.1"
1590 | filename-regex "^2.0.0"
1591 | is-extglob "^1.0.0"
1592 | is-glob "^2.0.1"
1593 | kind-of "^3.0.2"
1594 | normalize-path "^2.0.1"
1595 | object.omit "^2.0.0"
1596 | parse-glob "^3.0.4"
1597 | regex-cache "^0.4.2"
1598 |
1599 | mime-db@~1.25.0:
1600 | version "1.25.0"
1601 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392"
1602 |
1603 | mime-types@^2.1.12, mime-types@~2.1.7:
1604 | version "2.1.13"
1605 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88"
1606 | dependencies:
1607 | mime-db "~1.25.0"
1608 |
1609 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2:
1610 | version "3.0.3"
1611 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
1612 | dependencies:
1613 | brace-expansion "^1.0.0"
1614 |
1615 | minimist@0.0.8:
1616 | version "0.0.8"
1617 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1618 |
1619 | minimist@^1.2.0:
1620 | version "1.2.0"
1621 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1622 |
1623 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
1624 | version "0.5.1"
1625 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1626 | dependencies:
1627 | minimist "0.0.8"
1628 |
1629 | mocha@^3.2.0:
1630 | version "3.2.0"
1631 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3"
1632 | dependencies:
1633 | browser-stdout "1.3.0"
1634 | commander "2.9.0"
1635 | debug "2.2.0"
1636 | diff "1.4.0"
1637 | escape-string-regexp "1.0.5"
1638 | glob "7.0.5"
1639 | growl "1.9.2"
1640 | json3 "3.3.2"
1641 | lodash.create "3.1.1"
1642 | mkdirp "0.5.1"
1643 | supports-color "3.1.2"
1644 |
1645 | ms@0.7.1:
1646 | version "0.7.1"
1647 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
1648 |
1649 | ms@0.7.2:
1650 | version "0.7.2"
1651 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
1652 |
1653 | mute-stream@0.0.5:
1654 | version "0.0.5"
1655 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1656 |
1657 | nan@^2.3.0:
1658 | version "2.5.0"
1659 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.0.tgz#aa8f1e34531d807e9e27755b234b4a6ec0c152a8"
1660 |
1661 | natural-compare@^1.4.0:
1662 | version "1.4.0"
1663 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1664 |
1665 | node-pre-gyp@^0.6.29:
1666 | version "0.6.32"
1667 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5"
1668 | dependencies:
1669 | mkdirp "~0.5.1"
1670 | nopt "~3.0.6"
1671 | npmlog "^4.0.1"
1672 | rc "~1.1.6"
1673 | request "^2.79.0"
1674 | rimraf "~2.5.4"
1675 | semver "~5.3.0"
1676 | tar "~2.2.1"
1677 | tar-pack "~3.3.0"
1678 |
1679 | nopt@~3.0.6:
1680 | version "3.0.6"
1681 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
1682 | dependencies:
1683 | abbrev "1"
1684 |
1685 | normalize-path@^2.0.1:
1686 | version "2.0.1"
1687 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
1688 |
1689 | npmlog@^4.0.1:
1690 | version "4.0.2"
1691 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f"
1692 | dependencies:
1693 | are-we-there-yet "~1.1.2"
1694 | console-control-strings "~1.1.0"
1695 | gauge "~2.7.1"
1696 | set-blocking "~2.0.0"
1697 |
1698 | number-is-nan@^1.0.0:
1699 | version "1.0.1"
1700 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1701 |
1702 | oauth-sign@~0.8.1:
1703 | version "0.8.2"
1704 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1705 |
1706 | object-assign@^4.0.1, object-assign@^4.1.0:
1707 | version "4.1.0"
1708 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
1709 |
1710 | object.omit@^2.0.0:
1711 | version "2.0.1"
1712 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1713 | dependencies:
1714 | for-own "^0.1.4"
1715 | is-extendable "^0.1.1"
1716 |
1717 | once@^1.3.0:
1718 | version "1.4.0"
1719 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1720 | dependencies:
1721 | wrappy "1"
1722 |
1723 | once@~1.3.3:
1724 | version "1.3.3"
1725 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
1726 | dependencies:
1727 | wrappy "1"
1728 |
1729 | onetime@^1.0.0:
1730 | version "1.1.0"
1731 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1732 |
1733 | optionator@^0.8.2:
1734 | version "0.8.2"
1735 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1736 | dependencies:
1737 | deep-is "~0.1.3"
1738 | fast-levenshtein "~2.0.4"
1739 | levn "~0.3.0"
1740 | prelude-ls "~1.1.2"
1741 | type-check "~0.3.2"
1742 | wordwrap "~1.0.0"
1743 |
1744 | os-homedir@^1.0.0:
1745 | version "1.0.2"
1746 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1747 |
1748 | os-tmpdir@^1.0.1:
1749 | version "1.0.2"
1750 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1751 |
1752 | output-file-sync@^1.1.0:
1753 | version "1.1.2"
1754 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
1755 | dependencies:
1756 | graceful-fs "^4.1.4"
1757 | mkdirp "^0.5.1"
1758 | object-assign "^4.1.0"
1759 |
1760 | parse-glob@^3.0.4:
1761 | version "3.0.4"
1762 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1763 | dependencies:
1764 | glob-base "^0.3.0"
1765 | is-dotfile "^1.0.0"
1766 | is-extglob "^1.0.0"
1767 | is-glob "^2.0.0"
1768 |
1769 | path-is-absolute@^1.0.0:
1770 | version "1.0.1"
1771 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1772 |
1773 | path-is-inside@^1.0.1:
1774 | version "1.0.2"
1775 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1776 |
1777 | pify@^2.0.0:
1778 | version "2.3.0"
1779 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1780 |
1781 | pinkie-promise@^2.0.0:
1782 | version "2.0.1"
1783 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1784 | dependencies:
1785 | pinkie "^2.0.0"
1786 |
1787 | pinkie@^2.0.0:
1788 | version "2.0.4"
1789 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1790 |
1791 | pluralize@^1.2.1:
1792 | version "1.2.1"
1793 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1794 |
1795 | prelude-ls@~1.1.2:
1796 | version "1.1.2"
1797 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1798 |
1799 | preserve@^0.2.0:
1800 | version "0.2.0"
1801 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1802 |
1803 | private@^0.1.6:
1804 | version "0.1.6"
1805 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
1806 |
1807 | process-nextick-args@~1.0.6:
1808 | version "1.0.7"
1809 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1810 |
1811 | progress@^1.1.8:
1812 | version "1.1.8"
1813 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1814 |
1815 | punycode@^1.4.1:
1816 | version "1.4.1"
1817 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1818 |
1819 | qs@~6.3.0:
1820 | version "6.3.0"
1821 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442"
1822 |
1823 | randomatic@^1.1.3:
1824 | version "1.1.6"
1825 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
1826 | dependencies:
1827 | is-number "^2.0.2"
1828 | kind-of "^3.0.2"
1829 |
1830 | rc@~1.1.6:
1831 | version "1.1.6"
1832 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
1833 | dependencies:
1834 | deep-extend "~0.4.0"
1835 | ini "~1.3.0"
1836 | minimist "^1.2.0"
1837 | strip-json-comments "~1.0.4"
1838 |
1839 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.2.2:
1840 | version "2.2.2"
1841 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
1842 | dependencies:
1843 | buffer-shims "^1.0.0"
1844 | core-util-is "~1.0.0"
1845 | inherits "~2.0.1"
1846 | isarray "~1.0.0"
1847 | process-nextick-args "~1.0.6"
1848 | string_decoder "~0.10.x"
1849 | util-deprecate "~1.0.1"
1850 |
1851 | readable-stream@~2.1.4:
1852 | version "2.1.5"
1853 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
1854 | dependencies:
1855 | buffer-shims "^1.0.0"
1856 | core-util-is "~1.0.0"
1857 | inherits "~2.0.1"
1858 | isarray "~1.0.0"
1859 | process-nextick-args "~1.0.6"
1860 | string_decoder "~0.10.x"
1861 | util-deprecate "~1.0.1"
1862 |
1863 | readdirp@^2.0.0:
1864 | version "2.1.0"
1865 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1866 | dependencies:
1867 | graceful-fs "^4.1.2"
1868 | minimatch "^3.0.2"
1869 | readable-stream "^2.0.2"
1870 | set-immediate-shim "^1.0.1"
1871 |
1872 | readline2@^1.0.1:
1873 | version "1.0.1"
1874 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1875 | dependencies:
1876 | code-point-at "^1.0.0"
1877 | is-fullwidth-code-point "^1.0.0"
1878 | mute-stream "0.0.5"
1879 |
1880 | rechoir@^0.6.2:
1881 | version "0.6.2"
1882 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1883 | dependencies:
1884 | resolve "^1.1.6"
1885 |
1886 | regenerate@^1.2.1:
1887 | version "1.3.2"
1888 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
1889 |
1890 | regenerator-runtime@^0.10.0:
1891 | version "0.10.1"
1892 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
1893 |
1894 | regenerator-transform@0.9.8:
1895 | version "0.9.8"
1896 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
1897 | dependencies:
1898 | babel-runtime "^6.18.0"
1899 | babel-types "^6.19.0"
1900 | private "^0.1.6"
1901 |
1902 | regex-cache@^0.4.2:
1903 | version "0.4.3"
1904 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
1905 | dependencies:
1906 | is-equal-shallow "^0.1.3"
1907 | is-primitive "^2.0.0"
1908 |
1909 | regexpu-core@^2.0.0:
1910 | version "2.0.0"
1911 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
1912 | dependencies:
1913 | regenerate "^1.2.1"
1914 | regjsgen "^0.2.0"
1915 | regjsparser "^0.1.4"
1916 |
1917 | regjsgen@^0.2.0:
1918 | version "0.2.0"
1919 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
1920 |
1921 | regjsparser@^0.1.4:
1922 | version "0.1.5"
1923 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
1924 | dependencies:
1925 | jsesc "~0.5.0"
1926 |
1927 | repeat-element@^1.1.2:
1928 | version "1.1.2"
1929 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1930 |
1931 | repeat-string@^1.5.2:
1932 | version "1.6.1"
1933 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1934 |
1935 | repeating@^2.0.0:
1936 | version "2.0.1"
1937 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
1938 | dependencies:
1939 | is-finite "^1.0.0"
1940 |
1941 | request@^2.79.0:
1942 | version "2.79.0"
1943 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
1944 | dependencies:
1945 | aws-sign2 "~0.6.0"
1946 | aws4 "^1.2.1"
1947 | caseless "~0.11.0"
1948 | combined-stream "~1.0.5"
1949 | extend "~3.0.0"
1950 | forever-agent "~0.6.1"
1951 | form-data "~2.1.1"
1952 | har-validator "~2.0.6"
1953 | hawk "~3.1.3"
1954 | http-signature "~1.1.0"
1955 | is-typedarray "~1.0.0"
1956 | isstream "~0.1.2"
1957 | json-stringify-safe "~5.0.1"
1958 | mime-types "~2.1.7"
1959 | oauth-sign "~0.8.1"
1960 | qs "~6.3.0"
1961 | stringstream "~0.0.4"
1962 | tough-cookie "~2.3.0"
1963 | tunnel-agent "~0.4.1"
1964 | uuid "^3.0.0"
1965 |
1966 | require-uncached@^1.0.2:
1967 | version "1.0.3"
1968 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1969 | dependencies:
1970 | caller-path "^0.1.0"
1971 | resolve-from "^1.0.0"
1972 |
1973 | resolve-from@^1.0.0:
1974 | version "1.0.1"
1975 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1976 |
1977 | resolve@^1.1.6:
1978 | version "1.2.0"
1979 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
1980 |
1981 | restore-cursor@^1.0.1:
1982 | version "1.0.1"
1983 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
1984 | dependencies:
1985 | exit-hook "^1.0.0"
1986 | onetime "^1.0.0"
1987 |
1988 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4:
1989 | version "2.5.4"
1990 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
1991 | dependencies:
1992 | glob "^7.0.5"
1993 |
1994 | run-async@^0.1.0:
1995 | version "0.1.0"
1996 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
1997 | dependencies:
1998 | once "^1.3.0"
1999 |
2000 | rx-lite@^3.1.2:
2001 | version "3.1.2"
2002 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
2003 |
2004 | semver@~5.3.0:
2005 | version "5.3.0"
2006 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2007 |
2008 | set-blocking@~2.0.0:
2009 | version "2.0.0"
2010 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2011 |
2012 | set-immediate-shim@^1.0.1:
2013 | version "1.0.1"
2014 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2015 |
2016 | shelljs@^0.7.5:
2017 | version "0.7.5"
2018 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675"
2019 | dependencies:
2020 | glob "^7.0.0"
2021 | interpret "^1.0.0"
2022 | rechoir "^0.6.2"
2023 |
2024 | signal-exit@^3.0.0:
2025 | version "3.0.2"
2026 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2027 |
2028 | slash@^1.0.0:
2029 | version "1.0.0"
2030 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2031 |
2032 | slice-ansi@0.0.4:
2033 | version "0.0.4"
2034 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
2035 |
2036 | sntp@1.x.x:
2037 | version "1.0.9"
2038 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2039 | dependencies:
2040 | hoek "2.x.x"
2041 |
2042 | source-map-support@^0.4.2:
2043 | version "0.4.8"
2044 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.8.tgz#4871918d8a3af07289182e974e32844327b2e98b"
2045 | dependencies:
2046 | source-map "^0.5.3"
2047 |
2048 | source-map@^0.5.0, source-map@^0.5.3:
2049 | version "0.5.6"
2050 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
2051 |
2052 | sprintf-js@~1.0.2:
2053 | version "1.0.3"
2054 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2055 |
2056 | sshpk@^1.7.0:
2057 | version "1.10.1"
2058 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
2059 | dependencies:
2060 | asn1 "~0.2.3"
2061 | assert-plus "^1.0.0"
2062 | dashdash "^1.12.0"
2063 | getpass "^0.1.1"
2064 | optionalDependencies:
2065 | bcrypt-pbkdf "^1.0.0"
2066 | ecc-jsbn "~0.1.1"
2067 | jodid25519 "^1.0.0"
2068 | jsbn "~0.1.0"
2069 | tweetnacl "~0.14.0"
2070 |
2071 | string-width@^1.0.1:
2072 | version "1.0.2"
2073 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2074 | dependencies:
2075 | code-point-at "^1.0.0"
2076 | is-fullwidth-code-point "^1.0.0"
2077 | strip-ansi "^3.0.0"
2078 |
2079 | string-width@^2.0.0:
2080 | version "2.0.0"
2081 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
2082 | dependencies:
2083 | is-fullwidth-code-point "^2.0.0"
2084 | strip-ansi "^3.0.0"
2085 |
2086 | string_decoder@~0.10.x:
2087 | version "0.10.31"
2088 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2089 |
2090 | stringstream@~0.0.4:
2091 | version "0.0.5"
2092 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2093 |
2094 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2095 | version "3.0.1"
2096 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2097 | dependencies:
2098 | ansi-regex "^2.0.0"
2099 |
2100 | strip-bom@^3.0.0:
2101 | version "3.0.0"
2102 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2103 |
2104 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4:
2105 | version "1.0.4"
2106 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
2107 |
2108 | supports-color@3.1.2:
2109 | version "3.1.2"
2110 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
2111 | dependencies:
2112 | has-flag "^1.0.0"
2113 |
2114 | supports-color@^0.2.0:
2115 | version "0.2.0"
2116 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a"
2117 |
2118 | supports-color@^2.0.0:
2119 | version "2.0.0"
2120 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2121 |
2122 | table@^3.7.8:
2123 | version "3.8.3"
2124 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
2125 | dependencies:
2126 | ajv "^4.7.0"
2127 | ajv-keywords "^1.0.0"
2128 | chalk "^1.1.1"
2129 | lodash "^4.0.0"
2130 | slice-ansi "0.0.4"
2131 | string-width "^2.0.0"
2132 |
2133 | tar-pack@~3.3.0:
2134 | version "3.3.0"
2135 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae"
2136 | dependencies:
2137 | debug "~2.2.0"
2138 | fstream "~1.0.10"
2139 | fstream-ignore "~1.0.5"
2140 | once "~1.3.3"
2141 | readable-stream "~2.1.4"
2142 | rimraf "~2.5.1"
2143 | tar "~2.2.1"
2144 | uid-number "~0.0.6"
2145 |
2146 | tar@~2.2.1:
2147 | version "2.2.1"
2148 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2149 | dependencies:
2150 | block-stream "*"
2151 | fstream "^1.0.2"
2152 | inherits "2"
2153 |
2154 | text-table@~0.2.0:
2155 | version "0.2.0"
2156 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2157 |
2158 | through@^2.3.6:
2159 | version "2.3.8"
2160 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2161 |
2162 | to-fast-properties@^1.0.1:
2163 | version "1.0.2"
2164 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
2165 |
2166 | tough-cookie@~2.3.0:
2167 | version "2.3.2"
2168 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
2169 | dependencies:
2170 | punycode "^1.4.1"
2171 |
2172 | tryit@^1.0.1:
2173 | version "1.0.3"
2174 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
2175 |
2176 | tunnel-agent@~0.4.1:
2177 | version "0.4.3"
2178 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
2179 |
2180 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2181 | version "0.14.5"
2182 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2183 |
2184 | type-check@~0.3.2:
2185 | version "0.3.2"
2186 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2187 | dependencies:
2188 | prelude-ls "~1.1.2"
2189 |
2190 | type-detect@0.1.1:
2191 | version "0.1.1"
2192 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
2193 |
2194 | type-detect@^1.0.0:
2195 | version "1.0.0"
2196 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"
2197 |
2198 | typedarray@^0.0.6:
2199 | version "0.0.6"
2200 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2201 |
2202 | uid-number@~0.0.6:
2203 | version "0.0.6"
2204 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
2205 |
2206 | user-home@^1.1.1:
2207 | version "1.1.1"
2208 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
2209 |
2210 | user-home@^2.0.0:
2211 | version "2.0.0"
2212 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
2213 | dependencies:
2214 | os-homedir "^1.0.0"
2215 |
2216 | util-deprecate@~1.0.1:
2217 | version "1.0.2"
2218 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2219 |
2220 | uuid@^3.0.0:
2221 | version "3.0.1"
2222 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
2223 |
2224 | v8flags@^2.0.10:
2225 | version "2.0.11"
2226 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881"
2227 | dependencies:
2228 | user-home "^1.1.1"
2229 |
2230 | verror@1.3.6:
2231 | version "1.3.6"
2232 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
2233 | dependencies:
2234 | extsprintf "1.0.2"
2235 |
2236 | wide-align@^1.1.0:
2237 | version "1.1.0"
2238 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
2239 | dependencies:
2240 | string-width "^1.0.1"
2241 |
2242 | wordwrap@~1.0.0:
2243 | version "1.0.0"
2244 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
2245 |
2246 | wrappy@1:
2247 | version "1.0.2"
2248 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2249 |
2250 | write@^0.2.1:
2251 | version "0.2.1"
2252 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
2253 | dependencies:
2254 | mkdirp "^0.5.1"
2255 |
2256 | xtend@^4.0.0:
2257 | version "4.0.1"
2258 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2259 |
--------------------------------------------------------------------------------