├── .gitattributes ├── .prettierrc ├── .badge.json ├── index.js ├── android ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── jdc │ │ └── reactlibrary │ │ ├── ReferrerReceiver.java │ │ ├── RNReferrerModule.java │ │ └── RNReferrerPackage.java └── build.gradle ├── .gitignore ├── package.json ├── LICENSE.md ├── README.md └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | # .prettierrc or .prettierrc.yaml 2 | trailingComma: "es5" 3 | tabWidth: 4 4 | semi: false 5 | singleQuote: true -------------------------------------------------------------------------------- /.badge.json: -------------------------------------------------------------------------------- 1 | {"data":{"name":"react-native-referrer"},"installed":["npm-version","npm-license","npm-download-month","npm-download-total"]} -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | import { NativeModules } from 'react-native'; 3 | 4 | const { RNReferrer } = NativeModules; 5 | 6 | export default RNReferrer; 7 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # OSX 3 | # 4 | .DS_Store 5 | 6 | # node.js 7 | # 8 | node_modules/ 9 | npm-debug.log 10 | yarn-error.log 11 | 12 | 13 | # Android/IntelliJ 14 | # 15 | build/ 16 | .idea 17 | .gradle 18 | local.properties 19 | *.iml 20 | 21 | # BUCK 22 | buck-out/ 23 | \.buckd/ 24 | *.keystore 25 | 26 | #badges 27 | .badges.json 28 | -------------------------------------------------------------------------------- /android/src/main/java/com/jdc/reactlibrary/ReferrerReceiver.java: -------------------------------------------------------------------------------- 1 | 2 | package com.jdc.reactlibrary; 3 | 4 | import android.content.BroadcastReceiver; 5 | import android.content.Context; 6 | import android.content.Intent; 7 | 8 | public class ReferrerReceiver extends BroadcastReceiver { 9 | private static String referrer = ""; 10 | 11 | public static String getReferrer() { 12 | return referrer; 13 | } 14 | 15 | private static void setReferrer(String value) { 16 | referrer = value; 17 | } 18 | 19 | @Override 20 | public void onReceive(Context context, Intent intent) { 21 | String referrerString = intent.getStringExtra("referrer"); 22 | setReferrer(referrerString); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | 2 | def safeExtGet(prop, fallback) { 3 | rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback 4 | } 5 | 6 | buildscript { 7 | repositories { 8 | jcenter() 9 | } 10 | 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:2.2.3' 13 | } 14 | } 15 | 16 | apply plugin: 'com.android.library' 17 | 18 | android { 19 | compileSdkVersion safeExtGet('compileSdkVersion', 26) 20 | buildToolsVersion safeExtGet('buildToolsVersion', '26.0.3') 21 | 22 | defaultConfig { 23 | minSdkVersion safeExtGet('minSdkVersion', 16) 24 | targetSdkVersion safeExtGet('targetSdkVersion', 26) 25 | } 26 | lintOptions { 27 | abortOnError false 28 | } 29 | } 30 | 31 | repositories { 32 | mavenCentral() 33 | } 34 | 35 | dependencies { 36 | compile 'com.facebook.react:react-native:+' 37 | } 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-referrer", 3 | "version": "0.1.4", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "lint-md": "remark ." 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+ssh://git@github.com/JeandeCampredon/react-native-referrer.git" 13 | }, 14 | "keywords": [ 15 | "react-native", 16 | "referrer", 17 | "play store" 18 | ], 19 | "author": "", 20 | "license": "MIT", 21 | "peerDependencies": { 22 | "react-native": "^0.41.2" 23 | }, 24 | "devDependencies": { 25 | "prettier": "^1.15.3", 26 | "remark-cli": "^5.0.0", 27 | "remark-lint": "^6.0.2", 28 | "remark-preset-lint-recommended": "^3.0.2" 29 | }, 30 | "remarkConfig": { 31 | "plugins": [ 32 | "remark-preset-lint-recommended" 33 | ] 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /android/src/main/java/com/jdc/reactlibrary/RNReferrerModule.java: -------------------------------------------------------------------------------- 1 | 2 | package com.jdc.reactlibrary; 3 | 4 | import android.content.Context; 5 | import android.content.SharedPreferences; 6 | 7 | import com.facebook.react.bridge.ReactApplicationContext; 8 | import com.facebook.react.bridge.ReactContextBaseJavaModule; 9 | import com.facebook.react.bridge.ReactMethod; 10 | import com.facebook.react.bridge.Promise; 11 | import com.facebook.react.bridge.Callback; 12 | 13 | public class RNReferrerModule extends ReactContextBaseJavaModule { 14 | 15 | private final ReactApplicationContext reactContext; 16 | 17 | public RNReferrerModule(ReactApplicationContext reactContext) { 18 | super(reactContext); 19 | this.reactContext = reactContext; 20 | } 21 | 22 | @Override 23 | public String getName() { 24 | return "RNReferrer"; 25 | } 26 | 27 | @ReactMethod 28 | public void getReferrer(Promise promise) { 29 | Context context = getReactApplicationContext(); 30 | 31 | promise.resolve(ReferrerReceiver.getReferrer()); 32 | } 33 | } -------------------------------------------------------------------------------- /android/src/main/java/com/jdc/reactlibrary/RNReferrerPackage.java: -------------------------------------------------------------------------------- 1 | 2 | package com.jdc.reactlibrary; 3 | 4 | import java.util.Arrays; 5 | import java.util.Collections; 6 | import java.util.List; 7 | 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.bridge.NativeModule; 10 | import com.facebook.react.bridge.ReactApplicationContext; 11 | import com.facebook.react.uimanager.ViewManager; 12 | import com.facebook.react.bridge.JavaScriptModule; 13 | 14 | public class RNReferrerPackage implements ReactPackage { 15 | @Override 16 | public List createNativeModules(ReactApplicationContext reactContext) { 17 | return Arrays.asList(new RNReferrerModule(reactContext)); 18 | } 19 | 20 | // Deprecated from RN 0.47 21 | public List> createJSModules() { 22 | return Collections.emptyList(); 23 | } 24 | 25 | @Override 26 | public List createViewManagers(ReactApplicationContext reactContext) { 27 | return Collections.emptyList(); 28 | } 29 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Jean de Campredon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # react-native-referrer 3 | 4 | 5 | [![npm version](https://img.shields.io/npm/v/react-native-referrer.svg)](https://www.npmjs.com/package/react-native-referrer) 6 | [![npm license](https://img.shields.io/npm/l/react-native-referrer.svg)](https://www.npmjs.com/package/react-native-referrer) 7 | [![npm download](https://img.shields.io/npm/dm/react-native-referrer.svg)](https://www.npmjs.com/package/react-native-referrer) 8 | [![npm download](https://img.shields.io/npm/dt/react-native-referrer.svg)](https://www.npmjs.com/package/react-native-referrer) 9 | 10 | 11 | ## Getting started 12 | 13 | `$ npm install react-native-referrer --save` 14 | 15 | ### Mostly automatic installation 16 | 17 | `$ react-native link react-native-referrer` 18 | 19 | ### Manual installation 20 | 21 | 22 | #### Android 23 | 24 | 1. Open up `android/app/src/main/java/[...]/MainActivity.java` 25 | - Add `import com.jdc.reactlibrary.RNReferrerPackage;` to the imports at the top of the file 26 | - Add `new RNReferrerPackage()` to the list returned by the `getPackages()` method 27 | 2. Append the following lines to `android/settings.gradle`: 28 | ``` 29 | include ':react-native-referrer' 30 | project(':react-native-referrer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-referrer/android') 31 | ``` 32 | 3. Insert the following lines inside the dependencies block in `android/app/build.gradle`: 33 | ``` 34 | compile project(':react-native-referrer') 35 | ``` 36 | 4. Insert the following lines inside the application block in `android/app/src/main/AndroidManifest.xml`: 37 | ```xml 38 | 39 | 40 | 41 | 42 | 43 | ``` 44 | 45 | 46 | ## Usage 47 | ```javascript 48 | import RNReferrer from 'react-native-referrer'; 49 | 50 | ... 51 | const referer = await RNReferrer.getReferrer(); 52 | ``` 53 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-regex@^3.0.0: 14 | version "3.0.0" 15 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 16 | 17 | ansi-styles@^3.2.1: 18 | version "3.2.1" 19 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 20 | dependencies: 21 | color-convert "^1.9.0" 22 | 23 | anymatch@^1.3.0: 24 | version "1.3.2" 25 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 26 | dependencies: 27 | micromatch "^2.1.5" 28 | normalize-path "^2.0.0" 29 | 30 | aproba@^1.0.3: 31 | version "1.2.0" 32 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 33 | 34 | are-we-there-yet@~1.1.2: 35 | version "1.1.5" 36 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 37 | dependencies: 38 | delegates "^1.0.0" 39 | readable-stream "^2.0.6" 40 | 41 | argparse@^1.0.7: 42 | version "1.0.10" 43 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 44 | dependencies: 45 | sprintf-js "~1.0.2" 46 | 47 | arr-diff@^2.0.0: 48 | version "2.0.0" 49 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 50 | dependencies: 51 | arr-flatten "^1.0.1" 52 | 53 | arr-flatten@^1.0.1: 54 | version "1.1.0" 55 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 56 | 57 | array-unique@^0.2.1: 58 | version "0.2.1" 59 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 60 | 61 | async-each@^1.0.0: 62 | version "1.0.1" 63 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 64 | 65 | bail@^1.0.0: 66 | version "1.0.3" 67 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.3.tgz#63cfb9ddbac829b02a3128cd53224be78e6c21a3" 68 | 69 | balanced-match@^1.0.0: 70 | version "1.0.0" 71 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 72 | 73 | binary-extensions@^1.0.0: 74 | version "1.11.0" 75 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 76 | 77 | brace-expansion@^1.1.7: 78 | version "1.1.11" 79 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 80 | dependencies: 81 | balanced-match "^1.0.0" 82 | concat-map "0.0.1" 83 | 84 | braces@^1.8.2: 85 | version "1.8.5" 86 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 87 | dependencies: 88 | expand-range "^1.8.1" 89 | preserve "^0.2.0" 90 | repeat-element "^1.1.2" 91 | 92 | buffer-from@^1.0.0: 93 | version "1.1.1" 94 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 95 | 96 | camelcase@^4.0.0: 97 | version "4.1.0" 98 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 99 | 100 | ccount@^1.0.0: 101 | version "1.0.3" 102 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.3.tgz#f1cec43f332e2ea5a569fd46f9f5bde4e6102aff" 103 | 104 | chalk@^2.0.0: 105 | version "2.4.1" 106 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 107 | dependencies: 108 | ansi-styles "^3.2.1" 109 | escape-string-regexp "^1.0.5" 110 | supports-color "^5.3.0" 111 | 112 | character-entities-html4@^1.0.0: 113 | version "1.1.2" 114 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.2.tgz#c44fdde3ce66b52e8d321d6c1bf46101f0150610" 115 | 116 | character-entities-legacy@^1.0.0: 117 | version "1.1.2" 118 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz#7c6defb81648498222c9855309953d05f4d63a9c" 119 | 120 | character-entities@^1.0.0: 121 | version "1.2.2" 122 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.2.tgz#58c8f371c0774ef0ba9b2aca5f00d8f100e6e363" 123 | 124 | character-reference-invalid@^1.0.0: 125 | version "1.1.2" 126 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz#21e421ad3d84055952dab4a43a04e73cd425d3ed" 127 | 128 | chokidar@^1.5.1: 129 | version "1.7.0" 130 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 131 | dependencies: 132 | anymatch "^1.3.0" 133 | async-each "^1.0.0" 134 | glob-parent "^2.0.0" 135 | inherits "^2.0.1" 136 | is-binary-path "^1.0.0" 137 | is-glob "^2.0.0" 138 | path-is-absolute "^1.0.0" 139 | readdirp "^2.0.0" 140 | optionalDependencies: 141 | fsevents "^1.0.0" 142 | 143 | chownr@^1.0.1: 144 | version "1.0.1" 145 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 146 | 147 | co@3.1.0: 148 | version "3.1.0" 149 | resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" 150 | 151 | code-point-at@^1.0.0: 152 | version "1.1.0" 153 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 154 | 155 | collapse-white-space@^1.0.2: 156 | version "1.0.4" 157 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.4.tgz#ce05cf49e54c3277ae573036a26851ba430a0091" 158 | 159 | color-convert@^1.9.0: 160 | version "1.9.3" 161 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 162 | dependencies: 163 | color-name "1.1.3" 164 | 165 | color-name@1.1.3: 166 | version "1.1.3" 167 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 168 | 169 | concat-map@0.0.1: 170 | version "0.0.1" 171 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 172 | 173 | concat-stream@^1.5.1: 174 | version "1.6.2" 175 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 176 | dependencies: 177 | buffer-from "^1.0.0" 178 | inherits "^2.0.3" 179 | readable-stream "^2.2.2" 180 | typedarray "^0.0.6" 181 | 182 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 183 | version "1.1.0" 184 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 185 | 186 | core-util-is@~1.0.0: 187 | version "1.0.2" 188 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 189 | 190 | debug@^2.1.2: 191 | version "2.6.9" 192 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 193 | dependencies: 194 | ms "2.0.0" 195 | 196 | debug@^3.1.0: 197 | version "3.1.0" 198 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 199 | dependencies: 200 | ms "2.0.0" 201 | 202 | deep-extend@^0.6.0: 203 | version "0.6.0" 204 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 205 | 206 | delegates@^1.0.0: 207 | version "1.0.0" 208 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 209 | 210 | detect-libc@^1.0.2: 211 | version "1.0.3" 212 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 213 | 214 | error-ex@^1.3.1: 215 | version "1.3.2" 216 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 217 | dependencies: 218 | is-arrayish "^0.2.1" 219 | 220 | escape-string-regexp@^1.0.5: 221 | version "1.0.5" 222 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 223 | 224 | esprima@^4.0.0: 225 | version "4.0.1" 226 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 227 | 228 | expand-brackets@^0.1.4: 229 | version "0.1.5" 230 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 231 | dependencies: 232 | is-posix-bracket "^0.1.0" 233 | 234 | expand-range@^1.8.1: 235 | version "1.8.2" 236 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 237 | dependencies: 238 | fill-range "^2.1.0" 239 | 240 | extend@^3.0.0: 241 | version "3.0.2" 242 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 243 | 244 | extglob@^0.3.1: 245 | version "0.3.2" 246 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 247 | dependencies: 248 | is-extglob "^1.0.0" 249 | 250 | fault@^1.0.0: 251 | version "1.0.2" 252 | resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.2.tgz#c3d0fec202f172a3a4d414042ad2bb5e2a3ffbaa" 253 | dependencies: 254 | format "^0.2.2" 255 | 256 | filename-regex@^2.0.0: 257 | version "2.0.1" 258 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 259 | 260 | fill-range@^2.1.0: 261 | version "2.2.4" 262 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 263 | dependencies: 264 | is-number "^2.1.0" 265 | isobject "^2.0.0" 266 | randomatic "^3.0.0" 267 | repeat-element "^1.1.2" 268 | repeat-string "^1.5.2" 269 | 270 | fn-name@^2.0.1: 271 | version "2.0.1" 272 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 273 | 274 | for-in@^1.0.1: 275 | version "1.0.2" 276 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 277 | 278 | for-own@^0.1.4: 279 | version "0.1.5" 280 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 281 | dependencies: 282 | for-in "^1.0.1" 283 | 284 | format@^0.2.2: 285 | version "0.2.2" 286 | resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" 287 | 288 | fs-minipass@^1.2.5: 289 | version "1.2.5" 290 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 291 | dependencies: 292 | minipass "^2.2.1" 293 | 294 | fs.realpath@^1.0.0: 295 | version "1.0.0" 296 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 297 | 298 | fsevents@^1.0.0: 299 | version "1.2.4" 300 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 301 | dependencies: 302 | nan "^2.9.2" 303 | node-pre-gyp "^0.10.0" 304 | 305 | gauge@~2.7.3: 306 | version "2.7.4" 307 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 308 | dependencies: 309 | aproba "^1.0.3" 310 | console-control-strings "^1.0.0" 311 | has-unicode "^2.0.0" 312 | object-assign "^4.1.0" 313 | signal-exit "^3.0.0" 314 | string-width "^1.0.1" 315 | strip-ansi "^3.0.1" 316 | wide-align "^1.1.0" 317 | 318 | glob-base@^0.3.0: 319 | version "0.3.0" 320 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 321 | dependencies: 322 | glob-parent "^2.0.0" 323 | is-glob "^2.0.0" 324 | 325 | glob-parent@^2.0.0: 326 | version "2.0.0" 327 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 328 | dependencies: 329 | is-glob "^2.0.0" 330 | 331 | glob@^7.0.3, glob@^7.0.5: 332 | version "7.1.3" 333 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 334 | dependencies: 335 | fs.realpath "^1.0.0" 336 | inflight "^1.0.4" 337 | inherits "2" 338 | minimatch "^3.0.4" 339 | once "^1.3.0" 340 | path-is-absolute "^1.0.0" 341 | 342 | graceful-fs@^4.1.2: 343 | version "4.1.11" 344 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 345 | 346 | has-flag@^2.0.0: 347 | version "2.0.0" 348 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 349 | 350 | has-flag@^3.0.0: 351 | version "3.0.0" 352 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 353 | 354 | has-unicode@^2.0.0: 355 | version "2.0.1" 356 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 357 | 358 | iconv-lite@^0.4.4: 359 | version "0.4.24" 360 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 361 | dependencies: 362 | safer-buffer ">= 2.1.2 < 3" 363 | 364 | ignore-walk@^3.0.1: 365 | version "3.0.1" 366 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 367 | dependencies: 368 | minimatch "^3.0.4" 369 | 370 | ignore@^3.2.0: 371 | version "3.3.10" 372 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 373 | 374 | inflight@^1.0.4: 375 | version "1.0.6" 376 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 377 | dependencies: 378 | once "^1.3.0" 379 | wrappy "1" 380 | 381 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 382 | version "2.0.3" 383 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 384 | 385 | ini@~1.3.0: 386 | version "1.3.5" 387 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 388 | 389 | irregular-plurals@^2.0.0: 390 | version "2.0.0" 391 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-2.0.0.tgz#39d40f05b00f656d0b7fa471230dd3b714af2872" 392 | 393 | is-alphabetical@^1.0.0: 394 | version "1.0.2" 395 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.2.tgz#1fa6e49213cb7885b75d15862fb3f3d96c884f41" 396 | 397 | is-alphanumeric@^1.0.0: 398 | version "1.0.0" 399 | resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" 400 | 401 | is-alphanumerical@^1.0.0: 402 | version "1.0.2" 403 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz#1138e9ae5040158dc6ff76b820acd6b7a181fd40" 404 | dependencies: 405 | is-alphabetical "^1.0.0" 406 | is-decimal "^1.0.0" 407 | 408 | is-arrayish@^0.2.1: 409 | version "0.2.1" 410 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 411 | 412 | is-binary-path@^1.0.0: 413 | version "1.0.1" 414 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 415 | dependencies: 416 | binary-extensions "^1.0.0" 417 | 418 | is-buffer@^1.1.4, is-buffer@^1.1.5: 419 | version "1.1.6" 420 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 421 | 422 | is-decimal@^1.0.0: 423 | version "1.0.2" 424 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.2.tgz#894662d6a8709d307f3a276ca4339c8fa5dff0ff" 425 | 426 | is-dotfile@^1.0.0: 427 | version "1.0.3" 428 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 429 | 430 | is-empty@^1.0.0: 431 | version "1.2.0" 432 | resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b" 433 | 434 | is-equal-shallow@^0.1.3: 435 | version "0.1.3" 436 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 437 | dependencies: 438 | is-primitive "^2.0.0" 439 | 440 | is-extendable@^0.1.1: 441 | version "0.1.1" 442 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 443 | 444 | is-extglob@^1.0.0: 445 | version "1.0.0" 446 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 447 | 448 | is-fullwidth-code-point@^1.0.0: 449 | version "1.0.0" 450 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 451 | dependencies: 452 | number-is-nan "^1.0.0" 453 | 454 | is-fullwidth-code-point@^2.0.0: 455 | version "2.0.0" 456 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 457 | 458 | is-glob@^2.0.0, is-glob@^2.0.1: 459 | version "2.0.1" 460 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 461 | dependencies: 462 | is-extglob "^1.0.0" 463 | 464 | is-hexadecimal@^1.0.0: 465 | version "1.0.2" 466 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz#b6e710d7d07bb66b98cb8cece5c9b4921deeb835" 467 | 468 | is-hidden@^1.0.1: 469 | version "1.1.1" 470 | resolved "https://registry.yarnpkg.com/is-hidden/-/is-hidden-1.1.1.tgz#82ee6a93aeef3fb007ad5b9457c0584d45329f38" 471 | 472 | is-number@^2.1.0: 473 | version "2.1.0" 474 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 475 | dependencies: 476 | kind-of "^3.0.2" 477 | 478 | is-number@^4.0.0: 479 | version "4.0.0" 480 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 481 | 482 | is-object@^1.0.1: 483 | version "1.0.1" 484 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 485 | 486 | is-plain-obj@^1.1.0: 487 | version "1.1.0" 488 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 489 | 490 | is-posix-bracket@^0.1.0: 491 | version "0.1.1" 492 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 493 | 494 | is-primitive@^2.0.0: 495 | version "2.0.0" 496 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 497 | 498 | is-whitespace-character@^1.0.0: 499 | version "1.0.2" 500 | resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz#ede53b4c6f6fb3874533751ec9280d01928d03ed" 501 | 502 | is-word-character@^1.0.0: 503 | version "1.0.2" 504 | resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.2.tgz#46a5dac3f2a1840898b91e576cd40d493f3ae553" 505 | 506 | isarray@1.0.0, isarray@~1.0.0: 507 | version "1.0.0" 508 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 509 | 510 | isobject@^2.0.0: 511 | version "2.1.0" 512 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 513 | dependencies: 514 | isarray "1.0.0" 515 | 516 | js-yaml@^3.6.1: 517 | version "3.12.0" 518 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 519 | dependencies: 520 | argparse "^1.0.7" 521 | esprima "^4.0.0" 522 | 523 | json-parse-better-errors@^1.0.1: 524 | version "1.0.2" 525 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 526 | 527 | json5@^0.5.1: 528 | version "0.5.1" 529 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 530 | 531 | kind-of@^3.0.2: 532 | version "3.2.2" 533 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 534 | dependencies: 535 | is-buffer "^1.1.5" 536 | 537 | kind-of@^6.0.0: 538 | version "6.0.2" 539 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 540 | 541 | load-plugin@^2.0.0: 542 | version "2.2.2" 543 | resolved "https://registry.yarnpkg.com/load-plugin/-/load-plugin-2.2.2.tgz#ebc7599491ff33e5077719fbe051d5725a9f7a89" 544 | dependencies: 545 | npm-prefix "^1.2.0" 546 | resolve-from "^4.0.0" 547 | 548 | longest-streak@^2.0.1: 549 | version "2.0.2" 550 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e" 551 | 552 | markdown-escapes@^1.0.0: 553 | version "1.0.2" 554 | resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.2.tgz#e639cbde7b99c841c0bacc8a07982873b46d2122" 555 | 556 | markdown-extensions@^1.1.0: 557 | version "1.1.1" 558 | resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" 559 | 560 | markdown-table@^1.1.0: 561 | version "1.1.2" 562 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz#c78db948fa879903a41bce522e3b96f801c63786" 563 | 564 | math-random@^1.0.1: 565 | version "1.0.1" 566 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 567 | 568 | mdast-comment-marker@^1.0.0: 569 | version "1.0.3" 570 | resolved "https://registry.yarnpkg.com/mdast-comment-marker/-/mdast-comment-marker-1.0.3.tgz#1ead204b73e8759d29785ef3024a1e43510d38e5" 571 | 572 | mdast-util-compact@^1.0.0: 573 | version "1.0.2" 574 | resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.2.tgz#c12ebe16fffc84573d3e19767726de226e95f649" 575 | dependencies: 576 | unist-util-visit "^1.1.0" 577 | 578 | mdast-util-heading-style@^1.0.2: 579 | version "1.0.4" 580 | resolved "https://registry.yarnpkg.com/mdast-util-heading-style/-/mdast-util-heading-style-1.0.4.tgz#8e796de77f91c141691620ebbb5c9140609e3fd2" 581 | 582 | mdast-util-to-string@^1.0.2: 583 | version "1.0.5" 584 | resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.0.5.tgz#3552b05428af22ceda34f156afe62ec8e6d731ca" 585 | 586 | micromatch@^2.1.5: 587 | version "2.3.11" 588 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 589 | dependencies: 590 | arr-diff "^2.0.0" 591 | array-unique "^0.2.1" 592 | braces "^1.8.2" 593 | expand-brackets "^0.1.4" 594 | extglob "^0.3.1" 595 | filename-regex "^2.0.0" 596 | is-extglob "^1.0.0" 597 | is-glob "^2.0.1" 598 | kind-of "^3.0.2" 599 | normalize-path "^2.0.1" 600 | object.omit "^2.0.0" 601 | parse-glob "^3.0.4" 602 | regex-cache "^0.4.2" 603 | 604 | minimatch@^3.0.2, minimatch@^3.0.4: 605 | version "3.0.4" 606 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 607 | dependencies: 608 | brace-expansion "^1.1.7" 609 | 610 | minimist@0.0.8: 611 | version "0.0.8" 612 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 613 | 614 | minimist@^1.2.0: 615 | version "1.2.0" 616 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 617 | 618 | minipass@^2.2.1, minipass@^2.3.3: 619 | version "2.3.4" 620 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 621 | dependencies: 622 | safe-buffer "^5.1.2" 623 | yallist "^3.0.0" 624 | 625 | minizlib@^1.1.0: 626 | version "1.1.0" 627 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 628 | dependencies: 629 | minipass "^2.2.1" 630 | 631 | mkdirp@^0.5.0, mkdirp@^0.5.1: 632 | version "0.5.1" 633 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 634 | dependencies: 635 | minimist "0.0.8" 636 | 637 | ms@2.0.0: 638 | version "2.0.0" 639 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 640 | 641 | nan@^2.9.2: 642 | version "2.11.0" 643 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.0.tgz#574e360e4d954ab16966ec102c0c049fd961a099" 644 | 645 | needle@^2.2.1: 646 | version "2.2.2" 647 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 648 | dependencies: 649 | debug "^2.1.2" 650 | iconv-lite "^0.4.4" 651 | sax "^1.2.4" 652 | 653 | node-pre-gyp@^0.10.0: 654 | version "0.10.3" 655 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 656 | dependencies: 657 | detect-libc "^1.0.2" 658 | mkdirp "^0.5.1" 659 | needle "^2.2.1" 660 | nopt "^4.0.1" 661 | npm-packlist "^1.1.6" 662 | npmlog "^4.0.2" 663 | rc "^1.2.7" 664 | rimraf "^2.6.1" 665 | semver "^5.3.0" 666 | tar "^4" 667 | 668 | nopt@^4.0.1: 669 | version "4.0.1" 670 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 671 | dependencies: 672 | abbrev "1" 673 | osenv "^0.1.4" 674 | 675 | normalize-path@^2.0.0, normalize-path@^2.0.1: 676 | version "2.1.1" 677 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 678 | dependencies: 679 | remove-trailing-separator "^1.0.1" 680 | 681 | npm-bundled@^1.0.1: 682 | version "1.0.5" 683 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 684 | 685 | npm-packlist@^1.1.6: 686 | version "1.1.11" 687 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 688 | dependencies: 689 | ignore-walk "^3.0.1" 690 | npm-bundled "^1.0.1" 691 | 692 | npm-prefix@^1.2.0: 693 | version "1.2.0" 694 | resolved "https://registry.yarnpkg.com/npm-prefix/-/npm-prefix-1.2.0.tgz#e619455f7074ba54cc66d6d0d37dd9f1be6bcbc0" 695 | dependencies: 696 | rc "^1.1.0" 697 | shellsubstitute "^1.1.0" 698 | untildify "^2.1.0" 699 | 700 | npmlog@^4.0.2: 701 | version "4.1.2" 702 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 703 | dependencies: 704 | are-we-there-yet "~1.1.2" 705 | console-control-strings "~1.1.0" 706 | gauge "~2.7.3" 707 | set-blocking "~2.0.0" 708 | 709 | number-is-nan@^1.0.0: 710 | version "1.0.1" 711 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 712 | 713 | object-assign@^4.1.0: 714 | version "4.1.1" 715 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 716 | 717 | object.omit@^2.0.0: 718 | version "2.0.1" 719 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 720 | dependencies: 721 | for-own "^0.1.4" 722 | is-extendable "^0.1.1" 723 | 724 | once@^1.3.0: 725 | version "1.4.0" 726 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 727 | dependencies: 728 | wrappy "1" 729 | 730 | os-homedir@^1.0.0: 731 | version "1.0.2" 732 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 733 | 734 | os-tmpdir@^1.0.0: 735 | version "1.0.2" 736 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 737 | 738 | osenv@^0.1.4: 739 | version "0.1.5" 740 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 741 | dependencies: 742 | os-homedir "^1.0.0" 743 | os-tmpdir "^1.0.0" 744 | 745 | parse-entities@^1.0.2, parse-entities@^1.1.0: 746 | version "1.1.2" 747 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.2.tgz#9eaf719b29dc3bd62246b4332009072e01527777" 748 | dependencies: 749 | character-entities "^1.0.0" 750 | character-entities-legacy "^1.0.0" 751 | character-reference-invalid "^1.0.0" 752 | is-alphanumerical "^1.0.0" 753 | is-decimal "^1.0.0" 754 | is-hexadecimal "^1.0.0" 755 | 756 | parse-glob@^3.0.4: 757 | version "3.0.4" 758 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 759 | dependencies: 760 | glob-base "^0.3.0" 761 | is-dotfile "^1.0.0" 762 | is-extglob "^1.0.0" 763 | is-glob "^2.0.0" 764 | 765 | parse-json@^4.0.0: 766 | version "4.0.0" 767 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 768 | dependencies: 769 | error-ex "^1.3.1" 770 | json-parse-better-errors "^1.0.1" 771 | 772 | path-is-absolute@^1.0.0: 773 | version "1.0.1" 774 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 775 | 776 | plur@^3.0.0: 777 | version "3.0.1" 778 | resolved "https://registry.yarnpkg.com/plur/-/plur-3.0.1.tgz#268652d605f816699b42b86248de73c9acd06a7c" 779 | dependencies: 780 | irregular-plurals "^2.0.0" 781 | 782 | preserve@^0.2.0: 783 | version "0.2.0" 784 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 785 | 786 | prettier@^1.15.3: 787 | version "1.15.3" 788 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" 789 | integrity sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg== 790 | 791 | process-nextick-args@~2.0.0: 792 | version "2.0.0" 793 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 794 | 795 | randomatic@^3.0.0: 796 | version "3.1.0" 797 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 798 | dependencies: 799 | is-number "^4.0.0" 800 | kind-of "^6.0.0" 801 | math-random "^1.0.1" 802 | 803 | rc@^1.1.0, rc@^1.2.7: 804 | version "1.2.8" 805 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 806 | dependencies: 807 | deep-extend "^0.6.0" 808 | ini "~1.3.0" 809 | minimist "^1.2.0" 810 | strip-json-comments "~2.0.1" 811 | 812 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 813 | version "2.3.6" 814 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 815 | dependencies: 816 | core-util-is "~1.0.0" 817 | inherits "~2.0.3" 818 | isarray "~1.0.0" 819 | process-nextick-args "~2.0.0" 820 | safe-buffer "~5.1.1" 821 | string_decoder "~1.1.1" 822 | util-deprecate "~1.0.1" 823 | 824 | readdirp@^2.0.0: 825 | version "2.1.0" 826 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 827 | dependencies: 828 | graceful-fs "^4.1.2" 829 | minimatch "^3.0.2" 830 | readable-stream "^2.0.2" 831 | set-immediate-shim "^1.0.1" 832 | 833 | regex-cache@^0.4.2: 834 | version "0.4.4" 835 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 836 | dependencies: 837 | is-equal-shallow "^0.1.3" 838 | 839 | remark-cli@^5.0.0: 840 | version "5.0.0" 841 | resolved "https://registry.yarnpkg.com/remark-cli/-/remark-cli-5.0.0.tgz#9feefd06474f3d0ff132df21b5334c546df12ab6" 842 | dependencies: 843 | markdown-extensions "^1.1.0" 844 | remark "^9.0.0" 845 | unified-args "^5.0.0" 846 | 847 | remark-lint-final-newline@^1.0.0: 848 | version "1.0.2" 849 | resolved "https://registry.yarnpkg.com/remark-lint-final-newline/-/remark-lint-final-newline-1.0.2.tgz#13b9ff6bd3e9c377286b439d8f14b04efde3898f" 850 | dependencies: 851 | unified-lint-rule "^1.0.0" 852 | 853 | remark-lint-hard-break-spaces@^1.0.0: 854 | version "1.0.3" 855 | resolved "https://registry.yarnpkg.com/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-1.0.3.tgz#0485fc09265dcea436f5eb3420a3b6f616c6fad7" 856 | dependencies: 857 | unified-lint-rule "^1.0.0" 858 | unist-util-generated "^1.1.0" 859 | unist-util-position "^3.0.0" 860 | unist-util-visit "^1.1.1" 861 | 862 | remark-lint-list-item-bullet-indent@^1.0.0: 863 | version "1.0.2" 864 | resolved "https://registry.yarnpkg.com/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-1.0.2.tgz#82461e7295b9e208e7c41b62d30476a69727b0cb" 865 | dependencies: 866 | plur "^3.0.0" 867 | unified-lint-rule "^1.0.0" 868 | unist-util-generated "^1.1.0" 869 | unist-util-position "^3.0.0" 870 | unist-util-visit "^1.1.1" 871 | 872 | remark-lint-list-item-indent@^1.0.0: 873 | version "1.0.2" 874 | resolved "https://registry.yarnpkg.com/remark-lint-list-item-indent/-/remark-lint-list-item-indent-1.0.2.tgz#f8208f333a25bbaafdeda707e73523d6bb0f90cf" 875 | dependencies: 876 | plur "^3.0.0" 877 | unified-lint-rule "^1.0.0" 878 | unist-util-generated "^1.1.0" 879 | unist-util-position "^3.0.0" 880 | unist-util-visit "^1.1.1" 881 | 882 | remark-lint-no-auto-link-without-protocol@^1.0.0: 883 | version "1.0.2" 884 | resolved "https://registry.yarnpkg.com/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-1.0.2.tgz#4532087419b1b131b4057ecf0a3a446f0afc2c6e" 885 | dependencies: 886 | mdast-util-to-string "^1.0.2" 887 | unified-lint-rule "^1.0.0" 888 | unist-util-generated "^1.1.0" 889 | unist-util-position "^3.0.0" 890 | unist-util-visit "^1.1.1" 891 | 892 | remark-lint-no-blockquote-without-marker@^2.0.0: 893 | version "2.0.2" 894 | resolved "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-2.0.2.tgz#61b6a0a74fbfba8fd168ac0fcc2a673eb47b9880" 895 | dependencies: 896 | unified-lint-rule "^1.0.0" 897 | unist-util-generated "^1.1.0" 898 | unist-util-position "^3.0.0" 899 | unist-util-visit "^1.1.1" 900 | vfile-location "^2.0.1" 901 | 902 | remark-lint-no-duplicate-definitions@^1.0.0: 903 | version "1.0.2" 904 | resolved "https://registry.yarnpkg.com/remark-lint-no-duplicate-definitions/-/remark-lint-no-duplicate-definitions-1.0.2.tgz#d27d394ab543f8064a97e2509b49220449f961cb" 905 | dependencies: 906 | unified-lint-rule "^1.0.0" 907 | unist-util-generated "^1.1.0" 908 | unist-util-position "^3.0.0" 909 | unist-util-stringify-position "^1.1.2" 910 | unist-util-visit "^1.1.1" 911 | 912 | remark-lint-no-heading-content-indent@^1.0.0: 913 | version "1.0.2" 914 | resolved "https://registry.yarnpkg.com/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-1.0.2.tgz#812c4af2a18491bbf278f15a6f533169203a1b3c" 915 | dependencies: 916 | mdast-util-heading-style "^1.0.2" 917 | plur "^3.0.0" 918 | unified-lint-rule "^1.0.0" 919 | unist-util-generated "^1.1.0" 920 | unist-util-position "^3.0.0" 921 | unist-util-visit "^1.1.1" 922 | 923 | remark-lint-no-inline-padding@^1.0.0: 924 | version "1.0.2" 925 | resolved "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-1.0.2.tgz#aa189d88c0d3faa913007c2f04d72b20d84e577e" 926 | dependencies: 927 | mdast-util-to-string "^1.0.2" 928 | unified-lint-rule "^1.0.0" 929 | unist-util-generated "^1.1.0" 930 | unist-util-visit "^1.1.1" 931 | 932 | remark-lint-no-literal-urls@^1.0.0: 933 | version "1.0.2" 934 | resolved "https://registry.yarnpkg.com/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-1.0.2.tgz#1c60160a76bd9ddacd42819b43dadeb481a530df" 935 | dependencies: 936 | mdast-util-to-string "^1.0.2" 937 | unified-lint-rule "^1.0.0" 938 | unist-util-generated "^1.1.0" 939 | unist-util-position "^3.0.0" 940 | unist-util-visit "^1.1.1" 941 | 942 | remark-lint-no-shortcut-reference-image@^1.0.0: 943 | version "1.0.2" 944 | resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-1.0.2.tgz#784011b832173ad9e87d4f40c90f935de0841764" 945 | dependencies: 946 | unified-lint-rule "^1.0.0" 947 | unist-util-generated "^1.1.0" 948 | unist-util-visit "^1.1.1" 949 | 950 | remark-lint-no-shortcut-reference-link@^1.0.0: 951 | version "1.0.3" 952 | resolved "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-1.0.3.tgz#4210d37d234b427dd131eb11473a7a2d3719a819" 953 | dependencies: 954 | unified-lint-rule "^1.0.0" 955 | unist-util-generated "^1.1.0" 956 | unist-util-visit "^1.1.1" 957 | 958 | remark-lint-no-undefined-references@^1.0.0: 959 | version "1.0.2" 960 | resolved "https://registry.yarnpkg.com/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-1.0.2.tgz#56a1a6db75258aa19556147c6bec59c9fbab45cd" 961 | dependencies: 962 | unified-lint-rule "^1.0.0" 963 | unist-util-generated "^1.1.0" 964 | unist-util-visit "^1.1.1" 965 | 966 | remark-lint-no-unused-definitions@^1.0.0: 967 | version "1.0.2" 968 | resolved "https://registry.yarnpkg.com/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-1.0.2.tgz#5b1337f99e83a75d68bc6a0f31c8791dc497e26c" 969 | dependencies: 970 | unified-lint-rule "^1.0.0" 971 | unist-util-generated "^1.1.0" 972 | unist-util-visit "^1.1.1" 973 | 974 | remark-lint-ordered-list-marker-style@^1.0.0: 975 | version "1.0.2" 976 | resolved "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-1.0.2.tgz#ad7461306a7701fc931245300dfd7dbd9fbb589f" 977 | dependencies: 978 | unified-lint-rule "^1.0.0" 979 | unist-util-generated "^1.1.0" 980 | unist-util-position "^3.0.0" 981 | unist-util-visit "^1.1.1" 982 | 983 | remark-lint@^6.0.0, remark-lint@^6.0.2: 984 | version "6.0.2" 985 | resolved "https://registry.yarnpkg.com/remark-lint/-/remark-lint-6.0.2.tgz#f4ac45536e4fbf3c9a523dfa1cca874c598554de" 986 | dependencies: 987 | remark-message-control "^4.0.0" 988 | 989 | remark-message-control@^4.0.0: 990 | version "4.1.0" 991 | resolved "https://registry.yarnpkg.com/remark-message-control/-/remark-message-control-4.1.0.tgz#60bc7700a87381404c956dc04e688518d3830cff" 992 | dependencies: 993 | mdast-comment-marker "^1.0.0" 994 | unified-message-control "^1.0.0" 995 | xtend "^4.0.1" 996 | 997 | remark-parse@^5.0.0: 998 | version "5.0.0" 999 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95" 1000 | dependencies: 1001 | collapse-white-space "^1.0.2" 1002 | is-alphabetical "^1.0.0" 1003 | is-decimal "^1.0.0" 1004 | is-whitespace-character "^1.0.0" 1005 | is-word-character "^1.0.0" 1006 | markdown-escapes "^1.0.0" 1007 | parse-entities "^1.1.0" 1008 | repeat-string "^1.5.4" 1009 | state-toggle "^1.0.0" 1010 | trim "0.0.1" 1011 | trim-trailing-lines "^1.0.0" 1012 | unherit "^1.0.4" 1013 | unist-util-remove-position "^1.0.0" 1014 | vfile-location "^2.0.0" 1015 | xtend "^4.0.1" 1016 | 1017 | remark-preset-lint-recommended@^3.0.2: 1018 | version "3.0.2" 1019 | resolved "https://registry.yarnpkg.com/remark-preset-lint-recommended/-/remark-preset-lint-recommended-3.0.2.tgz#5ce675678895ce7131326c12b6df9105a5d0632c" 1020 | dependencies: 1021 | remark-lint "^6.0.0" 1022 | remark-lint-final-newline "^1.0.0" 1023 | remark-lint-hard-break-spaces "^1.0.0" 1024 | remark-lint-list-item-bullet-indent "^1.0.0" 1025 | remark-lint-list-item-indent "^1.0.0" 1026 | remark-lint-no-auto-link-without-protocol "^1.0.0" 1027 | remark-lint-no-blockquote-without-marker "^2.0.0" 1028 | remark-lint-no-duplicate-definitions "^1.0.0" 1029 | remark-lint-no-heading-content-indent "^1.0.0" 1030 | remark-lint-no-inline-padding "^1.0.0" 1031 | remark-lint-no-literal-urls "^1.0.0" 1032 | remark-lint-no-shortcut-reference-image "^1.0.0" 1033 | remark-lint-no-shortcut-reference-link "^1.0.0" 1034 | remark-lint-no-undefined-references "^1.0.0" 1035 | remark-lint-no-unused-definitions "^1.0.0" 1036 | remark-lint-ordered-list-marker-style "^1.0.0" 1037 | 1038 | remark-stringify@^5.0.0: 1039 | version "5.0.0" 1040 | resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-5.0.0.tgz#336d3a4d4a6a3390d933eeba62e8de4bd280afba" 1041 | dependencies: 1042 | ccount "^1.0.0" 1043 | is-alphanumeric "^1.0.0" 1044 | is-decimal "^1.0.0" 1045 | is-whitespace-character "^1.0.0" 1046 | longest-streak "^2.0.1" 1047 | markdown-escapes "^1.0.0" 1048 | markdown-table "^1.1.0" 1049 | mdast-util-compact "^1.0.0" 1050 | parse-entities "^1.0.2" 1051 | repeat-string "^1.5.4" 1052 | state-toggle "^1.0.0" 1053 | stringify-entities "^1.0.1" 1054 | unherit "^1.0.4" 1055 | xtend "^4.0.1" 1056 | 1057 | remark@^9.0.0: 1058 | version "9.0.0" 1059 | resolved "https://registry.yarnpkg.com/remark/-/remark-9.0.0.tgz#c5cfa8ec535c73a67c4b0f12bfdbd3a67d8b2f60" 1060 | dependencies: 1061 | remark-parse "^5.0.0" 1062 | remark-stringify "^5.0.0" 1063 | unified "^6.0.0" 1064 | 1065 | remove-trailing-separator@^1.0.1: 1066 | version "1.1.0" 1067 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1068 | 1069 | repeat-element@^1.1.2: 1070 | version "1.1.3" 1071 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 1072 | 1073 | repeat-string@^1.5.0, repeat-string@^1.5.2, repeat-string@^1.5.4: 1074 | version "1.6.1" 1075 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1076 | 1077 | replace-ext@1.0.0: 1078 | version "1.0.0" 1079 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1080 | 1081 | resolve-from@^4.0.0: 1082 | version "4.0.0" 1083 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1084 | 1085 | rimraf@^2.6.1: 1086 | version "2.6.2" 1087 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1088 | dependencies: 1089 | glob "^7.0.5" 1090 | 1091 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1092 | version "5.1.2" 1093 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1094 | 1095 | "safer-buffer@>= 2.1.2 < 3": 1096 | version "2.1.2" 1097 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1098 | 1099 | sax@^1.2.4: 1100 | version "1.2.4" 1101 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1102 | 1103 | semver@^5.3.0: 1104 | version "5.5.1" 1105 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 1106 | 1107 | set-blocking@~2.0.0: 1108 | version "2.0.0" 1109 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1110 | 1111 | set-immediate-shim@^1.0.1: 1112 | version "1.0.1" 1113 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1114 | 1115 | shellsubstitute@^1.1.0: 1116 | version "1.2.0" 1117 | resolved "https://registry.yarnpkg.com/shellsubstitute/-/shellsubstitute-1.2.0.tgz#e4f702a50c518b0f6fe98451890d705af29b6b70" 1118 | 1119 | signal-exit@^3.0.0: 1120 | version "3.0.2" 1121 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1122 | 1123 | sliced@^1.0.1: 1124 | version "1.0.1" 1125 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" 1126 | 1127 | sprintf-js@~1.0.2: 1128 | version "1.0.3" 1129 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1130 | 1131 | state-toggle@^1.0.0: 1132 | version "1.0.1" 1133 | resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.1.tgz#c3cb0974f40a6a0f8e905b96789eb41afa1cde3a" 1134 | 1135 | string-width@^1.0.0, string-width@^1.0.1: 1136 | version "1.0.2" 1137 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1138 | dependencies: 1139 | code-point-at "^1.0.0" 1140 | is-fullwidth-code-point "^1.0.0" 1141 | strip-ansi "^3.0.0" 1142 | 1143 | "string-width@^1.0.2 || 2": 1144 | version "2.1.1" 1145 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1146 | dependencies: 1147 | is-fullwidth-code-point "^2.0.0" 1148 | strip-ansi "^4.0.0" 1149 | 1150 | string_decoder@~1.1.1: 1151 | version "1.1.1" 1152 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1153 | dependencies: 1154 | safe-buffer "~5.1.0" 1155 | 1156 | stringify-entities@^1.0.1: 1157 | version "1.3.2" 1158 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.2.tgz#a98417e5471fd227b3e45d3db1861c11caf668f7" 1159 | dependencies: 1160 | character-entities-html4 "^1.0.0" 1161 | character-entities-legacy "^1.0.0" 1162 | is-alphanumerical "^1.0.0" 1163 | is-hexadecimal "^1.0.0" 1164 | 1165 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1166 | version "3.0.1" 1167 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1168 | dependencies: 1169 | ansi-regex "^2.0.0" 1170 | 1171 | strip-ansi@^4.0.0: 1172 | version "4.0.0" 1173 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1174 | dependencies: 1175 | ansi-regex "^3.0.0" 1176 | 1177 | strip-json-comments@~2.0.1: 1178 | version "2.0.1" 1179 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1180 | 1181 | supports-color@^4.1.0: 1182 | version "4.5.0" 1183 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1184 | dependencies: 1185 | has-flag "^2.0.0" 1186 | 1187 | supports-color@^5.3.0: 1188 | version "5.5.0" 1189 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1190 | dependencies: 1191 | has-flag "^3.0.0" 1192 | 1193 | tar@^4: 1194 | version "4.4.6" 1195 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 1196 | dependencies: 1197 | chownr "^1.0.1" 1198 | fs-minipass "^1.2.5" 1199 | minipass "^2.3.3" 1200 | minizlib "^1.1.0" 1201 | mkdirp "^0.5.0" 1202 | safe-buffer "^5.1.2" 1203 | yallist "^3.0.2" 1204 | 1205 | text-table@^0.2.0: 1206 | version "0.2.0" 1207 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1208 | 1209 | to-vfile@^2.0.0: 1210 | version "2.2.0" 1211 | resolved "https://registry.yarnpkg.com/to-vfile/-/to-vfile-2.2.0.tgz#342d1705e6df526d569b1fc8bfa29f1f36d6c416" 1212 | dependencies: 1213 | is-buffer "^1.1.4" 1214 | vfile "^2.0.0" 1215 | x-is-function "^1.0.4" 1216 | 1217 | trim-trailing-lines@^1.0.0: 1218 | version "1.1.1" 1219 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz#e0ec0810fd3c3f1730516b45f49083caaf2774d9" 1220 | 1221 | trim@0.0.1: 1222 | version "0.0.1" 1223 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 1224 | 1225 | trough@^1.0.0: 1226 | version "1.0.3" 1227 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.3.tgz#e29bd1614c6458d44869fc28b255ab7857ef7c24" 1228 | 1229 | typedarray@^0.0.6: 1230 | version "0.0.6" 1231 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1232 | 1233 | unherit@^1.0.4: 1234 | version "1.1.1" 1235 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.1.tgz#132748da3e88eab767e08fabfbb89c5e9d28628c" 1236 | dependencies: 1237 | inherits "^2.0.1" 1238 | xtend "^4.0.1" 1239 | 1240 | unified-args@^5.0.0: 1241 | version "5.1.0" 1242 | resolved "https://registry.yarnpkg.com/unified-args/-/unified-args-5.1.0.tgz#1889200e072998a662e6e84d817d6f4b5f448dd1" 1243 | dependencies: 1244 | camelcase "^4.0.0" 1245 | chalk "^2.0.0" 1246 | chokidar "^1.5.1" 1247 | json5 "^0.5.1" 1248 | minimist "^1.2.0" 1249 | text-table "^0.2.0" 1250 | unified-engine "^5.1.0" 1251 | 1252 | unified-engine@^5.1.0: 1253 | version "5.1.0" 1254 | resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-5.1.0.tgz#30db83bcc76c821f773bb5a8a491aa0e2471e3d1" 1255 | dependencies: 1256 | concat-stream "^1.5.1" 1257 | debug "^3.1.0" 1258 | fault "^1.0.0" 1259 | fn-name "^2.0.1" 1260 | glob "^7.0.3" 1261 | ignore "^3.2.0" 1262 | is-empty "^1.0.0" 1263 | is-hidden "^1.0.1" 1264 | is-object "^1.0.1" 1265 | js-yaml "^3.6.1" 1266 | load-plugin "^2.0.0" 1267 | parse-json "^4.0.0" 1268 | to-vfile "^2.0.0" 1269 | trough "^1.0.0" 1270 | unist-util-inspect "^4.1.2" 1271 | vfile-reporter "^4.0.0" 1272 | vfile-statistics "^1.1.0" 1273 | x-is-function "^1.0.4" 1274 | x-is-string "^0.1.0" 1275 | xtend "^4.0.1" 1276 | 1277 | unified-lint-rule@^1.0.0: 1278 | version "1.0.3" 1279 | resolved "https://registry.yarnpkg.com/unified-lint-rule/-/unified-lint-rule-1.0.3.tgz#e302b0c4a7ac428c0980e049a500e59528001299" 1280 | dependencies: 1281 | wrapped "^1.0.1" 1282 | 1283 | unified-message-control@^1.0.0: 1284 | version "1.0.4" 1285 | resolved "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-1.0.4.tgz#a5e02c07112f78c6687b83a10392c2fba86dc09b" 1286 | dependencies: 1287 | trim "0.0.1" 1288 | unist-util-visit "^1.0.0" 1289 | vfile-location "^2.0.0" 1290 | 1291 | unified@^6.0.0: 1292 | version "6.2.0" 1293 | resolved "https://registry.yarnpkg.com/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba" 1294 | dependencies: 1295 | bail "^1.0.0" 1296 | extend "^3.0.0" 1297 | is-plain-obj "^1.1.0" 1298 | trough "^1.0.0" 1299 | vfile "^2.0.0" 1300 | x-is-string "^0.1.0" 1301 | 1302 | unist-util-generated@^1.1.0: 1303 | version "1.1.2" 1304 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.2.tgz#8b993f9239d8e560be6ee6e91c3f7b7208e5ce25" 1305 | 1306 | unist-util-inspect@^4.1.2: 1307 | version "4.1.3" 1308 | resolved "https://registry.yarnpkg.com/unist-util-inspect/-/unist-util-inspect-4.1.3.tgz#39470e6d77485db285966df78431219aa1287822" 1309 | dependencies: 1310 | is-empty "^1.0.0" 1311 | 1312 | unist-util-is@^2.1.2: 1313 | version "2.1.2" 1314 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.1.2.tgz#1193fa8f2bfbbb82150633f3a8d2eb9a1c1d55db" 1315 | 1316 | unist-util-position@^3.0.0: 1317 | version "3.0.1" 1318 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.0.1.tgz#8e220c24658239bf7ddafada5725ed0ea1ebbc26" 1319 | 1320 | unist-util-remove-position@^1.0.0: 1321 | version "1.1.2" 1322 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz#86b5dad104d0bbfbeb1db5f5c92f3570575c12cb" 1323 | dependencies: 1324 | unist-util-visit "^1.1.0" 1325 | 1326 | unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1, unist-util-stringify-position@^1.1.2: 1327 | version "1.1.2" 1328 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6" 1329 | 1330 | unist-util-visit-parents@^2.0.0: 1331 | version "2.0.1" 1332 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.0.1.tgz#63fffc8929027bee04bfef7d2cce474f71cb6217" 1333 | dependencies: 1334 | unist-util-is "^2.1.2" 1335 | 1336 | unist-util-visit@^1.0.0, unist-util-visit@^1.1.0, unist-util-visit@^1.1.1: 1337 | version "1.4.0" 1338 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.0.tgz#1cb763647186dc26f5e1df5db6bd1e48b3cc2fb1" 1339 | dependencies: 1340 | unist-util-visit-parents "^2.0.0" 1341 | 1342 | untildify@^2.1.0: 1343 | version "2.1.0" 1344 | resolved "https://registry.yarnpkg.com/untildify/-/untildify-2.1.0.tgz#17eb2807987f76952e9c0485fc311d06a826a2e0" 1345 | dependencies: 1346 | os-homedir "^1.0.0" 1347 | 1348 | util-deprecate@~1.0.1: 1349 | version "1.0.2" 1350 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1351 | 1352 | vfile-location@^2.0.0, vfile-location@^2.0.1: 1353 | version "2.0.3" 1354 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.3.tgz#083ba80e50968e8d420be49dd1ea9a992131df77" 1355 | 1356 | vfile-message@^1.0.0: 1357 | version "1.0.1" 1358 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.0.1.tgz#51a2ccd8a6b97a7980bb34efb9ebde9632e93677" 1359 | dependencies: 1360 | unist-util-stringify-position "^1.1.1" 1361 | 1362 | vfile-reporter@^4.0.0: 1363 | version "4.0.0" 1364 | resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-4.0.0.tgz#ea6f0ae1342f4841573985e05f941736f27de9da" 1365 | dependencies: 1366 | repeat-string "^1.5.0" 1367 | string-width "^1.0.0" 1368 | supports-color "^4.1.0" 1369 | unist-util-stringify-position "^1.0.0" 1370 | vfile-statistics "^1.1.0" 1371 | 1372 | vfile-statistics@^1.1.0: 1373 | version "1.1.1" 1374 | resolved "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-1.1.1.tgz#a22fd4eb844c9eaddd781ad3b3246db88375e2e3" 1375 | 1376 | vfile@^2.0.0: 1377 | version "2.3.0" 1378 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a" 1379 | dependencies: 1380 | is-buffer "^1.1.4" 1381 | replace-ext "1.0.0" 1382 | unist-util-stringify-position "^1.0.0" 1383 | vfile-message "^1.0.0" 1384 | 1385 | wide-align@^1.1.0: 1386 | version "1.1.3" 1387 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1388 | dependencies: 1389 | string-width "^1.0.2 || 2" 1390 | 1391 | wrapped@^1.0.1: 1392 | version "1.0.1" 1393 | resolved "https://registry.yarnpkg.com/wrapped/-/wrapped-1.0.1.tgz#c783d9d807b273e9b01e851680a938c87c907242" 1394 | dependencies: 1395 | co "3.1.0" 1396 | sliced "^1.0.1" 1397 | 1398 | wrappy@1: 1399 | version "1.0.2" 1400 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1401 | 1402 | x-is-function@^1.0.4: 1403 | version "1.0.4" 1404 | resolved "https://registry.yarnpkg.com/x-is-function/-/x-is-function-1.0.4.tgz#5d294dc3d268cbdd062580e0c5df77a391d1fa1e" 1405 | 1406 | x-is-string@^0.1.0: 1407 | version "0.1.0" 1408 | resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" 1409 | 1410 | xtend@^4.0.1: 1411 | version "4.0.1" 1412 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1413 | 1414 | yallist@^3.0.0, yallist@^3.0.2: 1415 | version "3.0.2" 1416 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1417 | --------------------------------------------------------------------------------