tslint-config-airbnb
Advanced tools
+20
-0
@@ -0,1 +1,21 @@ | ||
| <a name="5.10.0"></a> | ||
| # [5.10.0](https://github.com/progre/tslint-config-airbnb/compare/5.9.2...5.10.0) (2018-08-18) | ||
| ### Bug Fixes | ||
| * allow-destructuring on no-this-assignment ([d80f2f0](https://github.com/progre/tslint-config-airbnb/commit/d80f2f0)), closes [#47](https://github.com/progre/tslint-config-airbnb/issues/47) | ||
| ### Features | ||
| * update dependencies ([0cd45bf](https://github.com/progre/tslint-config-airbnb/commit/0cd45bf)), closes [#52](https://github.com/progre/tslint-config-airbnb/issues/52) [#53](https://github.com/progre/tslint-config-airbnb/issues/53) | ||
| and some PRs | ||
| * https://github.com/progre/tslint-config-airbnb/pull/40 | ||
| * https://github.com/progre/tslint-config-airbnb/pull/41 | ||
| * https://github.com/progre/tslint-config-airbnb/pull/42 | ||
| * https://github.com/progre/tslint-config-airbnb/pull/48 | ||
| <a name="5.9.0"></a> | ||
@@ -2,0 +22,0 @@ # [5.9.0](https://github.com/progre/tslint-config-airbnb/compare/5.8.0...5.9.0) (2018-05-19) |
@@ -1,1 +0,1 @@ | ||
| module.exports = {extends: ['@commitlint/config-angular']}; | ||
| module.exports = { extends: ['@commitlint/config-conventional'] } |
+12
-10
| { | ||
| "name": "tslint-config-airbnb", | ||
| "description": "A TSLint config for Airbnb JavaScript Style", | ||
| "version": "5.9.2", | ||
| "version": "5.10.0", | ||
| "author": "progre", | ||
@@ -10,11 +10,13 @@ "bugs": { | ||
| "dependencies": { | ||
| "tslint-consistent-codestyle": "^1.10.0", | ||
| "tslint-eslint-rules": "^5.3.1", | ||
| "tslint-microsoft-contrib": "~5.0.1" | ||
| "tslint-consistent-codestyle": "^1.13.3", | ||
| "tslint-eslint-rules": "^5.4.0", | ||
| "tslint-microsoft-contrib": "~5.2.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@commitlint/cli": "^4.3.0", | ||
| "@commitlint/config-angular": "^4.3.0", | ||
| "@commitlint/cli": "^7.0.0", | ||
| "@commitlint/config-conventional": "^7.0.1", | ||
| "conventional-changelog-cli": "^1.3.5", | ||
| "husky": "^0.14.3" | ||
| "husky": "^0.14.3", | ||
| "tslint": "^5.11.0", | ||
| "typescript": "^3.0.1" | ||
| }, | ||
@@ -30,3 +32,3 @@ "homepage": "https://github.com/progre/tslint-config-airbnb/#readme", | ||
| "peerDependencies": { | ||
| "tslint": "^5.5.0" | ||
| "tslint": "^5.8.0" | ||
| }, | ||
@@ -36,4 +38,4 @@ "repository": "github:progre/tslint-config-airbnb", | ||
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", | ||
| "commitmsg": "commitlint -e $GIT_PARAMS" | ||
| "commitmsg": "commitlint -E GIT_PARAMS" | ||
| } | ||
| } | ||
| } |
+2
-2
@@ -6,3 +6,3 @@ # TSLint Config Airbnb | ||
| > A [TSLint config](https://palantir.github.io/tslint/usage/tslint-json/) for [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) | ||
| > A [TSLint config](https://palantir.github.io/tslint/usage/configuration/) for [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) | ||
@@ -12,3 +12,3 @@ ## Installation | ||
| ```sh | ||
| npm install tslint-config-airbnb --save | ||
| npm install tslint-config-airbnb --save-dev | ||
| ``` | ||
@@ -15,0 +15,0 @@ |
+4
-2
@@ -9,3 +9,3 @@ const path = require('path'); | ||
| ], | ||
| rules: { // based on https://github.com/airbnb/javascript/tree/edf942eeb6bee3ae538e1484861ea0721fad4856 | ||
| rules: { // based on https://github.com/airbnb/javascript/tree/74fb34f08d4f1961169e9c37c9036a5b42aa7bf1 | ||
| 'prefer-const': true, // 2.1, 13.1 | ||
@@ -47,2 +47,3 @@ 'no-var-keyword': true, // 2.2 | ||
| 'no-increment-decrement': true, // 13.6 | ||
| "no-unused-variable": true, // 13.8 | ||
| 'triple-equals': [true, 'allow-null-check'], // 15.1 | ||
@@ -87,2 +88,3 @@ 'no-boolean-literal-compare': true, // 15.3 | ||
| singleline: 'never', | ||
| esSpecCompliant: true, | ||
| }, | ||
@@ -104,5 +106,5 @@ ], // 20.2 | ||
| 'variable-name': [true, 'check-format'], // 23.2 | ||
| 'no-this-assignment': true, // 23.5 | ||
| 'no-this-assignment': [true, 'allow-destructuring'], // 23.5 | ||
| 'import-name': true, // 23.6 | ||
| }, | ||
| }; |
-1103
| # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| # yarn lockfile v1 | ||
| "@commitlint/cli@^4.3.0": | ||
| version "4.3.0" | ||
| resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-4.3.0.tgz#b0d45fb712a5b9c0daa48b07594b68c384fd4dc7" | ||
| dependencies: | ||
| "@commitlint/core" "^4.3.0" | ||
| babel-polyfill "^6.23.0" | ||
| chalk "^2.0.1" | ||
| get-stdin "^5.0.1" | ||
| lodash "^4.17.4" | ||
| meow "^3.7.0" | ||
| "@commitlint/config-angular@^4.3.0": | ||
| version "4.3.0" | ||
| resolved "https://registry.yarnpkg.com/@commitlint/config-angular/-/config-angular-4.3.0.tgz#c05fd9c30f8dd0c32c549bb1587e8af2c2769765" | ||
| "@commitlint/core@^4.3.0": | ||
| version "4.3.0" | ||
| resolved "https://registry.yarnpkg.com/@commitlint/core/-/core-4.3.0.tgz#e881a0a16594af3ade09be4d12b770b9913bc261" | ||
| dependencies: | ||
| "@marionebl/conventional-commits-parser" "^3.0.0" | ||
| "@marionebl/git-raw-commits" "^1.2.0" | ||
| "@marionebl/sander" "^0.6.0" | ||
| babel-runtime "^6.23.0" | ||
| chalk "^2.0.1" | ||
| conventional-changelog-angular "^1.3.3" | ||
| cosmiconfig "^3.0.1" | ||
| find-up "^2.1.0" | ||
| lodash "^4.17.4" | ||
| path-exists "^3.0.0" | ||
| resolve-from "^3.0.0" | ||
| semver "^5.3.0" | ||
| "@marionebl/conventional-commits-parser@^3.0.0": | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/@marionebl/conventional-commits-parser/-/conventional-commits-parser-3.0.0.tgz#9da29b4d2c8f05c0f9cdd02936713b8096c958d3" | ||
| dependencies: | ||
| JSONStream "^1.0.4" | ||
| is-text-path "^1.0.0" | ||
| lodash "^4.2.1" | ||
| meow "^3.3.0" | ||
| split2 "^2.0.0" | ||
| through2 "^2.0.0" | ||
| trim-off-newlines "^1.0.0" | ||
| "@marionebl/git-raw-commits@^1.2.0": | ||
| version "1.2.0" | ||
| resolved "https://registry.yarnpkg.com/@marionebl/git-raw-commits/-/git-raw-commits-1.2.0.tgz#7cd8a6dfc09a96df98d8fbe9175c5971cc07c82b" | ||
| dependencies: | ||
| dargs "^4.0.1" | ||
| lodash.template "^4.0.2" | ||
| meow "^3.3.0" | ||
| split2 "^2.0.0" | ||
| through2 "^2.0.0" | ||
| "@marionebl/sander@^0.6.0": | ||
| version "0.6.1" | ||
| resolved "https://registry.yarnpkg.com/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b" | ||
| dependencies: | ||
| graceful-fs "^4.1.3" | ||
| mkdirp "^0.5.1" | ||
| rimraf "^2.5.2" | ||
| JSONStream@^1.0.4: | ||
| version "1.3.1" | ||
| resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" | ||
| dependencies: | ||
| jsonparse "^1.2.0" | ||
| through ">=2.2.7 <3" | ||
| add-stream@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" | ||
| align-text@^0.1.1, align-text@^0.1.3: | ||
| version "0.1.4" | ||
| resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" | ||
| dependencies: | ||
| kind-of "^3.0.2" | ||
| longest "^1.0.1" | ||
| repeat-string "^1.5.2" | ||
| amdefine@>=0.0.4: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" | ||
| ansi-styles@^3.1.0: | ||
| version "3.2.0" | ||
| resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" | ||
| dependencies: | ||
| color-convert "^1.9.0" | ||
| argparse@^1.0.7: | ||
| version "1.0.9" | ||
| resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" | ||
| dependencies: | ||
| sprintf-js "~1.0.2" | ||
| array-find-index@^1.0.1: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" | ||
| array-ify@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" | ||
| async@^1.4.0: | ||
| version "1.5.2" | ||
| resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" | ||
| babel-polyfill@^6.23.0: | ||
| version "6.26.0" | ||
| resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" | ||
| dependencies: | ||
| babel-runtime "^6.26.0" | ||
| core-js "^2.5.0" | ||
| regenerator-runtime "^0.10.5" | ||
| babel-runtime@^6.23.0, babel-runtime@^6.26.0: | ||
| version "6.26.0" | ||
| resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" | ||
| dependencies: | ||
| core-js "^2.4.0" | ||
| regenerator-runtime "^0.11.0" | ||
| balanced-match@^0.4.1: | ||
| version "0.4.2" | ||
| resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" | ||
| brace-expansion@^1.0.0: | ||
| version "1.1.6" | ||
| resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" | ||
| dependencies: | ||
| balanced-match "^0.4.1" | ||
| concat-map "0.0.1" | ||
| builtin-modules@^1.0.0: | ||
| version "1.1.1" | ||
| resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" | ||
| camelcase-keys@^2.0.0: | ||
| version "2.1.0" | ||
| resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" | ||
| dependencies: | ||
| camelcase "^2.0.0" | ||
| map-obj "^1.0.0" | ||
| camelcase@^1.0.2: | ||
| version "1.2.1" | ||
| resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" | ||
| camelcase@^2.0.0: | ||
| version "2.1.1" | ||
| resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" | ||
| center-align@^0.1.1: | ||
| version "0.1.3" | ||
| resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" | ||
| dependencies: | ||
| align-text "^0.1.3" | ||
| lazy-cache "^1.0.3" | ||
| chalk@^2.0.1: | ||
| version "2.3.0" | ||
| resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" | ||
| dependencies: | ||
| ansi-styles "^3.1.0" | ||
| escape-string-regexp "^1.0.5" | ||
| supports-color "^4.0.0" | ||
| ci-info@^1.0.0: | ||
| version "1.1.1" | ||
| resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" | ||
| cliui@^2.1.0: | ||
| version "2.1.0" | ||
| resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" | ||
| dependencies: | ||
| center-align "^0.1.1" | ||
| right-align "^0.1.1" | ||
| wordwrap "0.0.2" | ||
| color-convert@^1.9.0: | ||
| version "1.9.1" | ||
| resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" | ||
| dependencies: | ||
| color-name "^1.1.1" | ||
| color-name@^1.1.1: | ||
| version "1.1.3" | ||
| resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" | ||
| compare-func@^1.3.1: | ||
| version "1.3.2" | ||
| resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" | ||
| dependencies: | ||
| array-ify "^1.0.0" | ||
| dot-prop "^3.0.0" | ||
| concat-map@0.0.1: | ||
| version "0.0.1" | ||
| resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | ||
| conventional-changelog-angular@^1.3.3, conventional-changelog-angular@^1.5.2: | ||
| version "1.5.2" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.5.2.tgz#2b38f665fe9c5920af1a2f82f547f4babe6de57c" | ||
| dependencies: | ||
| compare-func "^1.3.1" | ||
| q "^1.4.1" | ||
| conventional-changelog-atom@^0.1.2: | ||
| version "0.1.2" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.2.tgz#12595ad5267a6937c34cf900281b1c65198a4c63" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-cli@^1.3.5: | ||
| version "1.3.5" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.5.tgz#46c51496216b7406588883defa6fac589e9bb31e" | ||
| dependencies: | ||
| add-stream "^1.0.0" | ||
| conventional-changelog "^1.1.7" | ||
| lodash "^4.1.0" | ||
| meow "^3.7.0" | ||
| tempfile "^1.1.1" | ||
| conventional-changelog-codemirror@^0.2.1: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.1.tgz#299a4f7147baf350e6c8158fc54954a291c5cc09" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-core@^1.9.3: | ||
| version "1.9.3" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.3.tgz#2899fe779389a329f0ec4b2746c36ddefb98da2d" | ||
| dependencies: | ||
| conventional-changelog-writer "^2.0.2" | ||
| conventional-commits-parser "^2.0.1" | ||
| dateformat "^1.0.12" | ||
| get-pkg-repo "^1.0.0" | ||
| git-raw-commits "^1.3.0" | ||
| git-remote-origin-url "^2.0.0" | ||
| git-semver-tags "^1.2.3" | ||
| lodash "^4.0.0" | ||
| normalize-package-data "^2.3.5" | ||
| q "^1.4.1" | ||
| read-pkg "^1.1.0" | ||
| read-pkg-up "^1.0.1" | ||
| through2 "^2.0.0" | ||
| conventional-changelog-ember@^0.2.9: | ||
| version "0.2.9" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.9.tgz#8ec73cc054e3ab064667fb1feb52fe8ef1b16438" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-eslint@^0.2.1: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.1.tgz#2c2a11beb216f80649ba72834180293b687c0662" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-express@^0.2.1: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.1.tgz#838d9e1e6c9099703b150b9c19aa2d781742bd6c" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-jquery@^0.1.0: | ||
| version "0.1.0" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-jscs@^0.1.0: | ||
| version "0.1.0" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" | ||
| dependencies: | ||
| q "^1.4.1" | ||
| conventional-changelog-jshint@^0.2.1: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.1.tgz#86139bb3ac99899f2b177e9617e09b37d99bcf3a" | ||
| dependencies: | ||
| compare-func "^1.3.1" | ||
| q "^1.4.1" | ||
| conventional-changelog-writer@^2.0.2: | ||
| version "2.0.2" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.2.tgz#b5857ded1b001daf9a78b9cd40926f45c134949b" | ||
| dependencies: | ||
| compare-func "^1.3.1" | ||
| conventional-commits-filter "^1.1.0" | ||
| dateformat "^1.0.11" | ||
| handlebars "^4.0.2" | ||
| json-stringify-safe "^5.0.1" | ||
| lodash "^4.0.0" | ||
| meow "^3.3.0" | ||
| semver "^5.0.1" | ||
| split "^1.0.0" | ||
| through2 "^2.0.0" | ||
| conventional-changelog@^1.1.7: | ||
| version "1.1.7" | ||
| resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.7.tgz#9151a62b1d8edb2d82711dabf5b7cf71041f82b1" | ||
| dependencies: | ||
| conventional-changelog-angular "^1.5.2" | ||
| conventional-changelog-atom "^0.1.2" | ||
| conventional-changelog-codemirror "^0.2.1" | ||
| conventional-changelog-core "^1.9.3" | ||
| conventional-changelog-ember "^0.2.9" | ||
| conventional-changelog-eslint "^0.2.1" | ||
| conventional-changelog-express "^0.2.1" | ||
| conventional-changelog-jquery "^0.1.0" | ||
| conventional-changelog-jscs "^0.1.0" | ||
| conventional-changelog-jshint "^0.2.1" | ||
| conventional-commits-filter@^1.1.0: | ||
| version "1.1.0" | ||
| resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.0.tgz#1fc29af30b5edab76f54e229c411b0c663d0f9eb" | ||
| dependencies: | ||
| is-subset "^0.1.1" | ||
| modify-values "^1.0.0" | ||
| conventional-commits-parser@^2.0.1: | ||
| version "2.0.1" | ||
| resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.1.tgz#1f15ce6b844f7ca41495c8190c0833c30b8b1693" | ||
| dependencies: | ||
| JSONStream "^1.0.4" | ||
| is-text-path "^1.0.0" | ||
| lodash "^4.2.1" | ||
| meow "^3.3.0" | ||
| split2 "^2.0.0" | ||
| through2 "^2.0.0" | ||
| trim-off-newlines "^1.0.0" | ||
| core-js@^2.4.0, core-js@^2.5.0: | ||
| version "2.5.1" | ||
| resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" | ||
| core-util-is@~1.0.0: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | ||
| cosmiconfig@^3.0.1: | ||
| version "3.1.0" | ||
| resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-3.1.0.tgz#640a94bf9847f321800403cd273af60665c73397" | ||
| dependencies: | ||
| is-directory "^0.3.1" | ||
| js-yaml "^3.9.0" | ||
| parse-json "^3.0.0" | ||
| require-from-string "^2.0.1" | ||
| currently-unhandled@^0.4.1: | ||
| version "0.4.1" | ||
| resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" | ||
| dependencies: | ||
| array-find-index "^1.0.1" | ||
| dargs@^4.0.1: | ||
| version "4.1.0" | ||
| resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" | ||
| dependencies: | ||
| number-is-nan "^1.0.0" | ||
| dateformat@^1.0.11, dateformat@^1.0.12: | ||
| version "1.0.12" | ||
| resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" | ||
| dependencies: | ||
| get-stdin "^4.0.1" | ||
| meow "^3.3.0" | ||
| decamelize@^1.0.0, decamelize@^1.1.2: | ||
| version "1.2.0" | ||
| resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" | ||
| doctrine@^0.7.2: | ||
| version "0.7.2" | ||
| resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" | ||
| dependencies: | ||
| esutils "^1.1.6" | ||
| isarray "0.0.1" | ||
| dot-prop@^3.0.0: | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" | ||
| dependencies: | ||
| is-obj "^1.0.0" | ||
| error-ex@^1.2.0, error-ex@^1.3.1: | ||
| version "1.3.1" | ||
| resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" | ||
| dependencies: | ||
| is-arrayish "^0.2.1" | ||
| escape-string-regexp@^1.0.5: | ||
| version "1.0.5" | ||
| resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | ||
| esprima@^4.0.0: | ||
| version "4.0.0" | ||
| resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" | ||
| esutils@^1.1.6: | ||
| version "1.1.6" | ||
| resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" | ||
| find-up@^1.0.0: | ||
| version "1.1.2" | ||
| resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" | ||
| dependencies: | ||
| path-exists "^2.0.0" | ||
| pinkie-promise "^2.0.0" | ||
| find-up@^2.1.0: | ||
| version "2.1.0" | ||
| resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" | ||
| dependencies: | ||
| locate-path "^2.0.0" | ||
| fs.realpath@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
| get-pkg-repo@^1.0.0: | ||
| version "1.4.0" | ||
| resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" | ||
| dependencies: | ||
| hosted-git-info "^2.1.4" | ||
| meow "^3.3.0" | ||
| normalize-package-data "^2.3.0" | ||
| parse-github-repo-url "^1.3.0" | ||
| through2 "^2.0.0" | ||
| get-stdin@^4.0.1: | ||
| version "4.0.1" | ||
| resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" | ||
| get-stdin@^5.0.1: | ||
| version "5.0.1" | ||
| resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" | ||
| git-raw-commits@^1.3.0: | ||
| version "1.3.0" | ||
| resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.0.tgz#0bc8596e90d5ffe736f7f5546bd2d12f73abaac6" | ||
| dependencies: | ||
| dargs "^4.0.1" | ||
| lodash.template "^4.0.2" | ||
| meow "^3.3.0" | ||
| split2 "^2.0.0" | ||
| through2 "^2.0.0" | ||
| git-remote-origin-url@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" | ||
| dependencies: | ||
| gitconfiglocal "^1.0.0" | ||
| pify "^2.3.0" | ||
| git-semver-tags@^1.2.3: | ||
| version "1.2.3" | ||
| resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.3.tgz#188b453882bf9d7a23afd31baba537dab7388d5d" | ||
| dependencies: | ||
| meow "^3.3.0" | ||
| semver "^5.0.1" | ||
| gitconfiglocal@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" | ||
| dependencies: | ||
| ini "^1.3.2" | ||
| glob@^7.0.5: | ||
| version "7.1.1" | ||
| resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" | ||
| dependencies: | ||
| fs.realpath "^1.0.0" | ||
| inflight "^1.0.4" | ||
| inherits "2" | ||
| minimatch "^3.0.2" | ||
| once "^1.3.0" | ||
| path-is-absolute "^1.0.0" | ||
| graceful-fs@^4.1.2, graceful-fs@^4.1.3: | ||
| version "4.1.11" | ||
| resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" | ||
| handlebars@^4.0.2: | ||
| version "4.0.11" | ||
| resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" | ||
| dependencies: | ||
| async "^1.4.0" | ||
| optimist "^0.6.1" | ||
| source-map "^0.4.4" | ||
| optionalDependencies: | ||
| uglify-js "^2.6" | ||
| has-flag@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" | ||
| hosted-git-info@^2.1.4: | ||
| version "2.5.0" | ||
| resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" | ||
| husky@^0.14.3: | ||
| version "0.14.3" | ||
| resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" | ||
| dependencies: | ||
| is-ci "^1.0.10" | ||
| normalize-path "^1.0.0" | ||
| strip-indent "^2.0.0" | ||
| indent-string@^2.1.0: | ||
| version "2.1.0" | ||
| resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" | ||
| dependencies: | ||
| repeating "^2.0.0" | ||
| inflight@^1.0.4: | ||
| version "1.0.6" | ||
| resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" | ||
| dependencies: | ||
| once "^1.3.0" | ||
| wrappy "1" | ||
| inherits@2, inherits@~2.0.3: | ||
| version "2.0.3" | ||
| resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | ||
| ini@^1.3.2: | ||
| version "1.3.4" | ||
| resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" | ||
| is-arrayish@^0.2.1: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | ||
| is-buffer@^1.1.5: | ||
| version "1.1.5" | ||
| resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" | ||
| is-builtin-module@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" | ||
| dependencies: | ||
| builtin-modules "^1.0.0" | ||
| is-ci@^1.0.10: | ||
| version "1.0.10" | ||
| resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" | ||
| dependencies: | ||
| ci-info "^1.0.0" | ||
| is-directory@^0.3.1: | ||
| version "0.3.1" | ||
| resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" | ||
| is-finite@^1.0.0: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" | ||
| dependencies: | ||
| number-is-nan "^1.0.0" | ||
| is-obj@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" | ||
| is-subset@^0.1.1: | ||
| version "0.1.1" | ||
| resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" | ||
| is-text-path@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" | ||
| dependencies: | ||
| text-extensions "^1.0.0" | ||
| is-utf8@^0.2.0: | ||
| version "0.2.1" | ||
| resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" | ||
| isarray@0.0.1: | ||
| version "0.0.1" | ||
| resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" | ||
| isarray@~1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" | ||
| js-yaml@^3.9.0: | ||
| version "3.10.0" | ||
| resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" | ||
| dependencies: | ||
| argparse "^1.0.7" | ||
| esprima "^4.0.0" | ||
| json-stringify-safe@^5.0.1: | ||
| version "5.0.1" | ||
| resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" | ||
| jsonparse@^1.2.0: | ||
| version "1.3.1" | ||
| resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" | ||
| kind-of@^3.0.2: | ||
| version "3.2.0" | ||
| resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" | ||
| dependencies: | ||
| is-buffer "^1.1.5" | ||
| lazy-cache@^1.0.3: | ||
| version "1.0.4" | ||
| resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" | ||
| load-json-file@^1.0.0: | ||
| version "1.1.0" | ||
| resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" | ||
| dependencies: | ||
| graceful-fs "^4.1.2" | ||
| parse-json "^2.2.0" | ||
| pify "^2.0.0" | ||
| pinkie-promise "^2.0.0" | ||
| strip-bom "^2.0.0" | ||
| locate-path@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" | ||
| dependencies: | ||
| p-locate "^2.0.0" | ||
| path-exists "^3.0.0" | ||
| lodash._reinterpolate@~3.0.0: | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" | ||
| lodash.template@^4.0.2: | ||
| version "4.4.0" | ||
| resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" | ||
| dependencies: | ||
| lodash._reinterpolate "~3.0.0" | ||
| lodash.templatesettings "^4.0.0" | ||
| lodash.templatesettings@^4.0.0: | ||
| version "4.1.0" | ||
| resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" | ||
| dependencies: | ||
| lodash._reinterpolate "~3.0.0" | ||
| lodash@^4.0.0, lodash@^4.1.0, lodash@^4.17.4, lodash@^4.2.1: | ||
| version "4.17.4" | ||
| resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" | ||
| longest@^1.0.1: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" | ||
| loud-rejection@^1.0.0: | ||
| version "1.6.0" | ||
| resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" | ||
| dependencies: | ||
| currently-unhandled "^0.4.1" | ||
| signal-exit "^3.0.0" | ||
| map-obj@^1.0.0, map-obj@^1.0.1: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" | ||
| meow@^3.3.0, meow@^3.7.0: | ||
| version "3.7.0" | ||
| resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" | ||
| dependencies: | ||
| camelcase-keys "^2.0.0" | ||
| decamelize "^1.1.2" | ||
| loud-rejection "^1.0.0" | ||
| map-obj "^1.0.1" | ||
| minimist "^1.1.3" | ||
| normalize-package-data "^2.3.4" | ||
| object-assign "^4.0.1" | ||
| read-pkg-up "^1.0.1" | ||
| redent "^1.0.0" | ||
| trim-newlines "^1.0.0" | ||
| minimatch@^3.0.2: | ||
| version "3.0.3" | ||
| resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" | ||
| dependencies: | ||
| brace-expansion "^1.0.0" | ||
| minimist@0.0.8: | ||
| version "0.0.8" | ||
| resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" | ||
| minimist@^1.1.3: | ||
| version "1.2.0" | ||
| resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" | ||
| minimist@~0.0.1: | ||
| version "0.0.10" | ||
| resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" | ||
| mkdirp@^0.5.1: | ||
| version "0.5.1" | ||
| resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" | ||
| dependencies: | ||
| minimist "0.0.8" | ||
| modify-values@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" | ||
| normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: | ||
| version "2.4.0" | ||
| resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" | ||
| dependencies: | ||
| hosted-git-info "^2.1.4" | ||
| is-builtin-module "^1.0.0" | ||
| semver "2 || 3 || 4 || 5" | ||
| validate-npm-package-license "^3.0.1" | ||
| normalize-path@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" | ||
| number-is-nan@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" | ||
| object-assign@^4.0.1: | ||
| version "4.1.1" | ||
| resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | ||
| once@^1.3.0: | ||
| version "1.4.0" | ||
| resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | ||
| dependencies: | ||
| wrappy "1" | ||
| optimist@^0.6.1: | ||
| version "0.6.1" | ||
| resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" | ||
| dependencies: | ||
| minimist "~0.0.1" | ||
| wordwrap "~0.0.2" | ||
| os-tmpdir@^1.0.0: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||
| p-limit@^1.1.0: | ||
| version "1.1.0" | ||
| resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" | ||
| p-locate@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" | ||
| dependencies: | ||
| p-limit "^1.1.0" | ||
| parse-github-repo-url@^1.3.0: | ||
| version "1.4.1" | ||
| resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" | ||
| parse-json@^2.2.0: | ||
| version "2.2.0" | ||
| resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" | ||
| dependencies: | ||
| error-ex "^1.2.0" | ||
| parse-json@^3.0.0: | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-3.0.0.tgz#fa6f47b18e23826ead32f263e744d0e1e847fb13" | ||
| dependencies: | ||
| error-ex "^1.3.1" | ||
| path-exists@^2.0.0: | ||
| version "2.1.0" | ||
| resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" | ||
| dependencies: | ||
| pinkie-promise "^2.0.0" | ||
| path-exists@^3.0.0: | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" | ||
| path-is-absolute@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | ||
| path-type@^1.0.0: | ||
| version "1.1.0" | ||
| resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" | ||
| dependencies: | ||
| graceful-fs "^4.1.2" | ||
| pify "^2.0.0" | ||
| pinkie-promise "^2.0.0" | ||
| pify@^2.0.0, pify@^2.3.0: | ||
| version "2.3.0" | ||
| resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | ||
| pinkie-promise@^2.0.0: | ||
| version "2.0.1" | ||
| resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" | ||
| dependencies: | ||
| pinkie "^2.0.0" | ||
| pinkie@^2.0.0: | ||
| version "2.0.4" | ||
| resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" | ||
| process-nextick-args@~1.0.6: | ||
| version "1.0.7" | ||
| resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" | ||
| q@^1.4.1: | ||
| version "1.5.1" | ||
| resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" | ||
| read-pkg-up@^1.0.1: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" | ||
| dependencies: | ||
| find-up "^1.0.0" | ||
| read-pkg "^1.0.0" | ||
| read-pkg@^1.0.0, read-pkg@^1.1.0: | ||
| version "1.1.0" | ||
| resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" | ||
| dependencies: | ||
| load-json-file "^1.0.0" | ||
| normalize-package-data "^2.3.2" | ||
| path-type "^1.0.0" | ||
| readable-stream@^2.1.5: | ||
| version "2.3.3" | ||
| resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" | ||
| dependencies: | ||
| core-util-is "~1.0.0" | ||
| inherits "~2.0.3" | ||
| isarray "~1.0.0" | ||
| process-nextick-args "~1.0.6" | ||
| safe-buffer "~5.1.1" | ||
| string_decoder "~1.0.3" | ||
| util-deprecate "~1.0.1" | ||
| redent@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" | ||
| dependencies: | ||
| indent-string "^2.1.0" | ||
| strip-indent "^1.0.1" | ||
| regenerator-runtime@^0.10.5: | ||
| version "0.10.5" | ||
| resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" | ||
| regenerator-runtime@^0.11.0: | ||
| version "0.11.0" | ||
| resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" | ||
| repeat-string@^1.5.2: | ||
| version "1.6.1" | ||
| resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" | ||
| repeating@^2.0.0: | ||
| version "2.0.1" | ||
| resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" | ||
| dependencies: | ||
| is-finite "^1.0.0" | ||
| require-from-string@^2.0.1: | ||
| version "2.0.1" | ||
| resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff" | ||
| resolve-from@^3.0.0: | ||
| version "3.0.0" | ||
| resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" | ||
| right-align@^0.1.1: | ||
| version "0.1.3" | ||
| resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" | ||
| dependencies: | ||
| align-text "^0.1.1" | ||
| rimraf@^2.5.2: | ||
| version "2.6.2" | ||
| resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" | ||
| dependencies: | ||
| glob "^7.0.5" | ||
| safe-buffer@~5.1.0, safe-buffer@~5.1.1: | ||
| version "5.1.1" | ||
| resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" | ||
| "semver@2 || 3 || 4 || 5", semver@^5.0.1: | ||
| version "5.4.1" | ||
| resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" | ||
| semver@^5.3.0: | ||
| version "5.3.0" | ||
| resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" | ||
| signal-exit@^3.0.0: | ||
| version "3.0.2" | ||
| resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" | ||
| source-map@^0.4.4: | ||
| version "0.4.4" | ||
| resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" | ||
| dependencies: | ||
| amdefine ">=0.0.4" | ||
| source-map@~0.5.1: | ||
| version "0.5.7" | ||
| resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" | ||
| spdx-correct@~1.0.0: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" | ||
| dependencies: | ||
| spdx-license-ids "^1.0.2" | ||
| spdx-expression-parse@~1.0.0: | ||
| version "1.0.4" | ||
| resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" | ||
| spdx-license-ids@^1.0.2: | ||
| version "1.2.2" | ||
| resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" | ||
| split2@^2.0.0: | ||
| version "2.2.0" | ||
| resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" | ||
| dependencies: | ||
| through2 "^2.0.2" | ||
| split@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" | ||
| dependencies: | ||
| through "2" | ||
| sprintf-js@~1.0.2: | ||
| version "1.0.3" | ||
| resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" | ||
| string_decoder@~1.0.3: | ||
| version "1.0.3" | ||
| resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" | ||
| dependencies: | ||
| safe-buffer "~5.1.0" | ||
| strip-bom@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" | ||
| dependencies: | ||
| is-utf8 "^0.2.0" | ||
| strip-indent@^1.0.1: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" | ||
| dependencies: | ||
| get-stdin "^4.0.1" | ||
| strip-indent@^2.0.0: | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" | ||
| supports-color@^4.0.0: | ||
| version "4.5.0" | ||
| resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" | ||
| dependencies: | ||
| has-flag "^2.0.0" | ||
| tempfile@^1.1.1: | ||
| version "1.1.1" | ||
| resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" | ||
| dependencies: | ||
| os-tmpdir "^1.0.0" | ||
| uuid "^2.0.1" | ||
| text-extensions@^1.0.0: | ||
| version "1.7.0" | ||
| resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" | ||
| through2@^2.0.0, through2@^2.0.2: | ||
| version "2.0.3" | ||
| resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" | ||
| dependencies: | ||
| readable-stream "^2.1.5" | ||
| xtend "~4.0.1" | ||
| through@2, "through@>=2.2.7 <3": | ||
| version "2.3.8" | ||
| resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" | ||
| trim-newlines@^1.0.0: | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" | ||
| trim-off-newlines@^1.0.0: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" | ||
| tslib@^1.0.0: | ||
| version "1.6.1" | ||
| resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.6.1.tgz#b77b09abc5fa4935e157d838b80e36dad47152c4" | ||
| tslib@^1.7.1: | ||
| version "1.8.0" | ||
| resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.8.0.tgz#dc604ebad64bcbf696d613da6c954aa0e7ea1eb6" | ||
| tslint-consistent-codestyle@^1.10.0: | ||
| version "1.10.0" | ||
| resolved "https://registry.yarnpkg.com/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.10.0.tgz#8065a4869400fff31c1224e95c3cbdbd62cb5d30" | ||
| dependencies: | ||
| tslib "^1.7.1" | ||
| tsutils "^2.12.2" | ||
| tslint-eslint-rules@^4.1.1: | ||
| version "4.1.1" | ||
| resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-4.1.1.tgz#7c30e7882f26bc276bff91d2384975c69daf88ba" | ||
| dependencies: | ||
| doctrine "^0.7.2" | ||
| tslib "^1.0.0" | ||
| tsutils "^1.4.0" | ||
| tslint-microsoft-contrib@~5.0.1: | ||
| version "5.0.1" | ||
| resolved "https://registry.yarnpkg.com/tslint-microsoft-contrib/-/tslint-microsoft-contrib-5.0.1.tgz#328ee9c28d07cdf793293204c96e2ffab9221994" | ||
| dependencies: | ||
| tsutils "^1.4.0" | ||
| tsutils@^1.4.0: | ||
| version "1.7.0" | ||
| resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.7.0.tgz#2e63ccc2d6912bb095f7e363ff4100721dc86f50" | ||
| tsutils@^2.12.2: | ||
| version "2.12.2" | ||
| resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.12.2.tgz#ad58a4865d17ec3ddb6631b6ca53be14a5656ff3" | ||
| dependencies: | ||
| tslib "^1.7.1" | ||
| uglify-js@^2.6: | ||
| version "2.8.29" | ||
| resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" | ||
| dependencies: | ||
| source-map "~0.5.1" | ||
| yargs "~3.10.0" | ||
| optionalDependencies: | ||
| uglify-to-browserify "~1.0.0" | ||
| uglify-to-browserify@~1.0.0: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" | ||
| util-deprecate@~1.0.1: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | ||
| uuid@^2.0.1: | ||
| version "2.0.3" | ||
| resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" | ||
| validate-npm-package-license@^3.0.1: | ||
| version "3.0.1" | ||
| resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" | ||
| dependencies: | ||
| spdx-correct "~1.0.0" | ||
| spdx-expression-parse "~1.0.0" | ||
| window-size@0.1.0: | ||
| version "0.1.0" | ||
| resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" | ||
| wordwrap@0.0.2: | ||
| version "0.0.2" | ||
| resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" | ||
| wordwrap@~0.0.2: | ||
| version "0.0.3" | ||
| resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" | ||
| wrappy@1: | ||
| version "1.0.2" | ||
| resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | ||
| xtend@~4.0.1: | ||
| version "4.0.1" | ||
| resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" | ||
| yargs@~3.10.0: | ||
| version "3.10.0" | ||
| resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" | ||
| dependencies: | ||
| camelcase "^1.0.2" | ||
| cliui "^2.1.0" | ||
| decamelize "^1.0.0" | ||
| window-size "0.1.0" |
105
0.96%9096
-80.62%6
50%6
-14.29%+ Added
+ Added
- Removed
- Removed
Updated