├── .gitignore ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── js ├── src │ ├── main │ │ └── kotlin │ │ │ └── ActualPlatform.kt │ └── test │ │ └── kotlin │ │ └── ActualPlatformTest.kt ├── package.json ├── build.gradle └── package-lock.json ├── jvm ├── src │ ├── main │ │ └── kotlin │ │ │ └── ActualPlatform.kt │ └── test │ │ └── kotlin │ │ └── ActualPlatformTest.kt └── build.gradle ├── settings.gradle ├── native ├── src │ ├── main │ │ └── kotlin │ │ │ └── ActualPlatform.kt │ └── test │ │ └── kotlin │ │ └── ActualPlatformTest.kt └── build.gradle ├── common ├── src │ ├── main │ │ └── kotlin │ │ │ ├── ExpectPlatform.kt │ │ │ └── Common.kt │ └── test │ │ └── kotlin │ │ └── CommonTest.kt └── build.gradle ├── gradle.properties ├── gradlew.bat ├── gradlew └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | node_modules 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KotlinMultiplatformPlayground 2 | 3 | Stub for Kotlin Multiplatform project. 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/KotlinMultiplatformPlayground/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /js/src/main/kotlin/ActualPlatform.kt: -------------------------------------------------------------------------------- 1 | 2 | actual class Platform actual constructor() { 3 | actual fun platform(): String = "platform-js" 4 | } 5 | -------------------------------------------------------------------------------- /jvm/src/main/kotlin/ActualPlatform.kt: -------------------------------------------------------------------------------- 1 | 2 | actual class Platform actual constructor() { 3 | actual fun platform(): String = "platform-jvm" 4 | } 5 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'KotlinMultiplatformPlayground' 2 | 3 | include 'common' 4 | include 'jvm' 5 | include 'js' 6 | include 'native' 7 | -------------------------------------------------------------------------------- /native/src/main/kotlin/ActualPlatform.kt: -------------------------------------------------------------------------------- 1 | 2 | actual class Platform actual constructor() { 3 | actual fun platform(): String = "platform-native" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/kotlin/ExpectPlatform.kt: -------------------------------------------------------------------------------- 1 | 2 | // This class is expected to have platform-specific impl 3 | expect class Platform() { 4 | fun platform(): String 5 | } -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin_version = 1.2.20 2 | 3 | gradle_node_version = 1.2.0 4 | node_version = 8.9.3 5 | npm_version = 5.5.1 6 | 7 | kotlin.incremental.multiplatform=true 8 | 9 | kotlin_native_version = 0.6 -------------------------------------------------------------------------------- /js/src/test/kotlin/ActualPlatformTest.kt: -------------------------------------------------------------------------------- 1 | import kotlin.test.* 2 | 3 | class ActualPlatformTest { 4 | @Test 5 | fun testPlatform() { 6 | assertEquals("platform-js", Platform().platform()) 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /jvm/src/test/kotlin/ActualPlatformTest.kt: -------------------------------------------------------------------------------- 1 | import kotlin.test.* 2 | 3 | class ActualPlatformTest { 4 | @Test 5 | fun testPlatform() { 6 | assertEquals("platform-jvm", Platform().platform()) 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /common/src/main/kotlin/Common.kt: -------------------------------------------------------------------------------- 1 | 2 | // This code is common across all backends 3 | class Common { 4 | fun common(): String = "common" 5 | fun platform(): String = Platform().platform() // delegates to platform-specific 6 | } -------------------------------------------------------------------------------- /native/src/test/kotlin/ActualPlatformTest.kt: -------------------------------------------------------------------------------- 1 | import kotlin.test.* 2 | 3 | class ActualPlatformTest { 4 | @Test 5 | fun testPlatform() { 6 | assertEquals("platform-native", Platform().platform()) 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jan 24 17:11:50 MSK 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-all.zip 7 | -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'kotlin-platform-common' 2 | 3 | dependencies { 4 | compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version" 5 | testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version" 6 | testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version" 7 | } 8 | -------------------------------------------------------------------------------- /common/src/test/kotlin/CommonTest.kt: -------------------------------------------------------------------------------- 1 | import kotlin.test.* 2 | 3 | class CommonTest { 4 | @Test 5 | fun testCommon() { 6 | assertEquals("common", Common().common()) 7 | } 8 | 9 | @Test 10 | fun testPlatform() { 11 | assertTrue(Common().platform().startsWith("platform-")) 12 | } 13 | } -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KotlinMultiplatformPlayground-js", 3 | "description": "KotlinMultiplatformPlayground-js", 4 | "license": "Apache-2.0", 5 | "repository": "https://github.com/elizarov/KotlinMultiplatformPlayground", 6 | "devDependencies": { 7 | "mocha": "^6.1.4" 8 | }, 9 | "dependencies": { 10 | "source-map-support": "^0.5.12" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /native/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'konan' 2 | 3 | konanArtifacts { 4 | library('native') { 5 | enableMultiplatform true 6 | } 7 | 8 | program('native-test') { 9 | srcDir 'src/test/kotlin' 10 | commonSourceSet 'test' 11 | libraries { 12 | artifact 'native' 13 | } 14 | extraOpts '-tr' 15 | } 16 | } 17 | 18 | dependencies { 19 | expectedBy project(':common') 20 | } 21 | 22 | task test(dependsOn: run) -------------------------------------------------------------------------------- /jvm/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'kotlin-platform-jvm' 2 | 3 | dependencies { 4 | expectedBy project(':common') 5 | compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" 6 | testCompile "junit:junit:4.12" 7 | testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" 8 | testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version" 9 | } 10 | 11 | tasks.withType(compileKotlin.getClass()) { 12 | kotlinOptions { 13 | jvmTarget = "1.8" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /js/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'kotlin-platform-js' 2 | apply plugin: 'com.moowork.node' 3 | 4 | dependencies { 5 | expectedBy project(':common') 6 | compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version" 7 | testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version" 8 | } 9 | 10 | tasks.withType(compileKotlin2Js.getClass()) { 11 | kotlinOptions { 12 | moduleKind = "umd" 13 | sourceMap = true 14 | metaInfo = true 15 | } 16 | } 17 | 18 | task populateNodeModules(type: Copy, dependsOn: compileKotlin2Js) { 19 | from compileKotlin2Js.destinationDir 20 | into "${buildDir}/node_modules" 21 | 22 | afterEvaluate { 23 | configurations.testCompile.each { 24 | from zipTree(it.absolutePath).matching { 25 | include '*.js' 26 | include '*.js.map' 27 | } 28 | } 29 | } 30 | } 31 | 32 | node { 33 | version = "$node_version" 34 | npmVersion = "$npm_version" 35 | download = true 36 | } 37 | 38 | task installDependencies(type: NpmTask) { 39 | args = ['install', 'mocha', 'source-map-support'] 40 | if (project.hasProperty("teamcity")) args += 'mocha-teamcity-reporter' 41 | } 42 | 43 | task prepareMocha(dependsOn: [compileTestKotlin2Js, populateNodeModules, installDependencies]) 44 | 45 | task runMocha(type: NodeTask, dependsOn: prepareMocha) { 46 | script = file('node_modules/mocha/bin/mocha') 47 | args = [compileTestKotlin2Js.outputFile, '--require=source-map-support/register'] 48 | if (project.hasProperty("teamcity")) args += '--reporter=mocha-teamcity-reporter' 49 | } 50 | 51 | test.dependsOn runMocha -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KotlinMultiplatformPlayground-js", 3 | "requires": true, 4 | "lockfileVersion": 1, 5 | "dependencies": { 6 | "ansi-colors": { 7 | "version": "3.2.3", 8 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", 9 | "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", 10 | "dev": true 11 | }, 12 | "ansi-regex": { 13 | "version": "3.0.0", 14 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 15 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 16 | "dev": true 17 | }, 18 | "ansi-styles": { 19 | "version": "3.2.1", 20 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 21 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 22 | "dev": true, 23 | "requires": { 24 | "color-convert": "1.9.3" 25 | } 26 | }, 27 | "argparse": { 28 | "version": "1.0.10", 29 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 30 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 31 | "dev": true, 32 | "requires": { 33 | "sprintf-js": "1.0.3" 34 | } 35 | }, 36 | "balanced-match": { 37 | "version": "1.0.0", 38 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 39 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 40 | "dev": true 41 | }, 42 | "brace-expansion": { 43 | "version": "1.1.11", 44 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 45 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 46 | "dev": true, 47 | "requires": { 48 | "balanced-match": "1.0.0", 49 | "concat-map": "0.0.1" 50 | } 51 | }, 52 | "browser-stdout": { 53 | "version": "1.3.1", 54 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 55 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 56 | "dev": true 57 | }, 58 | "buffer-from": { 59 | "version": "1.1.1", 60 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", 61 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" 62 | }, 63 | "camelcase": { 64 | "version": "5.3.1", 65 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 66 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 67 | "dev": true 68 | }, 69 | "chalk": { 70 | "version": "2.4.2", 71 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 72 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 73 | "dev": true, 74 | "requires": { 75 | "ansi-styles": "3.2.1", 76 | "escape-string-regexp": "1.0.5", 77 | "supports-color": "5.5.0" 78 | }, 79 | "dependencies": { 80 | "supports-color": { 81 | "version": "5.5.0", 82 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 83 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 84 | "dev": true, 85 | "requires": { 86 | "has-flag": "3.0.0" 87 | } 88 | } 89 | } 90 | }, 91 | "cliui": { 92 | "version": "4.1.0", 93 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", 94 | "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", 95 | "dev": true, 96 | "requires": { 97 | "string-width": "2.1.1", 98 | "strip-ansi": "4.0.0", 99 | "wrap-ansi": "2.1.0" 100 | } 101 | }, 102 | "code-point-at": { 103 | "version": "1.1.0", 104 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 105 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", 106 | "dev": true 107 | }, 108 | "color-convert": { 109 | "version": "1.9.3", 110 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 111 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 112 | "dev": true, 113 | "requires": { 114 | "color-name": "1.1.3" 115 | } 116 | }, 117 | "color-name": { 118 | "version": "1.1.3", 119 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 120 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 121 | "dev": true 122 | }, 123 | "concat-map": { 124 | "version": "0.0.1", 125 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 126 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 127 | "dev": true 128 | }, 129 | "cross-spawn": { 130 | "version": "6.0.5", 131 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 132 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 133 | "dev": true, 134 | "requires": { 135 | "nice-try": "1.0.5", 136 | "path-key": "2.0.1", 137 | "semver": "5.7.0", 138 | "shebang-command": "1.2.0", 139 | "which": "1.3.1" 140 | } 141 | }, 142 | "debug": { 143 | "version": "3.2.6", 144 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 145 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 146 | "dev": true, 147 | "requires": { 148 | "ms": "2.1.1" 149 | } 150 | }, 151 | "decamelize": { 152 | "version": "1.2.0", 153 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 154 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", 155 | "dev": true 156 | }, 157 | "define-properties": { 158 | "version": "1.1.3", 159 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 160 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 161 | "dev": true, 162 | "requires": { 163 | "object-keys": "1.1.1" 164 | } 165 | }, 166 | "diff": { 167 | "version": "3.5.0", 168 | "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", 169 | "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", 170 | "dev": true 171 | }, 172 | "emoji-regex": { 173 | "version": "7.0.3", 174 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 175 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 176 | "dev": true 177 | }, 178 | "end-of-stream": { 179 | "version": "1.4.1", 180 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", 181 | "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", 182 | "dev": true, 183 | "requires": { 184 | "once": "1.4.0" 185 | } 186 | }, 187 | "es-abstract": { 188 | "version": "1.13.0", 189 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", 190 | "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", 191 | "dev": true, 192 | "requires": { 193 | "es-to-primitive": "1.2.0", 194 | "function-bind": "1.1.1", 195 | "has": "1.0.3", 196 | "is-callable": "1.1.4", 197 | "is-regex": "1.0.4", 198 | "object-keys": "1.1.1" 199 | } 200 | }, 201 | "es-to-primitive": { 202 | "version": "1.2.0", 203 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", 204 | "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", 205 | "dev": true, 206 | "requires": { 207 | "is-callable": "1.1.4", 208 | "is-date-object": "1.0.1", 209 | "is-symbol": "1.0.2" 210 | } 211 | }, 212 | "escape-string-regexp": { 213 | "version": "1.0.5", 214 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 215 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 216 | "dev": true 217 | }, 218 | "esprima": { 219 | "version": "4.0.1", 220 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 221 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 222 | "dev": true 223 | }, 224 | "execa": { 225 | "version": "1.0.0", 226 | "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", 227 | "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", 228 | "dev": true, 229 | "requires": { 230 | "cross-spawn": "6.0.5", 231 | "get-stream": "4.1.0", 232 | "is-stream": "1.1.0", 233 | "npm-run-path": "2.0.2", 234 | "p-finally": "1.0.0", 235 | "signal-exit": "3.0.2", 236 | "strip-eof": "1.0.0" 237 | } 238 | }, 239 | "find-up": { 240 | "version": "3.0.0", 241 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 242 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 243 | "dev": true, 244 | "requires": { 245 | "locate-path": "3.0.0" 246 | } 247 | }, 248 | "flat": { 249 | "version": "4.1.0", 250 | "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", 251 | "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", 252 | "dev": true, 253 | "requires": { 254 | "is-buffer": "2.0.3" 255 | } 256 | }, 257 | "fs.realpath": { 258 | "version": "1.0.0", 259 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 260 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 261 | "dev": true 262 | }, 263 | "function-bind": { 264 | "version": "1.1.1", 265 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 266 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 267 | "dev": true 268 | }, 269 | "get-caller-file": { 270 | "version": "2.0.5", 271 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 272 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 273 | "dev": true 274 | }, 275 | "get-stream": { 276 | "version": "4.1.0", 277 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", 278 | "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", 279 | "dev": true, 280 | "requires": { 281 | "pump": "3.0.0" 282 | } 283 | }, 284 | "glob": { 285 | "version": "7.1.3", 286 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", 287 | "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", 288 | "dev": true, 289 | "requires": { 290 | "fs.realpath": "1.0.0", 291 | "inflight": "1.0.6", 292 | "inherits": "2.0.4", 293 | "minimatch": "3.0.4", 294 | "once": "1.4.0", 295 | "path-is-absolute": "1.0.1" 296 | } 297 | }, 298 | "growl": { 299 | "version": "1.10.5", 300 | "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", 301 | "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", 302 | "dev": true 303 | }, 304 | "has": { 305 | "version": "1.0.3", 306 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 307 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 308 | "dev": true, 309 | "requires": { 310 | "function-bind": "1.1.1" 311 | } 312 | }, 313 | "has-flag": { 314 | "version": "3.0.0", 315 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 316 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 317 | "dev": true 318 | }, 319 | "has-symbols": { 320 | "version": "1.0.0", 321 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", 322 | "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", 323 | "dev": true 324 | }, 325 | "he": { 326 | "version": "1.2.0", 327 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 328 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 329 | "dev": true 330 | }, 331 | "inflight": { 332 | "version": "1.0.6", 333 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 334 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 335 | "dev": true, 336 | "requires": { 337 | "once": "1.4.0", 338 | "wrappy": "1.0.2" 339 | } 340 | }, 341 | "inherits": { 342 | "version": "2.0.4", 343 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 344 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 345 | "dev": true 346 | }, 347 | "invert-kv": { 348 | "version": "2.0.0", 349 | "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", 350 | "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", 351 | "dev": true 352 | }, 353 | "is-buffer": { 354 | "version": "2.0.3", 355 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz", 356 | "integrity": "sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==", 357 | "dev": true 358 | }, 359 | "is-callable": { 360 | "version": "1.1.4", 361 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", 362 | "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", 363 | "dev": true 364 | }, 365 | "is-date-object": { 366 | "version": "1.0.1", 367 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", 368 | "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", 369 | "dev": true 370 | }, 371 | "is-fullwidth-code-point": { 372 | "version": "2.0.0", 373 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 374 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 375 | "dev": true 376 | }, 377 | "is-regex": { 378 | "version": "1.0.4", 379 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", 380 | "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", 381 | "dev": true, 382 | "requires": { 383 | "has": "1.0.3" 384 | } 385 | }, 386 | "is-stream": { 387 | "version": "1.1.0", 388 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 389 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", 390 | "dev": true 391 | }, 392 | "is-symbol": { 393 | "version": "1.0.2", 394 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", 395 | "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", 396 | "dev": true, 397 | "requires": { 398 | "has-symbols": "1.0.0" 399 | } 400 | }, 401 | "isexe": { 402 | "version": "2.0.0", 403 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 404 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 405 | "dev": true 406 | }, 407 | "js-yaml": { 408 | "version": "3.13.1", 409 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", 410 | "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", 411 | "dev": true, 412 | "requires": { 413 | "argparse": "1.0.10", 414 | "esprima": "4.0.1" 415 | } 416 | }, 417 | "lcid": { 418 | "version": "2.0.0", 419 | "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", 420 | "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", 421 | "dev": true, 422 | "requires": { 423 | "invert-kv": "2.0.0" 424 | } 425 | }, 426 | "locate-path": { 427 | "version": "3.0.0", 428 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 429 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 430 | "dev": true, 431 | "requires": { 432 | "p-locate": "3.0.0", 433 | "path-exists": "3.0.0" 434 | } 435 | }, 436 | "lodash": { 437 | "version": "4.17.11", 438 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", 439 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==", 440 | "dev": true 441 | }, 442 | "log-symbols": { 443 | "version": "2.2.0", 444 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", 445 | "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", 446 | "dev": true, 447 | "requires": { 448 | "chalk": "2.4.2" 449 | } 450 | }, 451 | "map-age-cleaner": { 452 | "version": "0.1.3", 453 | "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", 454 | "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", 455 | "dev": true, 456 | "requires": { 457 | "p-defer": "1.0.0" 458 | } 459 | }, 460 | "mem": { 461 | "version": "4.3.0", 462 | "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", 463 | "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", 464 | "dev": true, 465 | "requires": { 466 | "map-age-cleaner": "0.1.3", 467 | "mimic-fn": "2.1.0", 468 | "p-is-promise": "2.1.0" 469 | } 470 | }, 471 | "mimic-fn": { 472 | "version": "2.1.0", 473 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 474 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 475 | "dev": true 476 | }, 477 | "minimatch": { 478 | "version": "3.0.4", 479 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 480 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 481 | "dev": true, 482 | "requires": { 483 | "brace-expansion": "1.1.11" 484 | } 485 | }, 486 | "minimist": { 487 | "version": "0.0.8", 488 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", 489 | "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", 490 | "dev": true 491 | }, 492 | "mkdirp": { 493 | "version": "0.5.1", 494 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", 495 | "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", 496 | "dev": true, 497 | "requires": { 498 | "minimist": "0.0.8" 499 | } 500 | }, 501 | "mocha": { 502 | "version": "6.1.4", 503 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz", 504 | "integrity": "sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg==", 505 | "dev": true, 506 | "requires": { 507 | "ansi-colors": "3.2.3", 508 | "browser-stdout": "1.3.1", 509 | "debug": "3.2.6", 510 | "diff": "3.5.0", 511 | "escape-string-regexp": "1.0.5", 512 | "find-up": "3.0.0", 513 | "glob": "7.1.3", 514 | "growl": "1.10.5", 515 | "he": "1.2.0", 516 | "js-yaml": "3.13.1", 517 | "log-symbols": "2.2.0", 518 | "minimatch": "3.0.4", 519 | "mkdirp": "0.5.1", 520 | "ms": "2.1.1", 521 | "node-environment-flags": "1.0.5", 522 | "object.assign": "4.1.0", 523 | "strip-json-comments": "2.0.1", 524 | "supports-color": "6.0.0", 525 | "which": "1.3.1", 526 | "wide-align": "1.1.3", 527 | "yargs": "13.2.2", 528 | "yargs-parser": "13.0.0", 529 | "yargs-unparser": "1.5.0" 530 | } 531 | }, 532 | "ms": { 533 | "version": "2.1.1", 534 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 535 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", 536 | "dev": true 537 | }, 538 | "nice-try": { 539 | "version": "1.0.5", 540 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 541 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 542 | "dev": true 543 | }, 544 | "node-environment-flags": { 545 | "version": "1.0.5", 546 | "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", 547 | "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", 548 | "dev": true, 549 | "requires": { 550 | "object.getownpropertydescriptors": "2.0.3", 551 | "semver": "5.7.0" 552 | } 553 | }, 554 | "npm-run-path": { 555 | "version": "2.0.2", 556 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 557 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 558 | "dev": true, 559 | "requires": { 560 | "path-key": "2.0.1" 561 | } 562 | }, 563 | "number-is-nan": { 564 | "version": "1.0.1", 565 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 566 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", 567 | "dev": true 568 | }, 569 | "object-keys": { 570 | "version": "1.1.1", 571 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 572 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 573 | "dev": true 574 | }, 575 | "object.assign": { 576 | "version": "4.1.0", 577 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", 578 | "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", 579 | "dev": true, 580 | "requires": { 581 | "define-properties": "1.1.3", 582 | "function-bind": "1.1.1", 583 | "has-symbols": "1.0.0", 584 | "object-keys": "1.1.1" 585 | } 586 | }, 587 | "object.getownpropertydescriptors": { 588 | "version": "2.0.3", 589 | "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", 590 | "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", 591 | "dev": true, 592 | "requires": { 593 | "define-properties": "1.1.3", 594 | "es-abstract": "1.13.0" 595 | } 596 | }, 597 | "once": { 598 | "version": "1.4.0", 599 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 600 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 601 | "dev": true, 602 | "requires": { 603 | "wrappy": "1.0.2" 604 | } 605 | }, 606 | "os-locale": { 607 | "version": "3.1.0", 608 | "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", 609 | "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", 610 | "dev": true, 611 | "requires": { 612 | "execa": "1.0.0", 613 | "lcid": "2.0.0", 614 | "mem": "4.3.0" 615 | } 616 | }, 617 | "p-defer": { 618 | "version": "1.0.0", 619 | "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", 620 | "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", 621 | "dev": true 622 | }, 623 | "p-finally": { 624 | "version": "1.0.0", 625 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 626 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", 627 | "dev": true 628 | }, 629 | "p-is-promise": { 630 | "version": "2.1.0", 631 | "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", 632 | "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", 633 | "dev": true 634 | }, 635 | "p-limit": { 636 | "version": "2.2.0", 637 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", 638 | "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", 639 | "dev": true, 640 | "requires": { 641 | "p-try": "2.2.0" 642 | } 643 | }, 644 | "p-locate": { 645 | "version": "3.0.0", 646 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 647 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 648 | "dev": true, 649 | "requires": { 650 | "p-limit": "2.2.0" 651 | } 652 | }, 653 | "p-try": { 654 | "version": "2.2.0", 655 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 656 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 657 | "dev": true 658 | }, 659 | "path-exists": { 660 | "version": "3.0.0", 661 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 662 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 663 | "dev": true 664 | }, 665 | "path-is-absolute": { 666 | "version": "1.0.1", 667 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 668 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 669 | "dev": true 670 | }, 671 | "path-key": { 672 | "version": "2.0.1", 673 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 674 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", 675 | "dev": true 676 | }, 677 | "pump": { 678 | "version": "3.0.0", 679 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", 680 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", 681 | "dev": true, 682 | "requires": { 683 | "end-of-stream": "1.4.1", 684 | "once": "1.4.0" 685 | } 686 | }, 687 | "require-directory": { 688 | "version": "2.1.1", 689 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 690 | "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", 691 | "dev": true 692 | }, 693 | "require-main-filename": { 694 | "version": "2.0.0", 695 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", 696 | "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", 697 | "dev": true 698 | }, 699 | "semver": { 700 | "version": "5.7.0", 701 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", 702 | "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", 703 | "dev": true 704 | }, 705 | "set-blocking": { 706 | "version": "2.0.0", 707 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 708 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", 709 | "dev": true 710 | }, 711 | "shebang-command": { 712 | "version": "1.2.0", 713 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 714 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 715 | "dev": true, 716 | "requires": { 717 | "shebang-regex": "1.0.0" 718 | } 719 | }, 720 | "shebang-regex": { 721 | "version": "1.0.0", 722 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 723 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", 724 | "dev": true 725 | }, 726 | "signal-exit": { 727 | "version": "3.0.2", 728 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 729 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", 730 | "dev": true 731 | }, 732 | "source-map": { 733 | "version": "0.6.1", 734 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 735 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" 736 | }, 737 | "source-map-support": { 738 | "version": "0.5.12", 739 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", 740 | "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", 741 | "requires": { 742 | "buffer-from": "1.1.1", 743 | "source-map": "0.6.1" 744 | } 745 | }, 746 | "sprintf-js": { 747 | "version": "1.0.3", 748 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 749 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", 750 | "dev": true 751 | }, 752 | "string-width": { 753 | "version": "2.1.1", 754 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 755 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 756 | "dev": true, 757 | "requires": { 758 | "is-fullwidth-code-point": "2.0.0", 759 | "strip-ansi": "4.0.0" 760 | } 761 | }, 762 | "strip-ansi": { 763 | "version": "4.0.0", 764 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 765 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 766 | "dev": true, 767 | "requires": { 768 | "ansi-regex": "3.0.0" 769 | } 770 | }, 771 | "strip-eof": { 772 | "version": "1.0.0", 773 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 774 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", 775 | "dev": true 776 | }, 777 | "strip-json-comments": { 778 | "version": "2.0.1", 779 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 780 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 781 | "dev": true 782 | }, 783 | "supports-color": { 784 | "version": "6.0.0", 785 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", 786 | "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", 787 | "dev": true, 788 | "requires": { 789 | "has-flag": "3.0.0" 790 | } 791 | }, 792 | "which": { 793 | "version": "1.3.1", 794 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 795 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 796 | "dev": true, 797 | "requires": { 798 | "isexe": "2.0.0" 799 | } 800 | }, 801 | "which-module": { 802 | "version": "2.0.0", 803 | "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", 804 | "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", 805 | "dev": true 806 | }, 807 | "wide-align": { 808 | "version": "1.1.3", 809 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", 810 | "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", 811 | "dev": true, 812 | "requires": { 813 | "string-width": "2.1.1" 814 | } 815 | }, 816 | "wrap-ansi": { 817 | "version": "2.1.0", 818 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", 819 | "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", 820 | "dev": true, 821 | "requires": { 822 | "string-width": "1.0.2", 823 | "strip-ansi": "3.0.1" 824 | }, 825 | "dependencies": { 826 | "ansi-regex": { 827 | "version": "2.1.1", 828 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 829 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", 830 | "dev": true 831 | }, 832 | "is-fullwidth-code-point": { 833 | "version": "1.0.0", 834 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 835 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 836 | "dev": true, 837 | "requires": { 838 | "number-is-nan": "1.0.1" 839 | } 840 | }, 841 | "string-width": { 842 | "version": "1.0.2", 843 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 844 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 845 | "dev": true, 846 | "requires": { 847 | "code-point-at": "1.1.0", 848 | "is-fullwidth-code-point": "1.0.0", 849 | "strip-ansi": "3.0.1" 850 | } 851 | }, 852 | "strip-ansi": { 853 | "version": "3.0.1", 854 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 855 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 856 | "dev": true, 857 | "requires": { 858 | "ansi-regex": "2.1.1" 859 | } 860 | } 861 | } 862 | }, 863 | "wrappy": { 864 | "version": "1.0.2", 865 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 866 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 867 | "dev": true 868 | }, 869 | "y18n": { 870 | "version": "4.0.0", 871 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", 872 | "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", 873 | "dev": true 874 | }, 875 | "yargs": { 876 | "version": "13.2.2", 877 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz", 878 | "integrity": "sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA==", 879 | "dev": true, 880 | "requires": { 881 | "cliui": "4.1.0", 882 | "find-up": "3.0.0", 883 | "get-caller-file": "2.0.5", 884 | "os-locale": "3.1.0", 885 | "require-directory": "2.1.1", 886 | "require-main-filename": "2.0.0", 887 | "set-blocking": "2.0.0", 888 | "string-width": "3.1.0", 889 | "which-module": "2.0.0", 890 | "y18n": "4.0.0", 891 | "yargs-parser": "13.0.0" 892 | }, 893 | "dependencies": { 894 | "ansi-regex": { 895 | "version": "4.1.0", 896 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 897 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 898 | "dev": true 899 | }, 900 | "string-width": { 901 | "version": "3.1.0", 902 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 903 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 904 | "dev": true, 905 | "requires": { 906 | "emoji-regex": "7.0.3", 907 | "is-fullwidth-code-point": "2.0.0", 908 | "strip-ansi": "5.2.0" 909 | } 910 | }, 911 | "strip-ansi": { 912 | "version": "5.2.0", 913 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 914 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 915 | "dev": true, 916 | "requires": { 917 | "ansi-regex": "4.1.0" 918 | } 919 | } 920 | } 921 | }, 922 | "yargs-parser": { 923 | "version": "13.0.0", 924 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz", 925 | "integrity": "sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw==", 926 | "dev": true, 927 | "requires": { 928 | "camelcase": "5.3.1", 929 | "decamelize": "1.2.0" 930 | } 931 | }, 932 | "yargs-unparser": { 933 | "version": "1.5.0", 934 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz", 935 | "integrity": "sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw==", 936 | "dev": true, 937 | "requires": { 938 | "flat": "4.1.0", 939 | "lodash": "4.17.11", 940 | "yargs": "12.0.5" 941 | }, 942 | "dependencies": { 943 | "get-caller-file": { 944 | "version": "1.0.3", 945 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", 946 | "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", 947 | "dev": true 948 | }, 949 | "require-main-filename": { 950 | "version": "1.0.1", 951 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", 952 | "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", 953 | "dev": true 954 | }, 955 | "yargs": { 956 | "version": "12.0.5", 957 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", 958 | "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", 959 | "dev": true, 960 | "requires": { 961 | "cliui": "4.1.0", 962 | "decamelize": "1.2.0", 963 | "find-up": "3.0.0", 964 | "get-caller-file": "1.0.3", 965 | "os-locale": "3.1.0", 966 | "require-directory": "2.1.1", 967 | "require-main-filename": "1.0.1", 968 | "set-blocking": "2.0.0", 969 | "string-width": "2.1.1", 970 | "which-module": "2.0.0", 971 | "y18n": "4.0.0", 972 | "yargs-parser": "11.1.1" 973 | } 974 | }, 975 | "yargs-parser": { 976 | "version": "11.1.1", 977 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", 978 | "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", 979 | "dev": true, 980 | "requires": { 981 | "camelcase": "5.3.1", 982 | "decamelize": "1.2.0" 983 | } 984 | } 985 | } 986 | } 987 | } 988 | } 989 | --------------------------------------------------------------------------------