chore: s/postinstall/prepublish

This commit is contained in:
Sérgio Ramos 2017-08-31 17:45:34 +01:00
parent 81881e1019
commit 9be6a27012
22 changed files with 321 additions and 96 deletions

View File

@ -29,7 +29,7 @@
"dev:gql-mock-server": "lerna run dev --scope joyent-cp-gql-mock-server",
"commitmsg": "conventional-changelog-lint -e",
"precommit": "cross-env CI=1 redrun -s lint-staged format-staged test-staged",
"postinstall": "lerna run postinstall"
"postinstall": "lerna run prepublish"
},
"devDependencies": {
"apr-awaitify": "^1.0.4",

View File

@ -9,7 +9,7 @@
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/babel-preset-joyent-portal.xml",
"test": "echo 0",
"test-ci": "echo 0",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"dependencies": {
"babel-preset-react-app": "^3.0.2"

View File

@ -11,7 +11,7 @@
"test": "echo 0",
"test-ci": "echo 0",
"start": "node src/index.js",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"dependencies": {
"bunyan": "^1.8.12",

View File

@ -16,7 +16,7 @@
"lint-ci": "redrun -p lint-ci:*",
"test": "NODE_ENV=test ./test/run --env=jsdom",
"test-ci": "echo 0 `# NODE_ENV=test JEST_JUNIT_OUTPUT=$CIRCLE_TEST_REPORTS/test/cp-frontend.xml ./test/run --env=jsdom --coverage --coverageDirectory=$CIRCLE_ARTIFACTS/cp-frontend --testResultsProcessor=$(node -e \"console.log(require.resolve('jest-junit'))\")`",
"postinstall": "node scripts/postinstall"
"prepublish": "node scripts/postinstall"
},
"dependencies": {
"apollo": "^0.2.2",

View File

@ -12,7 +12,7 @@
"test-ci": "echo 0 `# nyc --report-dir=$CIRCLE_ARTIFACTS/cp-gql-mock-server --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/cp-gql-mock-server.xml`",
"start": "node src/index.js",
"dev": "PORT=3000 nodemon src/index.js",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"dependencies": {
"build-array": "^1.0.0",

View File

@ -9,7 +9,7 @@
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-gql-schema.xml",
"test": "echo 0",
"test-ci": "echo 0",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"dependencies": {},
"devDependencies": {

View File

@ -9,7 +9,7 @@
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-rdb-bootstrap.xml",
"test": "echo 0",
"test-ci": "echo 0",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"devDependencies": {
"eslint": "^4.5.0",

View File

@ -9,7 +9,7 @@
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/docker-compose-client.xml",
"test": "lab -t 100",
"test-ci": "lab -t 100 -r console -o stdout -r tap -o $CIRCLE_TEST_REPORTS/test/docker-compose-client.xml",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"dependencies": {
"zerorpc": "^0.9.7"

View File

@ -9,7 +9,7 @@
"lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/eslint-config-joyent-portal.xml",
"test": "echo 0",
"test-ci": "echo 0",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",

View File

@ -19,7 +19,6 @@
"test": "echo 0 `# bup && NODE_ENV=test jest --coverage`",
"test-ci": "echo 0 `# NODE_ENV=test JEST_JUNIT_OUTPUT=$CIRCLE_TEST_REPORTS/test/manifest-editor.xml jest --coverage --coverageDirectory=$CIRCLE_ARTIFACTS/manifest-editor --testResultsProcessor=$(node -e \"console.log(require.resolve('jest-junit'))\")`",
"build": "bup",
"postinstall": "bup",
"prepublish": "redrun build"
},
"dependencies": {

View File

@ -27,7 +27,6 @@
"test": "bup && NODE_ENV=test jest --coverage",
"test-ci": "NODE_ENV=test JEST_JUNIT_OUTPUT=$CIRCLE_TEST_REPORTS/test/normalized-styled-components.xml jest --coverage --coverageDirectory=$CIRCLE_ARTIFACTS/normalized-styled-components --testResultsProcessor=$(node -e \"console.log(require.resolve('jest-junit'))\")",
"build": "bup",
"postinstall": "bup",
"prepublish": "redrun build"
},
"dependencies": {

View File

@ -15,7 +15,7 @@
"test-ci": "echo 0",
"start": "node server.js",
"dev": "CORS=1 NAMESPACE=api node server.js",
"postinstall": "echo 0"
"prepublish": "echo 0"
},
"keywords": [],
"author": "wyatt",

View File

@ -27,7 +27,6 @@
"test": "redrun -s build test:run",
"test-ci": "redrun -s build test-ci:run",
"build": "bup",
"postinstall": "bup",
"prepublish": "bup"
},
"dependencies": {

View File

@ -29,7 +29,6 @@
"test": "redrun build test:run",
"test-ci": "redrun build test-ci:run",
"build": "bup",
"postinstall": "bup",
"prepublish": "bup"
},
"dependencies": {

View File

@ -15,7 +15,6 @@
"test": "bup && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test-ci": "cross-env NODE_ENV=test nyc --report-dir=$CIRCLE_ARTIFACTS/remcalc --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/remcalc.xml",
"build": "bup",
"postinstall": "bup",
"prepublish": "bup"
},
"dependencies": {

View File

@ -15,7 +15,6 @@
"test": "bup && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test-ci": "cross-env NODE_ENV=test nyc --report-dir=$CIRCLE_ARTIFACTS/rnd-id --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/rnd-id.xml",
"build": "bup",
"postinstall": "bup",
"prepublish": "bup"
},
"dependencies": {

View File

@ -24,7 +24,6 @@
"test": "redrun -s build test:run",
"test-ci": "redrun -s build test-ci:run",
"build": "bup",
"postinstall": "bup",
"prepublish": "redrun build"
},
"devDependencies": {

View File

@ -24,7 +24,7 @@
"watch": "redrun copy-fonts && redrun -p compile-watch:*",
"styleguide:build": "cross-env NODE_ENV=production styleguidist build",
"styleguide": "cross-env NODE_ENV=development styleguidist server",
"postinstall": "redrun -s copy-fonts compile"
"prepublish": "redrun -s copy-fonts compile"
},
"dependencies": {
"babel-cli": "^6.26.0",

View File

@ -5,8 +5,10 @@ export const borderRadius = remcalc(4);
export const bottomShaddow = `0 ${remcalc(2)} 0 0 rgba(0, 0, 0, 0.05)`;
export const bottomShaddowDarker = `0 ${remcalc(2)} 0 0 rgba(0, 0, 0, 0.1)`;
export const insetShaddow = `inset 0 ${remcalc(3)} 0 0 rgba(0, 0, 0, 0.05)`;
export const tooltipShadow = `0 ${remcalc(2)} ${remcalc(6)} ${remcalc(
1
)} rgba(0, 0, 0, 0.1)`;
export const modalShadow = `0 0 ${remcalc(6)} ${remcalc(1)} rgba(0, 0, 0, 0.1)`;
export const tooltipShadow = `0 ${remcalc(2)} ${remcalc(6)} ${remcalc(1)} rgba(0, 0, 0, 0.1)`;
export const border = {
checked: css`${remcalc(1)} solid ${props => props.theme.primary};`,

View File

@ -1,6 +1,5 @@
const webpackConfig = require('react-scripts/config/webpack.config.dev.js');
const { defaultHandlers } = require('react-docgen');
const AnnotationResolver = require('react-docgen-annotation-resolver').default;
const dnHandler = require('react-docgen-displayname-handler');
// const snapguidist = require('snapguidist');
const path = require('path');

View File

@ -24,7 +24,6 @@
"test": "bup && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test-ci": "cross-env NODE_ENV=test nyc --report-dir=$CIRCLE_ARTIFACTS/unitcalc --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/unitcalc.xml",
"build": "bup",
"postinstall": "bup",
"prepublish": "bup"
},
"dependencies": {

382
yarn.lock
View File

@ -6,7 +6,7 @@
version "2.0.0"
resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c"
"@ava/babel-preset-stage-4@^1.1.0":
"@ava/babel-preset-stage-4@^1.0.0", "@ava/babel-preset-stage-4@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd"
dependencies:
@ -30,6 +30,13 @@
"@ava/babel-plugin-throws-helper" "^2.0.0"
babel-plugin-espower "^2.3.2"
"@ava/pretty-format@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28"
dependencies:
ansi-styles "^2.2.1"
esutils "^2.0.2"
"@ava/write-file-atomic@^2.2.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247"
@ -667,6 +674,89 @@ ava-init@^0.2.0:
read-pkg-up "^2.0.0"
write-pkg "^3.1.0"
ava@0.19.1:
version "0.19.1"
resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273"
dependencies:
"@ava/babel-preset-stage-4" "^1.0.0"
"@ava/babel-preset-transform-test-files" "^3.0.0"
"@ava/pretty-format" "^1.1.0"
arr-flatten "^1.0.1"
array-union "^1.0.1"
array-uniq "^1.0.2"
arrify "^1.0.0"
auto-bind "^1.1.0"
ava-init "^0.2.0"
babel-code-frame "^6.16.0"
babel-core "^6.17.0"
bluebird "^3.0.0"
caching-transform "^1.0.0"
chalk "^1.0.0"
chokidar "^1.4.2"
clean-stack "^1.1.1"
clean-yaml-object "^0.1.0"
cli-cursor "^2.1.0"
cli-spinners "^1.0.0"
cli-truncate "^1.0.0"
co-with-promise "^4.6.0"
code-excerpt "^2.1.0"
common-path-prefix "^1.0.0"
convert-source-map "^1.2.0"
core-assert "^0.2.0"
currently-unhandled "^0.4.1"
debug "^2.2.0"
diff "^3.0.1"
diff-match-patch "^1.0.0"
dot-prop "^4.1.0"
empower-core "^0.6.1"
equal-length "^1.0.0"
figures "^2.0.0"
find-cache-dir "^0.1.1"
fn-name "^2.0.0"
get-port "^3.0.0"
globby "^6.0.0"
has-flag "^2.0.0"
hullabaloo-config-manager "^1.0.0"
ignore-by-default "^1.0.0"
indent-string "^3.0.0"
is-ci "^1.0.7"
is-generator-fn "^1.0.0"
is-obj "^1.0.0"
is-observable "^0.2.0"
is-promise "^2.1.0"
jest-diff "19.0.0"
jest-snapshot "19.0.2"
js-yaml "^3.8.2"
last-line-stream "^1.0.0"
lodash.debounce "^4.0.3"
lodash.difference "^4.3.0"
lodash.flatten "^4.2.0"
lodash.isequal "^4.5.0"
loud-rejection "^1.2.0"
matcher "^0.1.1"
md5-hex "^2.0.0"
meow "^3.7.0"
mkdirp "^0.5.1"
ms "^0.7.1"
multimatch "^2.1.0"
observable-to-promise "^0.5.0"
option-chain "^0.1.0"
package-hash "^2.0.0"
pkg-conf "^2.0.0"
plur "^2.0.0"
pretty-ms "^2.0.0"
require-precompiled "^0.1.0"
resolve-cwd "^1.0.0"
slash "^1.0.0"
source-map-support "^0.4.0"
stack-utils "^1.0.0"
strip-ansi "^3.0.1"
strip-bom-buf "^1.0.0"
supports-color "^3.2.3"
time-require "^0.1.2"
unique-temp-dir "^1.0.0"
update-notifier "^2.1.0"
ava@^0.22.0:
version "0.22.0"
resolved "https://registry.yarnpkg.com/ava/-/ava-0.22.0.tgz#4c28a1fdef7e749ba0c8131ac18a7ca489eef049"
@ -1051,7 +1141,7 @@ babel-plugin-inline-react-svg@^0.4.0:
resolve-from "^2.0.0"
svgo "^0.7.0"
babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.4:
babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.3, babel-plugin-istanbul@^4.1.4:
version "4.1.4"
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587"
dependencies:
@ -1566,6 +1656,10 @@ babylon@v7.0.0-beta.17:
version "7.0.0-beta.17"
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.17.tgz#2aad4d6764f409dfb3ac216d855dc93d70d37911"
babylon@~5.8.3:
version "5.8.38"
resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd"
backoff@2.4.1:
version "2.4.1"
resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.4.1.tgz#2f68c50e0dd789dbefe24200a62efb04d2456d68"
@ -1923,7 +2017,7 @@ bunyan@^1.8.12, bunyan@^1.8.3:
mv "~2"
safe-json-stringify "~1"
bup@^1.0.9:
bup@^1.0.7, bup@^1.0.9:
version "1.0.9"
resolved "https://registry.yarnpkg.com/bup/-/bup-1.0.9.tgz#c680811f7d54b4f1f95a335cfac25deec576315d"
dependencies:
@ -2958,7 +3052,7 @@ create-react-class@^15.5.1, create-react-class@^15.6.0:
loose-envify "^1.3.1"
object-assign "^4.1.1"
cross-env@^5.0.1, cross-env@^5.0.5:
cross-env@^5.0.0, cross-env@^5.0.1, cross-env@^5.0.5:
version "5.0.5"
resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.0.5.tgz#4383d364d9660873dd185b398af3bfef5efffef3"
dependencies:
@ -3637,7 +3731,11 @@ dictionary-en-us@^1.0.2:
version "1.2.1"
resolved "https://registry.yarnpkg.com/dictionary-en-us/-/dictionary-en-us-1.2.1.tgz#d21009edaccab49fae8eefdc483da83438526b5f"
diff@3.3.x, diff@^3.0.0, diff@^3.2.0:
diff-match-patch@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048"
diff@3.3.x, diff@^3.0.0, diff@^3.0.1, diff@^3.2.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9"
@ -4062,11 +4160,19 @@ eslint-config-hapi@10.x.x:
version "10.1.0"
resolved "https://registry.yarnpkg.com/eslint-config-hapi/-/eslint-config-hapi-10.1.0.tgz#e65720917575da292c4ffe8d59ad9aa4e5b0a2ac"
eslint-config-joyent-portal@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-joyent-portal/-/eslint-config-joyent-portal-2.0.0.tgz#bd06be8866df36366f395885ccd51609b545d196"
eslint-config-joyent-portal@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-joyent-portal/-/eslint-config-joyent-portal-1.0.0.tgz#c9e7b42ade43e9bbaa424c6e1d4fc62639fa9bd9"
eslint-config-prettier@^2.2.0, eslint-config-prettier@^2.3.0:
eslint-config-joyent-portal@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-joyent-portal/-/eslint-config-joyent-portal-3.0.0.tgz#269e3e0b88abba96adc3a6dc0bbf604a6ae89356"
eslint-config-joyent-portal@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/eslint-config-joyent-portal/-/eslint-config-joyent-portal-1.0.3.tgz#48fb02893bb513f99dba2a4aed1d7f0c14a30090"
eslint-config-prettier@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0"
dependencies:
@ -4114,7 +4220,7 @@ eslint-module-utils@^2.1.1:
debug "^2.6.8"
pkg-dir "^1.0.0"
eslint-plugin-flowtype@2.35.0, eslint-plugin-flowtype@^2.34.0, eslint-plugin-flowtype@^2.35.0:
eslint-plugin-flowtype@2.35.0, eslint-plugin-flowtype@^2.34.0:
version "2.35.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.0.tgz#d17494f0ae8b727c632d8b9d4b4a848e7e0c04af"
dependencies:
@ -4129,7 +4235,7 @@ eslint-plugin-hapi@4.x.x:
hapi-scope-start "2.x.x"
no-arrowception "1.x.x"
eslint-plugin-import@2.7.0, eslint-plugin-import@^2.3.0, eslint-plugin-import@^2.7.0:
eslint-plugin-import@2.7.0, eslint-plugin-import@^2.3.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f"
dependencies:
@ -4156,18 +4262,6 @@ eslint-plugin-jsx-a11y@5.1.1, eslint-plugin-jsx-a11y@^5.0.3:
emoji-regex "^6.1.0"
jsx-ast-utils "^1.4.0"
eslint-plugin-jsx-a11y@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.2.tgz#659277a758b036c305a7e4a13057c301cd3be73f"
dependencies:
aria-query "^0.7.0"
array-includes "^3.0.3"
ast-types-flow "0.0.7"
axobject-query "^0.1.0"
damerau-levenshtein "^1.0.0"
emoji-regex "^6.1.0"
jsx-ast-utils "^1.4.0"
eslint-plugin-prettier@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.2.0.tgz#f2837ad063903d73c621e7188fb3d41486434088"
@ -4183,7 +4277,7 @@ eslint-plugin-react@7.1.0:
has "^1.0.1"
jsx-ast-utils "^1.4.1"
eslint-plugin-react@^7.1.0, eslint-plugin-react@^7.3.0:
eslint-plugin-react@^7.1.0:
version "7.3.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.3.0.tgz#ca9368da36f733fbdc05718ae4e91f778f38e344"
dependencies:
@ -4207,7 +4301,7 @@ eslint-tap@^2.0.1:
js-yaml "^3.8.4"
yamlish "0.0.7"
eslint@4.4.1, eslint@4.4.x:
eslint@4.4.1:
version "4.4.1"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.4.1.tgz#99cd7eafcffca2ff99a5c8f5f2a474d6364b4bd3"
dependencies:
@ -4248,7 +4342,7 @@ eslint@4.4.1, eslint@4.4.x:
table "^4.0.1"
text-table "~0.2.0"
eslint@4.x.x, eslint@^4.5.0:
eslint@4.5.x, eslint@4.x.x, eslint@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.5.0.tgz#bb75d3b8bde97fb5e13efcd539744677feb019c3"
dependencies:
@ -4760,7 +4854,7 @@ find-rc@3.0.x:
version "3.0.1"
resolved "https://registry.yarnpkg.com/find-rc/-/find-rc-3.0.1.tgz#54a4178370f10bc9371fa8d1b2c2809a2afa0cce"
find-up@^1.0.0:
find-up@^1.0.0, find-up@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
dependencies:
@ -4828,7 +4922,7 @@ foreach@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
foreground-child@^1.5.3, foreground-child@^1.5.6:
foreground-child@^1.3.3, foreground-child@^1.5.3, foreground-child@^1.5.6:
version "1.5.6"
resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9"
dependencies:
@ -5719,7 +5813,7 @@ https-browserify@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
hullabaloo-config-manager@^1.1.0:
hullabaloo-config-manager@^1.0.0, hullabaloo-config-manager@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3"
dependencies:
@ -6312,17 +6406,17 @@ istanbul-api@^1.1.1:
mkdirp "^0.5.1"
once "^1.4.0"
istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1:
istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0, istanbul-lib-coverage@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da"
istanbul-lib-hook@^1.0.7:
istanbul-lib-hook@^1.0.6, istanbul-lib-hook@^1.0.7:
version "1.0.7"
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc"
dependencies:
append-transform "^0.4.0"
istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4, istanbul-lib-instrument@^1.7.5:
istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4, istanbul-lib-instrument@^1.7.5:
version "1.7.5"
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.5.tgz#adb596f8f0cb8b95e739206351a38a586af21b1e"
dependencies:
@ -6334,7 +6428,7 @@ istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-ins
istanbul-lib-coverage "^1.1.1"
semver "^5.3.0"
istanbul-lib-report@^1.1.1:
istanbul-lib-report@^1.1.0, istanbul-lib-report@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9"
dependencies:
@ -6343,7 +6437,7 @@ istanbul-lib-report@^1.1.1:
path-parse "^1.0.5"
supports-color "^3.1.2"
istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1:
istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0, istanbul-lib-source-maps@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c"
dependencies:
@ -6353,7 +6447,7 @@ istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1:
rimraf "^2.6.1"
source-map "^0.5.3"
istanbul-reports@^1.1.1, istanbul-reports@^1.1.2:
istanbul-reports@^1.1.0, istanbul-reports@^1.1.1, istanbul-reports@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f"
dependencies:
@ -6452,6 +6546,15 @@ jest-diff@18.1.0, jest-diff@^18.1.0:
jest-matcher-utils "^18.1.0"
pretty-format "^18.1.0"
jest-diff@19.0.0, jest-diff@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c"
dependencies:
chalk "^1.1.3"
diff "^3.0.0"
jest-matcher-utils "^19.0.0"
pretty-format "^19.0.0"
jest-diff@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617"
@ -6484,6 +6587,10 @@ jest-file-exists@^17.0.0:
version "17.0.0"
resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169"
jest-file-exists@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8"
jest-haste-map@^20.0.4:
version "20.0.5"
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112"
@ -6524,6 +6631,13 @@ jest-matcher-utils@^18.1.0:
chalk "^1.1.3"
pretty-format "^18.1.0"
jest-matcher-utils@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d"
dependencies:
chalk "^1.1.3"
pretty-format "^19.0.0"
jest-matcher-utils@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612"
@ -6540,6 +6654,13 @@ jest-matchers@^20.0.3:
jest-message-util "^20.0.3"
jest-regex-util "^20.0.3"
jest-message-util@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416"
dependencies:
chalk "^1.1.1"
micromatch "^2.3.11"
jest-message-util@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c"
@ -6552,6 +6673,10 @@ jest-mock@^18.0.0:
version "18.0.0"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3"
jest-mock@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01"
jest-mock@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59"
@ -6605,6 +6730,18 @@ jest-snapshot@18.1.0:
natural-compare "^1.4.0"
pretty-format "^18.1.0"
jest-snapshot@19.0.2:
version "19.0.2"
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b"
dependencies:
chalk "^1.1.3"
jest-diff "^19.0.0"
jest-file-exists "^19.0.0"
jest-matcher-utils "^19.0.0"
jest-util "^19.0.2"
natural-compare "^1.4.0"
pretty-format "^19.0.0"
jest-snapshot@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566"
@ -6637,6 +6774,19 @@ jest-util@^18.1.0:
jest-mock "^18.0.0"
mkdirp "^0.5.1"
jest-util@^19.0.2:
version "19.0.2"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41"
dependencies:
chalk "^1.1.1"
graceful-fs "^4.1.6"
jest-file-exists "^19.0.0"
jest-message-util "^19.0.0"
jest-mock "^19.0.0"
jest-validate "^19.0.2"
leven "^2.0.0"
mkdirp "^0.5.1"
jest-util@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad"
@ -6649,6 +6799,15 @@ jest-util@^20.0.3:
leven "^2.1.0"
mkdirp "^0.5.1"
jest-validate@^19.0.2:
version "19.0.2"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c"
dependencies:
chalk "^1.1.1"
jest-matcher-utils "^19.0.0"
leven "^2.0.0"
pretty-format "^19.0.0"
jest-validate@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab"
@ -6903,8 +7062,8 @@ jsx-ast-utils@^1.4.0, jsx-ast-utils@^1.4.1:
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
jsx-ast-utils@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.0.tgz#ec06a3d60cf307e5e119dac7bad81e89f096f0f8"
version "2.0.1"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f"
dependencies:
array-includes "^3.0.3"
@ -6935,13 +7094,13 @@ known-css-properties@^0.2.0:
resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.2.0.tgz#899c94be368e55b42d7db8d5be7d73a4a4a41454"
lab@^14.2.1:
version "14.2.1"
resolved "https://registry.yarnpkg.com/lab/-/lab-14.2.1.tgz#690c197ebd58077c98e74708ba32c5017cab4273"
version "14.2.2"
resolved "https://registry.yarnpkg.com/lab/-/lab-14.2.2.tgz#9f8bf3a1c87fd7e5bf06ae20a7e15d064e8893aa"
dependencies:
bossy "3.x.x"
code "4.1.x"
diff "3.3.x"
eslint "4.4.x"
eslint "4.5.x"
eslint-config-hapi "10.x.x"
eslint-plugin-hapi "4.x.x"
espree "3.5.x"
@ -6955,6 +7114,7 @@ lab@^14.2.1:
seedrandom "2.4.x"
source-map "0.5.x"
source-map-support "0.4.x"
supports-color "4.4.x"
last-line-stream@^1.0.0:
version "1.0.0"
@ -7050,7 +7210,7 @@ lerna@^2.0.0:
write-pkg "^3.1.0"
yargs "^8.0.2"
leven@^2.1.0:
leven@^2.0.0, leven@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
@ -7491,6 +7651,12 @@ markdown-to-jsx@^5.4.2:
remark-parse "^4.0.0"
unified "^6.1.5"
matcher@^0.1.1:
version "0.1.2"
resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101"
dependencies:
escape-string-regexp "^1.0.4"
matcher@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19"
@ -7768,6 +7934,10 @@ ms@2.0.0, ms@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
ms@^0.7.1:
version "0.7.3"
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff"
msgpack@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/msgpack/-/msgpack-1.0.2.tgz#923e2c5cffa65c8418e9b228d1124793969c429c"
@ -8089,6 +8259,38 @@ number-is-nan@^1.0.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f"
nyc@^10.3.2:
version "10.3.2"
resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46"
dependencies:
archy "^1.0.0"
arrify "^1.0.1"
caching-transform "^1.0.0"
convert-source-map "^1.3.0"
debug-log "^1.0.1"
default-require-extensions "^1.0.0"
find-cache-dir "^0.1.1"
find-up "^1.1.2"
foreground-child "^1.5.3"
glob "^7.0.6"
istanbul-lib-coverage "^1.1.0"
istanbul-lib-hook "^1.0.6"
istanbul-lib-instrument "^1.7.1"
istanbul-lib-report "^1.1.0"
istanbul-lib-source-maps "^1.2.0"
istanbul-reports "^1.1.0"
md5-hex "^1.2.0"
merge-source-map "^1.0.2"
micromatch "^2.3.11"
mkdirp "^0.5.0"
resolve-from "^2.0.0"
rimraf "^2.5.4"
signal-exit "^3.0.1"
spawn-wrap "1.2.4"
test-exclude "^4.1.0"
yargs "^7.1.0"
yargs-parser "^5.0.0"
nyc@^11.1.0:
version "11.1.0"
resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.1.0.tgz#d6b3c5e16892a25af63138ba484676aa8a22eda7"
@ -8232,6 +8434,12 @@ optimist@~0.3.5:
dependencies:
wordwrap "~0.0.2"
option-chain@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd"
dependencies:
object-assign "^4.0.1"
option-chain@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2"
@ -9050,6 +9258,12 @@ pretty-format@^18.1.0:
dependencies:
ansi-styles "^2.2.1"
pretty-format@^19.0.0:
version "19.0.0"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84"
dependencies:
ansi-styles "^3.0.0"
pretty-format@^20.0.3:
version "20.0.3"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14"
@ -9428,9 +9642,21 @@ react-docgen-displayname-handler@^1.0.0:
dependencies:
recast "0.11.12"
react-docgen@ramitos/react-docgen#7a687c0:
react-docgen@^2.17.0:
version "2.17.0"
resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-2.17.0.tgz#b0f3e85af955714e1067593c1043cb82611a93d1"
dependencies:
async "^2.1.4"
babel-runtime "^6.9.2"
babylon "~5.8.3"
commander "^2.9.0"
doctrine "^2.0.0"
node-dir "^0.1.10"
recast "^0.12.6"
react-docgen@^3.0.0-beta5:
version "3.0.0-beta6"
resolved "https://codeload.github.com/ramitos/react-docgen/tar.gz/7a687c0"
resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-3.0.0-beta6.tgz#2827b52c52b8644722e0e215c5bf7c15c0458c34"
dependencies:
async "^2.1.4"
babel-runtime "^6.9.2"
@ -9568,9 +9794,9 @@ react-styled-flexboxgrid@^2.0.3:
dependencies:
lodash.isinteger "^4.0.4"
react-styleguidist@ramitos/react-styleguidist#fb55769:
version "0.0.0-development"
resolved "https://codeload.github.com/ramitos/react-styleguidist/tar.gz/fb55769"
react-styleguidist@^6.0.20:
version "6.0.21"
resolved "https://registry.yarnpkg.com/react-styleguidist/-/react-styleguidist-6.0.21.tgz#48caa73699dbcfdcbec2f870bf5282c5b324b280"
dependencies:
ast-types "^0.9.12"
buble "^0.15.2"
@ -9613,7 +9839,7 @@ react-styleguidist@ramitos/react-styleguidist#fb55769:
prop-types "^15.5.10"
react-codemirror2 "0.0.13"
react-dev-utils "^3.0.2"
react-docgen ramitos/react-docgen#7a687c0
react-docgen "^3.0.0-beta5"
react-docgen-displayname-handler "^1.0.0"
react-group "^1.0.5"
react-icons "^2.2.5"
@ -9635,7 +9861,7 @@ react-test-renderer@15.6.1, react-test-renderer@^15.6.1:
fbjs "^0.8.9"
object-assign "^4.1.0"
"react@^15 || ^16", react@^15.6.1:
"react@^15 || ^16", react@^15.5.4, react@^15.6.1:
version "15.6.1"
resolved "https://registry.yarnpkg.com/react/-/react-15.6.1.tgz#baa8434ec6780bde997cdc380b79cd33b96393df"
dependencies:
@ -9835,7 +10061,7 @@ redent@^1.0.0:
indent-string "^2.1.0"
strip-indent "^1.0.1"
redrun@^5.9.15, redrun@^5.9.16:
redrun@^5.9.14, redrun@^5.9.15, redrun@^5.9.16:
version "5.9.16"
resolved "https://registry.yarnpkg.com/redrun/-/redrun-5.9.16.tgz#be8a4447e3c97a9aa07829c6948f2651cfee7d16"
dependencies:
@ -10206,6 +10432,12 @@ reselect@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/reselect/-/reselect-3.0.1.tgz#efdaa98ea7451324d092b2b2163a6a1d7a9a2147"
resolve-cwd@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f"
dependencies:
resolve-from "^2.0.0"
resolve-cwd@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
@ -10299,8 +10531,8 @@ restore-cursor@^2.0.0:
signal-exit "^3.0.2"
retext-equality@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/retext-equality/-/retext-equality-3.1.0.tgz#a9f45c99f6f10eb2faedeb04786ba06e0b3d9ff2"
version "3.2.0"
resolved "https://registry.yarnpkg.com/retext-equality/-/retext-equality-3.2.0.tgz#65d20ed4958e977814c9e60cc3dbe741b36b9b35"
dependencies:
lodash.difference "^4.5.0"
lodash.intersection "^4.4.0"
@ -10667,6 +10899,10 @@ shot@^3.4.2:
hoek "4.x.x"
joi "10.x.x"
signal-exit@^2.0.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564"
signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@ -10845,6 +11081,17 @@ sparkles@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3"
spawn-wrap@1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40"
dependencies:
foreground-child "^1.3.3"
mkdirp "^0.5.0"
os-homedir "^1.0.1"
rimraf "^2.3.3"
signal-exit "^2.0.0"
which "^1.2.4"
spawn-wrap@^1.3.8:
version "1.3.8"
resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.3.8.tgz#fa2a79b990cbb0bb0018dca6748d88367b19ec31"
@ -11180,7 +11427,7 @@ style-search@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
styled-components@^2.1.2:
styled-components@^2.0.0, styled-components@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-2.1.2.tgz#bb419978e1287c5d0d88fa9106b2dd75f66a324c"
dependencies:
@ -11252,14 +11499,6 @@ stylelint-order@^0.4.4:
postcss "^5.2.16"
stylelint "^7.9.0"
stylelint-processor-styled-components@styled-components/stylelint-processor-styled-components#2685933:
version "0.4.0"
resolved "https://codeload.github.com/styled-components/stylelint-processor-styled-components/tar.gz/2685933"
dependencies:
babel-traverse "^6.16.0"
babylon "^6.12.0"
typescript-eslint-parser "^7.0.0"
stylelint-processor-styled-components@styled-components/stylelint-processor-styled-components#2a33b5f:
version "0.2.1"
resolved "https://codeload.github.com/styled-components/stylelint-processor-styled-components/tar.gz/2a33b5f"
@ -11398,6 +11637,12 @@ sugarss@^1.0.0:
dependencies:
postcss "^6.0.0"
supports-color@4.4.x, supports-color@^4.0.0, supports-color@^4.1.0, supports-color@^4.2.1:
version "4.4.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
dependencies:
has-flag "^2.0.0"
supports-color@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a"
@ -11412,12 +11657,6 @@ supports-color@^3.1.1, supports-color@^3.1.2, supports-color@^3.2.3:
dependencies:
has-flag "^1.0.0"
supports-color@^4.0.0, supports-color@^4.1.0, supports-color@^4.2.1:
version "4.4.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
dependencies:
has-flag "^2.0.0"
svg-tags@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
@ -11631,7 +11870,7 @@ term-size@^1.2.0:
dependencies:
execa "^0.7.0"
test-exclude@^4.1.1:
test-exclude@^4.1.0, test-exclude@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26"
dependencies:
@ -11976,13 +12215,6 @@ typescript-eslint-parser@^4.0.0:
lodash.unescape "4.0.1"
semver "5.3.0"
typescript-eslint-parser@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-7.0.0.tgz#be57d8768e37707af825e339ea2af18d7393cabb"
dependencies:
lodash.unescape "4.0.1"
semver "5.3.0"
typescript@~2.3.2:
version "2.3.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.3.4.tgz#3d38321828231e434f287514959c37a82b629f42"
@ -12851,7 +13083,7 @@ yargs@^6.0.0:
y18n "^3.2.1"
yargs-parser "^4.2.0"
yargs@^7.0.2:
yargs@^7.0.2, yargs@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8"
dependencies: