├── .npmignore ├── .codecov.yml ├── tests └── prettier │ ├── default │ ├── 01.ts.fix │ ├── 02.ts.fix │ ├── 03.ts.fix │ ├── 04.ts.fix │ ├── 05.ts.fix │ ├── 06.ts.fix │ ├── 07.ts.fix │ ├── 08.ts.fix │ ├── 16.ts.fix │ ├── 17.ts.fix │ ├── 18.ts.fix │ ├── valid.ts.lint │ ├── 11.ts.fix │ ├── 15.ts.fix │ ├── 01.ts.lint │ ├── 04.ts.lint │ ├── 17.ts.lint │ ├── 05.ts.lint │ ├── 13.ts.fix │ ├── 14.ts.fix │ ├── 18.ts.lint │ ├── 02.ts.lint │ ├── 08.ts.lint │ ├── 16.ts.lint │ ├── 06.ts.lint │ ├── syntax-error.ts.lint │ ├── 11.ts.lint │ ├── 03.ts.lint │ ├── 07.ts.lint │ ├── 15.ts.lint │ ├── tslint.json │ ├── 13.ts.lint │ └── 14.ts.lint │ ├── singleQuote │ ├── 09.ts.fix │ ├── 09.ts.lint │ ├── tslint.json │ └── 09.txt │ ├── useTabs │ ├── 10.ts.fix │ ├── 10.ts.lint │ └── tslint.json │ ├── config-file-simple │ ├── .prettierrc │ ├── test.ts.lint │ └── tslint.json │ ├── prettier-ignored │ ├── .prettierignore │ ├── prettierIgnoredSyntaxError.ts.lint │ └── tslint.json │ ├── editorconfig │ ├── .editorconfig │ ├── test.ts.lint │ └── tslint.json │ ├── no-editorconfig │ ├── .editorconfig │ ├── test.ts.lint │ └── tslint.json │ ├── config-file-not-found │ ├── test.ts.lint │ └── tslint.json │ ├── config-file-override │ ├── doubleQuote.ts.lint │ ├── singleQuote.ts.lint │ ├── tslint.json │ └── .prettierrc │ └── specified-config │ ├── no-semi.ts.fix │ ├── tslint.json │ └── no-semi.ts.lint ├── .gitattributes ├── src ├── index.ts └── prettierRule.ts ├── fixtures └── no-semi │ └── .prettierrc ├── .gitignore ├── .editorconfig ├── tsconfig.build.json ├── tsconfig.json ├── renovate.json ├── .nycrc.json ├── tslint.json ├── .travis.yml ├── LICENSE ├── package.json ├── CHANGELOG.md ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /tests/prettier/default/01.ts.fix: -------------------------------------------------------------------------------- 1 | a(); 2 | -------------------------------------------------------------------------------- /tests/prettier/default/02.ts.fix: -------------------------------------------------------------------------------- 1 | a(); 2 | -------------------------------------------------------------------------------- /tests/prettier/default/03.ts.fix: -------------------------------------------------------------------------------- 1 | a(); 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.png binary 3 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export = { rulesDirectory: '.' }; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/04.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/05.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/06.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/07.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/08.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/16.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/17.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/18.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | -------------------------------------------------------------------------------- /tests/prettier/default/valid.ts.lint: -------------------------------------------------------------------------------- 1 | var x = "123"; 2 | -------------------------------------------------------------------------------- /tests/prettier/singleQuote/09.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ''; 2 | -------------------------------------------------------------------------------- /fixtures/no-semi/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /tests/prettier/useTabs/10.ts.fix: -------------------------------------------------------------------------------- 1 | var a = { 2 | b: 1 3 | }; 4 | -------------------------------------------------------------------------------- /tests/prettier/default/11.ts.fix: -------------------------------------------------------------------------------- 1 | var a = { 2 | b: "" 3 | }; 4 | -------------------------------------------------------------------------------- /tests/prettier/default/15.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = { bar: "", baz: "" }; 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | rules/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /tests/prettier/default/01.ts.lint: -------------------------------------------------------------------------------- 1 | a();;;;;; 2 | ~~~~~ [Delete `;;;;;`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/04.ts.lint: -------------------------------------------------------------------------------- 1 | var foo= ""; 2 | ~ [Insert `·`] 3 | -------------------------------------------------------------------------------- /tests/prettier/config-file-simple/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/prettier/default/17.ts.lint: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | ~nil [Insert `⏎`] -------------------------------------------------------------------------------- /tests/prettier/prettier-ignored/.prettierignore: -------------------------------------------------------------------------------- 1 | prettierIgnoredSyntaxError.ts 2 | -------------------------------------------------------------------------------- /tests/prettier/prettier-ignored/prettierIgnoredSyntaxError.ts.lint: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /tests/prettier/useTabs/10.ts.lint: -------------------------------------------------------------------------------- 1 | var a = { 2 | b: 1 3 | ~ [Insert `↹`] 4 | }; 5 | -------------------------------------------------------------------------------- /tests/prettier/default/05.ts.lint: -------------------------------------------------------------------------------- 1 | var foo=""; 2 | ~ [Replace `=` with `·=·`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/13.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | var bar = ""; 3 | var baz = ""; 4 | -------------------------------------------------------------------------------- /tests/prettier/default/14.ts.fix: -------------------------------------------------------------------------------- 1 | var foo = ""; 2 | var bar = ""; 3 | var baz = ""; 4 | -------------------------------------------------------------------------------- /tests/prettier/default/18.ts.lint: -------------------------------------------------------------------------------- 1 | 2 | ~nil 3 | var foo = ""; 4 | ~nil [Delete `⏎`] 5 | -------------------------------------------------------------------------------- /tests/prettier/default/02.ts.lint: -------------------------------------------------------------------------------- 1 | a();;; 2 | ~~ 3 | ;;; 4 | ~~~ [Delete `;;⏎;;;`] 5 | -------------------------------------------------------------------------------- /tests/prettier/default/08.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =''; 2 | ~~ [Replace `''` with `·""`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/16.ts.lint: -------------------------------------------------------------------------------- 1 | var foo = '' 2 | ~~ [Replace `''` with `"";⏎`] -------------------------------------------------------------------------------- /tests/prettier/editorconfig/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_size = 8 5 | -------------------------------------------------------------------------------- /tests/prettier/no-editorconfig/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_size = 8 5 | -------------------------------------------------------------------------------- /tests/prettier/no-editorconfig/test.ts.lint: -------------------------------------------------------------------------------- 1 | if (condition) { 2 | doSomething(); 3 | } 4 | -------------------------------------------------------------------------------- /tests/prettier/config-file-not-found/test.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =""; 2 | ~ [Insert `·`] 3 | -------------------------------------------------------------------------------- /tests/prettier/singleQuote/09.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =""; 2 | ~~ [Replace `""` with `·''`] 3 | -------------------------------------------------------------------------------- /tests/prettier/config-file-override/doubleQuote.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =""; 2 | ~ [Insert `·`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/06.ts.lint: -------------------------------------------------------------------------------- 1 | var foo='';;; 2 | ~~~~~ [Replace `='';;` with `·=·""`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/syntax-error.ts.lint: -------------------------------------------------------------------------------- 1 | hello world 2 | ~ [SyntaxError: ';' expected.] 3 | -------------------------------------------------------------------------------- /tests/prettier/config-file-simple/test.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =""; 2 | ~~ [Replace `""` with `·''`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/11.ts.lint: -------------------------------------------------------------------------------- 1 | var a = { 2 | b: '', 3 | ~~~ [Replace `'',` with `""`] 4 | }; 5 | -------------------------------------------------------------------------------- /tests/prettier/default/03.ts.lint: -------------------------------------------------------------------------------- 1 | a();;; 2 | ~~~~~~~~ 3 | ;;; 4 | ~~ [Replace `··a();;;⏎;;` with `a()`] 5 | -------------------------------------------------------------------------------- /tests/prettier/default/07.ts.lint: -------------------------------------------------------------------------------- 1 | var foo='';; 2 | ~~~~~ 3 | ;; 4 | ~ [Replace `='';;⏎;` with `·=·""`] 5 | -------------------------------------------------------------------------------- /tests/prettier/specified-config/no-semi.ts.fix: -------------------------------------------------------------------------------- 1 | const x = "there should be no semi at the end of this line" 2 | -------------------------------------------------------------------------------- /tests/prettier/config-file-override/singleQuote.ts.lint: -------------------------------------------------------------------------------- 1 | var foo =""; 2 | ~~ [Replace `""` with `·''`] 3 | -------------------------------------------------------------------------------- /tests/prettier/editorconfig/test.ts.lint: -------------------------------------------------------------------------------- 1 | if (condition) { 2 | doSomething(); 3 | ~ [Insert `······`] 4 | } 5 | -------------------------------------------------------------------------------- /tests/prettier/editorconfig/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/config-file-override/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/config-file-simple/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/config-file-not-found/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/default/15.ts.lint: -------------------------------------------------------------------------------- 1 | var foo = { "bar": "", "baz": "" }; 2 | ~~~~~~~~~~~~~~~~ [Replace `"bar":·"",·"baz"` with `bar:·"",·baz`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, { "trailingComma": "none" }] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/singleQuote/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, { "singleQuote": true }] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | -------------------------------------------------------------------------------- /tests/prettier/no-editorconfig/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, null, { "editorconfig": false }] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/specified-config/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, "./fixtures/no-semi/.prettierrc"] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/useTabs/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, { "useTabs": true, "trailingComma": "none" }] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/prettier/default/13.ts.lint: -------------------------------------------------------------------------------- 1 | var foo ='';var bar ='';var baz =''; 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ [Replace `'';var·bar·='';var·baz·=''` with `·"";⏎var·bar·=·"";⏎var·baz·=·""`] 3 | -------------------------------------------------------------------------------- /tests/prettier/specified-config/no-semi.ts.lint: -------------------------------------------------------------------------------- 1 | const x = "there should be no semi at the end of this line"; 2 | ~ [Delete `;`] 3 | -------------------------------------------------------------------------------- /tests/prettier/default/14.ts.lint: -------------------------------------------------------------------------------- 1 | var foo ='';var bar =''; 2 | ~~~~~~~~~~~~~~ [Replace `'';var·bar·=''` with `·"";⏎var·bar·=·""`] 3 | var baz =''; 4 | ~~ [Replace `''` with `·""`] 5 | -------------------------------------------------------------------------------- /tests/prettier/config-file-override/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "overrides": [{ 4 | "files": "doubleQuote.ts", 5 | "options": { 6 | "singleQuote": false 7 | } 8 | }] 9 | } 10 | -------------------------------------------------------------------------------- /tests/prettier/prettier-ignored/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["../../../rules"], 3 | "rules": { 4 | "prettier": [true, null, { "ignorePath": "tests/prettier/prettier-ignored/.prettierignore"}] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "include": ["src/**/*.ts"], 4 | "compilerOptions": { 5 | "rootDir": "src", 6 | "outDir": "rules", 7 | "inlineSourceMap": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "lib": ["es6"], 5 | "module": "commonjs", 6 | "declaration": true, 7 | "importHelpers": true 8 | }, 9 | "include": ["src/**/*.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | ":renovatePrefix", 4 | ":semanticPrefixFixDepsChoreOthers", 5 | ":pinOnlyDevDependencies" 6 | ], 7 | "masterIssueApproval": true, 8 | "rebaseStalePrs": true, 9 | "labels": ["dependencies"] 10 | } 11 | -------------------------------------------------------------------------------- /tests/prettier/singleQuote/09.txt: -------------------------------------------------------------------------------- 1 | CODE: 2 | var foo =""; 3 | 4 | OUTPUT: 5 | var foo = ''; 6 | 7 | OPTIONS: 8 | [{singleQuote: true}] 9 | 10 | ERRORS: 11 | [ 12 | { 13 | message: 'Replace `""` with `·\'\'`', 14 | line: 1, column: 10, endLine: 1, endColumn: 12, 15 | }, 16 | ] 17 | -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["rules/*.js"], 3 | "exclude": ["rules/index.js"], 4 | "extension": [".js"], 5 | "reporter": ["text-summary", "html", "lcov"], 6 | "sourceMap": true, 7 | "all": true, 8 | "check-coverage": true, 9 | "lines": 100, 10 | "statements": 100, 11 | "functions": 100, 12 | "branches": 100 13 | } 14 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["tslint-plugin-prettier"], 3 | "extends": ["tslint:recommended", "tslint-config-prettier"], 4 | "rules": { 5 | "max-classes-per-file": false, 6 | "no-switch-case-fall-through": true, 7 | "prettier": [ 8 | true, 9 | { "arrowParens": "avoid", "singleQuote": true, "trailingComma": "all" } 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 6 5 | - stable 6 | 7 | before_install: 8 | - > 9 | if [ "$TRAVIS_NODE_VERSION" = "6" ]; then 10 | yarn upgrade prettier@1.19.1 11 | fi 12 | 13 | script: 14 | - yarn run lint 15 | - yarn run build 16 | - yarn run test 17 | 18 | - > # yarn and tslint-test do not work on node 4 19 | if [ "$TRAVIS_NODE_VERSION" = "6" ]; then 20 | echo '{ "presets": [["@babel/preset-env", { "targets": { "node": "4" } }]] }' > .babelrc.test.json 21 | npm install @babel/cli @babel/core @babel/preset-env 22 | node_modules/.bin/babel node_modules/@babel/code-frame/lib --out-dir node_modules/@babel/code-frame/lib --config-file ./.babelrc.test.json 23 | node_modules/.bin/babel node_modules/@babel/highlight/lib --out-dir node_modules/@babel/highlight/lib --config-file ./.babelrc.test.json 24 | nvm install 4 25 | npm run test 26 | fi 27 | 28 | after_script: 29 | - node_modules/.bin/codecov 30 | 31 | cache: 32 | yarn: true 33 | directories: 34 | - node_modules 35 | 36 | matrix: 37 | fast_finish: true 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Ika (https://github.com/ikatyang) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tslint-plugin-prettier", 3 | "version": "2.3.0", 4 | "description": "Runs Prettier as a TSLint rule and reports differences as individual TSLint issues.", 5 | "keywords": [ 6 | "prettier", 7 | "tslint", 8 | "tslint-plugin", 9 | "tslint-rules" 10 | ], 11 | "main": "rules/index.js", 12 | "types": "rules/index.d.ts", 13 | "repository": "https://github.com/prettier/tslint-plugin-prettier", 14 | "homepage": "https://github.com/prettier/tslint-plugin-prettier#readme", 15 | "author": { 16 | "name": "Ika", 17 | "email": "ikatyang@gmail.com", 18 | "url": "https://github.com/ikatyang" 19 | }, 20 | "license": "MIT", 21 | "scripts": { 22 | "prepublish": "yarn run build --inlineSourceMap false", 23 | "lint": "tslint -p .", 24 | "test": "nyc tslint --test ./tests/*/*", 25 | "prebuild": "rm -rf ./rules", 26 | "build": "tsc -p ./tsconfig.build.json", 27 | "release": "standard-version" 28 | }, 29 | "dependencies": { 30 | "eslint-plugin-prettier": "^2.2.0", 31 | "lines-and-columns": "^1.1.6", 32 | "tslib": "^1.7.1" 33 | }, 34 | "devDependencies": { 35 | "@types/eslint-plugin-prettier": "2.2.0", 36 | "@types/node": "4.9.3", 37 | "@types/prettier": "2.2.3", 38 | "codecov": "3.7.1", 39 | "nyc": "11.9.0", 40 | "prettier": "2.2.1", 41 | "standard-version": "4.4.0", 42 | "tslint": "6.1.3", 43 | "tslint-config-prettier": "1.18.0", 44 | "tslint-plugin-prettier": "2.0.1", 45 | "typescript": "4.2.4" 46 | }, 47 | "peerDependencies": { 48 | "prettier": "^1.9.0 || ^2.0.0", 49 | "tslint": "^5.0.0 || ^6.0.0" 50 | }, 51 | "resolutions": { 52 | "codecov/**/har-validator": "5.1.0" 53 | }, 54 | "engines": { 55 | "node": ">= 4" 56 | }, 57 | "files": [ 58 | "/rules/**/*" 59 | ] 60 | } 61 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | 6 | # [2.3.0](https://github.com/prettier/tslint-plugin-prettier/compare/v2.2.0...v2.3.0) (2020-03-26) 7 | 8 | 9 | ### Features 10 | 11 | * support prettier@2 ([#361](https://github.com/prettier/tslint-plugin-prettier/issues/361)) ([be9ed18](https://github.com/prettier/tslint-plugin-prettier/commit/be9ed18)) 12 | 13 | 14 | 15 | 16 | # [2.2.0](https://github.com/prettier/tslint-plugin-prettier/compare/v2.1.0...v2.2.0) (2020-03-14) 17 | 18 | 19 | ### Features 20 | 21 | * support tslint@6 ([#355](https://github.com/prettier/tslint-plugin-prettier/issues/355)) ([e979ae1](https://github.com/prettier/tslint-plugin-prettier/commit/e979ae1)) 22 | 23 | 24 | 25 | 26 | # [2.1.0](https://github.com/prettier/tslint-plugin-prettier/compare/v2.0.1...v2.1.0) (2019-12-21) 27 | 28 | 29 | ### Features 30 | 31 | * respect .prettierignore ([#317](https://github.com/prettier/tslint-plugin-prettier/issues/317)) ([0420071](https://github.com/prettier/tslint-plugin-prettier/commit/0420071)) 32 | 33 | 34 | 35 | 36 | ## [2.0.1](https://github.com/prettier/tslint-plugin-prettier/compare/v2.0.0...v2.0.1) (2018-10-28) 37 | 38 | 39 | ### Bug Fixes 40 | 41 | * report syntax error instead of throw ([#272](https://github.com/prettier/tslint-plugin-prettier/issues/272)) ([8b62595](https://github.com/prettier/tslint-plugin-prettier/commit/8b62595)) 42 | 43 | 44 | 45 | 46 | # [2.0.0](https://github.com/prettier/tslint-plugin-prettier/compare/v1.3.0...v2.0.0) (2018-09-16) 47 | 48 | 49 | ### Bug Fixes 50 | 51 | * specify config file correctly ([a46bb9f](https://github.com/prettier/tslint-plugin-prettier/commit/a46bb9f)) 52 | 53 | 54 | ### Features 55 | 56 | * support .editorconfig ([5afdfbc](https://github.com/prettier/tslint-plugin-prettier/commit/5afdfbc)) 57 | 58 | 59 | ### BREAKING CHANGES 60 | 61 | * require `prettier@^1.9.0` 62 | * load `.editorconfig` by default 63 | * specify config file via filepath instead of directory 64 | 65 | 66 | 67 | 68 | # [1.3.0](https://github.com/prettier/tslint-plugin-prettier/compare/v1.2.0...v1.3.0) (2017-09-28) 69 | 70 | 71 | ### Features 72 | 73 | * add ability to specify config file search path ([#48](https://github.com/prettier/tslint-plugin-prettier/issues/48)) ([fe39a1d](https://github.com/prettier/tslint-plugin-prettier/commit/fe39a1d)) 74 | 75 | 76 | 77 | 78 | # [1.2.0](https://github.com/prettier/tslint-plugin-prettier/compare/v1.1.0...v1.2.0) (2017-09-15) 79 | 80 | 81 | ### Features 82 | 83 | * support config file ([#28](https://github.com/prettier/tslint-plugin-prettier/issues/28)) ([00ebbe8](https://github.com/prettier/tslint-plugin-prettier/commit/00ebbe8)) 84 | 85 | 86 | 87 | 88 | # [1.1.0](https://github.com/prettier/tslint-plugin-prettier/compare/v1.0.0...v1.1.0) (2017-08-16) 89 | 90 | 91 | ### Bug Fixes 92 | 93 | * **deps:** remove peerDeps for typescript ([888868e](https://github.com/prettier/tslint-plugin-prettier/commit/888868e)) 94 | 95 | 96 | ### Features 97 | 98 | * use official reporter ([#13](https://github.com/prettier/tslint-plugin-prettier/issues/13)) ([0104fc8](https://github.com/prettier/tslint-plugin-prettier/commit/0104fc8)) 99 | 100 | 101 | 102 | 103 | # 1.0.0 (2017-07-30) 104 | 105 | 106 | ### Features 107 | 108 | * initial implementation ([8b86237](https://github.com/prettier/tslint-plugin-prettier/commit/8b86237)) 109 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tslint-plugin-prettier 2 | 3 | [![npm](https://img.shields.io/npm/v/tslint-plugin-prettier.svg)](https://www.npmjs.com/package/tslint-plugin-prettier) 4 | [![build](https://img.shields.io/travis/prettier/tslint-plugin-prettier/master.svg)](https://travis-ci.org/prettier/tslint-plugin-prettier/builds) 5 | [![coverage](https://img.shields.io/codecov/c/github/prettier/tslint-plugin-prettier/master.svg)](https://codecov.io/gh/prettier/tslint-plugin-prettier) 6 | 7 | Runs Prettier as a TSLint rule and reports differences as individual TSLint issues. 8 | 9 | [Changelog](https://github.com/prettier/tslint-plugin-prettier/blob/master/CHANGELOG.md) 10 | 11 | ## Sample 12 | 13 | ```ts 14 | a();;; 15 | ~~ 16 | ;;; 17 | ~~~ [Delete `;;⏎;;;`] 18 | ``` 19 | 20 | ```ts 21 | var foo = '' 22 | ~~ [Replace `''` with `"";⏎`] 23 | ``` 24 | 25 | ```ts 26 | var foo= ""; 27 | ~ [Insert `·`] 28 | ``` 29 | 30 | ## Install 31 | 32 | ```sh 33 | # using npm 34 | npm install --save-dev tslint-plugin-prettier prettier 35 | 36 | # using yarn 37 | yarn add --dev tslint-plugin-prettier prettier 38 | ``` 39 | 40 | (require `prettier@^1.9.0`) 41 | 42 | ## Usage 43 | 44 | (tslint.json) 45 | 46 | for `tslint@^5.2.0` 47 | 48 | ```json 49 | { 50 | "rulesDirectory": ["tslint-plugin-prettier"], 51 | "rules": { 52 | "prettier": true 53 | } 54 | } 55 | ``` 56 | 57 | for `tslint@^5.0.0` 58 | 59 | ```json 60 | { 61 | "extends": ["tslint-plugin-prettier"], 62 | "rules": { 63 | "prettier": true 64 | } 65 | } 66 | ``` 67 | 68 | **NOTE**: To use this plugin, it'd better to also use [tslint-config-prettier](https://github.com/prettier/tslint-config-prettier) to disable all prettier-related rules, so as to avoid conflicts between existed rules. 69 | 70 | ## Options 71 | 72 | - If there is no option provided, it'll try to load [config file](https://prettier.io/docs/en/configuration.html) and/or `.editorconfig` if possible, uses Prettier's default option if not found. 73 | 74 | ```json 75 | { 76 | "extends": ["tslint-plugin-prettier"], 77 | "rules": { 78 | "prettier": true 79 | } 80 | } 81 | ``` 82 | 83 | If you don't want to load `.editorconfig`, disable it in the third argument. 84 | 85 | ```json 86 | { 87 | "extends": ["tslint-plugin-prettier"], 88 | "rules": { 89 | "prettier": [true, null, { "editorconfig": false }] 90 | } 91 | } 92 | ``` 93 | 94 | - If you'd like to specify which config file to use, just put its path (relative to `process.cwd()`) in the second argument, the following example shows how to load the config file from `/configs/.prettierrc`: 95 | 96 | ```json 97 | { 98 | "extends": ["tslint-plugin-prettier"], 99 | "rules": { 100 | "prettier": [true, "configs/.prettierrc"] 101 | } 102 | } 103 | ``` 104 | 105 | - If you'd like to specify options manually, just put [Prettier Options](https://prettier.io/docs/en/options.html) in the second argument, for example: 106 | 107 | ```json 108 | { 109 | "extends": ["tslint-plugin-prettier"], 110 | "rules": { 111 | "prettier": [true, { "singleQuote": true }] 112 | } 113 | } 114 | ``` 115 | 116 | ## Ignoring files 117 | 118 | - It will respect your .prettierignore file in your project root ( process.cwd() ) but if you would like to use a different file you can provide it in the third argument, for example: 119 | 120 | ```json 121 | { 122 | "extends": ["tslint-plugin-prettier"], 123 | "rules": { 124 | "prettier": [true, null, { "ignorePath": "otherDirectory/.prettierignore" }] 125 | } 126 | } 127 | 128 | ``` 129 | 130 | ## Development 131 | 132 | ```sh 133 | # lint 134 | yarn run lint 135 | 136 | # build 137 | yarn run build 138 | 139 | # test 140 | yarn run test 141 | ``` 142 | 143 | ## Related 144 | 145 | - [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) 146 | - [tslint-config-prettier](https://github.com/prettier/tslint-config-prettier) 147 | - [prettier-tslint](https://github.com/azz/prettier-tslint) 148 | 149 | ## License 150 | 151 | MIT © [Ika](https://github.com/ikatyang) 152 | -------------------------------------------------------------------------------- /src/prettierRule.ts: -------------------------------------------------------------------------------- 1 | import * as utils from 'eslint-plugin-prettier'; 2 | import LineAndColumn from 'lines-and-columns'; 3 | import * as path from 'path'; 4 | import * as prettier from 'prettier'; 5 | import * as tslint from 'tslint'; 6 | import * as ts from 'typescript'; 7 | 8 | export class Rule extends tslint.Rules.AbstractRule { 9 | public apply(sourceFile: ts.SourceFile): tslint.RuleFailure[] { 10 | if (this.sourceFileIsIgnored(sourceFile, this.ruleArguments)) { 11 | return []; 12 | } 13 | return this.applyWithWalker( 14 | new Walker(sourceFile, this.ruleName, this.ruleArguments), 15 | ); 16 | } 17 | private getIgnorePath(ruleArguments: any[]) { 18 | let ignorePath = '.prettierignore'; 19 | if (ruleArguments.length === 2 && ruleArguments[1].ignorePath) { 20 | ignorePath = ruleArguments[1].ignorePath; 21 | } 22 | return ignorePath; 23 | } 24 | private sourceFileIsIgnored(sourceFile: ts.SourceFile, ruleArguments: any[]) { 25 | const ignorePath = this.getIgnorePath(ruleArguments); 26 | const fileInfo = prettier.getFileInfo.sync(sourceFile!.fileName, { 27 | ignorePath, 28 | }); 29 | return fileInfo.ignored; 30 | } 31 | } 32 | 33 | class Walker extends tslint.AbstractWalker { 34 | public walk(sourceFile: ts.SourceFile) { 35 | const [ruleArgument1, ruleArgument2 = {}] = this.options; 36 | const { editorconfig = true } = ruleArgument2; 37 | 38 | let options: prettier.Options = {}; 39 | 40 | switch (typeof ruleArgument1) { 41 | case 'string': { 42 | const configFilePath = path.resolve( 43 | process.cwd(), 44 | ruleArgument1 as string, 45 | ); 46 | 47 | const resolvedConfig = prettier.resolveConfig.sync( 48 | sourceFile.fileName, 49 | { config: configFilePath, editorconfig }, 50 | ); 51 | 52 | // istanbul ignore next 53 | if (resolvedConfig === null) { 54 | throw new Error(`Config file not found: ${configFilePath}`); 55 | } 56 | 57 | options = resolvedConfig; 58 | break; 59 | } 60 | case 'object': 61 | if (ruleArgument1) { 62 | options = ruleArgument1 as prettier.Options; 63 | break; 64 | } 65 | // falls through for null 66 | default: { 67 | const resolvedConfig = prettier.resolveConfig.sync( 68 | sourceFile.fileName, 69 | { editorconfig }, 70 | ); 71 | 72 | if (resolvedConfig !== null) { 73 | options = resolvedConfig; 74 | } 75 | 76 | break; 77 | } 78 | } 79 | 80 | const source = sourceFile.getFullText(); 81 | 82 | try { 83 | const formatted = prettier.format(source, { 84 | parser: 'typescript', 85 | ...options, 86 | }); 87 | 88 | if (source === formatted) { 89 | return; 90 | } 91 | 92 | reportDifferences(this, source, formatted); 93 | } catch (e) { 94 | // istanbul ignore else 95 | if (e.loc) { 96 | reportSyntaxError(this, source, e); 97 | } else { 98 | throw e; 99 | } 100 | } 101 | } 102 | } 103 | 104 | function reportSyntaxError( 105 | walkContext: tslint.WalkContext, 106 | source: string, 107 | error: { message: string; loc: { start: { line: number; column: number } } }, 108 | ) { 109 | const locator = new LineAndColumn(source); 110 | const offset = locator.indexForLocation({ 111 | column: error.loc.start.column - 1, 112 | line: error.loc.start.line - 1, 113 | })!; 114 | const message = error.message 115 | .split('\n')[0] 116 | .replace(/\s*\(\d+:\d+\)\s*$/, ''); 117 | walkContext.addFailureAt(offset, 1, `SyntaxError: ${message}`); 118 | } 119 | 120 | function reportDifferences( 121 | walkContext: tslint.WalkContext, 122 | source: string, 123 | formatted: string, 124 | ) { 125 | utils.generateDifferences(source, formatted).forEach(difference => { 126 | const { 127 | operation, 128 | offset: start, 129 | deleteText = '', 130 | insertText = '', 131 | } = difference; 132 | 133 | const end = start + deleteText.length; 134 | const deleteCode = utils.showInvisibles(deleteText); 135 | const insertCode = utils.showInvisibles(insertText); 136 | 137 | switch (operation) { 138 | case 'insert': 139 | walkContext.addFailureAt( 140 | start, 141 | 1, 142 | `Insert \`${insertCode}\``, 143 | tslint.Replacement.appendText(start, insertText), 144 | ); 145 | break; 146 | case 'delete': 147 | walkContext.addFailure( 148 | start, 149 | end, 150 | `Delete \`${deleteCode}\``, 151 | tslint.Replacement.deleteFromTo(start, end), 152 | ); 153 | break; 154 | case 'replace': 155 | walkContext.addFailure( 156 | start, 157 | end, 158 | `Replace \`${deleteCode}\` with \`${insertCode}\``, 159 | tslint.Replacement.replaceFromTo(start, end, insertText), 160 | ); 161 | break; 162 | // istanbul ignore next 163 | default: 164 | throw new Error(`Unexpected operation '${operation}'`); 165 | } 166 | }); 167 | } 168 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.8.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 8 | integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 9 | dependencies: 10 | "@babel/highlight" "^7.8.3" 11 | 12 | "@babel/highlight@^7.8.3": 13 | version "7.8.3" 14 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" 15 | integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== 16 | dependencies: 17 | chalk "^2.0.0" 18 | esutils "^2.0.2" 19 | js-tokens "^4.0.0" 20 | 21 | "@tootallnate/once@1": 22 | version "1.0.0" 23 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.0.0.tgz#9c13c2574c92d4503b005feca8f2e16cc1611506" 24 | 25 | "@types/eslint-plugin-prettier@2.2.0": 26 | version "2.2.0" 27 | resolved "https://registry.yarnpkg.com/@types/eslint-plugin-prettier/-/eslint-plugin-prettier-2.2.0.tgz#26170ee65ce05d811f3ef6fc2987acd525066c7f" 28 | 29 | "@types/node@4.9.3": 30 | version "4.9.3" 31 | resolved "https://registry.yarnpkg.com/@types/node/-/node-4.9.3.tgz#a24697a8157ab517996afe0c88fa716550ae419a" 32 | 33 | "@types/prettier@2.2.3": 34 | version "2.2.3" 35 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.3.tgz#ef65165aea2924c9359205bf748865b8881753c0" 36 | integrity sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA== 37 | 38 | JSONStream@^1.0.4: 39 | version "1.3.5" 40 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 41 | dependencies: 42 | jsonparse "^1.2.0" 43 | through ">=2.2.7 <3" 44 | 45 | agent-base@5: 46 | version "5.1.1" 47 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" 48 | 49 | agent-base@6: 50 | version "6.0.0" 51 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a" 52 | dependencies: 53 | debug "4" 54 | 55 | ajv@^5.3.0: 56 | version "5.5.2" 57 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 58 | dependencies: 59 | co "^4.6.0" 60 | fast-deep-equal "^1.0.0" 61 | fast-json-stable-stringify "^2.0.0" 62 | json-schema-traverse "^0.3.0" 63 | 64 | ansi-regex@^2.0.0: 65 | version "2.1.1" 66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 67 | 68 | ansi-regex@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.2.1: 77 | version "3.2.1" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 79 | dependencies: 80 | color-convert "^1.9.0" 81 | 82 | append-transform@^0.4.0: 83 | version "0.4.0" 84 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 85 | dependencies: 86 | default-require-extensions "^1.0.0" 87 | 88 | archy@^1.0.0: 89 | version "1.0.0" 90 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 91 | 92 | argparse@^1.0.7: 93 | version "1.0.10" 94 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 95 | dependencies: 96 | sprintf-js "~1.0.2" 97 | 98 | argv@0.0.2: 99 | version "0.0.2" 100 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 101 | 102 | arr-diff@^2.0.0: 103 | version "2.0.0" 104 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 105 | dependencies: 106 | arr-flatten "^1.0.1" 107 | 108 | arr-diff@^4.0.0: 109 | version "4.0.0" 110 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 111 | 112 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 113 | version "1.1.0" 114 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 115 | 116 | arr-union@^3.1.0: 117 | version "3.1.0" 118 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 119 | 120 | array-find-index@^1.0.1: 121 | version "1.0.2" 122 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 123 | 124 | array-ify@^1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 127 | 128 | array-unique@^0.2.1: 129 | version "0.2.1" 130 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 131 | 132 | array-unique@^0.3.2: 133 | version "0.3.2" 134 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 135 | 136 | arrify@^1.0.1: 137 | version "1.0.1" 138 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 139 | 140 | assign-symbols@^1.0.0: 141 | version "1.0.0" 142 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 143 | 144 | atob@^2.1.1: 145 | version "2.1.2" 146 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 147 | 148 | babel-code-frame@^6.26.0: 149 | version "6.26.0" 150 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 151 | dependencies: 152 | chalk "^1.1.3" 153 | esutils "^2.0.2" 154 | js-tokens "^3.0.2" 155 | 156 | babel-generator@^6.18.0: 157 | version "6.26.1" 158 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 159 | dependencies: 160 | babel-messages "^6.23.0" 161 | babel-runtime "^6.26.0" 162 | babel-types "^6.26.0" 163 | detect-indent "^4.0.0" 164 | jsesc "^1.3.0" 165 | lodash "^4.17.4" 166 | source-map "^0.5.7" 167 | trim-right "^1.0.1" 168 | 169 | babel-messages@^6.23.0: 170 | version "6.23.0" 171 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 172 | dependencies: 173 | babel-runtime "^6.22.0" 174 | 175 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 178 | dependencies: 179 | core-js "^2.4.0" 180 | regenerator-runtime "^0.11.0" 181 | 182 | babel-template@^6.16.0: 183 | version "6.26.0" 184 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 185 | dependencies: 186 | babel-runtime "^6.26.0" 187 | babel-traverse "^6.26.0" 188 | babel-types "^6.26.0" 189 | babylon "^6.18.0" 190 | lodash "^4.17.4" 191 | 192 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 193 | version "6.26.0" 194 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 195 | dependencies: 196 | babel-code-frame "^6.26.0" 197 | babel-messages "^6.23.0" 198 | babel-runtime "^6.26.0" 199 | babel-types "^6.26.0" 200 | babylon "^6.18.0" 201 | debug "^2.6.8" 202 | globals "^9.18.0" 203 | invariant "^2.2.2" 204 | lodash "^4.17.4" 205 | 206 | babel-types@^6.18.0, babel-types@^6.26.0: 207 | version "6.26.0" 208 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 209 | dependencies: 210 | babel-runtime "^6.26.0" 211 | esutils "^2.0.2" 212 | lodash "^4.17.4" 213 | to-fast-properties "^1.0.3" 214 | 215 | babylon@^6.18.0: 216 | version "6.18.0" 217 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 218 | 219 | balanced-match@^1.0.0: 220 | version "1.0.0" 221 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 222 | 223 | base@^0.11.1: 224 | version "0.11.2" 225 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 226 | dependencies: 227 | cache-base "^1.0.1" 228 | class-utils "^0.3.5" 229 | component-emitter "^1.2.1" 230 | define-property "^1.0.0" 231 | isobject "^3.0.1" 232 | mixin-deep "^1.2.0" 233 | pascalcase "^0.1.1" 234 | 235 | brace-expansion@^1.1.7: 236 | version "1.1.11" 237 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 238 | dependencies: 239 | balanced-match "^1.0.0" 240 | concat-map "0.0.1" 241 | 242 | braces@^1.8.2: 243 | version "1.8.5" 244 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 245 | dependencies: 246 | expand-range "^1.8.1" 247 | preserve "^0.2.0" 248 | repeat-element "^1.1.2" 249 | 250 | braces@^2.3.1: 251 | version "2.3.2" 252 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 253 | dependencies: 254 | arr-flatten "^1.1.0" 255 | array-unique "^0.3.2" 256 | extend-shallow "^2.0.1" 257 | fill-range "^4.0.0" 258 | isobject "^3.0.1" 259 | repeat-element "^1.1.2" 260 | snapdragon "^0.8.1" 261 | snapdragon-node "^2.0.1" 262 | split-string "^3.0.2" 263 | to-regex "^3.0.1" 264 | 265 | buffer-from@^1.0.0: 266 | version "1.1.1" 267 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 268 | 269 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 270 | version "1.1.1" 271 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 272 | 273 | cache-base@^1.0.1: 274 | version "1.0.1" 275 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 276 | dependencies: 277 | collection-visit "^1.0.0" 278 | component-emitter "^1.2.1" 279 | get-value "^2.0.6" 280 | has-value "^1.0.0" 281 | isobject "^3.0.1" 282 | set-value "^2.0.0" 283 | to-object-path "^0.3.0" 284 | union-value "^1.0.0" 285 | unset-value "^1.0.0" 286 | 287 | caching-transform@^1.0.0: 288 | version "1.0.1" 289 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 290 | dependencies: 291 | md5-hex "^1.2.0" 292 | mkdirp "^0.5.1" 293 | write-file-atomic "^1.1.4" 294 | 295 | camelcase-keys@^2.0.0: 296 | version "2.1.0" 297 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 298 | dependencies: 299 | camelcase "^2.0.0" 300 | map-obj "^1.0.0" 301 | 302 | camelcase-keys@^4.0.0: 303 | version "4.2.0" 304 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 305 | dependencies: 306 | camelcase "^4.1.0" 307 | map-obj "^2.0.0" 308 | quick-lru "^1.0.0" 309 | 310 | camelcase@^2.0.0: 311 | version "2.1.1" 312 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 313 | 314 | camelcase@^4.1.0: 315 | version "4.1.0" 316 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 317 | 318 | chalk@^1.1.3: 319 | version "1.1.3" 320 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 321 | dependencies: 322 | ansi-styles "^2.2.1" 323 | escape-string-regexp "^1.0.2" 324 | has-ansi "^2.0.0" 325 | strip-ansi "^3.0.0" 326 | supports-color "^2.0.0" 327 | 328 | chalk@^2.0.0, chalk@^2.3.0: 329 | version "2.4.2" 330 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 331 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 332 | dependencies: 333 | ansi-styles "^3.2.1" 334 | escape-string-regexp "^1.0.5" 335 | supports-color "^5.3.0" 336 | 337 | class-utils@^0.3.5: 338 | version "0.3.6" 339 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 340 | dependencies: 341 | arr-union "^3.1.0" 342 | define-property "^0.2.5" 343 | isobject "^3.0.0" 344 | static-extend "^0.1.1" 345 | 346 | cliui@^3.2.0: 347 | version "3.2.0" 348 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 349 | dependencies: 350 | string-width "^1.0.1" 351 | strip-ansi "^3.0.1" 352 | wrap-ansi "^2.0.0" 353 | 354 | cliui@^4.0.0: 355 | version "4.1.0" 356 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 357 | dependencies: 358 | string-width "^2.1.1" 359 | strip-ansi "^4.0.0" 360 | wrap-ansi "^2.0.0" 361 | 362 | co@^4.6.0: 363 | version "4.6.0" 364 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 365 | 366 | code-point-at@^1.0.0: 367 | version "1.1.0" 368 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 369 | 370 | codecov@3.7.1: 371 | version "3.7.1" 372 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.7.1.tgz#434cb8d55f18ef01672e5739d3d266696bebc202" 373 | integrity sha512-JHWxyPTkMLLJn9SmKJnwAnvY09kg2Os2+Ux+GG7LwZ9g8gzDDISpIN5wAsH1UBaafA/yGcd3KofMaorE8qd6Lw== 374 | dependencies: 375 | argv "0.0.2" 376 | ignore-walk "3.0.3" 377 | js-yaml "3.13.1" 378 | teeny-request "6.0.1" 379 | urlgrey "0.4.4" 380 | 381 | collection-visit@^1.0.0: 382 | version "1.0.0" 383 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 384 | dependencies: 385 | map-visit "^1.0.0" 386 | object-visit "^1.0.0" 387 | 388 | color-convert@^1.9.0: 389 | version "1.9.3" 390 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 391 | dependencies: 392 | color-name "1.1.3" 393 | 394 | color-name@1.1.3: 395 | version "1.1.3" 396 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 397 | 398 | commander@^2.12.1, commander@~2.20.3: 399 | version "2.20.3" 400 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 401 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 402 | 403 | commondir@^1.0.1: 404 | version "1.0.1" 405 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 406 | 407 | compare-func@^1.3.1: 408 | version "1.3.2" 409 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 410 | dependencies: 411 | array-ify "^1.0.0" 412 | dot-prop "^3.0.0" 413 | 414 | component-emitter@^1.2.1: 415 | version "1.2.1" 416 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 417 | 418 | concat-map@0.0.1: 419 | version "0.0.1" 420 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 421 | 422 | concat-stream@^1.4.10: 423 | version "1.6.2" 424 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 425 | dependencies: 426 | buffer-from "^1.0.0" 427 | inherits "^2.0.3" 428 | readable-stream "^2.2.2" 429 | typedarray "^0.0.6" 430 | 431 | conventional-changelog-angular@^1.6.6: 432 | version "1.6.6" 433 | resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f" 434 | dependencies: 435 | compare-func "^1.3.1" 436 | q "^1.5.1" 437 | 438 | conventional-changelog-atom@^0.2.8: 439 | version "0.2.8" 440 | resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.2.8.tgz#8037693455990e3256f297320a45fa47ee553a14" 441 | dependencies: 442 | q "^1.5.1" 443 | 444 | conventional-changelog-codemirror@^0.3.8: 445 | version "0.3.8" 446 | resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.8.tgz#a1982c8291f4ee4d6f2f62817c6b2ecd2c4b7b47" 447 | dependencies: 448 | q "^1.5.1" 449 | 450 | conventional-changelog-core@^2.0.11: 451 | version "2.0.11" 452 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-2.0.11.tgz#19b5fbd55a9697773ed6661f4e32030ed7e30287" 453 | dependencies: 454 | conventional-changelog-writer "^3.0.9" 455 | conventional-commits-parser "^2.1.7" 456 | dateformat "^3.0.0" 457 | get-pkg-repo "^1.0.0" 458 | git-raw-commits "^1.3.6" 459 | git-remote-origin-url "^2.0.0" 460 | git-semver-tags "^1.3.6" 461 | lodash "^4.2.1" 462 | normalize-package-data "^2.3.5" 463 | q "^1.5.1" 464 | read-pkg "^1.1.0" 465 | read-pkg-up "^1.0.1" 466 | through2 "^2.0.0" 467 | 468 | conventional-changelog-ember@^0.3.12: 469 | version "0.3.12" 470 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.3.12.tgz#b7d31851756d0fcb49b031dffeb6afa93b202400" 471 | dependencies: 472 | q "^1.5.1" 473 | 474 | conventional-changelog-eslint@^1.0.9: 475 | version "1.0.9" 476 | resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.9.tgz#b13cc7e4b472c819450ede031ff1a75c0e3d07d3" 477 | dependencies: 478 | q "^1.5.1" 479 | 480 | conventional-changelog-express@^0.3.6: 481 | version "0.3.6" 482 | resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-0.3.6.tgz#4a6295cb11785059fb09202180d0e59c358b9c2c" 483 | dependencies: 484 | q "^1.5.1" 485 | 486 | conventional-changelog-jquery@^0.1.0: 487 | version "0.1.0" 488 | resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 489 | dependencies: 490 | q "^1.4.1" 491 | 492 | conventional-changelog-jscs@^0.1.0: 493 | version "0.1.0" 494 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 495 | dependencies: 496 | q "^1.4.1" 497 | 498 | conventional-changelog-jshint@^0.3.8: 499 | version "0.3.8" 500 | resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.8.tgz#9051c1ac0767abaf62a31f74d2fe8790e8acc6c8" 501 | dependencies: 502 | compare-func "^1.3.1" 503 | q "^1.5.1" 504 | 505 | conventional-changelog-preset-loader@^1.1.8: 506 | version "1.1.8" 507 | resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.8.tgz#40bb0f142cd27d16839ec6c74ee8db418099b373" 508 | 509 | conventional-changelog-writer@^3.0.9: 510 | version "3.0.9" 511 | resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz#4aecdfef33ff2a53bb0cf3b8071ce21f0e994634" 512 | dependencies: 513 | compare-func "^1.3.1" 514 | conventional-commits-filter "^1.1.6" 515 | dateformat "^3.0.0" 516 | handlebars "^4.0.2" 517 | json-stringify-safe "^5.0.1" 518 | lodash "^4.2.1" 519 | meow "^4.0.0" 520 | semver "^5.5.0" 521 | split "^1.0.0" 522 | through2 "^2.0.0" 523 | 524 | conventional-changelog@^1.1.0: 525 | version "1.1.24" 526 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.24.tgz#3d94c29c960f5261c002678315b756cdd3d7d1f0" 527 | dependencies: 528 | conventional-changelog-angular "^1.6.6" 529 | conventional-changelog-atom "^0.2.8" 530 | conventional-changelog-codemirror "^0.3.8" 531 | conventional-changelog-core "^2.0.11" 532 | conventional-changelog-ember "^0.3.12" 533 | conventional-changelog-eslint "^1.0.9" 534 | conventional-changelog-express "^0.3.6" 535 | conventional-changelog-jquery "^0.1.0" 536 | conventional-changelog-jscs "^0.1.0" 537 | conventional-changelog-jshint "^0.3.8" 538 | conventional-changelog-preset-loader "^1.1.8" 539 | 540 | conventional-commits-filter@^1.1.1, conventional-commits-filter@^1.1.6: 541 | version "1.1.6" 542 | resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz#4389cd8e58fe89750c0b5fb58f1d7f0cc8ad3831" 543 | dependencies: 544 | is-subset "^0.1.1" 545 | modify-values "^1.0.0" 546 | 547 | conventional-commits-parser@^2.1.1, conventional-commits-parser@^2.1.7: 548 | version "2.1.7" 549 | resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz#eca45ed6140d72ba9722ee4132674d639e644e8e" 550 | dependencies: 551 | JSONStream "^1.0.4" 552 | is-text-path "^1.0.0" 553 | lodash "^4.2.1" 554 | meow "^4.0.0" 555 | split2 "^2.0.0" 556 | through2 "^2.0.0" 557 | trim-off-newlines "^1.0.0" 558 | 559 | conventional-recommended-bump@^1.0.0: 560 | version "1.2.1" 561 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.2.1.tgz#1b7137efb5091f99fe009e2fe9ddb7cc490e9375" 562 | dependencies: 563 | concat-stream "^1.4.10" 564 | conventional-commits-filter "^1.1.1" 565 | conventional-commits-parser "^2.1.1" 566 | git-raw-commits "^1.3.0" 567 | git-semver-tags "^1.3.0" 568 | meow "^3.3.0" 569 | object-assign "^4.0.1" 570 | 571 | convert-source-map@^1.5.1: 572 | version "1.6.0" 573 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 574 | dependencies: 575 | safe-buffer "~5.1.1" 576 | 577 | copy-descriptor@^0.1.0: 578 | version "0.1.1" 579 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 580 | 581 | core-js@^2.4.0: 582 | version "2.5.7" 583 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 584 | 585 | core-util-is@~1.0.0: 586 | version "1.0.2" 587 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 588 | 589 | cross-spawn@^4: 590 | version "4.0.2" 591 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 592 | dependencies: 593 | lru-cache "^4.0.1" 594 | which "^1.2.9" 595 | 596 | cross-spawn@^5.0.1: 597 | version "5.1.0" 598 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 599 | dependencies: 600 | lru-cache "^4.0.1" 601 | shebang-command "^1.2.0" 602 | which "^1.2.9" 603 | 604 | currently-unhandled@^0.4.1: 605 | version "0.4.1" 606 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 607 | dependencies: 608 | array-find-index "^1.0.1" 609 | 610 | dargs@^4.0.1: 611 | version "4.1.0" 612 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 613 | dependencies: 614 | number-is-nan "^1.0.0" 615 | 616 | dateformat@^3.0.0: 617 | version "3.0.3" 618 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 619 | 620 | debug-log@^1.0.1: 621 | version "1.0.1" 622 | resolved "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 623 | 624 | debug@4: 625 | version "4.1.1" 626 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 627 | dependencies: 628 | ms "^2.1.1" 629 | 630 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 631 | version "2.6.9" 632 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 633 | dependencies: 634 | ms "2.0.0" 635 | 636 | debug@^3.1.0: 637 | version "3.2.6" 638 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 639 | dependencies: 640 | ms "^2.1.1" 641 | 642 | decamelize-keys@^1.0.0: 643 | version "1.1.0" 644 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 645 | dependencies: 646 | decamelize "^1.1.0" 647 | map-obj "^1.0.0" 648 | 649 | decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2: 650 | version "1.2.0" 651 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 652 | 653 | decode-uri-component@^0.2.0: 654 | version "0.2.0" 655 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 656 | 657 | default-require-extensions@^1.0.0: 658 | version "1.0.0" 659 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 660 | dependencies: 661 | strip-bom "^2.0.0" 662 | 663 | define-property@^0.2.5: 664 | version "0.2.5" 665 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 666 | dependencies: 667 | is-descriptor "^0.1.0" 668 | 669 | define-property@^1.0.0: 670 | version "1.0.0" 671 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 672 | dependencies: 673 | is-descriptor "^1.0.0" 674 | 675 | define-property@^2.0.2: 676 | version "2.0.2" 677 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 678 | dependencies: 679 | is-descriptor "^1.0.2" 680 | isobject "^3.0.1" 681 | 682 | detect-indent@^4.0.0: 683 | version "4.0.0" 684 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 685 | dependencies: 686 | repeating "^2.0.0" 687 | 688 | diff@^4.0.1: 689 | version "4.0.2" 690 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 691 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 692 | 693 | dot-prop@^3.0.0: 694 | version "3.0.0" 695 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 696 | dependencies: 697 | is-obj "^1.0.0" 698 | 699 | dotgitignore@^1.0.3: 700 | version "1.0.3" 701 | resolved "https://registry.yarnpkg.com/dotgitignore/-/dotgitignore-1.0.3.tgz#a442cbde7dc20dff51cdb849e4c5a64568c07923" 702 | dependencies: 703 | find-up "^2.1.0" 704 | minimatch "^3.0.4" 705 | 706 | error-ex@^1.2.0, error-ex@^1.3.1: 707 | version "1.3.2" 708 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 709 | dependencies: 710 | is-arrayish "^0.2.1" 711 | 712 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 713 | version "1.0.5" 714 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 715 | 716 | eslint-plugin-prettier@^2.2.0: 717 | version "2.7.0" 718 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904" 719 | dependencies: 720 | fast-diff "^1.1.1" 721 | jest-docblock "^21.0.0" 722 | 723 | esprima@^4.0.0: 724 | version "4.0.1" 725 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 726 | 727 | esutils@^2.0.2: 728 | version "2.0.2" 729 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 730 | 731 | execa@^0.7.0: 732 | version "0.7.0" 733 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 734 | dependencies: 735 | cross-spawn "^5.0.1" 736 | get-stream "^3.0.0" 737 | is-stream "^1.1.0" 738 | npm-run-path "^2.0.0" 739 | p-finally "^1.0.0" 740 | signal-exit "^3.0.0" 741 | strip-eof "^1.0.0" 742 | 743 | expand-brackets@^0.1.4: 744 | version "0.1.5" 745 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 746 | dependencies: 747 | is-posix-bracket "^0.1.0" 748 | 749 | expand-brackets@^2.1.4: 750 | version "2.1.4" 751 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 752 | dependencies: 753 | debug "^2.3.3" 754 | define-property "^0.2.5" 755 | extend-shallow "^2.0.1" 756 | posix-character-classes "^0.1.0" 757 | regex-not "^1.0.0" 758 | snapdragon "^0.8.1" 759 | to-regex "^3.0.1" 760 | 761 | expand-range@^1.8.1: 762 | version "1.8.2" 763 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 764 | dependencies: 765 | fill-range "^2.1.0" 766 | 767 | extend-shallow@^2.0.1: 768 | version "2.0.1" 769 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 770 | dependencies: 771 | is-extendable "^0.1.0" 772 | 773 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 774 | version "3.0.2" 775 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 776 | dependencies: 777 | assign-symbols "^1.0.0" 778 | is-extendable "^1.0.1" 779 | 780 | extglob@^0.3.1: 781 | version "0.3.2" 782 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 783 | dependencies: 784 | is-extglob "^1.0.0" 785 | 786 | extglob@^2.0.4: 787 | version "2.0.4" 788 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 789 | dependencies: 790 | array-unique "^0.3.2" 791 | define-property "^1.0.0" 792 | expand-brackets "^2.1.4" 793 | extend-shallow "^2.0.1" 794 | fragment-cache "^0.2.1" 795 | regex-not "^1.0.0" 796 | snapdragon "^0.8.1" 797 | to-regex "^3.0.1" 798 | 799 | fast-deep-equal@^1.0.0: 800 | version "1.1.0" 801 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 802 | 803 | fast-diff@^1.1.1: 804 | version "1.2.0" 805 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 806 | 807 | fast-json-stable-stringify@^2.0.0: 808 | version "2.0.0" 809 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 810 | 811 | figures@^1.5.0: 812 | version "1.7.0" 813 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 814 | dependencies: 815 | escape-string-regexp "^1.0.5" 816 | object-assign "^4.1.0" 817 | 818 | filename-regex@^2.0.0: 819 | version "2.0.1" 820 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 821 | 822 | fill-range@^2.1.0: 823 | version "2.2.4" 824 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 825 | dependencies: 826 | is-number "^2.1.0" 827 | isobject "^2.0.0" 828 | randomatic "^3.0.0" 829 | repeat-element "^1.1.2" 830 | repeat-string "^1.5.2" 831 | 832 | fill-range@^4.0.0: 833 | version "4.0.0" 834 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 835 | dependencies: 836 | extend-shallow "^2.0.1" 837 | is-number "^3.0.0" 838 | repeat-string "^1.6.1" 839 | to-regex-range "^2.1.0" 840 | 841 | find-cache-dir@^0.1.1: 842 | version "0.1.1" 843 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 844 | dependencies: 845 | commondir "^1.0.1" 846 | mkdirp "^0.5.1" 847 | pkg-dir "^1.0.0" 848 | 849 | find-up@^1.0.0: 850 | version "1.1.2" 851 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 852 | dependencies: 853 | path-exists "^2.0.0" 854 | pinkie-promise "^2.0.0" 855 | 856 | find-up@^2.0.0, find-up@^2.1.0: 857 | version "2.1.0" 858 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 859 | dependencies: 860 | locate-path "^2.0.0" 861 | 862 | for-in@^1.0.1, for-in@^1.0.2: 863 | version "1.0.2" 864 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 865 | 866 | for-own@^0.1.4: 867 | version "0.1.5" 868 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 869 | dependencies: 870 | for-in "^1.0.1" 871 | 872 | foreground-child@^1.5.3, foreground-child@^1.5.6: 873 | version "1.5.6" 874 | resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 875 | dependencies: 876 | cross-spawn "^4" 877 | signal-exit "^3.0.0" 878 | 879 | fragment-cache@^0.2.1: 880 | version "0.2.1" 881 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 882 | dependencies: 883 | map-cache "^0.2.2" 884 | 885 | fs-access@^1.0.0: 886 | version "1.0.1" 887 | resolved "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 888 | dependencies: 889 | null-check "^1.0.0" 890 | 891 | fs.realpath@^1.0.0: 892 | version "1.0.0" 893 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 894 | 895 | get-caller-file@^1.0.1: 896 | version "1.0.3" 897 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 898 | 899 | get-pkg-repo@^1.0.0: 900 | version "1.4.0" 901 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 902 | dependencies: 903 | hosted-git-info "^2.1.4" 904 | meow "^3.3.0" 905 | normalize-package-data "^2.3.0" 906 | parse-github-repo-url "^1.3.0" 907 | through2 "^2.0.0" 908 | 909 | get-stdin@^4.0.1: 910 | version "4.0.1" 911 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 912 | 913 | get-stream@^3.0.0: 914 | version "3.0.0" 915 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 916 | 917 | get-value@^2.0.3, get-value@^2.0.6: 918 | version "2.0.6" 919 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 920 | 921 | git-raw-commits@^1.3.0, git-raw-commits@^1.3.6: 922 | version "1.3.6" 923 | resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz#27c35a32a67777c1ecd412a239a6c19d71b95aff" 924 | dependencies: 925 | dargs "^4.0.1" 926 | lodash.template "^4.0.2" 927 | meow "^4.0.0" 928 | split2 "^2.0.0" 929 | through2 "^2.0.0" 930 | 931 | git-remote-origin-url@^2.0.0: 932 | version "2.0.0" 933 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 934 | dependencies: 935 | gitconfiglocal "^1.0.0" 936 | pify "^2.3.0" 937 | 938 | git-semver-tags@^1.3.0, git-semver-tags@^1.3.6: 939 | version "1.3.6" 940 | resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.6.tgz#357ea01f7280794fe0927f2806bee6414d2caba5" 941 | dependencies: 942 | meow "^4.0.0" 943 | semver "^5.5.0" 944 | 945 | gitconfiglocal@^1.0.0: 946 | version "1.0.0" 947 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 948 | dependencies: 949 | ini "^1.3.2" 950 | 951 | glob-base@^0.3.0: 952 | version "0.3.0" 953 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 954 | dependencies: 955 | glob-parent "^2.0.0" 956 | is-glob "^2.0.0" 957 | 958 | glob-parent@^2.0.0: 959 | version "2.0.0" 960 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 961 | dependencies: 962 | is-glob "^2.0.0" 963 | 964 | glob@^7.0.5, glob@^7.0.6, glob@^7.1.1: 965 | version "7.1.3" 966 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 967 | dependencies: 968 | fs.realpath "^1.0.0" 969 | inflight "^1.0.4" 970 | inherits "2" 971 | minimatch "^3.0.4" 972 | once "^1.3.0" 973 | path-is-absolute "^1.0.0" 974 | 975 | globals@^9.18.0: 976 | version "9.18.0" 977 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 978 | 979 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 980 | version "4.1.15" 981 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 982 | 983 | handlebars@^4.0.2, handlebars@^4.0.3: 984 | version "4.7.6" 985 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 986 | integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== 987 | dependencies: 988 | minimist "^1.2.5" 989 | neo-async "^2.6.0" 990 | source-map "^0.6.1" 991 | wordwrap "^1.0.0" 992 | optionalDependencies: 993 | uglify-js "^3.1.4" 994 | 995 | har-schema@^2.0.0: 996 | version "2.0.0" 997 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 998 | 999 | har-validator@5.1.0: 1000 | version "5.1.0" 1001 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 1002 | dependencies: 1003 | ajv "^5.3.0" 1004 | har-schema "^2.0.0" 1005 | 1006 | has-ansi@^2.0.0: 1007 | version "2.0.0" 1008 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1009 | dependencies: 1010 | ansi-regex "^2.0.0" 1011 | 1012 | has-flag@^1.0.0: 1013 | version "1.0.0" 1014 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1015 | 1016 | has-flag@^3.0.0: 1017 | version "3.0.0" 1018 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1019 | 1020 | has-value@^0.3.1: 1021 | version "0.3.1" 1022 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1023 | dependencies: 1024 | get-value "^2.0.3" 1025 | has-values "^0.1.4" 1026 | isobject "^2.0.0" 1027 | 1028 | has-value@^1.0.0: 1029 | version "1.0.0" 1030 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1031 | dependencies: 1032 | get-value "^2.0.6" 1033 | has-values "^1.0.0" 1034 | isobject "^3.0.0" 1035 | 1036 | has-values@^0.1.4: 1037 | version "0.1.4" 1038 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1039 | 1040 | has-values@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1043 | dependencies: 1044 | is-number "^3.0.0" 1045 | kind-of "^4.0.0" 1046 | 1047 | hosted-git-info@^2.1.4: 1048 | version "2.7.1" 1049 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1050 | 1051 | http-proxy-agent@^4.0.0: 1052 | version "4.0.1" 1053 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1054 | dependencies: 1055 | "@tootallnate/once" "1" 1056 | agent-base "6" 1057 | debug "4" 1058 | 1059 | https-proxy-agent@^4.0.0: 1060 | version "4.0.0" 1061 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" 1062 | dependencies: 1063 | agent-base "5" 1064 | debug "4" 1065 | 1066 | ignore-walk@3.0.3: 1067 | version "3.0.3" 1068 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 1069 | dependencies: 1070 | minimatch "^3.0.4" 1071 | 1072 | imurmurhash@^0.1.4: 1073 | version "0.1.4" 1074 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1075 | 1076 | indent-string@^2.1.0: 1077 | version "2.1.0" 1078 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1079 | dependencies: 1080 | repeating "^2.0.0" 1081 | 1082 | indent-string@^3.0.0: 1083 | version "3.2.0" 1084 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1085 | 1086 | inflight@^1.0.4: 1087 | version "1.0.6" 1088 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1089 | dependencies: 1090 | once "^1.3.0" 1091 | wrappy "1" 1092 | 1093 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1094 | version "2.0.3" 1095 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1096 | 1097 | ini@^1.3.2: 1098 | version "1.3.7" 1099 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1100 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 1101 | 1102 | invariant@^2.2.2: 1103 | version "2.2.4" 1104 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1105 | dependencies: 1106 | loose-envify "^1.0.0" 1107 | 1108 | invert-kv@^1.0.0: 1109 | version "1.0.0" 1110 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1111 | 1112 | is-accessor-descriptor@^0.1.6: 1113 | version "0.1.6" 1114 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1115 | dependencies: 1116 | kind-of "^3.0.2" 1117 | 1118 | is-accessor-descriptor@^1.0.0: 1119 | version "1.0.0" 1120 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1121 | dependencies: 1122 | kind-of "^6.0.0" 1123 | 1124 | is-arrayish@^0.2.1: 1125 | version "0.2.1" 1126 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1127 | 1128 | is-buffer@^1.1.5: 1129 | version "1.1.6" 1130 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1131 | 1132 | is-builtin-module@^1.0.0: 1133 | version "1.0.0" 1134 | resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1135 | dependencies: 1136 | builtin-modules "^1.0.0" 1137 | 1138 | is-data-descriptor@^0.1.4: 1139 | version "0.1.4" 1140 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1141 | dependencies: 1142 | kind-of "^3.0.2" 1143 | 1144 | is-data-descriptor@^1.0.0: 1145 | version "1.0.0" 1146 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1147 | dependencies: 1148 | kind-of "^6.0.0" 1149 | 1150 | is-descriptor@^0.1.0: 1151 | version "0.1.6" 1152 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1153 | dependencies: 1154 | is-accessor-descriptor "^0.1.6" 1155 | is-data-descriptor "^0.1.4" 1156 | kind-of "^5.0.0" 1157 | 1158 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1159 | version "1.0.2" 1160 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1161 | dependencies: 1162 | is-accessor-descriptor "^1.0.0" 1163 | is-data-descriptor "^1.0.0" 1164 | kind-of "^6.0.2" 1165 | 1166 | is-dotfile@^1.0.0: 1167 | version "1.0.3" 1168 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1169 | 1170 | is-equal-shallow@^0.1.3: 1171 | version "0.1.3" 1172 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1173 | dependencies: 1174 | is-primitive "^2.0.0" 1175 | 1176 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1177 | version "0.1.1" 1178 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1179 | 1180 | is-extendable@^1.0.1: 1181 | version "1.0.1" 1182 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1183 | dependencies: 1184 | is-plain-object "^2.0.4" 1185 | 1186 | is-extglob@^1.0.0: 1187 | version "1.0.0" 1188 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1189 | 1190 | is-finite@^1.0.0: 1191 | version "1.0.2" 1192 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1193 | dependencies: 1194 | number-is-nan "^1.0.0" 1195 | 1196 | is-fullwidth-code-point@^1.0.0: 1197 | version "1.0.0" 1198 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1199 | dependencies: 1200 | number-is-nan "^1.0.0" 1201 | 1202 | is-fullwidth-code-point@^2.0.0: 1203 | version "2.0.0" 1204 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1205 | 1206 | is-glob@^2.0.0, is-glob@^2.0.1: 1207 | version "2.0.1" 1208 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1209 | dependencies: 1210 | is-extglob "^1.0.0" 1211 | 1212 | is-number@^2.1.0: 1213 | version "2.1.0" 1214 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1215 | dependencies: 1216 | kind-of "^3.0.2" 1217 | 1218 | is-number@^3.0.0: 1219 | version "3.0.0" 1220 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1221 | dependencies: 1222 | kind-of "^3.0.2" 1223 | 1224 | is-number@^4.0.0: 1225 | version "4.0.0" 1226 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1227 | 1228 | is-obj@^1.0.0: 1229 | version "1.0.1" 1230 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1231 | 1232 | is-plain-obj@^1.1.0: 1233 | version "1.1.0" 1234 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1235 | 1236 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1237 | version "2.0.4" 1238 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1239 | dependencies: 1240 | isobject "^3.0.1" 1241 | 1242 | is-posix-bracket@^0.1.0: 1243 | version "0.1.1" 1244 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1245 | 1246 | is-primitive@^2.0.0: 1247 | version "2.0.0" 1248 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1249 | 1250 | is-stream@^1.1.0: 1251 | version "1.1.0" 1252 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1253 | 1254 | is-subset@^0.1.1: 1255 | version "0.1.1" 1256 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1257 | 1258 | is-text-path@^1.0.0: 1259 | version "1.0.1" 1260 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1261 | dependencies: 1262 | text-extensions "^1.0.0" 1263 | 1264 | is-utf8@^0.2.0: 1265 | version "0.2.1" 1266 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1267 | 1268 | is-windows@^1.0.2: 1269 | version "1.0.2" 1270 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1271 | 1272 | isarray@1.0.0, isarray@~1.0.0: 1273 | version "1.0.0" 1274 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1275 | 1276 | isexe@^2.0.0: 1277 | version "2.0.0" 1278 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1279 | 1280 | isobject@^2.0.0: 1281 | version "2.1.0" 1282 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1283 | dependencies: 1284 | isarray "1.0.0" 1285 | 1286 | isobject@^3.0.0, isobject@^3.0.1: 1287 | version "3.0.1" 1288 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1289 | 1290 | istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.1: 1291 | version "1.2.1" 1292 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" 1293 | 1294 | istanbul-lib-hook@^1.1.0: 1295 | version "1.2.2" 1296 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" 1297 | dependencies: 1298 | append-transform "^0.4.0" 1299 | 1300 | istanbul-lib-instrument@^1.10.0: 1301 | version "1.10.2" 1302 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" 1303 | dependencies: 1304 | babel-generator "^6.18.0" 1305 | babel-template "^6.16.0" 1306 | babel-traverse "^6.18.0" 1307 | babel-types "^6.18.0" 1308 | babylon "^6.18.0" 1309 | istanbul-lib-coverage "^1.2.1" 1310 | semver "^5.3.0" 1311 | 1312 | istanbul-lib-report@^1.1.3: 1313 | version "1.1.5" 1314 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" 1315 | dependencies: 1316 | istanbul-lib-coverage "^1.2.1" 1317 | mkdirp "^0.5.1" 1318 | path-parse "^1.0.5" 1319 | supports-color "^3.1.2" 1320 | 1321 | istanbul-lib-source-maps@^1.2.3: 1322 | version "1.2.6" 1323 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" 1324 | dependencies: 1325 | debug "^3.1.0" 1326 | istanbul-lib-coverage "^1.2.1" 1327 | mkdirp "^0.5.1" 1328 | rimraf "^2.6.1" 1329 | source-map "^0.5.3" 1330 | 1331 | istanbul-reports@^1.4.0: 1332 | version "1.5.1" 1333 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" 1334 | dependencies: 1335 | handlebars "^4.0.3" 1336 | 1337 | jest-docblock@^21.0.0: 1338 | version "21.2.0" 1339 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1340 | 1341 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1342 | version "4.0.0" 1343 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1344 | 1345 | js-tokens@^3.0.2: 1346 | version "3.0.2" 1347 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1348 | 1349 | js-yaml@3.13.1, js-yaml@^3.13.1: 1350 | version "3.13.1" 1351 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1352 | dependencies: 1353 | argparse "^1.0.7" 1354 | esprima "^4.0.0" 1355 | 1356 | jsesc@^1.3.0: 1357 | version "1.3.0" 1358 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1359 | 1360 | json-parse-better-errors@^1.0.1: 1361 | version "1.0.2" 1362 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1363 | 1364 | json-schema-traverse@^0.3.0: 1365 | version "0.3.1" 1366 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1367 | 1368 | json-stringify-safe@^5.0.1: 1369 | version "5.0.1" 1370 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1371 | 1372 | jsonparse@^1.2.0: 1373 | version "1.3.1" 1374 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1375 | 1376 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1377 | version "3.2.2" 1378 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1379 | dependencies: 1380 | is-buffer "^1.1.5" 1381 | 1382 | kind-of@^4.0.0: 1383 | version "4.0.0" 1384 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1385 | dependencies: 1386 | is-buffer "^1.1.5" 1387 | 1388 | kind-of@^5.0.0: 1389 | version "5.1.0" 1390 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1391 | 1392 | kind-of@^6.0.0, kind-of@^6.0.2: 1393 | version "6.0.2" 1394 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1395 | 1396 | lcid@^1.0.0: 1397 | version "1.0.0" 1398 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1399 | dependencies: 1400 | invert-kv "^1.0.0" 1401 | 1402 | lines-and-columns@^1.1.6: 1403 | version "1.1.6" 1404 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1405 | 1406 | load-json-file@^1.0.0: 1407 | version "1.1.0" 1408 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1409 | dependencies: 1410 | graceful-fs "^4.1.2" 1411 | parse-json "^2.2.0" 1412 | pify "^2.0.0" 1413 | pinkie-promise "^2.0.0" 1414 | strip-bom "^2.0.0" 1415 | 1416 | load-json-file@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1419 | dependencies: 1420 | graceful-fs "^4.1.2" 1421 | parse-json "^2.2.0" 1422 | pify "^2.0.0" 1423 | strip-bom "^3.0.0" 1424 | 1425 | load-json-file@^4.0.0: 1426 | version "4.0.0" 1427 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1428 | dependencies: 1429 | graceful-fs "^4.1.2" 1430 | parse-json "^4.0.0" 1431 | pify "^3.0.0" 1432 | strip-bom "^3.0.0" 1433 | 1434 | locate-path@^2.0.0: 1435 | version "2.0.0" 1436 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1437 | dependencies: 1438 | p-locate "^2.0.0" 1439 | path-exists "^3.0.0" 1440 | 1441 | lodash._reinterpolate@^3.0.0: 1442 | version "3.0.0" 1443 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1444 | 1445 | lodash.template@^4.0.2: 1446 | version "4.5.0" 1447 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 1448 | dependencies: 1449 | lodash._reinterpolate "^3.0.0" 1450 | lodash.templatesettings "^4.0.0" 1451 | 1452 | lodash.templatesettings@^4.0.0: 1453 | version "4.2.0" 1454 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 1455 | dependencies: 1456 | lodash._reinterpolate "^3.0.0" 1457 | 1458 | lodash@^4.17.4, lodash@^4.2.1: 1459 | version "4.17.19" 1460 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1461 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1462 | 1463 | loose-envify@^1.0.0: 1464 | version "1.4.0" 1465 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1466 | dependencies: 1467 | js-tokens "^3.0.0 || ^4.0.0" 1468 | 1469 | loud-rejection@^1.0.0: 1470 | version "1.6.0" 1471 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1472 | dependencies: 1473 | currently-unhandled "^0.4.1" 1474 | signal-exit "^3.0.0" 1475 | 1476 | lru-cache@^4.0.1: 1477 | version "4.1.3" 1478 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1479 | dependencies: 1480 | pseudomap "^1.0.2" 1481 | yallist "^2.1.2" 1482 | 1483 | map-cache@^0.2.2: 1484 | version "0.2.2" 1485 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1486 | 1487 | map-obj@^1.0.0, map-obj@^1.0.1: 1488 | version "1.0.1" 1489 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1490 | 1491 | map-obj@^2.0.0: 1492 | version "2.0.0" 1493 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1494 | 1495 | map-visit@^1.0.0: 1496 | version "1.0.0" 1497 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1498 | dependencies: 1499 | object-visit "^1.0.0" 1500 | 1501 | math-random@^1.0.1: 1502 | version "1.0.1" 1503 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1504 | 1505 | md5-hex@^1.2.0: 1506 | version "1.3.0" 1507 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1508 | dependencies: 1509 | md5-o-matic "^0.1.1" 1510 | 1511 | md5-o-matic@^0.1.1: 1512 | version "0.1.1" 1513 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1514 | 1515 | mem@^1.1.0: 1516 | version "1.1.0" 1517 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1518 | dependencies: 1519 | mimic-fn "^1.0.0" 1520 | 1521 | meow@^3.3.0: 1522 | version "3.7.0" 1523 | resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1524 | dependencies: 1525 | camelcase-keys "^2.0.0" 1526 | decamelize "^1.1.2" 1527 | loud-rejection "^1.0.0" 1528 | map-obj "^1.0.1" 1529 | minimist "^1.1.3" 1530 | normalize-package-data "^2.3.4" 1531 | object-assign "^4.0.1" 1532 | read-pkg-up "^1.0.1" 1533 | redent "^1.0.0" 1534 | trim-newlines "^1.0.0" 1535 | 1536 | meow@^4.0.0: 1537 | version "4.0.1" 1538 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975" 1539 | dependencies: 1540 | camelcase-keys "^4.0.0" 1541 | decamelize-keys "^1.0.0" 1542 | loud-rejection "^1.0.0" 1543 | minimist "^1.1.3" 1544 | minimist-options "^3.0.1" 1545 | normalize-package-data "^2.3.4" 1546 | read-pkg-up "^3.0.0" 1547 | redent "^2.0.0" 1548 | trim-newlines "^2.0.0" 1549 | 1550 | merge-source-map@^1.1.0: 1551 | version "1.1.0" 1552 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 1553 | dependencies: 1554 | source-map "^0.6.1" 1555 | 1556 | micromatch@^2.3.11: 1557 | version "2.3.11" 1558 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1559 | dependencies: 1560 | arr-diff "^2.0.0" 1561 | array-unique "^0.2.1" 1562 | braces "^1.8.2" 1563 | expand-brackets "^0.1.4" 1564 | extglob "^0.3.1" 1565 | filename-regex "^2.0.0" 1566 | is-extglob "^1.0.0" 1567 | is-glob "^2.0.1" 1568 | kind-of "^3.0.2" 1569 | normalize-path "^2.0.1" 1570 | object.omit "^2.0.0" 1571 | parse-glob "^3.0.4" 1572 | regex-cache "^0.4.2" 1573 | 1574 | micromatch@^3.1.10: 1575 | version "3.1.10" 1576 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1577 | dependencies: 1578 | arr-diff "^4.0.0" 1579 | array-unique "^0.3.2" 1580 | braces "^2.3.1" 1581 | define-property "^2.0.2" 1582 | extend-shallow "^3.0.2" 1583 | extglob "^2.0.4" 1584 | fragment-cache "^0.2.1" 1585 | kind-of "^6.0.2" 1586 | nanomatch "^1.2.9" 1587 | object.pick "^1.3.0" 1588 | regex-not "^1.0.0" 1589 | snapdragon "^0.8.1" 1590 | to-regex "^3.0.2" 1591 | 1592 | mimic-fn@^1.0.0: 1593 | version "1.2.0" 1594 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1595 | 1596 | minimatch@^3.0.4: 1597 | version "3.0.4" 1598 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1599 | dependencies: 1600 | brace-expansion "^1.1.7" 1601 | 1602 | minimist-options@^3.0.1: 1603 | version "3.0.2" 1604 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 1605 | dependencies: 1606 | arrify "^1.0.1" 1607 | is-plain-obj "^1.1.0" 1608 | 1609 | minimist@^1.1.3, minimist@^1.2.5: 1610 | version "1.2.5" 1611 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1612 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1613 | 1614 | mixin-deep@^1.2.0: 1615 | version "1.3.2" 1616 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 1617 | dependencies: 1618 | for-in "^1.0.2" 1619 | is-extendable "^1.0.1" 1620 | 1621 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3: 1622 | version "0.5.4" 1623 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512" 1624 | integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw== 1625 | dependencies: 1626 | minimist "^1.2.5" 1627 | 1628 | modify-values@^1.0.0: 1629 | version "1.0.1" 1630 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 1631 | 1632 | ms@2.0.0: 1633 | version "2.0.0" 1634 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1635 | 1636 | ms@^2.1.1: 1637 | version "2.1.1" 1638 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1639 | 1640 | nanomatch@^1.2.9: 1641 | version "1.2.13" 1642 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1643 | dependencies: 1644 | arr-diff "^4.0.0" 1645 | array-unique "^0.3.2" 1646 | define-property "^2.0.2" 1647 | extend-shallow "^3.0.2" 1648 | fragment-cache "^0.2.1" 1649 | is-windows "^1.0.2" 1650 | kind-of "^6.0.2" 1651 | object.pick "^1.3.0" 1652 | regex-not "^1.0.0" 1653 | snapdragon "^0.8.1" 1654 | to-regex "^3.0.1" 1655 | 1656 | neo-async@^2.6.0: 1657 | version "2.6.1" 1658 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 1659 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 1660 | 1661 | node-fetch@^2.2.0: 1662 | version "2.6.1" 1663 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 1664 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 1665 | 1666 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 1667 | version "2.4.0" 1668 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1669 | dependencies: 1670 | hosted-git-info "^2.1.4" 1671 | is-builtin-module "^1.0.0" 1672 | semver "2 || 3 || 4 || 5" 1673 | validate-npm-package-license "^3.0.1" 1674 | 1675 | normalize-path@^2.0.1: 1676 | version "2.1.1" 1677 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1678 | dependencies: 1679 | remove-trailing-separator "^1.0.1" 1680 | 1681 | npm-run-path@^2.0.0: 1682 | version "2.0.2" 1683 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1684 | dependencies: 1685 | path-key "^2.0.0" 1686 | 1687 | null-check@^1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 1690 | 1691 | number-is-nan@^1.0.0: 1692 | version "1.0.1" 1693 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1694 | 1695 | nyc@11.9.0: 1696 | version "11.9.0" 1697 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.9.0.tgz#4106e89e8fbe73623a1fc8b6ecb7abaa271ae1e4" 1698 | dependencies: 1699 | archy "^1.0.0" 1700 | arrify "^1.0.1" 1701 | caching-transform "^1.0.0" 1702 | convert-source-map "^1.5.1" 1703 | debug-log "^1.0.1" 1704 | default-require-extensions "^1.0.0" 1705 | find-cache-dir "^0.1.1" 1706 | find-up "^2.1.0" 1707 | foreground-child "^1.5.3" 1708 | glob "^7.0.6" 1709 | istanbul-lib-coverage "^1.1.2" 1710 | istanbul-lib-hook "^1.1.0" 1711 | istanbul-lib-instrument "^1.10.0" 1712 | istanbul-lib-report "^1.1.3" 1713 | istanbul-lib-source-maps "^1.2.3" 1714 | istanbul-reports "^1.4.0" 1715 | md5-hex "^1.2.0" 1716 | merge-source-map "^1.1.0" 1717 | micromatch "^3.1.10" 1718 | mkdirp "^0.5.0" 1719 | resolve-from "^2.0.0" 1720 | rimraf "^2.6.2" 1721 | signal-exit "^3.0.1" 1722 | spawn-wrap "^1.4.2" 1723 | test-exclude "^4.2.0" 1724 | yargs "11.1.0" 1725 | yargs-parser "^8.0.0" 1726 | 1727 | object-assign@^4.0.1, object-assign@^4.1.0: 1728 | version "4.1.1" 1729 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1730 | 1731 | object-copy@^0.1.0: 1732 | version "0.1.0" 1733 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1734 | dependencies: 1735 | copy-descriptor "^0.1.0" 1736 | define-property "^0.2.5" 1737 | kind-of "^3.0.3" 1738 | 1739 | object-visit@^1.0.0: 1740 | version "1.0.1" 1741 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1742 | dependencies: 1743 | isobject "^3.0.0" 1744 | 1745 | object.omit@^2.0.0: 1746 | version "2.0.1" 1747 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1748 | dependencies: 1749 | for-own "^0.1.4" 1750 | is-extendable "^0.1.1" 1751 | 1752 | object.pick@^1.3.0: 1753 | version "1.3.0" 1754 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1755 | dependencies: 1756 | isobject "^3.0.1" 1757 | 1758 | once@^1.3.0: 1759 | version "1.4.0" 1760 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1761 | dependencies: 1762 | wrappy "1" 1763 | 1764 | os-homedir@^1.0.1: 1765 | version "1.0.2" 1766 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1767 | 1768 | os-locale@^2.0.0: 1769 | version "2.1.0" 1770 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1771 | dependencies: 1772 | execa "^0.7.0" 1773 | lcid "^1.0.0" 1774 | mem "^1.1.0" 1775 | 1776 | p-finally@^1.0.0: 1777 | version "1.0.0" 1778 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1779 | 1780 | p-limit@^1.1.0: 1781 | version "1.3.0" 1782 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1783 | dependencies: 1784 | p-try "^1.0.0" 1785 | 1786 | p-locate@^2.0.0: 1787 | version "2.0.0" 1788 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1789 | dependencies: 1790 | p-limit "^1.1.0" 1791 | 1792 | p-try@^1.0.0: 1793 | version "1.0.0" 1794 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1795 | 1796 | parse-github-repo-url@^1.3.0: 1797 | version "1.4.1" 1798 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1799 | 1800 | parse-glob@^3.0.4: 1801 | version "3.0.4" 1802 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1803 | dependencies: 1804 | glob-base "^0.3.0" 1805 | is-dotfile "^1.0.0" 1806 | is-extglob "^1.0.0" 1807 | is-glob "^2.0.0" 1808 | 1809 | parse-json@^2.2.0: 1810 | version "2.2.0" 1811 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1812 | dependencies: 1813 | error-ex "^1.2.0" 1814 | 1815 | parse-json@^4.0.0: 1816 | version "4.0.0" 1817 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1818 | dependencies: 1819 | error-ex "^1.3.1" 1820 | json-parse-better-errors "^1.0.1" 1821 | 1822 | pascalcase@^0.1.1: 1823 | version "0.1.1" 1824 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1825 | 1826 | path-exists@^2.0.0: 1827 | version "2.1.0" 1828 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1829 | dependencies: 1830 | pinkie-promise "^2.0.0" 1831 | 1832 | path-exists@^3.0.0: 1833 | version "3.0.0" 1834 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1835 | 1836 | path-is-absolute@^1.0.0: 1837 | version "1.0.1" 1838 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1839 | 1840 | path-key@^2.0.0: 1841 | version "2.0.1" 1842 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1843 | 1844 | path-parse@^1.0.5: 1845 | version "1.0.6" 1846 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1847 | 1848 | path-type@^1.0.0: 1849 | version "1.1.0" 1850 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1851 | dependencies: 1852 | graceful-fs "^4.1.2" 1853 | pify "^2.0.0" 1854 | pinkie-promise "^2.0.0" 1855 | 1856 | path-type@^2.0.0: 1857 | version "2.0.0" 1858 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1859 | dependencies: 1860 | pify "^2.0.0" 1861 | 1862 | path-type@^3.0.0: 1863 | version "3.0.0" 1864 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1865 | dependencies: 1866 | pify "^3.0.0" 1867 | 1868 | pify@^2.0.0, pify@^2.3.0: 1869 | version "2.3.0" 1870 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1871 | 1872 | pify@^3.0.0: 1873 | version "3.0.0" 1874 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1875 | 1876 | pinkie-promise@^2.0.0: 1877 | version "2.0.1" 1878 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1879 | dependencies: 1880 | pinkie "^2.0.0" 1881 | 1882 | pinkie@^2.0.0: 1883 | version "2.0.4" 1884 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1885 | 1886 | pkg-dir@^1.0.0: 1887 | version "1.0.0" 1888 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1889 | dependencies: 1890 | find-up "^1.0.0" 1891 | 1892 | posix-character-classes@^0.1.0: 1893 | version "0.1.1" 1894 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1895 | 1896 | preserve@^0.2.0: 1897 | version "0.2.0" 1898 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1899 | 1900 | prettier@2.2.1: 1901 | version "2.2.1" 1902 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 1903 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 1904 | 1905 | process-nextick-args@~2.0.0: 1906 | version "2.0.0" 1907 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1908 | 1909 | pseudomap@^1.0.2: 1910 | version "1.0.2" 1911 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1912 | 1913 | q@^1.4.1, q@^1.5.1: 1914 | version "1.5.1" 1915 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1916 | 1917 | quick-lru@^1.0.0: 1918 | version "1.1.0" 1919 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 1920 | 1921 | randomatic@^3.0.0: 1922 | version "3.1.1" 1923 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" 1924 | dependencies: 1925 | is-number "^4.0.0" 1926 | kind-of "^6.0.0" 1927 | math-random "^1.0.1" 1928 | 1929 | read-pkg-up@^1.0.1: 1930 | version "1.0.1" 1931 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1932 | dependencies: 1933 | find-up "^1.0.0" 1934 | read-pkg "^1.0.0" 1935 | 1936 | read-pkg-up@^2.0.0: 1937 | version "2.0.0" 1938 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1939 | dependencies: 1940 | find-up "^2.0.0" 1941 | read-pkg "^2.0.0" 1942 | 1943 | read-pkg-up@^3.0.0: 1944 | version "3.0.0" 1945 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1946 | dependencies: 1947 | find-up "^2.0.0" 1948 | read-pkg "^3.0.0" 1949 | 1950 | read-pkg@^1.0.0, read-pkg@^1.1.0: 1951 | version "1.1.0" 1952 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1953 | dependencies: 1954 | load-json-file "^1.0.0" 1955 | normalize-package-data "^2.3.2" 1956 | path-type "^1.0.0" 1957 | 1958 | read-pkg@^2.0.0: 1959 | version "2.0.0" 1960 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1961 | dependencies: 1962 | load-json-file "^2.0.0" 1963 | normalize-package-data "^2.3.2" 1964 | path-type "^2.0.0" 1965 | 1966 | read-pkg@^3.0.0: 1967 | version "3.0.0" 1968 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1969 | dependencies: 1970 | load-json-file "^4.0.0" 1971 | normalize-package-data "^2.3.2" 1972 | path-type "^3.0.0" 1973 | 1974 | readable-stream@^2.2.2, readable-stream@~2.3.6: 1975 | version "2.3.6" 1976 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1977 | dependencies: 1978 | core-util-is "~1.0.0" 1979 | inherits "~2.0.3" 1980 | isarray "~1.0.0" 1981 | process-nextick-args "~2.0.0" 1982 | safe-buffer "~5.1.1" 1983 | string_decoder "~1.1.1" 1984 | util-deprecate "~1.0.1" 1985 | 1986 | redent@^1.0.0: 1987 | version "1.0.0" 1988 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1989 | dependencies: 1990 | indent-string "^2.1.0" 1991 | strip-indent "^1.0.1" 1992 | 1993 | redent@^2.0.0: 1994 | version "2.0.0" 1995 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 1996 | dependencies: 1997 | indent-string "^3.0.0" 1998 | strip-indent "^2.0.0" 1999 | 2000 | regenerator-runtime@^0.11.0: 2001 | version "0.11.1" 2002 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2003 | 2004 | regex-cache@^0.4.2: 2005 | version "0.4.4" 2006 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2007 | dependencies: 2008 | is-equal-shallow "^0.1.3" 2009 | 2010 | regex-not@^1.0.0, regex-not@^1.0.2: 2011 | version "1.0.2" 2012 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2013 | dependencies: 2014 | extend-shallow "^3.0.2" 2015 | safe-regex "^1.1.0" 2016 | 2017 | remove-trailing-separator@^1.0.1: 2018 | version "1.1.0" 2019 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2020 | 2021 | repeat-element@^1.1.2: 2022 | version "1.1.3" 2023 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2024 | 2025 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2026 | version "1.6.1" 2027 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2028 | 2029 | repeating@^2.0.0: 2030 | version "2.0.1" 2031 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2032 | dependencies: 2033 | is-finite "^1.0.0" 2034 | 2035 | require-directory@^2.1.1: 2036 | version "2.1.1" 2037 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2038 | 2039 | require-main-filename@^1.0.1: 2040 | version "1.0.1" 2041 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2042 | 2043 | resolve-from@^2.0.0: 2044 | version "2.0.0" 2045 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2046 | 2047 | resolve-url@^0.2.1: 2048 | version "0.2.1" 2049 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2050 | 2051 | resolve@^1.3.2: 2052 | version "1.8.1" 2053 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2054 | dependencies: 2055 | path-parse "^1.0.5" 2056 | 2057 | ret@~0.1.10: 2058 | version "0.1.15" 2059 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2060 | 2061 | rimraf@^2.6.1, rimraf@^2.6.2: 2062 | version "2.6.2" 2063 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2064 | dependencies: 2065 | glob "^7.0.5" 2066 | 2067 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2068 | version "5.1.2" 2069 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2070 | 2071 | safe-regex@^1.1.0: 2072 | version "1.1.0" 2073 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2074 | dependencies: 2075 | ret "~0.1.10" 2076 | 2077 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.5.0: 2078 | version "5.6.0" 2079 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 2080 | 2081 | set-blocking@^2.0.0: 2082 | version "2.0.0" 2083 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2084 | 2085 | set-value@^0.4.3: 2086 | version "0.4.3" 2087 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2088 | dependencies: 2089 | extend-shallow "^2.0.1" 2090 | is-extendable "^0.1.1" 2091 | is-plain-object "^2.0.1" 2092 | to-object-path "^0.3.0" 2093 | 2094 | set-value@^2.0.0: 2095 | version "2.0.0" 2096 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2097 | dependencies: 2098 | extend-shallow "^2.0.1" 2099 | is-extendable "^0.1.1" 2100 | is-plain-object "^2.0.3" 2101 | split-string "^3.0.1" 2102 | 2103 | shebang-command@^1.2.0: 2104 | version "1.2.0" 2105 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2106 | dependencies: 2107 | shebang-regex "^1.0.0" 2108 | 2109 | shebang-regex@^1.0.0: 2110 | version "1.0.0" 2111 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2112 | 2113 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 2114 | version "3.0.2" 2115 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2116 | 2117 | slide@^1.1.5: 2118 | version "1.1.6" 2119 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2120 | 2121 | snapdragon-node@^2.0.1: 2122 | version "2.1.1" 2123 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2124 | dependencies: 2125 | define-property "^1.0.0" 2126 | isobject "^3.0.0" 2127 | snapdragon-util "^3.0.1" 2128 | 2129 | snapdragon-util@^3.0.1: 2130 | version "3.0.1" 2131 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2132 | dependencies: 2133 | kind-of "^3.2.0" 2134 | 2135 | snapdragon@^0.8.1: 2136 | version "0.8.2" 2137 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2138 | dependencies: 2139 | base "^0.11.1" 2140 | debug "^2.2.0" 2141 | define-property "^0.2.5" 2142 | extend-shallow "^2.0.1" 2143 | map-cache "^0.2.2" 2144 | source-map "^0.5.6" 2145 | source-map-resolve "^0.5.0" 2146 | use "^3.1.0" 2147 | 2148 | source-map-resolve@^0.5.0: 2149 | version "0.5.2" 2150 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2151 | dependencies: 2152 | atob "^2.1.1" 2153 | decode-uri-component "^0.2.0" 2154 | resolve-url "^0.2.1" 2155 | source-map-url "^0.4.0" 2156 | urix "^0.1.0" 2157 | 2158 | source-map-url@^0.4.0: 2159 | version "0.4.0" 2160 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2161 | 2162 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: 2163 | version "0.5.7" 2164 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2165 | 2166 | source-map@^0.6.1: 2167 | version "0.6.1" 2168 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2169 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2170 | 2171 | spawn-wrap@^1.4.2: 2172 | version "1.4.2" 2173 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 2174 | dependencies: 2175 | foreground-child "^1.5.6" 2176 | mkdirp "^0.5.0" 2177 | os-homedir "^1.0.1" 2178 | rimraf "^2.6.2" 2179 | signal-exit "^3.0.2" 2180 | which "^1.3.0" 2181 | 2182 | spdx-correct@^3.0.0: 2183 | version "3.0.2" 2184 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" 2185 | dependencies: 2186 | spdx-expression-parse "^3.0.0" 2187 | spdx-license-ids "^3.0.0" 2188 | 2189 | spdx-exceptions@^2.1.0: 2190 | version "2.2.0" 2191 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 2192 | 2193 | spdx-expression-parse@^3.0.0: 2194 | version "3.0.0" 2195 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2196 | dependencies: 2197 | spdx-exceptions "^2.1.0" 2198 | spdx-license-ids "^3.0.0" 2199 | 2200 | spdx-license-ids@^3.0.0: 2201 | version "3.0.2" 2202 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" 2203 | 2204 | split-string@^3.0.1, split-string@^3.0.2: 2205 | version "3.1.0" 2206 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2207 | dependencies: 2208 | extend-shallow "^3.0.0" 2209 | 2210 | split2@^2.0.0: 2211 | version "2.2.0" 2212 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 2213 | dependencies: 2214 | through2 "^2.0.2" 2215 | 2216 | split@^1.0.0: 2217 | version "1.0.1" 2218 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2219 | dependencies: 2220 | through "2" 2221 | 2222 | sprintf-js@~1.0.2: 2223 | version "1.0.3" 2224 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2225 | 2226 | standard-version@4.4.0: 2227 | version "4.4.0" 2228 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.4.0.tgz#99de7a0709e6cafddf9c5984dd342c8cfe66e79f" 2229 | dependencies: 2230 | chalk "^1.1.3" 2231 | conventional-changelog "^1.1.0" 2232 | conventional-recommended-bump "^1.0.0" 2233 | dotgitignore "^1.0.3" 2234 | figures "^1.5.0" 2235 | fs-access "^1.0.0" 2236 | semver "^5.1.0" 2237 | yargs "^8.0.1" 2238 | 2239 | static-extend@^0.1.1: 2240 | version "0.1.2" 2241 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2242 | dependencies: 2243 | define-property "^0.2.5" 2244 | object-copy "^0.1.0" 2245 | 2246 | stream-events@^1.0.5: 2247 | version "1.0.5" 2248 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.5.tgz#bbc898ec4df33a4902d892333d47da9bf1c406d5" 2249 | dependencies: 2250 | stubs "^3.0.0" 2251 | 2252 | string-width@^1.0.1: 2253 | version "1.0.2" 2254 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2255 | dependencies: 2256 | code-point-at "^1.0.0" 2257 | is-fullwidth-code-point "^1.0.0" 2258 | strip-ansi "^3.0.0" 2259 | 2260 | string-width@^2.0.0, string-width@^2.1.1: 2261 | version "2.1.1" 2262 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2263 | dependencies: 2264 | is-fullwidth-code-point "^2.0.0" 2265 | strip-ansi "^4.0.0" 2266 | 2267 | string_decoder@~1.1.1: 2268 | version "1.1.1" 2269 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2270 | dependencies: 2271 | safe-buffer "~5.1.0" 2272 | 2273 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2274 | version "3.0.1" 2275 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2276 | dependencies: 2277 | ansi-regex "^2.0.0" 2278 | 2279 | strip-ansi@^4.0.0: 2280 | version "4.0.0" 2281 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2282 | dependencies: 2283 | ansi-regex "^3.0.0" 2284 | 2285 | strip-bom@^2.0.0: 2286 | version "2.0.0" 2287 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2288 | dependencies: 2289 | is-utf8 "^0.2.0" 2290 | 2291 | strip-bom@^3.0.0: 2292 | version "3.0.0" 2293 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2294 | 2295 | strip-eof@^1.0.0: 2296 | version "1.0.0" 2297 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2298 | 2299 | strip-indent@^1.0.1: 2300 | version "1.0.1" 2301 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2302 | dependencies: 2303 | get-stdin "^4.0.1" 2304 | 2305 | strip-indent@^2.0.0: 2306 | version "2.0.0" 2307 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2308 | 2309 | stubs@^3.0.0: 2310 | version "3.0.0" 2311 | resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" 2312 | 2313 | supports-color@^2.0.0: 2314 | version "2.0.0" 2315 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2316 | 2317 | supports-color@^3.1.2: 2318 | version "3.2.3" 2319 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2320 | dependencies: 2321 | has-flag "^1.0.0" 2322 | 2323 | supports-color@^5.3.0: 2324 | version "5.5.0" 2325 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2326 | dependencies: 2327 | has-flag "^3.0.0" 2328 | 2329 | teeny-request@6.0.1: 2330 | version "6.0.1" 2331 | resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-6.0.1.tgz#9b1f512cef152945827ba7e34f62523a4ce2c5b0" 2332 | dependencies: 2333 | http-proxy-agent "^4.0.0" 2334 | https-proxy-agent "^4.0.0" 2335 | node-fetch "^2.2.0" 2336 | stream-events "^1.0.5" 2337 | uuid "^3.3.2" 2338 | 2339 | test-exclude@^4.2.0: 2340 | version "4.2.3" 2341 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" 2342 | dependencies: 2343 | arrify "^1.0.1" 2344 | micromatch "^2.3.11" 2345 | object-assign "^4.1.0" 2346 | read-pkg-up "^1.0.1" 2347 | require-main-filename "^1.0.1" 2348 | 2349 | text-extensions@^1.0.0: 2350 | version "1.9.0" 2351 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 2352 | 2353 | through2@^2.0.0, through2@^2.0.2: 2354 | version "2.0.5" 2355 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2356 | dependencies: 2357 | readable-stream "~2.3.6" 2358 | xtend "~4.0.1" 2359 | 2360 | through@2, "through@>=2.2.7 <3": 2361 | version "2.3.8" 2362 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2363 | 2364 | to-fast-properties@^1.0.3: 2365 | version "1.0.3" 2366 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2367 | 2368 | to-object-path@^0.3.0: 2369 | version "0.3.0" 2370 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2371 | dependencies: 2372 | kind-of "^3.0.2" 2373 | 2374 | to-regex-range@^2.1.0: 2375 | version "2.1.1" 2376 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2377 | dependencies: 2378 | is-number "^3.0.0" 2379 | repeat-string "^1.6.1" 2380 | 2381 | to-regex@^3.0.1, to-regex@^3.0.2: 2382 | version "3.0.2" 2383 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2384 | dependencies: 2385 | define-property "^2.0.2" 2386 | extend-shallow "^3.0.2" 2387 | regex-not "^1.0.2" 2388 | safe-regex "^1.1.0" 2389 | 2390 | trim-newlines@^1.0.0: 2391 | version "1.0.0" 2392 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2393 | 2394 | trim-newlines@^2.0.0: 2395 | version "2.0.0" 2396 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 2397 | 2398 | trim-off-newlines@^1.0.0: 2399 | version "1.0.1" 2400 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2401 | 2402 | trim-right@^1.0.1: 2403 | version "1.0.1" 2404 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2405 | 2406 | tslib@^1.13.0, tslib@^1.7.1, tslib@^1.8.1: 2407 | version "1.13.0" 2408 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 2409 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 2410 | 2411 | tslint-config-prettier@1.18.0: 2412 | version "1.18.0" 2413 | resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37" 2414 | 2415 | tslint-plugin-prettier@2.0.1: 2416 | version "2.0.1" 2417 | resolved "https://registry.yarnpkg.com/tslint-plugin-prettier/-/tslint-plugin-prettier-2.0.1.tgz#95b6a3b766622ffc44375825d7760225c50c3680" 2418 | dependencies: 2419 | eslint-plugin-prettier "^2.2.0" 2420 | lines-and-columns "^1.1.6" 2421 | tslib "^1.7.1" 2422 | 2423 | tslint@6.1.3: 2424 | version "6.1.3" 2425 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.3.tgz#5c23b2eccc32487d5523bd3a470e9aa31789d904" 2426 | integrity sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg== 2427 | dependencies: 2428 | "@babel/code-frame" "^7.0.0" 2429 | builtin-modules "^1.1.1" 2430 | chalk "^2.3.0" 2431 | commander "^2.12.1" 2432 | diff "^4.0.1" 2433 | glob "^7.1.1" 2434 | js-yaml "^3.13.1" 2435 | minimatch "^3.0.4" 2436 | mkdirp "^0.5.3" 2437 | resolve "^1.3.2" 2438 | semver "^5.3.0" 2439 | tslib "^1.13.0" 2440 | tsutils "^2.29.0" 2441 | 2442 | tsutils@^2.29.0: 2443 | version "2.29.0" 2444 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 2445 | integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== 2446 | dependencies: 2447 | tslib "^1.8.1" 2448 | 2449 | typedarray@^0.0.6: 2450 | version "0.0.6" 2451 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2452 | 2453 | typescript@4.2.4: 2454 | version "4.2.4" 2455 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961" 2456 | integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg== 2457 | 2458 | uglify-js@^3.1.4: 2459 | version "3.9.3" 2460 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.3.tgz#4a285d1658b8a2ebaef9e51366b3a0f7acd79ec2" 2461 | integrity sha512-r5ImcL6QyzQGVimQoov3aL2ZScywrOgBXGndbWrdehKoSvGe/RmiE5Jpw/v+GvxODt6l2tpBXwA7n+qZVlHBMA== 2462 | dependencies: 2463 | commander "~2.20.3" 2464 | 2465 | union-value@^1.0.0: 2466 | version "1.0.0" 2467 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2468 | dependencies: 2469 | arr-union "^3.1.0" 2470 | get-value "^2.0.6" 2471 | is-extendable "^0.1.1" 2472 | set-value "^0.4.3" 2473 | 2474 | unset-value@^1.0.0: 2475 | version "1.0.0" 2476 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2477 | dependencies: 2478 | has-value "^0.3.1" 2479 | isobject "^3.0.0" 2480 | 2481 | urix@^0.1.0: 2482 | version "0.1.0" 2483 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2484 | 2485 | urlgrey@0.4.4: 2486 | version "0.4.4" 2487 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 2488 | 2489 | use@^3.1.0: 2490 | version "3.1.1" 2491 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2492 | 2493 | util-deprecate@~1.0.1: 2494 | version "1.0.2" 2495 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2496 | 2497 | uuid@^3.3.2: 2498 | version "3.3.2" 2499 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 2500 | 2501 | validate-npm-package-license@^3.0.1: 2502 | version "3.0.4" 2503 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2504 | dependencies: 2505 | spdx-correct "^3.0.0" 2506 | spdx-expression-parse "^3.0.0" 2507 | 2508 | which-module@^2.0.0: 2509 | version "2.0.0" 2510 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2511 | 2512 | which@^1.2.9, which@^1.3.0: 2513 | version "1.3.1" 2514 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2515 | dependencies: 2516 | isexe "^2.0.0" 2517 | 2518 | wordwrap@^1.0.0: 2519 | version "1.0.0" 2520 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2521 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2522 | 2523 | wrap-ansi@^2.0.0: 2524 | version "2.1.0" 2525 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2526 | dependencies: 2527 | string-width "^1.0.1" 2528 | strip-ansi "^3.0.1" 2529 | 2530 | wrappy@1: 2531 | version "1.0.2" 2532 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2533 | 2534 | write-file-atomic@^1.1.4: 2535 | version "1.3.4" 2536 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2537 | dependencies: 2538 | graceful-fs "^4.1.11" 2539 | imurmurhash "^0.1.4" 2540 | slide "^1.1.5" 2541 | 2542 | xtend@~4.0.1: 2543 | version "4.0.1" 2544 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2545 | 2546 | y18n@^3.2.1: 2547 | version "3.2.2" 2548 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 2549 | integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== 2550 | 2551 | yallist@^2.1.2: 2552 | version "2.1.2" 2553 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2554 | 2555 | yargs-parser@^7.0.0: 2556 | version "7.0.0" 2557 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2558 | dependencies: 2559 | camelcase "^4.1.0" 2560 | 2561 | yargs-parser@^8.0.0: 2562 | version "8.1.0" 2563 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 2564 | dependencies: 2565 | camelcase "^4.1.0" 2566 | 2567 | yargs-parser@^9.0.2: 2568 | version "9.0.2" 2569 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 2570 | dependencies: 2571 | camelcase "^4.1.0" 2572 | 2573 | yargs@11.1.0: 2574 | version "11.1.0" 2575 | resolved "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 2576 | dependencies: 2577 | cliui "^4.0.0" 2578 | decamelize "^1.1.1" 2579 | find-up "^2.1.0" 2580 | get-caller-file "^1.0.1" 2581 | os-locale "^2.0.0" 2582 | require-directory "^2.1.1" 2583 | require-main-filename "^1.0.1" 2584 | set-blocking "^2.0.0" 2585 | string-width "^2.0.0" 2586 | which-module "^2.0.0" 2587 | y18n "^3.2.1" 2588 | yargs-parser "^9.0.2" 2589 | 2590 | yargs@^8.0.1: 2591 | version "8.0.2" 2592 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 2593 | dependencies: 2594 | camelcase "^4.1.0" 2595 | cliui "^3.2.0" 2596 | decamelize "^1.1.1" 2597 | get-caller-file "^1.0.1" 2598 | os-locale "^2.0.0" 2599 | read-pkg-up "^2.0.0" 2600 | require-directory "^2.1.1" 2601 | require-main-filename "^1.0.1" 2602 | set-blocking "^2.0.0" 2603 | string-width "^2.0.0" 2604 | which-module "^2.0.0" 2605 | y18n "^3.2.1" 2606 | yargs-parser "^7.0.0" 2607 | --------------------------------------------------------------------------------