nyc 13.0.0 → 13.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +58 -0
- package/README.md +15 -18
- package/bin/nyc.js +3 -0
- package/index.js +28 -29
- package/lib/commands/instrument.js +1 -1
- package/lib/commands/merge.js +8 -1
- package/lib/commands/report.js +45 -1
- package/lib/config-util.js +20 -5
- package/lib/hash.js +6 -12
- package/lib/instrumenters/istanbul.js +11 -14
- package/lib/instrumenters/noop.js +5 -5
- package/node_modules/ansi-regex/package.json +2 -2
- package/node_modules/append-transform/package.json +2 -2
- package/node_modules/archy/package.json +2 -2
- package/node_modules/arrify/package.json +2 -3
- package/node_modules/async/CHANGELOG.md +206 -59
- package/node_modules/async/LICENSE +1 -1
- package/node_modules/async/README.md +35 -1856
- package/node_modules/async/all.js +50 -0
- package/node_modules/async/allLimit.js +42 -0
- package/node_modules/async/allSeries.js +37 -0
- package/node_modules/async/any.js +52 -0
- package/node_modules/async/anyLimit.js +43 -0
- package/node_modules/async/anySeries.js +38 -0
- package/node_modules/async/apply.js +68 -0
- package/node_modules/async/applyEach.js +51 -0
- package/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/async/asyncify.js +110 -0
- package/node_modules/async/auto.js +289 -0
- package/node_modules/async/autoInject.js +170 -0
- package/node_modules/async/bower.json +17 -0
- package/node_modules/async/cargo.js +94 -0
- package/node_modules/async/compose.js +58 -0
- package/node_modules/async/concat.js +43 -0
- package/node_modules/async/concatLimit.js +65 -0
- package/node_modules/async/concatSeries.js +36 -0
- package/node_modules/async/constant.js +66 -0
- package/node_modules/async/detect.js +61 -0
- package/node_modules/async/detectLimit.js +48 -0
- package/node_modules/async/detectSeries.js +38 -0
- package/node_modules/async/dir.js +43 -0
- package/node_modules/async/dist/async.js +5418 -1074
- package/node_modules/async/dist/async.min.js +2 -2
- package/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/async/doDuring.js +66 -0
- package/node_modules/async/doUntil.js +39 -0
- package/node_modules/async/doWhilst.js +59 -0
- package/node_modules/async/during.js +76 -0
- package/node_modules/async/each.js +82 -0
- package/node_modules/async/eachLimit.js +45 -0
- package/node_modules/async/eachOf.js +111 -0
- package/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/async/eachSeries.js +37 -0
- package/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/async/every.js +50 -0
- package/node_modules/async/everyLimit.js +42 -0
- package/node_modules/async/everySeries.js +37 -0
- package/node_modules/async/filter.js +45 -0
- package/node_modules/async/filterLimit.js +37 -0
- package/node_modules/async/filterSeries.js +35 -0
- package/node_modules/async/find.js +61 -0
- package/node_modules/async/findLimit.js +48 -0
- package/node_modules/async/findSeries.js +38 -0
- package/node_modules/async/foldl.js +78 -0
- package/node_modules/async/foldr.js +44 -0
- package/node_modules/async/forEach.js +82 -0
- package/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/async/forEachOf.js +111 -0
- package/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/async/forever.js +65 -0
- package/node_modules/async/groupBy.js +54 -0
- package/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/async/index.js +582 -0
- package/node_modules/async/inject.js +78 -0
- package/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/async/internal/filter.js +75 -0
- package/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/async/internal/map.js +35 -0
- package/node_modules/async/internal/notId.js +10 -0
- package/node_modules/async/internal/once.js +15 -0
- package/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/async/internal/queue.js +204 -0
- package/node_modules/async/internal/reject.js +21 -0
- package/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/async/internal/slice.js +16 -0
- package/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/async/log.js +41 -0
- package/node_modules/async/map.js +54 -0
- package/node_modules/async/mapLimit.js +37 -0
- package/node_modules/async/mapSeries.js +36 -0
- package/node_modules/async/mapValues.js +63 -0
- package/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/async/memoize.js +101 -0
- package/node_modules/async/nextTick.js +51 -0
- package/node_modules/async/package.json +64 -70
- package/node_modules/async/parallel.js +90 -0
- package/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/async/queue.js +130 -0
- package/node_modules/async/race.js +70 -0
- package/node_modules/async/reduce.js +78 -0
- package/node_modules/async/reduceRight.js +44 -0
- package/node_modules/async/reflect.js +81 -0
- package/node_modules/async/reflectAll.js +105 -0
- package/node_modules/async/reject.js +45 -0
- package/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/async/retry.js +156 -0
- package/node_modules/async/retryable.js +65 -0
- package/node_modules/async/select.js +45 -0
- package/node_modules/async/selectLimit.js +37 -0
- package/node_modules/async/selectSeries.js +35 -0
- package/node_modules/async/seq.js +91 -0
- package/node_modules/async/series.js +85 -0
- package/node_modules/async/setImmediate.js +45 -0
- package/node_modules/async/some.js +52 -0
- package/node_modules/async/someLimit.js +43 -0
- package/node_modules/async/someSeries.js +38 -0
- package/node_modules/async/sortBy.js +91 -0
- package/node_modules/async/timeout.js +89 -0
- package/node_modules/async/times.js +50 -0
- package/node_modules/async/timesLimit.js +42 -0
- package/node_modules/async/timesSeries.js +32 -0
- package/node_modules/async/transform.js +87 -0
- package/node_modules/async/tryEach.js +81 -0
- package/node_modules/async/unmemoize.js +25 -0
- package/node_modules/async/until.js +41 -0
- package/node_modules/async/waterfall.js +113 -0
- package/node_modules/async/whilst.js +72 -0
- package/node_modules/async/wrapSync.js +110 -0
- package/node_modules/balanced-match/package.json +2 -2
- package/node_modules/brace-expansion/package.json +2 -2
- package/node_modules/caching-transform/index.js +43 -26
- package/node_modules/caching-transform/package.json +35 -40
- package/node_modules/caching-transform/readme.md +57 -42
- package/node_modules/camelcase/index.js +63 -19
- package/node_modules/camelcase/license +4 -16
- package/node_modules/camelcase/package.json +22 -20
- package/node_modules/camelcase/readme.md +45 -20
- package/node_modules/{yargs/node_modules/cliui → cliui}/CHANGELOG.md +0 -0
- package/node_modules/cliui/README.md +21 -10
- package/node_modules/cliui/index.js +116 -65
- package/node_modules/cliui/package.json +36 -29
- package/node_modules/code-point-at/package.json +2 -2
- package/node_modules/commander/CHANGELOG.md +382 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +425 -0
- package/node_modules/commander/index.js +1236 -0
- package/node_modules/commander/package.json +73 -0
- package/node_modules/commander/typings/index.d.ts +309 -0
- package/node_modules/commondir/package.json +2 -2
- package/node_modules/concat-map/package.json +2 -2
- package/node_modules/convert-source-map/README.md +2 -2
- package/node_modules/convert-source-map/index.js +3 -2
- package/node_modules/convert-source-map/package.json +15 -13
- package/node_modules/cross-spawn/package.json +2 -2
- package/node_modules/debug/README.md +89 -2
- package/node_modules/debug/dist/debug.js +912 -0
- package/node_modules/debug/package.json +41 -23
- package/node_modules/debug/src/browser.js +185 -116
- package/node_modules/debug/src/common.js +266 -0
- package/node_modules/debug/src/index.js +4 -4
- package/node_modules/debug/src/node.js +168 -97
- package/node_modules/decamelize/package.json +4 -4
- package/node_modules/default-require-extensions/package.json +2 -2
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +52 -0
- package/node_modules/end-of-stream/index.js +87 -0
- package/node_modules/end-of-stream/package.json +65 -0
- package/node_modules/error-ex/index.js +12 -4
- package/node_modules/error-ex/package.json +17 -15
- package/node_modules/es6-error/CHANGELOG.md +26 -0
- package/node_modules/es6-error/LICENSE.md +21 -0
- package/node_modules/es6-error/README.md +59 -0
- package/node_modules/es6-error/es6/index.js +72 -0
- package/node_modules/es6-error/lib/index.js +79 -0
- package/node_modules/es6-error/package.json +78 -0
- package/node_modules/es6-error/typings/index.d.ts +1 -0
- package/node_modules/execa/index.js +131 -79
- package/node_modules/execa/lib/errname.js +20 -18
- package/node_modules/execa/node_modules/cross-spawn/CHANGELOG.md +99 -5
- package/node_modules/execa/node_modules/cross-spawn/LICENSE +7 -5
- package/node_modules/execa/node_modules/cross-spawn/README.md +34 -25
- package/node_modules/execa/node_modules/cross-spawn/index.js +8 -28
- package/node_modules/execa/node_modules/cross-spawn/lib/enoent.js +21 -35
- package/node_modules/execa/node_modules/cross-spawn/lib/parse.js +63 -51
- package/node_modules/execa/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/node_modules/execa/node_modules/cross-spawn/lib/util/readShebang.js +17 -22
- package/node_modules/execa/node_modules/cross-spawn/lib/util/resolveCommand.js +36 -20
- package/node_modules/execa/node_modules/cross-spawn/package.json +59 -35
- package/node_modules/execa/package.json +21 -26
- package/node_modules/execa/readme.md +62 -14
- package/node_modules/find-cache-dir/index.js +3 -5
- package/node_modules/find-cache-dir/license +4 -16
- package/node_modules/find-cache-dir/package.json +20 -25
- package/node_modules/find-cache-dir/readme.md +6 -3
- package/node_modules/find-up/index.js +7 -9
- package/node_modules/find-up/license +4 -16
- package/node_modules/find-up/package.json +17 -25
- package/node_modules/find-up/readme.md +13 -11
- package/node_modules/foreground-child/package.json +2 -2
- package/node_modules/fs.realpath/package.json +4 -3
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +1 -1
- package/node_modules/get-caller-file/package.json +15 -15
- package/node_modules/get-stream/buffer-stream.js +5 -5
- package/node_modules/get-stream/index.js +30 -31
- package/node_modules/get-stream/license +4 -16
- package/node_modules/get-stream/package.json +17 -19
- package/node_modules/get-stream/readme.md +16 -10
- package/node_modules/glob/package.json +13 -15
- package/node_modules/graceful-fs/clone.js +19 -0
- package/node_modules/graceful-fs/graceful-fs.js +28 -11
- package/node_modules/graceful-fs/package.json +26 -22
- package/node_modules/graceful-fs/polyfills.js +138 -139
- package/node_modules/handlebars/dist/amd/handlebars/base.js +2 -2
- package/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js +1 -1
- package/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js +5 -5
- package/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js +3 -5
- package/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js +4 -1
- package/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js +3 -5
- package/node_modules/handlebars/dist/amd/handlebars/logger.js +1 -1
- package/node_modules/handlebars/dist/amd/precompiler.js +6 -5
- package/node_modules/handlebars/dist/cjs/handlebars/base.js +2 -2
- package/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js +1 -1
- package/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js +5 -5
- package/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js +3 -5
- package/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js +4 -1
- package/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js +3 -5
- package/node_modules/handlebars/dist/cjs/handlebars/logger.js +1 -1
- package/node_modules/handlebars/dist/cjs/precompiler.js +6 -5
- package/node_modules/handlebars/dist/handlebars.amd.js +20 -21
- package/node_modules/handlebars/dist/handlebars.amd.min.js +4 -4
- package/node_modules/handlebars/dist/handlebars.js +13 -14
- package/node_modules/handlebars/dist/handlebars.min.js +4 -4
- package/node_modules/handlebars/dist/handlebars.runtime.amd.js +4 -4
- package/node_modules/handlebars/dist/handlebars.runtime.amd.min.js +2 -2
- package/node_modules/handlebars/dist/handlebars.runtime.js +2 -2
- package/node_modules/handlebars/dist/handlebars.runtime.min.js +2 -2
- package/node_modules/handlebars/lib/handlebars/base.js +1 -1
- package/node_modules/handlebars/lib/handlebars/compiler/code-gen.js +1 -1
- package/node_modules/handlebars/lib/handlebars/compiler/compiler.js +3 -3
- package/node_modules/handlebars/lib/handlebars/compiler/helpers.js +2 -4
- package/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js +7 -4
- package/node_modules/handlebars/lib/handlebars/compiler/parser.js +9 -9
- package/node_modules/handlebars/lib/handlebars/logger.js +2 -2
- package/node_modules/handlebars/lib/handlebars.d.ts +356 -0
- package/node_modules/handlebars/lib/precompiler.js +5 -4
- package/node_modules/{source-map → handlebars/node_modules/source-map}/CHANGELOG.md +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/LICENSE +0 -0
- package/node_modules/handlebars/node_modules/source-map/README.md +322 -90
- package/node_modules/handlebars/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules/handlebars/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules/handlebars/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules/handlebars/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/array-set.js +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/base64-vlq.js +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/base64.js +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/binary-search.js +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/mapping-list.js +0 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/lib/quick-sort.js +0 -0
- package/node_modules/handlebars/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules/handlebars/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules/handlebars/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules/handlebars/node_modules/source-map/lib/util.js +488 -0
- package/node_modules/handlebars/node_modules/source-map/package.json +38 -24
- package/node_modules/handlebars/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules/{source-map → handlebars/node_modules/source-map}/source-map.js +0 -0
- package/node_modules/handlebars/package.json +40 -31
- package/node_modules/handlebars/release-notes.md +257 -133
- package/node_modules/has-flag/package.json +4 -2
- package/node_modules/hasha/index.js +67 -0
- package/node_modules/{builtin-modules → hasha}/license +0 -0
- package/node_modules/hasha/package.json +87 -0
- package/node_modules/hasha/readme.md +120 -0
- package/node_modules/hosted-git-info/CHANGELOG.md +37 -0
- package/node_modules/hosted-git-info/git-host-info.js +1 -2
- package/node_modules/hosted-git-info/git-host.js +8 -6
- package/node_modules/hosted-git-info/index.js +2 -1
- package/node_modules/hosted-git-info/package.json +14 -17
- package/node_modules/imurmurhash/package.json +2 -3
- package/node_modules/inflight/package.json +4 -3
- package/node_modules/inherits/package.json +3 -2
- package/node_modules/invert-kv/index.js +6 -6
- package/node_modules/{make-dir/node_modules/pify → invert-kv}/license +0 -0
- package/node_modules/invert-kv/package.json +18 -19
- package/node_modules/invert-kv/readme.md +4 -4
- package/node_modules/is-arrayish/package.json +2 -2
- package/node_modules/is-fullwidth-code-point/package.json +2 -2
- package/node_modules/is-stream/package.json +4 -3
- package/node_modules/isexe/package.json +2 -2
- package/node_modules/istanbul-lib-coverage/CHANGELOG.md +24 -0
- package/node_modules/istanbul-lib-coverage/index.js +4 -4
- package/node_modules/istanbul-lib-coverage/lib/coverage-map.js +17 -17
- package/node_modules/istanbul-lib-coverage/lib/file.js +66 -52
- package/node_modules/istanbul-lib-coverage/package.json +15 -17
- package/node_modules/istanbul-lib-hook/CHANGELOG.md +24 -0
- package/node_modules/istanbul-lib-hook/lib/hook.js +27 -21
- package/node_modules/istanbul-lib-hook/package.json +15 -17
- package/node_modules/istanbul-lib-report/CHANGELOG.md +35 -0
- package/node_modules/istanbul-lib-report/index.js +3 -5
- package/node_modules/istanbul-lib-report/lib/context.js +14 -10
- package/node_modules/istanbul-lib-report/lib/file-writer.js +33 -30
- package/node_modules/istanbul-lib-report/lib/path.js +21 -20
- package/node_modules/istanbul-lib-report/lib/summarizer.js +44 -34
- package/node_modules/istanbul-lib-report/lib/tree.js +22 -25
- package/node_modules/istanbul-lib-report/lib/watermarks.js +1 -1
- package/node_modules/istanbul-lib-report/lib/xml-writer.js +26 -11
- package/node_modules/{supports-color → istanbul-lib-report/node_modules/supports-color}/browser.js +0 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/index.js +138 -0
- package/node_modules/{supports-color → istanbul-lib-report/node_modules/supports-color}/license +0 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/package.json +88 -0
- package/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md +85 -0
- package/node_modules/istanbul-lib-report/package.json +20 -22
- package/node_modules/istanbul-lib-source-maps/CHANGELOG.md +43 -0
- package/node_modules/istanbul-lib-source-maps/index.js +2 -4
- package/node_modules/istanbul-lib-source-maps/lib/map-store.js +51 -39
- package/node_modules/istanbul-lib-source-maps/lib/mapped.js +19 -9
- package/node_modules/istanbul-lib-source-maps/lib/pathutils.js +6 -4
- package/node_modules/istanbul-lib-source-maps/lib/source-store.js +10 -12
- package/node_modules/istanbul-lib-source-maps/lib/transformer.js +108 -22
- package/node_modules/istanbul-lib-source-maps/node_modules/source-map/package.json +2 -2
- package/node_modules/istanbul-lib-source-maps/package.json +19 -20
- package/node_modules/istanbul-reports/CHANGELOG.md +68 -0
- package/node_modules/istanbul-reports/index.js +3 -9
- package/node_modules/istanbul-reports/lib/clover/index.js +29 -27
- package/node_modules/istanbul-reports/lib/cobertura/index.js +24 -20
- package/node_modules/istanbul-reports/lib/html/annotator.js +94 -43
- package/node_modules/istanbul-reports/lib/html/assets/block-navigation.js +70 -55
- package/node_modules/istanbul-reports/lib/html/assets/sorter.js +24 -13
- package/node_modules/istanbul-reports/lib/html/helpers.js +45 -18
- package/node_modules/istanbul-reports/lib/html/index.js +94 -61
- package/node_modules/istanbul-reports/lib/html/insertion-text.js +17 -12
- package/node_modules/istanbul-reports/lib/json/index.js +8 -8
- package/node_modules/istanbul-reports/lib/json-summary/index.js +11 -11
- package/node_modules/istanbul-reports/lib/lcov/index.js +4 -4
- package/node_modules/istanbul-reports/lib/lcovonly/index.js +9 -10
- package/node_modules/istanbul-reports/lib/none/index.js +1 -3
- package/node_modules/istanbul-reports/lib/teamcity/index.js +17 -7
- package/node_modules/istanbul-reports/lib/text/index.js +64 -30
- package/node_modules/istanbul-reports/lib/text-summary/index.js +17 -6
- package/node_modules/istanbul-reports/package.json +19 -20
- package/node_modules/json-parse-better-errors/package.json +3 -5
- package/node_modules/lcid/index.js +6 -5
- package/node_modules/lcid/license +4 -16
- package/node_modules/lcid/package.json +17 -16
- package/node_modules/lcid/readme.md +5 -5
- package/node_modules/{test-exclude/node_modules/load-json-file → load-json-file}/index.js +0 -0
- package/node_modules/{caching-transform/node_modules/md5-hex → load-json-file}/license +0 -0
- package/node_modules/load-json-file/package.json +79 -0
- package/node_modules/{test-exclude/node_modules/load-json-file → load-json-file}/readme.md +0 -0
- package/node_modules/locate-path/index.js +8 -8
- package/node_modules/locate-path/license +4 -16
- package/node_modules/locate-path/package.json +14 -17
- package/node_modules/locate-path/readme.md +5 -5
- package/node_modules/lodash/LICENSE +47 -0
- package/node_modules/lodash/README.md +39 -0
- package/node_modules/lodash/_DataView.js +7 -0
- package/node_modules/lodash/_Hash.js +32 -0
- package/node_modules/lodash/_LazyWrapper.js +28 -0
- package/node_modules/lodash/_ListCache.js +32 -0
- package/node_modules/lodash/_LodashWrapper.js +22 -0
- package/node_modules/lodash/_Map.js +7 -0
- package/node_modules/lodash/_MapCache.js +32 -0
- package/node_modules/lodash/_Promise.js +7 -0
- package/node_modules/lodash/_Set.js +7 -0
- package/node_modules/lodash/_SetCache.js +27 -0
- package/node_modules/lodash/_Stack.js +27 -0
- package/node_modules/lodash/_Symbol.js +6 -0
- package/node_modules/lodash/_Uint8Array.js +6 -0
- package/node_modules/lodash/_WeakMap.js +7 -0
- package/node_modules/lodash/_apply.js +21 -0
- package/node_modules/lodash/_arrayAggregator.js +22 -0
- package/node_modules/lodash/_arrayEach.js +22 -0
- package/node_modules/lodash/_arrayEachRight.js +21 -0
- package/node_modules/lodash/_arrayEvery.js +23 -0
- package/node_modules/lodash/_arrayFilter.js +25 -0
- package/node_modules/lodash/_arrayIncludes.js +17 -0
- package/node_modules/lodash/_arrayIncludesWith.js +22 -0
- package/node_modules/lodash/_arrayLikeKeys.js +49 -0
- package/node_modules/lodash/_arrayMap.js +21 -0
- package/node_modules/lodash/_arrayPush.js +20 -0
- package/node_modules/lodash/_arrayReduce.js +26 -0
- package/node_modules/lodash/_arrayReduceRight.js +24 -0
- package/node_modules/lodash/_arraySample.js +15 -0
- package/node_modules/lodash/_arraySampleSize.js +17 -0
- package/node_modules/lodash/_arrayShuffle.js +15 -0
- package/node_modules/lodash/_arraySome.js +23 -0
- package/node_modules/lodash/_asciiSize.js +12 -0
- package/node_modules/lodash/_asciiToArray.js +12 -0
- package/node_modules/lodash/_asciiWords.js +15 -0
- package/node_modules/lodash/_assignMergeValue.js +20 -0
- package/node_modules/lodash/_assignValue.js +28 -0
- package/node_modules/lodash/_assocIndexOf.js +21 -0
- package/node_modules/lodash/_baseAggregator.js +21 -0
- package/node_modules/lodash/_baseAssign.js +17 -0
- package/node_modules/lodash/_baseAssignIn.js +17 -0
- package/node_modules/lodash/_baseAssignValue.js +25 -0
- package/node_modules/lodash/_baseAt.js +23 -0
- package/node_modules/lodash/_baseClamp.js +22 -0
- package/node_modules/lodash/_baseClone.js +171 -0
- package/node_modules/lodash/_baseConforms.js +18 -0
- package/node_modules/lodash/_baseConformsTo.js +27 -0
- package/node_modules/lodash/_baseCreate.js +30 -0
- package/node_modules/lodash/_baseDelay.js +21 -0
- package/node_modules/lodash/_baseDifference.js +67 -0
- package/node_modules/lodash/_baseEach.js +14 -0
- package/node_modules/lodash/_baseEachRight.js +14 -0
- package/node_modules/lodash/_baseEvery.js +21 -0
- package/node_modules/lodash/_baseExtremum.js +32 -0
- package/node_modules/lodash/_baseFill.js +32 -0
- package/node_modules/lodash/_baseFilter.js +21 -0
- package/node_modules/lodash/_baseFindIndex.js +24 -0
- package/node_modules/lodash/_baseFindKey.js +23 -0
- package/node_modules/lodash/_baseFlatten.js +38 -0
- package/node_modules/lodash/_baseFor.js +16 -0
- package/node_modules/lodash/_baseForOwn.js +16 -0
- package/node_modules/lodash/_baseForOwnRight.js +16 -0
- package/node_modules/lodash/_baseForRight.js +15 -0
- package/node_modules/lodash/_baseFunctions.js +19 -0
- package/node_modules/lodash/_baseGet.js +24 -0
- package/node_modules/lodash/_baseGetAllKeys.js +20 -0
- package/node_modules/lodash/_baseGetTag.js +28 -0
- package/node_modules/lodash/_baseGt.js +14 -0
- package/node_modules/lodash/_baseHas.js +19 -0
- package/node_modules/lodash/_baseHasIn.js +13 -0
- package/node_modules/lodash/_baseInRange.js +18 -0
- package/node_modules/lodash/_baseIndexOf.js +20 -0
- package/node_modules/lodash/_baseIndexOfWith.js +23 -0
- package/node_modules/lodash/_baseIntersection.js +74 -0
- package/node_modules/lodash/_baseInverter.js +21 -0
- package/node_modules/lodash/_baseInvoke.js +24 -0
- package/node_modules/lodash/_baseIsArguments.js +18 -0
- package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
- package/node_modules/lodash/_baseIsDate.js +18 -0
- package/node_modules/lodash/_baseIsEqual.js +28 -0
- package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
- package/node_modules/lodash/_baseIsMap.js +18 -0
- package/node_modules/lodash/_baseIsMatch.js +62 -0
- package/node_modules/lodash/_baseIsNaN.js +12 -0
- package/node_modules/lodash/_baseIsNative.js +47 -0
- package/node_modules/lodash/_baseIsRegExp.js +18 -0
- package/node_modules/lodash/_baseIsSet.js +18 -0
- package/node_modules/lodash/_baseIsTypedArray.js +60 -0
- package/node_modules/lodash/_baseIteratee.js +31 -0
- package/node_modules/lodash/_baseKeys.js +30 -0
- package/node_modules/lodash/_baseKeysIn.js +33 -0
- package/node_modules/lodash/_baseLodash.js +10 -0
- package/node_modules/lodash/_baseLt.js +14 -0
- package/node_modules/lodash/_baseMap.js +22 -0
- package/node_modules/lodash/_baseMatches.js +22 -0
- package/node_modules/lodash/_baseMatchesProperty.js +33 -0
- package/node_modules/lodash/_baseMean.js +20 -0
- package/node_modules/lodash/_baseMerge.js +42 -0
- package/node_modules/lodash/_baseMergeDeep.js +94 -0
- package/node_modules/lodash/_baseNth.js +20 -0
- package/node_modules/lodash/_baseOrderBy.js +34 -0
- package/node_modules/lodash/_basePick.js +19 -0
- package/node_modules/lodash/_basePickBy.js +30 -0
- package/node_modules/lodash/_baseProperty.js +14 -0
- package/node_modules/lodash/_basePropertyDeep.js +16 -0
- package/node_modules/lodash/_basePropertyOf.js +14 -0
- package/node_modules/lodash/_basePullAll.js +51 -0
- package/node_modules/lodash/_basePullAt.js +37 -0
- package/node_modules/lodash/_baseRandom.js +18 -0
- package/node_modules/lodash/_baseRange.js +28 -0
- package/node_modules/lodash/_baseReduce.js +23 -0
- package/node_modules/lodash/_baseRepeat.js +35 -0
- package/node_modules/lodash/_baseRest.js +17 -0
- package/node_modules/lodash/_baseSample.js +15 -0
- package/node_modules/lodash/_baseSampleSize.js +18 -0
- package/node_modules/lodash/_baseSet.js +47 -0
- package/node_modules/lodash/_baseSetData.js +17 -0
- package/node_modules/lodash/_baseSetToString.js +22 -0
- package/node_modules/lodash/_baseShuffle.js +15 -0
- package/node_modules/lodash/_baseSlice.js +31 -0
- package/node_modules/lodash/_baseSome.js +22 -0
- package/node_modules/lodash/_baseSortBy.js +21 -0
- package/node_modules/lodash/_baseSortedIndex.js +42 -0
- package/node_modules/lodash/_baseSortedIndexBy.js +64 -0
- package/node_modules/lodash/_baseSortedUniq.js +30 -0
- package/node_modules/lodash/_baseSum.js +24 -0
- package/node_modules/lodash/_baseTimes.js +20 -0
- package/node_modules/lodash/_baseToNumber.js +24 -0
- package/node_modules/lodash/_baseToPairs.js +18 -0
- package/node_modules/lodash/_baseToString.js +37 -0
- package/node_modules/lodash/_baseUnary.js +14 -0
- package/node_modules/lodash/_baseUniq.js +72 -0
- package/node_modules/lodash/_baseUnset.js +20 -0
- package/node_modules/lodash/_baseUpdate.js +18 -0
- package/node_modules/lodash/_baseValues.js +19 -0
- package/node_modules/lodash/_baseWhile.js +26 -0
- package/node_modules/lodash/_baseWrapperValue.js +25 -0
- package/node_modules/lodash/_baseXor.js +36 -0
- package/node_modules/lodash/_baseZipObject.js +23 -0
- package/node_modules/lodash/_cacheHas.js +13 -0
- package/node_modules/lodash/_castArrayLikeObject.js +14 -0
- package/node_modules/lodash/_castFunction.js +14 -0
- package/node_modules/lodash/_castPath.js +21 -0
- package/node_modules/lodash/_castRest.js +14 -0
- package/node_modules/lodash/_castSlice.js +18 -0
- package/node_modules/lodash/_charsEndIndex.js +19 -0
- package/node_modules/lodash/_charsStartIndex.js +20 -0
- package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/node_modules/lodash/_cloneBuffer.js +35 -0
- package/node_modules/lodash/_cloneDataView.js +16 -0
- package/node_modules/lodash/_cloneRegExp.js +17 -0
- package/node_modules/lodash/_cloneSymbol.js +18 -0
- package/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/node_modules/lodash/_compareAscending.js +41 -0
- package/node_modules/lodash/_compareMultiple.js +44 -0
- package/node_modules/lodash/_composeArgs.js +39 -0
- package/node_modules/lodash/_composeArgsRight.js +41 -0
- package/node_modules/lodash/_copyArray.js +20 -0
- package/node_modules/lodash/_copyObject.js +40 -0
- package/node_modules/lodash/_copySymbols.js +16 -0
- package/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/node_modules/lodash/_coreJsData.js +6 -0
- package/node_modules/lodash/_countHolders.js +21 -0
- package/node_modules/lodash/_createAggregator.js +23 -0
- package/node_modules/lodash/_createAssigner.js +37 -0
- package/node_modules/lodash/_createBaseEach.js +32 -0
- package/node_modules/lodash/_createBaseFor.js +25 -0
- package/node_modules/lodash/_createBind.js +28 -0
- package/node_modules/lodash/_createCaseFirst.js +33 -0
- package/node_modules/lodash/_createCompounder.js +24 -0
- package/node_modules/lodash/_createCtor.js +37 -0
- package/node_modules/lodash/_createCurry.js +46 -0
- package/node_modules/lodash/_createFind.js +25 -0
- package/node_modules/lodash/_createFlow.js +78 -0
- package/node_modules/lodash/_createHybrid.js +92 -0
- package/node_modules/lodash/_createInverter.js +17 -0
- package/node_modules/lodash/_createMathOperation.js +38 -0
- package/node_modules/lodash/_createOver.js +27 -0
- package/node_modules/lodash/_createPadding.js +33 -0
- package/node_modules/lodash/_createPartial.js +43 -0
- package/node_modules/lodash/_createRange.js +30 -0
- package/node_modules/lodash/_createRecurry.js +56 -0
- package/node_modules/lodash/_createRelationalOperation.js +20 -0
- package/node_modules/lodash/_createRound.js +33 -0
- package/node_modules/lodash/_createSet.js +19 -0
- package/node_modules/lodash/_createToPairs.js +30 -0
- package/node_modules/lodash/_createWrap.js +106 -0
- package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
- package/node_modules/lodash/_customDefaultsMerge.js +28 -0
- package/node_modules/lodash/_customOmitClone.js +16 -0
- package/node_modules/lodash/_deburrLetter.js +71 -0
- package/node_modules/lodash/_defineProperty.js +11 -0
- package/node_modules/lodash/_equalArrays.js +83 -0
- package/node_modules/lodash/_equalByTag.js +112 -0
- package/node_modules/lodash/_equalObjects.js +89 -0
- package/node_modules/lodash/_escapeHtmlChar.js +21 -0
- package/node_modules/lodash/_escapeStringChar.js +22 -0
- package/node_modules/lodash/_flatRest.js +16 -0
- package/node_modules/lodash/_freeGlobal.js +4 -0
- package/node_modules/lodash/_getAllKeys.js +16 -0
- package/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/node_modules/lodash/_getData.js +15 -0
- package/node_modules/lodash/_getFuncName.js +31 -0
- package/node_modules/lodash/_getHolder.js +13 -0
- package/node_modules/lodash/_getMapData.js +18 -0
- package/node_modules/lodash/_getMatchData.js +24 -0
- package/node_modules/lodash/_getNative.js +17 -0
- package/node_modules/lodash/_getPrototype.js +6 -0
- package/node_modules/lodash/_getRawTag.js +46 -0
- package/node_modules/lodash/_getSymbols.js +30 -0
- package/node_modules/lodash/_getSymbolsIn.js +25 -0
- package/node_modules/lodash/_getTag.js +58 -0
- package/node_modules/lodash/_getValue.js +13 -0
- package/node_modules/lodash/_getView.js +33 -0
- package/node_modules/lodash/_getWrapDetails.js +17 -0
- package/node_modules/lodash/_hasPath.js +39 -0
- package/node_modules/lodash/_hasUnicode.js +26 -0
- package/node_modules/lodash/_hasUnicodeWord.js +15 -0
- package/node_modules/lodash/_hashClear.js +15 -0
- package/node_modules/lodash/_hashDelete.js +17 -0
- package/node_modules/lodash/_hashGet.js +30 -0
- package/node_modules/lodash/_hashHas.js +23 -0
- package/node_modules/lodash/_hashSet.js +23 -0
- package/node_modules/lodash/_initCloneArray.js +26 -0
- package/node_modules/lodash/_initCloneByTag.js +77 -0
- package/node_modules/lodash/_initCloneObject.js +18 -0
- package/node_modules/lodash/_insertWrapDetails.js +23 -0
- package/node_modules/lodash/_isFlattenable.js +20 -0
- package/node_modules/lodash/_isIndex.js +25 -0
- package/node_modules/lodash/_isIterateeCall.js +30 -0
- package/node_modules/lodash/_isKey.js +29 -0
- package/node_modules/lodash/_isKeyable.js +15 -0
- package/node_modules/lodash/_isLaziable.js +28 -0
- package/node_modules/lodash/_isMaskable.js +14 -0
- package/node_modules/lodash/_isMasked.js +20 -0
- package/node_modules/lodash/_isPrototype.js +18 -0
- package/node_modules/lodash/_isStrictComparable.js +15 -0
- package/node_modules/lodash/_iteratorToArray.js +18 -0
- package/node_modules/lodash/_lazyClone.js +23 -0
- package/node_modules/lodash/_lazyReverse.js +23 -0
- package/node_modules/lodash/_lazyValue.js +69 -0
- package/node_modules/lodash/_listCacheClear.js +13 -0
- package/node_modules/lodash/_listCacheDelete.js +35 -0
- package/node_modules/lodash/_listCacheGet.js +19 -0
- package/node_modules/lodash/_listCacheHas.js +16 -0
- package/node_modules/lodash/_listCacheSet.js +26 -0
- package/node_modules/lodash/_mapCacheClear.js +21 -0
- package/node_modules/lodash/_mapCacheDelete.js +18 -0
- package/node_modules/lodash/_mapCacheGet.js +16 -0
- package/node_modules/lodash/_mapCacheHas.js +16 -0
- package/node_modules/lodash/_mapCacheSet.js +22 -0
- package/node_modules/lodash/_mapToArray.js +18 -0
- package/node_modules/lodash/_matchesStrictComparable.js +20 -0
- package/node_modules/lodash/_memoizeCapped.js +26 -0
- package/node_modules/lodash/_mergeData.js +90 -0
- package/node_modules/lodash/_metaMap.js +6 -0
- package/node_modules/lodash/_nativeCreate.js +6 -0
- package/node_modules/lodash/_nativeKeys.js +6 -0
- package/node_modules/lodash/_nativeKeysIn.js +20 -0
- package/node_modules/lodash/_nodeUtil.js +30 -0
- package/node_modules/lodash/_objectToString.js +22 -0
- package/node_modules/lodash/_overArg.js +15 -0
- package/node_modules/lodash/_overRest.js +36 -0
- package/node_modules/lodash/_parent.js +16 -0
- package/node_modules/lodash/_reEscape.js +4 -0
- package/node_modules/lodash/_reEvaluate.js +4 -0
- package/node_modules/lodash/_reInterpolate.js +4 -0
- package/node_modules/lodash/_realNames.js +4 -0
- package/node_modules/lodash/_reorder.js +29 -0
- package/node_modules/lodash/_replaceHolders.js +29 -0
- package/node_modules/lodash/_root.js +9 -0
- package/node_modules/lodash/_safeGet.js +17 -0
- package/node_modules/lodash/_setCacheAdd.js +19 -0
- package/node_modules/lodash/_setCacheHas.js +14 -0
- package/node_modules/lodash/_setData.js +20 -0
- package/node_modules/lodash/_setToArray.js +18 -0
- package/node_modules/lodash/_setToPairs.js +18 -0
- package/node_modules/lodash/_setToString.js +14 -0
- package/node_modules/lodash/_setWrapToString.js +21 -0
- package/node_modules/lodash/_shortOut.js +37 -0
- package/node_modules/lodash/_shuffleSelf.js +28 -0
- package/node_modules/lodash/_stackClear.js +15 -0
- package/node_modules/lodash/_stackDelete.js +18 -0
- package/node_modules/lodash/_stackGet.js +14 -0
- package/node_modules/lodash/_stackHas.js +14 -0
- package/node_modules/lodash/_stackSet.js +34 -0
- package/node_modules/lodash/_strictIndexOf.js +23 -0
- package/node_modules/lodash/_strictLastIndexOf.js +21 -0
- package/node_modules/lodash/_stringSize.js +18 -0
- package/node_modules/lodash/_stringToArray.js +18 -0
- package/node_modules/lodash/_stringToPath.js +27 -0
- package/node_modules/lodash/_toKey.js +21 -0
- package/node_modules/lodash/_toSource.js +26 -0
- package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
- package/node_modules/lodash/_unicodeSize.js +44 -0
- package/node_modules/lodash/_unicodeToArray.js +40 -0
- package/node_modules/lodash/_unicodeWords.js +69 -0
- package/node_modules/lodash/_updateWrapDetails.js +46 -0
- package/node_modules/lodash/_wrapperClone.js +23 -0
- package/node_modules/lodash/add.js +22 -0
- package/node_modules/lodash/after.js +42 -0
- package/node_modules/lodash/array.js +67 -0
- package/node_modules/lodash/ary.js +29 -0
- package/node_modules/lodash/assign.js +58 -0
- package/node_modules/lodash/assignIn.js +40 -0
- package/node_modules/lodash/assignInWith.js +38 -0
- package/node_modules/lodash/assignWith.js +37 -0
- package/node_modules/lodash/at.js +23 -0
- package/node_modules/lodash/attempt.js +35 -0
- package/node_modules/lodash/before.js +40 -0
- package/node_modules/lodash/bind.js +57 -0
- package/node_modules/lodash/bindAll.js +41 -0
- package/node_modules/lodash/bindKey.js +68 -0
- package/node_modules/lodash/camelCase.js +29 -0
- package/node_modules/lodash/capitalize.js +23 -0
- package/node_modules/lodash/castArray.js +44 -0
- package/node_modules/lodash/ceil.js +26 -0
- package/node_modules/lodash/chain.js +38 -0
- package/node_modules/lodash/chunk.js +50 -0
- package/node_modules/lodash/clamp.js +39 -0
- package/node_modules/lodash/clone.js +36 -0
- package/node_modules/lodash/cloneDeep.js +29 -0
- package/node_modules/lodash/cloneDeepWith.js +40 -0
- package/node_modules/lodash/cloneWith.js +42 -0
- package/node_modules/lodash/collection.js +30 -0
- package/node_modules/lodash/commit.js +33 -0
- package/node_modules/lodash/compact.js +31 -0
- package/node_modules/lodash/concat.js +43 -0
- package/node_modules/lodash/cond.js +60 -0
- package/node_modules/lodash/conforms.js +35 -0
- package/node_modules/lodash/conformsTo.js +32 -0
- package/node_modules/lodash/constant.js +26 -0
- package/node_modules/lodash/core.js +3854 -0
- package/node_modules/lodash/core.min.js +29 -0
- package/node_modules/lodash/countBy.js +40 -0
- package/node_modules/lodash/create.js +43 -0
- package/node_modules/lodash/curry.js +57 -0
- package/node_modules/lodash/curryRight.js +54 -0
- package/node_modules/lodash/date.js +3 -0
- package/node_modules/lodash/debounce.js +190 -0
- package/node_modules/lodash/deburr.js +45 -0
- package/node_modules/lodash/defaultTo.js +25 -0
- package/node_modules/lodash/defaults.js +64 -0
- package/node_modules/lodash/defaultsDeep.js +30 -0
- package/node_modules/lodash/defer.js +26 -0
- package/node_modules/lodash/delay.js +28 -0
- package/node_modules/lodash/difference.js +33 -0
- package/node_modules/lodash/differenceBy.js +44 -0
- package/node_modules/lodash/differenceWith.js +40 -0
- package/node_modules/lodash/divide.js +22 -0
- package/node_modules/lodash/drop.js +38 -0
- package/node_modules/lodash/dropRight.js +39 -0
- package/node_modules/lodash/dropRightWhile.js +45 -0
- package/node_modules/lodash/dropWhile.js +45 -0
- package/node_modules/lodash/each.js +1 -0
- package/node_modules/lodash/eachRight.js +1 -0
- package/node_modules/lodash/endsWith.js +43 -0
- package/node_modules/lodash/entries.js +1 -0
- package/node_modules/lodash/entriesIn.js +1 -0
- package/node_modules/lodash/eq.js +37 -0
- package/node_modules/lodash/escape.js +43 -0
- package/node_modules/lodash/escapeRegExp.js +32 -0
- package/node_modules/lodash/every.js +56 -0
- package/node_modules/lodash/extend.js +1 -0
- package/node_modules/lodash/extendWith.js +1 -0
- package/node_modules/lodash/fill.js +45 -0
- package/node_modules/lodash/filter.js +48 -0
- package/node_modules/lodash/find.js +42 -0
- package/node_modules/lodash/findIndex.js +55 -0
- package/node_modules/lodash/findKey.js +44 -0
- package/node_modules/lodash/findLast.js +25 -0
- package/node_modules/lodash/findLastIndex.js +59 -0
- package/node_modules/lodash/findLastKey.js +44 -0
- package/node_modules/lodash/first.js +1 -0
- package/node_modules/lodash/flatMap.js +29 -0
- package/node_modules/lodash/flatMapDeep.js +31 -0
- package/node_modules/lodash/flatMapDepth.js +31 -0
- package/node_modules/lodash/flatten.js +22 -0
- package/node_modules/lodash/flattenDeep.js +25 -0
- package/node_modules/lodash/flattenDepth.js +33 -0
- package/node_modules/lodash/flip.js +28 -0
- package/node_modules/lodash/floor.js +26 -0
- package/node_modules/lodash/flow.js +27 -0
- package/node_modules/lodash/flowRight.js +26 -0
- package/node_modules/lodash/forEach.js +41 -0
- package/node_modules/lodash/forEachRight.js +31 -0
- package/node_modules/lodash/forIn.js +39 -0
- package/node_modules/lodash/forInRight.js +37 -0
- package/node_modules/lodash/forOwn.js +36 -0
- package/node_modules/lodash/forOwnRight.js +34 -0
- package/node_modules/lodash/fp/F.js +1 -0
- package/node_modules/lodash/fp/T.js +1 -0
- package/node_modules/lodash/fp/__.js +1 -0
- package/node_modules/lodash/fp/_baseConvert.js +569 -0
- package/node_modules/lodash/fp/_convertBrowser.js +18 -0
- package/node_modules/lodash/fp/_falseOptions.js +7 -0
- package/node_modules/lodash/fp/_mapping.js +358 -0
- package/node_modules/lodash/fp/_util.js +16 -0
- package/node_modules/lodash/fp/add.js +5 -0
- package/node_modules/lodash/fp/after.js +5 -0
- package/node_modules/lodash/fp/all.js +1 -0
- package/node_modules/lodash/fp/allPass.js +1 -0
- package/node_modules/lodash/fp/always.js +1 -0
- package/node_modules/lodash/fp/any.js +1 -0
- package/node_modules/lodash/fp/anyPass.js +1 -0
- package/node_modules/lodash/fp/apply.js +1 -0
- package/node_modules/lodash/fp/array.js +2 -0
- package/node_modules/lodash/fp/ary.js +5 -0
- package/node_modules/lodash/fp/assign.js +5 -0
- package/node_modules/lodash/fp/assignAll.js +5 -0
- package/node_modules/lodash/fp/assignAllWith.js +5 -0
- package/node_modules/lodash/fp/assignIn.js +5 -0
- package/node_modules/lodash/fp/assignInAll.js +5 -0
- package/node_modules/lodash/fp/assignInAllWith.js +5 -0
- package/node_modules/lodash/fp/assignInWith.js +5 -0
- package/node_modules/lodash/fp/assignWith.js +5 -0
- package/node_modules/lodash/fp/assoc.js +1 -0
- package/node_modules/lodash/fp/assocPath.js +1 -0
- package/node_modules/lodash/fp/at.js +5 -0
- package/node_modules/lodash/fp/attempt.js +5 -0
- package/node_modules/lodash/fp/before.js +5 -0
- package/node_modules/lodash/fp/bind.js +5 -0
- package/node_modules/lodash/fp/bindAll.js +5 -0
- package/node_modules/lodash/fp/bindKey.js +5 -0
- package/node_modules/lodash/fp/camelCase.js +5 -0
- package/node_modules/lodash/fp/capitalize.js +5 -0
- package/node_modules/lodash/fp/castArray.js +5 -0
- package/node_modules/lodash/fp/ceil.js +5 -0
- package/node_modules/lodash/fp/chain.js +5 -0
- package/node_modules/lodash/fp/chunk.js +5 -0
- package/node_modules/lodash/fp/clamp.js +5 -0
- package/node_modules/lodash/fp/clone.js +5 -0
- package/node_modules/lodash/fp/cloneDeep.js +5 -0
- package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
- package/node_modules/lodash/fp/cloneWith.js +5 -0
- package/node_modules/lodash/fp/collection.js +2 -0
- package/node_modules/lodash/fp/commit.js +5 -0
- package/node_modules/lodash/fp/compact.js +5 -0
- package/node_modules/lodash/fp/complement.js +1 -0
- package/node_modules/lodash/fp/compose.js +1 -0
- package/node_modules/lodash/fp/concat.js +5 -0
- package/node_modules/lodash/fp/cond.js +5 -0
- package/node_modules/lodash/fp/conforms.js +1 -0
- package/node_modules/lodash/fp/conformsTo.js +5 -0
- package/node_modules/lodash/fp/constant.js +5 -0
- package/node_modules/lodash/fp/contains.js +1 -0
- package/node_modules/lodash/fp/convert.js +18 -0
- package/node_modules/lodash/fp/countBy.js +5 -0
- package/node_modules/lodash/fp/create.js +5 -0
- package/node_modules/lodash/fp/curry.js +5 -0
- package/node_modules/lodash/fp/curryN.js +5 -0
- package/node_modules/lodash/fp/curryRight.js +5 -0
- package/node_modules/lodash/fp/curryRightN.js +5 -0
- package/node_modules/lodash/fp/date.js +2 -0
- package/node_modules/lodash/fp/debounce.js +5 -0
- package/node_modules/lodash/fp/deburr.js +5 -0
- package/node_modules/lodash/fp/defaultTo.js +5 -0
- package/node_modules/lodash/fp/defaults.js +5 -0
- package/node_modules/lodash/fp/defaultsAll.js +5 -0
- package/node_modules/lodash/fp/defaultsDeep.js +5 -0
- package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
- package/node_modules/lodash/fp/defer.js +5 -0
- package/node_modules/lodash/fp/delay.js +5 -0
- package/node_modules/lodash/fp/difference.js +5 -0
- package/node_modules/lodash/fp/differenceBy.js +5 -0
- package/node_modules/lodash/fp/differenceWith.js +5 -0
- package/node_modules/lodash/fp/dissoc.js +1 -0
- package/node_modules/lodash/fp/dissocPath.js +1 -0
- package/node_modules/lodash/fp/divide.js +5 -0
- package/node_modules/lodash/fp/drop.js +5 -0
- package/node_modules/lodash/fp/dropLast.js +1 -0
- package/node_modules/lodash/fp/dropLastWhile.js +1 -0
- package/node_modules/lodash/fp/dropRight.js +5 -0
- package/node_modules/lodash/fp/dropRightWhile.js +5 -0
- package/node_modules/lodash/fp/dropWhile.js +5 -0
- package/node_modules/lodash/fp/each.js +1 -0
- package/node_modules/lodash/fp/eachRight.js +1 -0
- package/node_modules/lodash/fp/endsWith.js +5 -0
- package/node_modules/lodash/fp/entries.js +1 -0
- package/node_modules/lodash/fp/entriesIn.js +1 -0
- package/node_modules/lodash/fp/eq.js +5 -0
- package/node_modules/lodash/fp/equals.js +1 -0
- package/node_modules/lodash/fp/escape.js +5 -0
- package/node_modules/lodash/fp/escapeRegExp.js +5 -0
- package/node_modules/lodash/fp/every.js +5 -0
- package/node_modules/lodash/fp/extend.js +1 -0
- package/node_modules/lodash/fp/extendAll.js +1 -0
- package/node_modules/lodash/fp/extendAllWith.js +1 -0
- package/node_modules/lodash/fp/extendWith.js +1 -0
- package/node_modules/lodash/fp/fill.js +5 -0
- package/node_modules/lodash/fp/filter.js +5 -0
- package/node_modules/lodash/fp/find.js +5 -0
- package/node_modules/lodash/fp/findFrom.js +5 -0
- package/node_modules/lodash/fp/findIndex.js +5 -0
- package/node_modules/lodash/fp/findIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findKey.js +5 -0
- package/node_modules/lodash/fp/findLast.js +5 -0
- package/node_modules/lodash/fp/findLastFrom.js +5 -0
- package/node_modules/lodash/fp/findLastIndex.js +5 -0
- package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findLastKey.js +5 -0
- package/node_modules/lodash/fp/first.js +1 -0
- package/node_modules/lodash/fp/flatMap.js +5 -0
- package/node_modules/lodash/fp/flatMapDeep.js +5 -0
- package/node_modules/lodash/fp/flatMapDepth.js +5 -0
- package/node_modules/lodash/fp/flatten.js +5 -0
- package/node_modules/lodash/fp/flattenDeep.js +5 -0
- package/node_modules/lodash/fp/flattenDepth.js +5 -0
- package/node_modules/lodash/fp/flip.js +5 -0
- package/node_modules/lodash/fp/floor.js +5 -0
- package/node_modules/lodash/fp/flow.js +5 -0
- package/node_modules/lodash/fp/flowRight.js +5 -0
- package/node_modules/lodash/fp/forEach.js +5 -0
- package/node_modules/lodash/fp/forEachRight.js +5 -0
- package/node_modules/lodash/fp/forIn.js +5 -0
- package/node_modules/lodash/fp/forInRight.js +5 -0
- package/node_modules/lodash/fp/forOwn.js +5 -0
- package/node_modules/lodash/fp/forOwnRight.js +5 -0
- package/node_modules/lodash/fp/fromPairs.js +5 -0
- package/node_modules/lodash/fp/function.js +2 -0
- package/node_modules/lodash/fp/functions.js +5 -0
- package/node_modules/lodash/fp/functionsIn.js +5 -0
- package/node_modules/lodash/fp/get.js +5 -0
- package/node_modules/lodash/fp/getOr.js +5 -0
- package/node_modules/lodash/fp/groupBy.js +5 -0
- package/node_modules/lodash/fp/gt.js +5 -0
- package/node_modules/lodash/fp/gte.js +5 -0
- package/node_modules/lodash/fp/has.js +5 -0
- package/node_modules/lodash/fp/hasIn.js +5 -0
- package/node_modules/lodash/fp/head.js +5 -0
- package/node_modules/lodash/fp/identical.js +1 -0
- package/node_modules/lodash/fp/identity.js +5 -0
- package/node_modules/lodash/fp/inRange.js +5 -0
- package/node_modules/lodash/fp/includes.js +5 -0
- package/node_modules/lodash/fp/includesFrom.js +5 -0
- package/node_modules/lodash/fp/indexBy.js +1 -0
- package/node_modules/lodash/fp/indexOf.js +5 -0
- package/node_modules/lodash/fp/indexOfFrom.js +5 -0
- package/node_modules/lodash/fp/init.js +1 -0
- package/node_modules/lodash/fp/initial.js +5 -0
- package/node_modules/lodash/fp/intersection.js +5 -0
- package/node_modules/lodash/fp/intersectionBy.js +5 -0
- package/node_modules/lodash/fp/intersectionWith.js +5 -0
- package/node_modules/lodash/fp/invert.js +5 -0
- package/node_modules/lodash/fp/invertBy.js +5 -0
- package/node_modules/lodash/fp/invertObj.js +1 -0
- package/node_modules/lodash/fp/invoke.js +5 -0
- package/node_modules/lodash/fp/invokeArgs.js +5 -0
- package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
- package/node_modules/lodash/fp/invokeMap.js +5 -0
- package/node_modules/lodash/fp/isArguments.js +5 -0
- package/node_modules/lodash/fp/isArray.js +5 -0
- package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
- package/node_modules/lodash/fp/isArrayLike.js +5 -0
- package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
- package/node_modules/lodash/fp/isBoolean.js +5 -0
- package/node_modules/lodash/fp/isBuffer.js +5 -0
- package/node_modules/lodash/fp/isDate.js +5 -0
- package/node_modules/lodash/fp/isElement.js +5 -0
- package/node_modules/lodash/fp/isEmpty.js +5 -0
- package/node_modules/lodash/fp/isEqual.js +5 -0
- package/node_modules/lodash/fp/isEqualWith.js +5 -0
- package/node_modules/lodash/fp/isError.js +5 -0
- package/node_modules/lodash/fp/isFinite.js +5 -0
- package/node_modules/lodash/fp/isFunction.js +5 -0
- package/node_modules/lodash/fp/isInteger.js +5 -0
- package/node_modules/lodash/fp/isLength.js +5 -0
- package/node_modules/lodash/fp/isMap.js +5 -0
- package/node_modules/lodash/fp/isMatch.js +5 -0
- package/node_modules/lodash/fp/isMatchWith.js +5 -0
- package/node_modules/lodash/fp/isNaN.js +5 -0
- package/node_modules/lodash/fp/isNative.js +5 -0
- package/node_modules/lodash/fp/isNil.js +5 -0
- package/node_modules/lodash/fp/isNull.js +5 -0
- package/node_modules/lodash/fp/isNumber.js +5 -0
- package/node_modules/lodash/fp/isObject.js +5 -0
- package/node_modules/lodash/fp/isObjectLike.js +5 -0
- package/node_modules/lodash/fp/isPlainObject.js +5 -0
- package/node_modules/lodash/fp/isRegExp.js +5 -0
- package/node_modules/lodash/fp/isSafeInteger.js +5 -0
- package/node_modules/lodash/fp/isSet.js +5 -0
- package/node_modules/lodash/fp/isString.js +5 -0
- package/node_modules/lodash/fp/isSymbol.js +5 -0
- package/node_modules/lodash/fp/isTypedArray.js +5 -0
- package/node_modules/lodash/fp/isUndefined.js +5 -0
- package/node_modules/lodash/fp/isWeakMap.js +5 -0
- package/node_modules/lodash/fp/isWeakSet.js +5 -0
- package/node_modules/lodash/fp/iteratee.js +5 -0
- package/node_modules/lodash/fp/join.js +5 -0
- package/node_modules/lodash/fp/juxt.js +1 -0
- package/node_modules/lodash/fp/kebabCase.js +5 -0
- package/node_modules/lodash/fp/keyBy.js +5 -0
- package/node_modules/lodash/fp/keys.js +5 -0
- package/node_modules/lodash/fp/keysIn.js +5 -0
- package/node_modules/lodash/fp/lang.js +2 -0
- package/node_modules/lodash/fp/last.js +5 -0
- package/node_modules/lodash/fp/lastIndexOf.js +5 -0
- package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
- package/node_modules/lodash/fp/lowerCase.js +5 -0
- package/node_modules/lodash/fp/lowerFirst.js +5 -0
- package/node_modules/lodash/fp/lt.js +5 -0
- package/node_modules/lodash/fp/lte.js +5 -0
- package/node_modules/lodash/fp/map.js +5 -0
- package/node_modules/lodash/fp/mapKeys.js +5 -0
- package/node_modules/lodash/fp/mapValues.js +5 -0
- package/node_modules/lodash/fp/matches.js +1 -0
- package/node_modules/lodash/fp/matchesProperty.js +5 -0
- package/node_modules/lodash/fp/math.js +2 -0
- package/node_modules/lodash/fp/max.js +5 -0
- package/node_modules/lodash/fp/maxBy.js +5 -0
- package/node_modules/lodash/fp/mean.js +5 -0
- package/node_modules/lodash/fp/meanBy.js +5 -0
- package/node_modules/lodash/fp/memoize.js +5 -0
- package/node_modules/lodash/fp/merge.js +5 -0
- package/node_modules/lodash/fp/mergeAll.js +5 -0
- package/node_modules/lodash/fp/mergeAllWith.js +5 -0
- package/node_modules/lodash/fp/mergeWith.js +5 -0
- package/node_modules/lodash/fp/method.js +5 -0
- package/node_modules/lodash/fp/methodOf.js +5 -0
- package/node_modules/lodash/fp/min.js +5 -0
- package/node_modules/lodash/fp/minBy.js +5 -0
- package/node_modules/lodash/fp/mixin.js +5 -0
- package/node_modules/lodash/fp/multiply.js +5 -0
- package/node_modules/lodash/fp/nAry.js +1 -0
- package/node_modules/lodash/fp/negate.js +5 -0
- package/node_modules/lodash/fp/next.js +5 -0
- package/node_modules/lodash/fp/noop.js +5 -0
- package/node_modules/lodash/fp/now.js +5 -0
- package/node_modules/lodash/fp/nth.js +5 -0
- package/node_modules/lodash/fp/nthArg.js +5 -0
- package/node_modules/lodash/fp/number.js +2 -0
- package/node_modules/lodash/fp/object.js +2 -0
- package/node_modules/lodash/fp/omit.js +5 -0
- package/node_modules/lodash/fp/omitAll.js +1 -0
- package/node_modules/lodash/fp/omitBy.js +5 -0
- package/node_modules/lodash/fp/once.js +5 -0
- package/node_modules/lodash/fp/orderBy.js +5 -0
- package/node_modules/lodash/fp/over.js +5 -0
- package/node_modules/lodash/fp/overArgs.js +5 -0
- package/node_modules/lodash/fp/overEvery.js +5 -0
- package/node_modules/lodash/fp/overSome.js +5 -0
- package/node_modules/lodash/fp/pad.js +5 -0
- package/node_modules/lodash/fp/padChars.js +5 -0
- package/node_modules/lodash/fp/padCharsEnd.js +5 -0
- package/node_modules/lodash/fp/padCharsStart.js +5 -0
- package/node_modules/lodash/fp/padEnd.js +5 -0
- package/node_modules/lodash/fp/padStart.js +5 -0
- package/node_modules/lodash/fp/parseInt.js +5 -0
- package/node_modules/lodash/fp/partial.js +5 -0
- package/node_modules/lodash/fp/partialRight.js +5 -0
- package/node_modules/lodash/fp/partition.js +5 -0
- package/node_modules/lodash/fp/path.js +1 -0
- package/node_modules/lodash/fp/pathEq.js +1 -0
- package/node_modules/lodash/fp/pathOr.js +1 -0
- package/node_modules/lodash/fp/paths.js +1 -0
- package/node_modules/lodash/fp/pick.js +5 -0
- package/node_modules/lodash/fp/pickAll.js +1 -0
- package/node_modules/lodash/fp/pickBy.js +5 -0
- package/node_modules/lodash/fp/pipe.js +1 -0
- package/node_modules/lodash/fp/placeholder.js +6 -0
- package/node_modules/lodash/fp/plant.js +5 -0
- package/node_modules/lodash/fp/pluck.js +1 -0
- package/node_modules/lodash/fp/prop.js +1 -0
- package/node_modules/lodash/fp/propEq.js +1 -0
- package/node_modules/lodash/fp/propOr.js +1 -0
- package/node_modules/lodash/fp/property.js +1 -0
- package/node_modules/lodash/fp/propertyOf.js +5 -0
- package/node_modules/lodash/fp/props.js +1 -0
- package/node_modules/lodash/fp/pull.js +5 -0
- package/node_modules/lodash/fp/pullAll.js +5 -0
- package/node_modules/lodash/fp/pullAllBy.js +5 -0
- package/node_modules/lodash/fp/pullAllWith.js +5 -0
- package/node_modules/lodash/fp/pullAt.js +5 -0
- package/node_modules/lodash/fp/random.js +5 -0
- package/node_modules/lodash/fp/range.js +5 -0
- package/node_modules/lodash/fp/rangeRight.js +5 -0
- package/node_modules/lodash/fp/rangeStep.js +5 -0
- package/node_modules/lodash/fp/rangeStepRight.js +5 -0
- package/node_modules/lodash/fp/rearg.js +5 -0
- package/node_modules/lodash/fp/reduce.js +5 -0
- package/node_modules/lodash/fp/reduceRight.js +5 -0
- package/node_modules/lodash/fp/reject.js +5 -0
- package/node_modules/lodash/fp/remove.js +5 -0
- package/node_modules/lodash/fp/repeat.js +5 -0
- package/node_modules/lodash/fp/replace.js +5 -0
- package/node_modules/lodash/fp/rest.js +5 -0
- package/node_modules/lodash/fp/restFrom.js +5 -0
- package/node_modules/lodash/fp/result.js +5 -0
- package/node_modules/lodash/fp/reverse.js +5 -0
- package/node_modules/lodash/fp/round.js +5 -0
- package/node_modules/lodash/fp/sample.js +5 -0
- package/node_modules/lodash/fp/sampleSize.js +5 -0
- package/node_modules/lodash/fp/seq.js +2 -0
- package/node_modules/lodash/fp/set.js +5 -0
- package/node_modules/lodash/fp/setWith.js +5 -0
- package/node_modules/lodash/fp/shuffle.js +5 -0
- package/node_modules/lodash/fp/size.js +5 -0
- package/node_modules/lodash/fp/slice.js +5 -0
- package/node_modules/lodash/fp/snakeCase.js +5 -0
- package/node_modules/lodash/fp/some.js +5 -0
- package/node_modules/lodash/fp/sortBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndex.js +5 -0
- package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedUniq.js +5 -0
- package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
- package/node_modules/lodash/fp/split.js +5 -0
- package/node_modules/lodash/fp/spread.js +5 -0
- package/node_modules/lodash/fp/spreadFrom.js +5 -0
- package/node_modules/lodash/fp/startCase.js +5 -0
- package/node_modules/lodash/fp/startsWith.js +5 -0
- package/node_modules/lodash/fp/string.js +2 -0
- package/node_modules/lodash/fp/stubArray.js +5 -0
- package/node_modules/lodash/fp/stubFalse.js +5 -0
- package/node_modules/lodash/fp/stubObject.js +5 -0
- package/node_modules/lodash/fp/stubString.js +5 -0
- package/node_modules/lodash/fp/stubTrue.js +5 -0
- package/node_modules/lodash/fp/subtract.js +5 -0
- package/node_modules/lodash/fp/sum.js +5 -0
- package/node_modules/lodash/fp/sumBy.js +5 -0
- package/node_modules/lodash/fp/symmetricDifference.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
- package/node_modules/lodash/fp/tail.js +5 -0
- package/node_modules/lodash/fp/take.js +5 -0
- package/node_modules/lodash/fp/takeLast.js +1 -0
- package/node_modules/lodash/fp/takeLastWhile.js +1 -0
- package/node_modules/lodash/fp/takeRight.js +5 -0
- package/node_modules/lodash/fp/takeRightWhile.js +5 -0
- package/node_modules/lodash/fp/takeWhile.js +5 -0
- package/node_modules/lodash/fp/tap.js +5 -0
- package/node_modules/lodash/fp/template.js +5 -0
- package/node_modules/lodash/fp/templateSettings.js +5 -0
- package/node_modules/lodash/fp/throttle.js +5 -0
- package/node_modules/lodash/fp/thru.js +5 -0
- package/node_modules/lodash/fp/times.js +5 -0
- package/node_modules/lodash/fp/toArray.js +5 -0
- package/node_modules/lodash/fp/toFinite.js +5 -0
- package/node_modules/lodash/fp/toInteger.js +5 -0
- package/node_modules/lodash/fp/toIterator.js +5 -0
- package/node_modules/lodash/fp/toJSON.js +5 -0
- package/node_modules/lodash/fp/toLength.js +5 -0
- package/node_modules/lodash/fp/toLower.js +5 -0
- package/node_modules/lodash/fp/toNumber.js +5 -0
- package/node_modules/lodash/fp/toPairs.js +5 -0
- package/node_modules/lodash/fp/toPairsIn.js +5 -0
- package/node_modules/lodash/fp/toPath.js +5 -0
- package/node_modules/lodash/fp/toPlainObject.js +5 -0
- package/node_modules/lodash/fp/toSafeInteger.js +5 -0
- package/node_modules/lodash/fp/toString.js +5 -0
- package/node_modules/lodash/fp/toUpper.js +5 -0
- package/node_modules/lodash/fp/transform.js +5 -0
- package/node_modules/lodash/fp/trim.js +5 -0
- package/node_modules/lodash/fp/trimChars.js +5 -0
- package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
- package/node_modules/lodash/fp/trimCharsStart.js +5 -0
- package/node_modules/lodash/fp/trimEnd.js +5 -0
- package/node_modules/lodash/fp/trimStart.js +5 -0
- package/node_modules/lodash/fp/truncate.js +5 -0
- package/node_modules/lodash/fp/unapply.js +1 -0
- package/node_modules/lodash/fp/unary.js +5 -0
- package/node_modules/lodash/fp/unescape.js +5 -0
- package/node_modules/lodash/fp/union.js +5 -0
- package/node_modules/lodash/fp/unionBy.js +5 -0
- package/node_modules/lodash/fp/unionWith.js +5 -0
- package/node_modules/lodash/fp/uniq.js +5 -0
- package/node_modules/lodash/fp/uniqBy.js +5 -0
- package/node_modules/lodash/fp/uniqWith.js +5 -0
- package/node_modules/lodash/fp/uniqueId.js +5 -0
- package/node_modules/lodash/fp/unnest.js +1 -0
- package/node_modules/lodash/fp/unset.js +5 -0
- package/node_modules/lodash/fp/unzip.js +5 -0
- package/node_modules/lodash/fp/unzipWith.js +5 -0
- package/node_modules/lodash/fp/update.js +5 -0
- package/node_modules/lodash/fp/updateWith.js +5 -0
- package/node_modules/lodash/fp/upperCase.js +5 -0
- package/node_modules/lodash/fp/upperFirst.js +5 -0
- package/node_modules/lodash/fp/useWith.js +1 -0
- package/node_modules/lodash/fp/util.js +2 -0
- package/node_modules/lodash/fp/value.js +5 -0
- package/node_modules/lodash/fp/valueOf.js +5 -0
- package/node_modules/lodash/fp/values.js +5 -0
- package/node_modules/lodash/fp/valuesIn.js +5 -0
- package/node_modules/lodash/fp/where.js +1 -0
- package/node_modules/lodash/fp/whereEq.js +1 -0
- package/node_modules/lodash/fp/without.js +5 -0
- package/node_modules/lodash/fp/words.js +5 -0
- package/node_modules/lodash/fp/wrap.js +5 -0
- package/node_modules/lodash/fp/wrapperAt.js +5 -0
- package/node_modules/lodash/fp/wrapperChain.js +5 -0
- package/node_modules/lodash/fp/wrapperLodash.js +5 -0
- package/node_modules/lodash/fp/wrapperReverse.js +5 -0
- package/node_modules/lodash/fp/wrapperValue.js +5 -0
- package/node_modules/lodash/fp/xor.js +5 -0
- package/node_modules/lodash/fp/xorBy.js +5 -0
- package/node_modules/lodash/fp/xorWith.js +5 -0
- package/node_modules/lodash/fp/zip.js +5 -0
- package/node_modules/lodash/fp/zipAll.js +5 -0
- package/node_modules/lodash/fp/zipObj.js +1 -0
- package/node_modules/lodash/fp/zipObject.js +5 -0
- package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
- package/node_modules/lodash/fp/zipWith.js +5 -0
- package/node_modules/lodash/fp.js +2 -0
- package/node_modules/lodash/fromPairs.js +28 -0
- package/node_modules/lodash/function.js +25 -0
- package/node_modules/lodash/functions.js +31 -0
- package/node_modules/lodash/functionsIn.js +31 -0
- package/node_modules/lodash/get.js +33 -0
- package/node_modules/lodash/groupBy.js +41 -0
- package/node_modules/lodash/gt.js +29 -0
- package/node_modules/lodash/gte.js +30 -0
- package/node_modules/lodash/has.js +35 -0
- package/node_modules/lodash/hasIn.js +34 -0
- package/node_modules/lodash/head.js +23 -0
- package/node_modules/lodash/identity.js +21 -0
- package/node_modules/lodash/inRange.js +55 -0
- package/node_modules/lodash/includes.js +53 -0
- package/node_modules/lodash/index.js +1 -0
- package/node_modules/lodash/indexOf.js +42 -0
- package/node_modules/lodash/initial.js +22 -0
- package/node_modules/lodash/intersection.js +30 -0
- package/node_modules/lodash/intersectionBy.js +45 -0
- package/node_modules/lodash/intersectionWith.js +41 -0
- package/node_modules/lodash/invert.js +42 -0
- package/node_modules/lodash/invertBy.js +56 -0
- package/node_modules/lodash/invoke.js +24 -0
- package/node_modules/lodash/invokeMap.js +41 -0
- package/node_modules/lodash/isArguments.js +36 -0
- package/node_modules/lodash/isArray.js +26 -0
- package/node_modules/lodash/isArrayBuffer.js +27 -0
- package/node_modules/lodash/isArrayLike.js +33 -0
- package/node_modules/lodash/isArrayLikeObject.js +33 -0
- package/node_modules/lodash/isBoolean.js +29 -0
- package/node_modules/lodash/isBuffer.js +38 -0
- package/node_modules/lodash/isDate.js +27 -0
- package/node_modules/lodash/isElement.js +25 -0
- package/node_modules/lodash/isEmpty.js +77 -0
- package/node_modules/lodash/isEqual.js +35 -0
- package/node_modules/lodash/isEqualWith.js +41 -0
- package/node_modules/lodash/isError.js +36 -0
- package/node_modules/lodash/isFinite.js +36 -0
- package/node_modules/lodash/isFunction.js +37 -0
- package/node_modules/lodash/isInteger.js +33 -0
- package/node_modules/lodash/isLength.js +35 -0
- package/node_modules/lodash/isMap.js +27 -0
- package/node_modules/lodash/isMatch.js +36 -0
- package/node_modules/lodash/isMatchWith.js +41 -0
- package/node_modules/lodash/isNaN.js +38 -0
- package/node_modules/lodash/isNative.js +40 -0
- package/node_modules/lodash/isNil.js +25 -0
- package/node_modules/lodash/isNull.js +22 -0
- package/node_modules/lodash/isNumber.js +38 -0
- package/node_modules/lodash/isObject.js +31 -0
- package/node_modules/lodash/isObjectLike.js +29 -0
- package/node_modules/lodash/isPlainObject.js +62 -0
- package/node_modules/lodash/isRegExp.js +27 -0
- package/node_modules/lodash/isSafeInteger.js +37 -0
- package/node_modules/lodash/isSet.js +27 -0
- package/node_modules/lodash/isString.js +30 -0
- package/node_modules/lodash/isSymbol.js +29 -0
- package/node_modules/lodash/isTypedArray.js +27 -0
- package/node_modules/lodash/isUndefined.js +22 -0
- package/node_modules/lodash/isWeakMap.js +28 -0
- package/node_modules/lodash/isWeakSet.js +28 -0
- package/node_modules/lodash/iteratee.js +53 -0
- package/node_modules/lodash/join.js +26 -0
- package/node_modules/lodash/kebabCase.js +28 -0
- package/node_modules/lodash/keyBy.js +36 -0
- package/node_modules/lodash/keys.js +37 -0
- package/node_modules/lodash/keysIn.js +32 -0
- package/node_modules/lodash/lang.js +58 -0
- package/node_modules/lodash/last.js +20 -0
- package/node_modules/lodash/lastIndexOf.js +46 -0
- package/node_modules/lodash/lodash.js +17107 -0
- package/node_modules/lodash/lodash.min.js +137 -0
- package/node_modules/lodash/lowerCase.js +27 -0
- package/node_modules/lodash/lowerFirst.js +22 -0
- package/node_modules/lodash/lt.js +29 -0
- package/node_modules/lodash/lte.js +30 -0
- package/node_modules/lodash/map.js +53 -0
- package/node_modules/lodash/mapKeys.js +36 -0
- package/node_modules/lodash/mapValues.js +43 -0
- package/node_modules/lodash/matches.js +39 -0
- package/node_modules/lodash/matchesProperty.js +37 -0
- package/node_modules/lodash/math.js +17 -0
- package/node_modules/lodash/max.js +29 -0
- package/node_modules/lodash/maxBy.js +34 -0
- package/node_modules/lodash/mean.js +22 -0
- package/node_modules/lodash/meanBy.js +31 -0
- package/node_modules/lodash/memoize.js +73 -0
- package/node_modules/lodash/merge.js +39 -0
- package/node_modules/lodash/mergeWith.js +39 -0
- package/node_modules/lodash/method.js +34 -0
- package/node_modules/lodash/methodOf.js +33 -0
- package/node_modules/lodash/min.js +29 -0
- package/node_modules/lodash/minBy.js +34 -0
- package/node_modules/lodash/mixin.js +74 -0
- package/node_modules/lodash/multiply.js +22 -0
- package/node_modules/lodash/negate.js +40 -0
- package/node_modules/lodash/next.js +35 -0
- package/node_modules/lodash/noop.js +17 -0
- package/node_modules/lodash/now.js +23 -0
- package/node_modules/lodash/nth.js +29 -0
- package/node_modules/lodash/nthArg.js +32 -0
- package/node_modules/lodash/number.js +5 -0
- package/node_modules/lodash/object.js +49 -0
- package/node_modules/lodash/omit.js +57 -0
- package/node_modules/lodash/omitBy.js +29 -0
- package/node_modules/lodash/once.js +25 -0
- package/node_modules/lodash/orderBy.js +47 -0
- package/node_modules/lodash/over.js +24 -0
- package/node_modules/lodash/overArgs.js +61 -0
- package/node_modules/lodash/overEvery.js +30 -0
- package/node_modules/lodash/overSome.js +30 -0
- package/node_modules/lodash/package.json +80 -0
- package/node_modules/lodash/pad.js +49 -0
- package/node_modules/lodash/padEnd.js +39 -0
- package/node_modules/lodash/padStart.js +39 -0
- package/node_modules/lodash/parseInt.js +43 -0
- package/node_modules/lodash/partial.js +50 -0
- package/node_modules/lodash/partialRight.js +49 -0
- package/node_modules/lodash/partition.js +43 -0
- package/node_modules/lodash/pick.js +25 -0
- package/node_modules/lodash/pickBy.js +37 -0
- package/node_modules/lodash/plant.js +48 -0
- package/node_modules/lodash/property.js +32 -0
- package/node_modules/lodash/propertyOf.js +30 -0
- package/node_modules/lodash/pull.js +29 -0
- package/node_modules/lodash/pullAll.js +29 -0
- package/node_modules/lodash/pullAllBy.js +33 -0
- package/node_modules/lodash/pullAllWith.js +32 -0
- package/node_modules/lodash/pullAt.js +43 -0
- package/node_modules/lodash/random.js +82 -0
- package/node_modules/lodash/range.js +46 -0
- package/node_modules/lodash/rangeRight.js +41 -0
- package/node_modules/lodash/rearg.js +33 -0
- package/node_modules/lodash/reduce.js +51 -0
- package/node_modules/lodash/reduceRight.js +36 -0
- package/node_modules/lodash/reject.js +46 -0
- package/node_modules/lodash/remove.js +53 -0
- package/node_modules/lodash/repeat.js +37 -0
- package/node_modules/lodash/replace.js +29 -0
- package/node_modules/lodash/rest.js +40 -0
- package/node_modules/lodash/result.js +56 -0
- package/node_modules/lodash/reverse.js +34 -0
- package/node_modules/lodash/round.js +26 -0
- package/node_modules/lodash/sample.js +24 -0
- package/node_modules/lodash/sampleSize.js +37 -0
- package/node_modules/lodash/seq.js +16 -0
- package/node_modules/lodash/set.js +35 -0
- package/node_modules/lodash/setWith.js +32 -0
- package/node_modules/lodash/shuffle.js +25 -0
- package/node_modules/lodash/size.js +46 -0
- package/node_modules/lodash/slice.js +37 -0
- package/node_modules/lodash/snakeCase.js +28 -0
- package/node_modules/lodash/some.js +51 -0
- package/node_modules/lodash/sortBy.js +48 -0
- package/node_modules/lodash/sortedIndex.js +24 -0
- package/node_modules/lodash/sortedIndexBy.js +33 -0
- package/node_modules/lodash/sortedIndexOf.js +31 -0
- package/node_modules/lodash/sortedLastIndex.js +25 -0
- package/node_modules/lodash/sortedLastIndexBy.js +33 -0
- package/node_modules/lodash/sortedLastIndexOf.js +31 -0
- package/node_modules/lodash/sortedUniq.js +24 -0
- package/node_modules/lodash/sortedUniqBy.js +26 -0
- package/node_modules/lodash/split.js +52 -0
- package/node_modules/lodash/spread.js +63 -0
- package/node_modules/lodash/startCase.js +29 -0
- package/node_modules/lodash/startsWith.js +39 -0
- package/node_modules/lodash/string.js +33 -0
- package/node_modules/lodash/stubArray.js +23 -0
- package/node_modules/lodash/stubFalse.js +18 -0
- package/node_modules/lodash/stubObject.js +23 -0
- package/node_modules/lodash/stubString.js +18 -0
- package/node_modules/lodash/stubTrue.js +18 -0
- package/node_modules/lodash/subtract.js +22 -0
- package/node_modules/lodash/sum.js +24 -0
- package/node_modules/lodash/sumBy.js +33 -0
- package/node_modules/lodash/tail.js +22 -0
- package/node_modules/lodash/take.js +37 -0
- package/node_modules/lodash/takeRight.js +39 -0
- package/node_modules/lodash/takeRightWhile.js +45 -0
- package/node_modules/lodash/takeWhile.js +45 -0
- package/node_modules/lodash/tap.js +29 -0
- package/node_modules/lodash/template.js +238 -0
- package/node_modules/lodash/templateSettings.js +67 -0
- package/node_modules/lodash/throttle.js +69 -0
- package/node_modules/lodash/thru.js +28 -0
- package/node_modules/lodash/times.js +51 -0
- package/node_modules/lodash/toArray.js +58 -0
- package/node_modules/lodash/toFinite.js +42 -0
- package/node_modules/lodash/toInteger.js +36 -0
- package/node_modules/lodash/toIterator.js +23 -0
- package/node_modules/lodash/toJSON.js +1 -0
- package/node_modules/lodash/toLength.js +38 -0
- package/node_modules/lodash/toLower.js +28 -0
- package/node_modules/lodash/toNumber.js +66 -0
- package/node_modules/lodash/toPairs.js +30 -0
- package/node_modules/lodash/toPairsIn.js +30 -0
- package/node_modules/lodash/toPath.js +33 -0
- package/node_modules/lodash/toPlainObject.js +32 -0
- package/node_modules/lodash/toSafeInteger.js +37 -0
- package/node_modules/lodash/toString.js +28 -0
- package/node_modules/lodash/toUpper.js +28 -0
- package/node_modules/lodash/transform.js +65 -0
- package/node_modules/lodash/trim.js +49 -0
- package/node_modules/lodash/trimEnd.js +43 -0
- package/node_modules/lodash/trimStart.js +43 -0
- package/node_modules/lodash/truncate.js +111 -0
- package/node_modules/lodash/unary.js +22 -0
- package/node_modules/lodash/unescape.js +34 -0
- package/node_modules/lodash/union.js +26 -0
- package/node_modules/lodash/unionBy.js +39 -0
- package/node_modules/lodash/unionWith.js +34 -0
- package/node_modules/lodash/uniq.js +25 -0
- package/node_modules/lodash/uniqBy.js +31 -0
- package/node_modules/lodash/uniqWith.js +28 -0
- package/node_modules/lodash/uniqueId.js +28 -0
- package/node_modules/lodash/unset.js +34 -0
- package/node_modules/lodash/unzip.js +45 -0
- package/node_modules/lodash/unzipWith.js +39 -0
- package/node_modules/lodash/update.js +35 -0
- package/node_modules/lodash/updateWith.js +33 -0
- package/node_modules/lodash/upperCase.js +27 -0
- package/node_modules/lodash/upperFirst.js +22 -0
- package/node_modules/lodash/util.js +34 -0
- package/node_modules/lodash/value.js +1 -0
- package/node_modules/lodash/valueOf.js +1 -0
- package/node_modules/lodash/values.js +34 -0
- package/node_modules/lodash/valuesIn.js +32 -0
- package/node_modules/lodash/without.js +31 -0
- package/node_modules/lodash/words.js +35 -0
- package/node_modules/lodash/wrap.js +30 -0
- package/node_modules/lodash/wrapperAt.js +48 -0
- package/node_modules/lodash/wrapperChain.js +34 -0
- package/node_modules/lodash/wrapperLodash.js +147 -0
- package/node_modules/lodash/wrapperReverse.js +44 -0
- package/node_modules/lodash/wrapperValue.js +21 -0
- package/node_modules/lodash/xor.js +28 -0
- package/node_modules/lodash/xorBy.js +39 -0
- package/node_modules/lodash/xorWith.js +34 -0
- package/node_modules/lodash/zip.js +22 -0
- package/node_modules/lodash/zipObject.js +24 -0
- package/node_modules/lodash/zipObjectDeep.js +23 -0
- package/node_modules/lodash/zipWith.js +32 -0
- package/node_modules/lodash.flattendeep/LICENSE +47 -0
- package/node_modules/lodash.flattendeep/README.md +18 -0
- package/node_modules/lodash.flattendeep/index.js +350 -0
- package/node_modules/lodash.flattendeep/package.json +72 -0
- package/node_modules/lru-cache/index.js +3 -2
- package/node_modules/lru-cache/package.json +19 -17
- package/node_modules/make-dir/package.json +3 -2
- package/node_modules/map-age-cleaner/dist/index.d.ts +20 -0
- package/node_modules/map-age-cleaner/dist/index.js +92 -0
- package/node_modules/map-age-cleaner/license +9 -0
- package/node_modules/map-age-cleaner/package.json +94 -0
- package/node_modules/map-age-cleaner/readme.md +67 -0
- package/node_modules/mem/index.js +52 -21
- package/node_modules/mem/license +4 -16
- package/node_modules/mem/package.json +19 -20
- package/node_modules/mem/readme.md +47 -27
- package/node_modules/merge-source-map/node_modules/source-map/package.json +2 -2
- package/node_modules/merge-source-map/package.json +2 -2
- package/node_modules/mimic-fn/package.json +4 -3
- package/node_modules/minimatch/package.json +3 -2
- package/node_modules/minimist/index.js +8 -8
- package/node_modules/minimist/package.json +12 -13
- package/node_modules/minimist/test/bool.js +119 -0
- package/node_modules/minimist/test/dotted.js +6 -0
- package/node_modules/minimist/test/num.js +36 -0
- package/node_modules/minimist/test/parse.js +23 -144
- package/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
- package/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
- package/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
- package/node_modules/mkdirp/node_modules/minimist/package.json +74 -0
- package/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
- package/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
- package/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
- package/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
- package/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
- package/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
- package/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
- package/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
- package/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
- package/node_modules/mkdirp/package.json +2 -3
- package/node_modules/ms/index.js +28 -18
- package/node_modules/ms/package.json +18 -21
- package/node_modules/ms/readme.md +17 -8
- package/node_modules/nice-try/CHANGELOG.md +21 -0
- package/node_modules/nice-try/LICENSE +21 -0
- package/node_modules/nice-try/README.md +32 -0
- package/node_modules/nice-try/package.json +65 -0
- package/node_modules/nice-try/src/index.js +12 -0
- package/node_modules/normalize-package-data/README.md +1 -1
- package/node_modules/normalize-package-data/lib/fixer.js +3 -2
- package/node_modules/normalize-package-data/package.json +19 -18
- package/node_modules/npm-run-path/package.json +4 -3
- package/node_modules/number-is-nan/package.json +2 -2
- package/node_modules/once/package.json +6 -3
- package/node_modules/optimist/package.json +2 -2
- package/node_modules/os-homedir/package.json +2 -2
- package/node_modules/os-locale/index.js +40 -27
- package/node_modules/os-locale/license +4 -16
- package/node_modules/os-locale/package.json +19 -20
- package/node_modules/os-locale/readme.md +22 -4
- package/node_modules/p-defer/index.js +11 -0
- package/node_modules/{debug-log → p-defer}/license +0 -0
- package/node_modules/p-defer/package.json +76 -0
- package/node_modules/p-defer/readme.md +47 -0
- package/node_modules/p-finally/package.json +4 -3
- package/node_modules/p-is-promise/index.d.ts +13 -0
- package/node_modules/p-is-promise/index.js +14 -0
- package/node_modules/{test-exclude/node_modules/parse-json → p-is-promise}/license +0 -0
- package/node_modules/p-is-promise/package.json +77 -0
- package/node_modules/p-is-promise/readme.md +43 -0
- package/node_modules/p-limit/index.js +24 -17
- package/node_modules/p-limit/package.json +17 -17
- package/node_modules/p-limit/readme.md +23 -2
- package/node_modules/p-locate/index.js +8 -5
- package/node_modules/p-locate/license +4 -16
- package/node_modules/p-locate/package.json +16 -19
- package/node_modules/p-locate/readme.md +6 -4
- package/node_modules/p-try/index.js +3 -2
- package/node_modules/p-try/license +4 -16
- package/node_modules/p-try/package.json +14 -17
- package/node_modules/p-try/readme.md +11 -2
- package/node_modules/package-hash/LICENSE +14 -0
- package/node_modules/package-hash/README.md +79 -0
- package/node_modules/package-hash/index.js +174 -0
- package/node_modules/package-hash/package.json +91 -0
- package/node_modules/{test-exclude/node_modules/parse-json → parse-json}/index.js +0 -0
- package/node_modules/{test-exclude/node_modules/path-type → parse-json}/license +0 -0
- package/node_modules/parse-json/package.json +78 -0
- package/node_modules/{test-exclude/node_modules/parse-json → parse-json}/readme.md +0 -0
- package/node_modules/{locate-path/node_modules/path-exists → path-exists}/index.js +0 -0
- package/node_modules/{default-require-extensions/node_modules/strip-bom → path-exists}/license +0 -0
- package/node_modules/path-exists/package.json +81 -0
- package/node_modules/{locate-path/node_modules/path-exists → path-exists}/readme.md +0 -0
- package/node_modules/path-is-absolute/package.json +4 -3
- package/node_modules/path-key/package.json +4 -2
- package/node_modules/path-parse/.travis.yml +9 -0
- package/node_modules/path-parse/LICENSE +21 -0
- package/node_modules/path-parse/README.md +42 -0
- package/node_modules/path-parse/index.js +93 -0
- package/node_modules/path-parse/package.json +64 -0
- package/node_modules/path-parse/test.js +77 -0
- package/node_modules/{test-exclude/node_modules/path-type → path-type}/index.js +0 -0
- package/node_modules/{test-exclude/node_modules/pify → path-type}/license +0 -0
- package/node_modules/path-type/package.json +80 -0
- package/node_modules/{test-exclude/node_modules/path-type → path-type}/readme.md +0 -0
- package/node_modules/{make-dir/node_modules/pify → pify}/index.js +0 -0
- package/node_modules/{test-exclude/node_modules/read-pkg-up → pify}/license +0 -0
- package/node_modules/pify/package.json +88 -0
- package/node_modules/{make-dir/node_modules/pify → pify}/readme.md +0 -0
- package/node_modules/pkg-dir/license +4 -16
- package/node_modules/pkg-dir/package.json +14 -14
- package/node_modules/pkg-dir/readme.md +5 -3
- package/node_modules/pseudomap/package.json +2 -2
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +65 -0
- package/node_modules/pump/index.js +82 -0
- package/node_modules/pump/package.json +62 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/{test-exclude/node_modules/read-pkg → read-pkg}/index.js +0 -0
- package/node_modules/read-pkg/license +9 -0
- package/node_modules/read-pkg/package.json +78 -0
- package/node_modules/{test-exclude/node_modules/read-pkg → read-pkg}/readme.md +0 -0
- package/node_modules/read-pkg-up/index.js +26 -0
- package/node_modules/{test-exclude/node_modules/read-pkg → read-pkg-up}/license +0 -0
- package/node_modules/read-pkg-up/package.json +92 -0
- package/node_modules/read-pkg-up/readme.md +82 -0
- package/node_modules/release-zalgo/LICENSE +14 -0
- package/node_modules/release-zalgo/README.md +194 -0
- package/node_modules/release-zalgo/index.js +9 -0
- package/node_modules/release-zalgo/lib/Async.js +21 -0
- package/node_modules/release-zalgo/lib/Sync.js +24 -0
- package/node_modules/release-zalgo/lib/Thenable.js +39 -0
- package/node_modules/release-zalgo/lib/constants.js +6 -0
- package/node_modules/release-zalgo/lib/unwrapSync.js +54 -0
- package/node_modules/release-zalgo/package.json +80 -0
- package/node_modules/require-directory/package.json +2 -2
- package/node_modules/require-main-filename/package.json +2 -2
- package/node_modules/resolve/.editorconfig +20 -0
- package/node_modules/{cliui/node_modules/wordwrap/.npmignore → resolve/.eslintignore} +0 -0
- package/node_modules/resolve/.eslintrc +31 -0
- package/node_modules/resolve/.travis.yml +269 -0
- package/node_modules/resolve/CHANGELOG.md +629 -0
- package/node_modules/resolve/LICENSE +18 -0
- package/node_modules/resolve/appveyor.yml +47 -0
- package/node_modules/resolve/changelog.hbs +36 -0
- package/node_modules/resolve/example/async.js +5 -0
- package/node_modules/resolve/example/sync.js +3 -0
- package/node_modules/resolve/index.js +8 -0
- package/node_modules/resolve/lib/async.js +229 -0
- package/node_modules/resolve/lib/caller.js +8 -0
- package/node_modules/resolve/lib/core.js +53 -0
- package/node_modules/resolve/lib/core.json +73 -0
- package/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/node_modules/resolve/lib/normalize-options.js +10 -0
- package/node_modules/resolve/lib/sync.js +154 -0
- package/node_modules/resolve/package.json +77 -0
- package/node_modules/resolve/readme.markdown +179 -0
- package/node_modules/resolve/test/.eslintrc +5 -0
- package/node_modules/resolve/test/core.js +82 -0
- package/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/node_modules/resolve/test/dotdot/index.js +1 -0
- package/node_modules/resolve/test/dotdot.js +29 -0
- package/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/node_modules/resolve/test/filter.js +34 -0
- package/node_modules/resolve/test/filter_sync.js +26 -0
- package/node_modules/resolve/test/mock.js +143 -0
- package/node_modules/resolve/test/mock_sync.js +67 -0
- package/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/node_modules/resolve/test/module_dir.js +56 -0
- package/node_modules/resolve/test/node-modules-paths.js +121 -0
- package/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/node_modules/resolve/test/node_path.js +70 -0
- package/node_modules/resolve/test/nonstring.js +9 -0
- package/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/node_modules/resolve/test/pathfilter.js +75 -0
- package/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/node_modules/resolve/test/precedence.js +23 -0
- package/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/node_modules/resolve/test/resolver/baz/package.json +3 -0
- package/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/foo.js +1 -0
- package/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/node_modules/resolve/test/resolver/mug.js +0 -0
- package/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/node_modules/resolve/test/resolver.js +429 -0
- package/node_modules/resolve/test/resolver_sync.js +340 -0
- package/node_modules/resolve/test/subdirs.js +13 -0
- package/node_modules/resolve/test/symlinks.js +56 -0
- package/node_modules/resolve-from/package.json +2 -2
- package/node_modules/rimraf/package.json +18 -15
- package/node_modules/{is-buffer → safe-buffer}/LICENSE +0 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +70 -0
- package/node_modules/semver/README.md +17 -6
- package/node_modules/semver/bin/semver +14 -4
- package/node_modules/semver/package.json +15 -13
- package/node_modules/semver/semver.js +132 -104
- package/node_modules/set-blocking/package.json +2 -2
- package/node_modules/shebang-command/package.json +4 -3
- package/node_modules/shebang-regex/package.json +2 -2
- package/node_modules/signal-exit/package.json +4 -3
- package/node_modules/spawn-wrap/package.json +2 -2
- package/node_modules/spdx-correct/README.md +4 -0
- package/node_modules/spdx-correct/index.js +25 -8
- package/node_modules/spdx-correct/package.json +21 -13
- package/node_modules/spdx-exceptions/index.json +16 -11
- package/node_modules/spdx-exceptions/package.json +12 -12
- package/node_modules/spdx-exceptions/test.log +8 -0
- package/node_modules/spdx-expression-parse/package.json +2 -2
- package/node_modules/spdx-license-ids/README.md +2 -2
- package/node_modules/spdx-license-ids/deprecated.json +6 -5
- package/node_modules/spdx-license-ids/index.json +108 -96
- package/node_modules/spdx-license-ids/package.json +19 -22
- package/node_modules/string-width/package.json +4 -4
- package/node_modules/strip-ansi/package.json +4 -4
- package/node_modules/{default-require-extensions/node_modules/strip-bom → strip-bom}/index.js +0 -0
- package/node_modules/{is-builtin-module → strip-bom}/license +0 -0
- package/node_modules/strip-bom/package.json +78 -0
- package/node_modules/{default-require-extensions/node_modules/strip-bom → strip-bom}/readme.md +0 -0
- package/node_modules/strip-eof/package.json +4 -3
- package/node_modules/test-exclude/CHANGELOG.md +33 -0
- package/node_modules/test-exclude/index.js +134 -120
- package/node_modules/test-exclude/package.json +17 -25
- package/node_modules/uglify-js/LICENSE +1 -1
- package/node_modules/uglify-js/README.md +836 -696
- package/node_modules/uglify-js/bin/uglifyjs +351 -569
- package/node_modules/uglify-js/lib/ast.js +145 -246
- package/node_modules/uglify-js/lib/compress.js +4516 -2120
- package/node_modules/uglify-js/lib/minify.js +246 -0
- package/node_modules/uglify-js/lib/mozilla-ast.js +57 -39
- package/node_modules/uglify-js/lib/output.js +553 -463
- package/node_modules/uglify-js/lib/parse.js +279 -230
- package/node_modules/uglify-js/lib/propmangle.js +99 -129
- package/node_modules/uglify-js/lib/scope.js +312 -372
- package/node_modules/uglify-js/lib/sourcemap.js +50 -43
- package/node_modules/uglify-js/lib/transform.js +53 -86
- package/node_modules/uglify-js/lib/utils.js +59 -144
- package/node_modules/uglify-js/node_modules/source-map/CHANGELOG.md +301 -0
- package/node_modules/uglify-js/node_modules/source-map/LICENSE +28 -0
- package/node_modules/uglify-js/node_modules/source-map/README.md +742 -0
- package/node_modules/uglify-js/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules/uglify-js/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules/uglify-js/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules/uglify-js/node_modules/source-map/lib/util.js +488 -0
- package/node_modules/uglify-js/node_modules/source-map/package.json +216 -0
- package/node_modules/uglify-js/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules/uglify-js/node_modules/source-map/source-map.js +8 -0
- package/node_modules/uglify-js/package.json +43 -35
- package/node_modules/uglify-js/tools/domprops.json +5601 -5603
- package/node_modules/uglify-js/tools/exit.js +15 -0
- package/node_modules/uglify-js/tools/exports.js +3 -16
- package/node_modules/uglify-js/tools/node.js +31 -273
- package/node_modules/uuid/.eslintrc.json +47 -0
- package/node_modules/uuid/AUTHORS +5 -0
- package/node_modules/uuid/CHANGELOG.md +110 -0
- package/node_modules/uuid/LICENSE.md +21 -0
- package/node_modules/uuid/README.md +293 -0
- package/node_modules/uuid/README_js.md +280 -0
- package/node_modules/uuid/bin/uuid +65 -0
- package/node_modules/uuid/index.js +8 -0
- package/node_modules/uuid/lib/bytesToUuid.js +24 -0
- package/node_modules/uuid/lib/md5-browser.js +216 -0
- package/node_modules/uuid/lib/md5.js +25 -0
- package/node_modules/uuid/lib/rng-browser.js +34 -0
- package/node_modules/uuid/lib/rng.js +8 -0
- package/node_modules/uuid/lib/sha1-browser.js +89 -0
- package/node_modules/uuid/lib/sha1.js +25 -0
- package/node_modules/uuid/lib/v35.js +57 -0
- package/node_modules/uuid/package.json +99 -0
- package/node_modules/uuid/v1.js +109 -0
- package/node_modules/uuid/v3.js +4 -0
- package/node_modules/uuid/v4.js +29 -0
- package/node_modules/uuid/v5.js +3 -0
- package/node_modules/validate-npm-package-license/index.js +7 -5
- package/node_modules/validate-npm-package-license/package.json +18 -12
- package/node_modules/which/package.json +4 -3
- package/node_modules/which-module/package.json +2 -2
- package/node_modules/wordwrap/package.json +2 -2
- package/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +2 -2
- package/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +2 -2
- package/node_modules/wrap-ansi/node_modules/string-width/package.json +2 -2
- package/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +2 -2
- package/node_modules/wrap-ansi/package.json +4 -4
- package/node_modules/wrappy/package.json +2 -2
- package/node_modules/write-file-atomic/CHANGELOG.md +20 -0
- package/node_modules/write-file-atomic/README.md +18 -6
- package/node_modules/write-file-atomic/index.js +176 -72
- package/node_modules/write-file-atomic/package.json +18 -17
- package/node_modules/y18n/CHANGELOG.md +21 -0
- package/node_modules/y18n/README.md +18 -0
- package/node_modules/y18n/index.js +16 -0
- package/node_modules/y18n/package.json +19 -18
- package/node_modules/yallist/package.json +2 -2
- package/node_modules/yargs/CHANGELOG.md +85 -1
- package/node_modules/yargs/README.md +6 -3
- package/node_modules/yargs/lib/command.js +8 -1
- package/node_modules/yargs/lib/levenshtein.js +2 -2
- package/node_modules/yargs/lib/middleware.js +10 -0
- package/node_modules/yargs/lib/usage.js +16 -12
- package/node_modules/yargs/lib/validation.js +2 -2
- package/node_modules/yargs/locales/nb.json +1 -1
- package/node_modules/yargs/locales/nn.json +2 -2
- package/node_modules/yargs/locales/pirate.json +2 -1
- package/node_modules/yargs/package.json +32 -30
- package/node_modules/yargs/yargs.js +32 -27
- package/node_modules/yargs-parser/CHANGELOG.md +112 -0
- package/node_modules/yargs-parser/README.md +45 -2
- package/node_modules/yargs-parser/index.js +67 -12
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +1 -0
- package/node_modules/yargs-parser/package.json +25 -20
- package/package.json +30 -30
- package/node_modules/align-text/LICENSE +0 -21
- package/node_modules/align-text/README.md +0 -236
- package/node_modules/align-text/index.js +0 -52
- package/node_modules/align-text/package.json +0 -81
- package/node_modules/amdefine/LICENSE +0 -58
- package/node_modules/amdefine/README.md +0 -171
- package/node_modules/amdefine/amdefine.js +0 -301
- package/node_modules/amdefine/intercept.js +0 -36
- package/node_modules/amdefine/package.json +0 -51
- package/node_modules/async/lib/async.js +0 -1265
- package/node_modules/builtin-modules/builtin-modules.json +0 -35
- package/node_modules/builtin-modules/index.js +0 -10
- package/node_modules/builtin-modules/package.json +0 -76
- package/node_modules/builtin-modules/readme.md +0 -41
- package/node_modules/builtin-modules/static.js +0 -2
- package/node_modules/caching-transform/node_modules/md5-hex/browser.js +0 -10
- package/node_modules/caching-transform/node_modules/md5-hex/index.js +0 -23
- package/node_modules/caching-transform/node_modules/md5-hex/package.json +0 -74
- package/node_modules/caching-transform/node_modules/md5-hex/readme.md +0 -44
- package/node_modules/center-align/LICENSE +0 -21
- package/node_modules/center-align/README.md +0 -74
- package/node_modules/center-align/index.js +0 -16
- package/node_modules/center-align/package.json +0 -86
- package/node_modules/center-align/utils.js +0 -40
- package/node_modules/cliui/.coveralls.yml +0 -1
- package/node_modules/cliui/.npmignore +0 -2
- package/node_modules/cliui/.travis.yml +0 -7
- package/node_modules/cliui/node_modules/wordwrap/README.markdown +0 -70
- package/node_modules/cliui/node_modules/wordwrap/example/center.js +0 -10
- package/node_modules/cliui/node_modules/wordwrap/example/meat.js +0 -3
- package/node_modules/cliui/node_modules/wordwrap/index.js +0 -76
- package/node_modules/cliui/node_modules/wordwrap/package.json +0 -70
- package/node_modules/cliui/node_modules/wordwrap/test/break.js +0 -30
- package/node_modules/cliui/node_modules/wordwrap/test/idleness.txt +0 -63
- package/node_modules/cliui/node_modules/wordwrap/test/wrap.js +0 -31
- package/node_modules/cliui/test/cliui.js +0 -349
- package/node_modules/debug/.coveralls.yml +0 -1
- package/node_modules/debug/.eslintrc +0 -14
- package/node_modules/debug/.npmignore +0 -9
- package/node_modules/debug/.travis.yml +0 -20
- package/node_modules/debug/Makefile +0 -58
- package/node_modules/debug/karma.conf.js +0 -70
- package/node_modules/debug/node.js +0 -1
- package/node_modules/debug/src/debug.js +0 -225
- package/node_modules/debug-log/index.js +0 -23
- package/node_modules/debug-log/package.json +0 -73
- package/node_modules/debug-log/readme.md +0 -40
- package/node_modules/default-require-extensions/node_modules/strip-bom/package.json +0 -75
- package/node_modules/execa/node_modules/cross-spawn/lib/util/escapeArgument.js +0 -30
- package/node_modules/execa/node_modules/cross-spawn/lib/util/escapeCommand.js +0 -12
- package/node_modules/execa/node_modules/cross-spawn/lib/util/hasEmptyArgumentBug.js +0 -18
- package/node_modules/graceful-fs/fs.js +0 -21
- package/node_modules/handlebars/.gitattributes +0 -6
- package/node_modules/handlebars/.gitmodules +0 -3
- package/node_modules/handlebars/.idea/compiler.xml +0 -22
- package/node_modules/handlebars/.idea/copyright/profiles_settings.xml +0 -3
- package/node_modules/handlebars/.idea/dictionaries/nknappmeier.xml +0 -7
- package/node_modules/handlebars/.idea/handlebars.js.iml +0 -16
- package/node_modules/handlebars/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/node_modules/handlebars/.idea/jsLibraryMappings.xml +0 -6
- package/node_modules/handlebars/.idea/misc.xml +0 -22
- package/node_modules/handlebars/.idea/modules.xml +0 -8
- package/node_modules/handlebars/.idea/vcs.xml +0 -6
- package/node_modules/handlebars/.idea/watcherTasks.xml +0 -4
- package/node_modules/handlebars/.idea/workspace.xml +0 -2449
- package/node_modules/handlebars/.istanbul.yml +0 -2
- package/node_modules/handlebars/.npmignore +0 -25
- package/node_modules/handlebars/CONTRIBUTING.md +0 -99
- package/node_modules/handlebars/FAQ.md +0 -60
- package/node_modules/handlebars/appveyor.yml +0 -38
- package/node_modules/handlebars/docs/compiler-api.md +0 -338
- package/node_modules/handlebars/docs/decorators-api.md +0 -19
- package/node_modules/handlebars/node_modules/source-map/build/assert-shim.js +0 -56
- package/node_modules/handlebars/node_modules/source-map/build/mini-require.js +0 -152
- package/node_modules/handlebars/node_modules/source-map/build/prefix-source-map.jsm +0 -21
- package/node_modules/handlebars/node_modules/source-map/build/prefix-utils.jsm +0 -18
- package/node_modules/handlebars/node_modules/source-map/build/suffix-browser.js +0 -8
- package/node_modules/handlebars/node_modules/source-map/build/suffix-source-map.jsm +0 -6
- package/node_modules/handlebars/node_modules/source-map/build/suffix-utils.jsm +0 -21
- package/node_modules/handlebars/node_modules/source-map/build/test-prefix.js +0 -8
- package/node_modules/handlebars/node_modules/source-map/build/test-suffix.js +0 -3
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/array-set.js +0 -107
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/base64-vlq.js +0 -146
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/base64.js +0 -73
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/binary-search.js +0 -117
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/mapping-list.js +0 -86
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/quick-sort.js +0 -120
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-consumer.js +0 -1077
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/source-map-generator.js +0 -399
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/source-node.js +0 -414
- package/node_modules/handlebars/node_modules/source-map/lib/source-map/util.js +0 -370
- package/node_modules/handlebars/node_modules/source-map/lib/source-map.js +0 -8
- package/node_modules/handlebars/package-lock.json +0 -5492
- package/node_modules/is-buffer/README.md +0 -53
- package/node_modules/is-buffer/index.js +0 -21
- package/node_modules/is-buffer/package.json +0 -80
- package/node_modules/is-buffer/test/basic.js +0 -24
- package/node_modules/is-builtin-module/index.js +0 -10
- package/node_modules/is-builtin-module/package.json +0 -78
- package/node_modules/is-builtin-module/readme.md +0 -33
- package/node_modules/kind-of/LICENSE +0 -21
- package/node_modules/kind-of/README.md +0 -261
- package/node_modules/kind-of/index.js +0 -116
- package/node_modules/kind-of/package.json +0 -142
- package/node_modules/lazy-cache/LICENSE +0 -21
- package/node_modules/lazy-cache/README.md +0 -147
- package/node_modules/lazy-cache/index.js +0 -67
- package/node_modules/lazy-cache/package.json +0 -93
- package/node_modules/locate-path/node_modules/path-exists/license +0 -21
- package/node_modules/locate-path/node_modules/path-exists/package.json +0 -75
- package/node_modules/longest/LICENSE +0 -21
- package/node_modules/longest/README.md +0 -65
- package/node_modules/longest/index.js +0 -37
- package/node_modules/longest/package.json +0 -71
- package/node_modules/make-dir/node_modules/pify/package.json +0 -86
- package/node_modules/md5-hex/browser.js +0 -10
- package/node_modules/md5-hex/index.js +0 -23
- package/node_modules/md5-hex/license +0 -21
- package/node_modules/md5-hex/package.json +0 -74
- package/node_modules/md5-hex/readme.md +0 -46
- package/node_modules/md5-o-matic/.npmignore +0 -25
- package/node_modules/md5-o-matic/.travis.yml +0 -8
- package/node_modules/md5-o-matic/LICENSE +0 -21
- package/node_modules/md5-o-matic/README.md +0 -35
- package/node_modules/md5-o-matic/lib/md5omatic.js +0 -201
- package/node_modules/md5-o-matic/package.json +0 -71
- package/node_modules/md5-o-matic/test/main.js +0 -25
- package/node_modules/repeat-string/LICENSE +0 -21
- package/node_modules/repeat-string/README.md +0 -136
- package/node_modules/repeat-string/index.js +0 -70
- package/node_modules/repeat-string/package.json +0 -131
- package/node_modules/right-align/LICENSE +0 -21
- package/node_modules/right-align/README.md +0 -77
- package/node_modules/right-align/index.js +0 -16
- package/node_modules/right-align/package.json +0 -74
- package/node_modules/slide/LICENSE +0 -15
- package/node_modules/slide/README.md +0 -143
- package/node_modules/slide/index.js +0 -1
- package/node_modules/slide/lib/async-map-ordered.js +0 -65
- package/node_modules/slide/lib/async-map.js +0 -54
- package/node_modules/slide/lib/bind-actor.js +0 -16
- package/node_modules/slide/lib/chain.js +0 -20
- package/node_modules/slide/lib/slide.js +0 -3
- package/node_modules/slide/package.json +0 -60
- package/node_modules/source-map/README.md +0 -729
- package/node_modules/source-map/dist/source-map.debug.js +0 -3091
- package/node_modules/source-map/dist/source-map.js +0 -3090
- package/node_modules/source-map/dist/source-map.min.js +0 -2
- package/node_modules/source-map/dist/source-map.min.js.map +0 -1
- package/node_modules/source-map/lib/source-map-consumer.js +0 -1082
- package/node_modules/source-map/lib/source-map-generator.js +0 -416
- package/node_modules/source-map/lib/source-node.js +0 -413
- package/node_modules/source-map/lib/util.js +0 -417
- package/node_modules/source-map/package.json +0 -216
- package/node_modules/supports-color/index.js +0 -131
- package/node_modules/supports-color/package.json +0 -91
- package/node_modules/supports-color/readme.md +0 -66
- package/node_modules/test-exclude/node_modules/load-json-file/license +0 -21
- package/node_modules/test-exclude/node_modules/load-json-file/package.json +0 -78
- package/node_modules/test-exclude/node_modules/parse-json/package.json +0 -78
- package/node_modules/test-exclude/node_modules/path-type/package.json +0 -80
- package/node_modules/test-exclude/node_modules/pify/index.js +0 -84
- package/node_modules/test-exclude/node_modules/pify/package.json +0 -87
- package/node_modules/test-exclude/node_modules/pify/readme.md +0 -131
- package/node_modules/test-exclude/node_modules/read-pkg/package.json +0 -77
- package/node_modules/test-exclude/node_modules/read-pkg-up/index.js +0 -26
- package/node_modules/test-exclude/node_modules/read-pkg-up/package.json +0 -92
- package/node_modules/test-exclude/node_modules/read-pkg-up/readme.md +0 -80
- package/node_modules/test-exclude/node_modules/strip-bom/index.js +0 -14
- package/node_modules/test-exclude/node_modules/strip-bom/license +0 -21
- package/node_modules/test-exclude/node_modules/strip-bom/package.json +0 -75
- package/node_modules/test-exclude/node_modules/strip-bom/readme.md +0 -36
- package/node_modules/uglify-js/bin/extract-props.js +0 -77
- package/node_modules/uglify-js/node_modules/yargs/CHANGELOG.md +0 -374
- package/node_modules/uglify-js/node_modules/yargs/LICENSE +0 -21
- package/node_modules/uglify-js/node_modules/yargs/README.md +0 -926
- package/node_modules/uglify-js/node_modules/yargs/completion.sh.hbs +0 -22
- package/node_modules/uglify-js/node_modules/yargs/index.js +0 -504
- package/node_modules/uglify-js/node_modules/yargs/lib/completion.js +0 -71
- package/node_modules/uglify-js/node_modules/yargs/lib/parser.js +0 -448
- package/node_modules/uglify-js/node_modules/yargs/lib/usage.js +0 -314
- package/node_modules/uglify-js/node_modules/yargs/lib/validation.js +0 -196
- package/node_modules/uglify-js/node_modules/yargs/package.json +0 -118
- package/node_modules/uglify-to-browserify/.npmignore +0 -14
- package/node_modules/uglify-to-browserify/.travis.yml +0 -3
- package/node_modules/uglify-to-browserify/LICENSE +0 -19
- package/node_modules/uglify-to-browserify/README.md +0 -15
- package/node_modules/uglify-to-browserify/index.js +0 -49
- package/node_modules/uglify-to-browserify/package.json +0 -55
- package/node_modules/uglify-to-browserify/test/index.js +0 -22
- package/node_modules/validate-npm-package-license/test.log +0 -4
- package/node_modules/window-size/LICENSE-MIT +0 -22
- package/node_modules/window-size/README.md +0 -26
- package/node_modules/window-size/index.js +0 -33
- package/node_modules/window-size/package.json +0 -62
- package/node_modules/yargs/node_modules/camelcase/index.js +0 -64
- package/node_modules/yargs/node_modules/camelcase/license +0 -21
- package/node_modules/yargs/node_modules/camelcase/package.json +0 -77
- package/node_modules/yargs/node_modules/camelcase/readme.md +0 -57
- package/node_modules/yargs/node_modules/cliui/LICENSE.txt +0 -14
- package/node_modules/yargs/node_modules/cliui/README.md +0 -115
- package/node_modules/yargs/node_modules/cliui/index.js +0 -324
- package/node_modules/yargs/node_modules/cliui/package.json +0 -102
- package/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md +0 -300
- package/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt +0 -14
- package/node_modules/yargs/node_modules/yargs-parser/README.md +0 -308
- package/node_modules/yargs/node_modules/yargs-parser/index.js +0 -811
- package/node_modules/yargs/node_modules/yargs-parser/lib/tokenize-arg-string.js +0 -40
- package/node_modules/yargs/node_modules/yargs-parser/package.json +0 -78
- package/node_modules/yargs-parser/node_modules/camelcase/index.js +0 -64
- package/node_modules/yargs-parser/node_modules/camelcase/license +0 -21
- package/node_modules/yargs-parser/node_modules/camelcase/package.json +0 -77
- package/node_modules/yargs-parser/node_modules/camelcase/readme.md +0 -57
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,64 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
<a name="13.3.0"></a>
|
|
6
|
+
# [13.3.0](https://github.com/istanbuljs/nyc/compare/v13.2.0...v13.3.0) (2019-02-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update dependendencies due to vulnerabilities ([#992](https://github.com/istanbuljs/nyc/issues/992)) ([e8cc59b](https://github.com/istanbuljs/nyc/commit/e8cc59b)), closes [#991](https://github.com/istanbuljs/nyc/issues/991)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* Support nyc report --check-coverage ([#984](https://github.com/istanbuljs/nyc/issues/984)) ([dd48410](https://github.com/istanbuljs/nyc/commit/dd48410))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
<a name="13.2.0"></a>
|
|
21
|
+
# [13.2.0](https://github.com/istanbuljs/nyc/compare/v13.1.0...v13.2.0) (2019-01-27)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* Create directory for merge destination. ([#979](https://github.com/istanbuljs/nyc/issues/979)) ([921d386](https://github.com/istanbuljs/nyc/commit/921d386)), closes [#976](https://github.com/istanbuljs/nyc/issues/976)
|
|
27
|
+
* missing command temp-directory ([#928](https://github.com/istanbuljs/nyc/issues/928)) ([28b6d09](https://github.com/istanbuljs/nyc/commit/28b6d09)), closes [#927](https://github.com/istanbuljs/nyc/issues/927)
|
|
28
|
+
* nyc processing files not covered by include when `all` is enabled. ([#914](https://github.com/istanbuljs/nyc/issues/914)) ([40afc5f](https://github.com/istanbuljs/nyc/commit/40afc5f)), closes [#913](https://github.com/istanbuljs/nyc/issues/913) [#782](https://github.com/istanbuljs/nyc/issues/782)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* avoid hardcoded HOME for spawn-wrap working dir ([#957](https://github.com/istanbuljs/nyc/issues/957)) ([ff834aa](https://github.com/istanbuljs/nyc/commit/ff834aa)), closes [#951](https://github.com/istanbuljs/nyc/issues/951)
|
|
34
|
+
* document the fact that cacheDir is configurable ([#968](https://github.com/istanbuljs/nyc/issues/968)) ([35cd49a](https://github.com/istanbuljs/nyc/commit/35cd49a))
|
|
35
|
+
* Option Plugins ([#948](https://github.com/istanbuljs/nyc/issues/948)) ([df2730d](https://github.com/istanbuljs/nyc/commit/df2730d))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<a name="13.1.0"></a>
|
|
40
|
+
# [13.1.0](https://github.com/istanbuljs/nyc/compare/v13.0.1...v13.1.0) (2018-09-06)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
* Bump dependencies. ([#915](https://github.com/istanbuljs/nyc/issues/915)) ([0b3d2cf](https://github.com/istanbuljs/nyc/commit/0b3d2cf))
|
|
46
|
+
* Rename --temp-directory option to --temp-dir ([#897](https://github.com/istanbuljs/nyc/issues/897)) ([ccf42df](https://github.com/istanbuljs/nyc/commit/ccf42df))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
<a name="13.0.1"></a>
|
|
51
|
+
## [13.0.1](https://github.com/istanbuljs/nyc/compare/v13.0.0...v13.0.1) (2018-07-24)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Bug Fixes
|
|
55
|
+
|
|
56
|
+
* add flag to allow control of intrumenter esModules option, default to looser parsing ([#863](https://github.com/istanbuljs/nyc/issues/863)) ([6b6cd5e](https://github.com/istanbuljs/nyc/commit/6b6cd5e))
|
|
57
|
+
* Enable es-modules by default. ([#889](https://github.com/istanbuljs/nyc/issues/889)) ([d0b76e2](https://github.com/istanbuljs/nyc/commit/d0b76e2)), closes [#796](https://github.com/istanbuljs/nyc/issues/796)
|
|
58
|
+
* Update caching-transform options. ([#873](https://github.com/istanbuljs/nyc/issues/873)) ([52b69ef](https://github.com/istanbuljs/nyc/commit/52b69ef))
|
|
59
|
+
* use uuid/v4 to generate unique identifiers. ([#883](https://github.com/istanbuljs/nyc/issues/883)) ([7483ed9](https://github.com/istanbuljs/nyc/commit/7483ed9))
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
5
63
|
<a name="13.0.0"></a>
|
|
6
64
|
# [13.0.0](https://github.com/istanbuljs/nyc/compare/v12.0.2...v13.0.0) (2018-06-08)
|
|
7
65
|
|
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
[](https://travis-ci.org/istanbuljs/nyc)
|
|
4
4
|
[](https://coveralls.io/r/bcoe/nyc?branch=master)
|
|
5
5
|
[](https://www.npmjs.com/package/nyc)
|
|
6
|
-
[](https://ci.appveyor.com/project/bcoe/nyc-ilw23)
|
|
7
6
|
[](https://conventionalcommits.org)
|
|
8
7
|
[](http://devtoolscommunity.herokuapp.com)
|
|
9
8
|
|
|
@@ -12,7 +11,7 @@ _Having problems? want to contribute? join our [community slack](http://devtools
|
|
|
12
11
|
Istanbul's state of the art command line interface, with support for:
|
|
13
12
|
|
|
14
13
|
* applications that spawn subprocesses.
|
|
15
|
-
* ES2015 transforms, via [babel-plugin-istanbul]
|
|
14
|
+
* ES2015 transforms, via [`babel-plugin-istanbul`], or source-maps.
|
|
16
15
|
|
|
17
16
|
## Instrumenting your code
|
|
18
17
|
|
|
@@ -62,10 +61,8 @@ stack traces for instrumented code will reflect their original lines.
|
|
|
62
61
|
|
|
63
62
|
### Support for custom require hooks (babel, typescript, etc.)
|
|
64
63
|
|
|
65
|
-
nyc supports custom require hooks like
|
|
66
|
-
[`
|
|
67
|
-
load the hooks for you, [using the `--require`
|
|
68
|
-
flag](#require-additional-modules).
|
|
64
|
+
nyc supports custom require hooks like [`@babel/register`]. nyc can load
|
|
65
|
+
the hooks for you, [using the `--require` flag](#require-additional-modules).
|
|
69
66
|
|
|
70
67
|
Source maps are used to map coverage information back to the appropriate lines
|
|
71
68
|
of the pre-transpiled code. You'll have to configure your custom require hook
|
|
@@ -75,8 +72,8 @@ the `sourceMaps` option to `inline`.
|
|
|
75
72
|
### Source-Map support for pre-instrumented codebases
|
|
76
73
|
|
|
77
74
|
If you opt to pre-instrument your source-code (rather than using a just-in-time
|
|
78
|
-
transpiler like [
|
|
79
|
-
|
|
75
|
+
transpiler like [`@babel/register`]) nyc supports both inline source-maps and
|
|
76
|
+
`.map` files.
|
|
80
77
|
|
|
81
78
|
_Important: If you are using nyc with a project that pre-instruments its code,
|
|
82
79
|
run nyc with the configuration option `--exclude-after-remap` set to `false`.
|
|
@@ -85,15 +82,14 @@ covered under exclude rules._
|
|
|
85
82
|
|
|
86
83
|
## Use with `babel-plugin-istanbul` for Babel Support
|
|
87
84
|
|
|
88
|
-
We recommend using [`babel-plugin-istanbul`]
|
|
89
|
-
project uses the babel tool chain:
|
|
85
|
+
We recommend using [`babel-plugin-istanbul`] if your project uses the babel tool chain:
|
|
90
86
|
|
|
91
87
|
1. enable the `babel-plugin-istanbul` plugin:
|
|
92
88
|
|
|
93
89
|
```json
|
|
94
90
|
{
|
|
95
91
|
"babel": {
|
|
96
|
-
"presets": ["env"],
|
|
92
|
+
"presets": ["@babel/preset-env"],
|
|
97
93
|
"env": {
|
|
98
94
|
"test": {
|
|
99
95
|
"plugins": ["istanbul"]
|
|
@@ -114,7 +110,7 @@ project uses the babel tool chain:
|
|
|
114
110
|
{
|
|
115
111
|
"nyc": {
|
|
116
112
|
"require": [
|
|
117
|
-
"babel
|
|
113
|
+
"@babel/register"
|
|
118
114
|
],
|
|
119
115
|
"sourceMap": false,
|
|
120
116
|
"instrument": false
|
|
@@ -251,17 +247,15 @@ an `include` key with a list of globs to specify specific files that should be c
|
|
|
251
247
|
The `--require` flag can be provided to `nyc` to indicate that additional
|
|
252
248
|
modules should be required in the subprocess collecting coverage:
|
|
253
249
|
|
|
254
|
-
`nyc --require babel
|
|
250
|
+
`nyc --require @babel/register --require @babel/polyfill mocha`
|
|
255
251
|
|
|
256
252
|
## Caching
|
|
257
253
|
|
|
258
|
-
You can
|
|
259
|
-
instrumenting the same files multiple times. This can significantly
|
|
260
|
-
improve runtime performance.
|
|
254
|
+
`nyc`'s default behavior is to cache instrumented files to disk to prevent instrumenting source files multiple times, and speed `nyc` execution times. You can disable this behavior by running `nyc` with the `--cache false` flag. You can also change the default cache directory from `./node_modules/.cache/nyc` by setting the `--cache-dir` flag.
|
|
261
255
|
|
|
262
256
|
## Configuring `nyc`
|
|
263
257
|
|
|
264
|
-
Any configuration options that can be set via the command line can also be specified in the `nyc` stanza of your package.json, or within a `.nycrc` file:
|
|
258
|
+
Any configuration options that can be set via the command line can also be specified in the `nyc` stanza of your package.json, or within a `.nycrc` (or `.nycrc.json`) file:
|
|
265
259
|
|
|
266
260
|
**package.json:**
|
|
267
261
|
|
|
@@ -294,7 +288,7 @@ Any configuration options that can be set via the command line can also be speci
|
|
|
294
288
|
],
|
|
295
289
|
"cache": true,
|
|
296
290
|
"all": true,
|
|
297
|
-
"temp-
|
|
291
|
+
"temp-dir": "./alternative-tmp",
|
|
298
292
|
"report-dir": "./alternative"
|
|
299
293
|
}
|
|
300
294
|
}
|
|
@@ -450,3 +444,6 @@ You can find more tutorials at http://istanbul.js.org/docs/tutorials
|
|
|
450
444
|
## Other advanced features
|
|
451
445
|
|
|
452
446
|
Take a look at http://istanbul.js.org/docs/advanced/ and please feel free to [contribute documentation](https://github.com/istanbuljs/istanbuljs.github.io/tree/development/content).
|
|
447
|
+
|
|
448
|
+
[`@babel/register`]: https://www.npmjs.com/package/@babel/register
|
|
449
|
+
[`babel-plugin-istanbul`]: https://github.com/istanbuljs/babel-plugin-istanbul
|
package/bin/nyc.js
CHANGED
|
@@ -42,6 +42,9 @@ if ([
|
|
|
42
42
|
if (argv.all) nyc.addAllFiles()
|
|
43
43
|
|
|
44
44
|
var env = {
|
|
45
|
+
// Support running nyc as a user without HOME (e.g. linux 'nobody'),
|
|
46
|
+
// https://github.com/istanbuljs/nyc/issues/951
|
|
47
|
+
SPAWN_WRAP_SHIM_ROOT: process.env.SPAWN_WRAP_SHIM_ROOT || process.env.XDG_CACHE_HOME || require('os').homedir(),
|
|
45
48
|
NYC_CONFIG: JSON.stringify(argv),
|
|
46
49
|
NYC_CWD: process.cwd(),
|
|
47
50
|
NYC_ROOT_ID: nyc.rootId,
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
const arrify = require('arrify')
|
|
6
6
|
const cachingTransform = require('caching-transform')
|
|
7
|
-
const
|
|
7
|
+
const util = require('util')
|
|
8
8
|
const findCacheDir = require('find-cache-dir')
|
|
9
9
|
const fs = require('fs')
|
|
10
10
|
const glob = require('glob')
|
|
@@ -12,7 +12,6 @@ const Hash = require('./lib/hash')
|
|
|
12
12
|
const libCoverage = require('istanbul-lib-coverage')
|
|
13
13
|
const libHook = require('istanbul-lib-hook')
|
|
14
14
|
const libReport = require('istanbul-lib-report')
|
|
15
|
-
const md5hex = require('md5-hex')
|
|
16
15
|
const mkdirp = require('make-dir')
|
|
17
16
|
const Module = require('module')
|
|
18
17
|
const onExit = require('signal-exit')
|
|
@@ -22,6 +21,9 @@ const resolveFrom = require('resolve-from')
|
|
|
22
21
|
const rimraf = require('rimraf')
|
|
23
22
|
const SourceMaps = require('./lib/source-maps')
|
|
24
23
|
const testExclude = require('test-exclude')
|
|
24
|
+
const uuid = require('uuid/v4')
|
|
25
|
+
|
|
26
|
+
const debugLog = util.debuglog('nyc')
|
|
25
27
|
|
|
26
28
|
var ProcessInfo
|
|
27
29
|
try {
|
|
@@ -41,7 +43,7 @@ function NYC (config) {
|
|
|
41
43
|
this.config = config
|
|
42
44
|
|
|
43
45
|
this.subprocessBin = config.subprocessBin || path.resolve(__dirname, './bin/nyc.js')
|
|
44
|
-
this._tempDirectory = config.tempDirectory || './.nyc_output'
|
|
46
|
+
this._tempDirectory = config.tempDirectory || config.tempDir || './.nyc_output'
|
|
45
47
|
this._instrumenterLib = require(config.instrumenter || './lib/instrumenters/istanbul')
|
|
46
48
|
this._reportDir = config.reportDir || 'coverage'
|
|
47
49
|
this._sourceMap = typeof config.sourceMap === 'boolean' ? config.sourceMap : true
|
|
@@ -50,7 +52,7 @@ function NYC (config) {
|
|
|
50
52
|
this.cwd = config.cwd || process.cwd()
|
|
51
53
|
this.reporter = arrify(config.reporter || 'text')
|
|
52
54
|
|
|
53
|
-
this.cacheDirectory = (config.cacheDir && path.resolve(config.cacheDir)) || findCacheDir({name: 'nyc', cwd: this.cwd})
|
|
55
|
+
this.cacheDirectory = (config.cacheDir && path.resolve(config.cacheDir)) || findCacheDir({ name: 'nyc', cwd: this.cwd })
|
|
54
56
|
this.cache = Boolean(this.cacheDirectory && config.cache)
|
|
55
57
|
|
|
56
58
|
this.exclude = testExclude({
|
|
@@ -91,13 +93,11 @@ function NYC (config) {
|
|
|
91
93
|
}
|
|
92
94
|
|
|
93
95
|
NYC.prototype._createTransform = function (ext) {
|
|
94
|
-
var _this = this
|
|
95
96
|
var opts = {
|
|
96
97
|
salt: Hash.salt,
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
return hash
|
|
98
|
+
hashData: (input, metadata) => [metadata.filename],
|
|
99
|
+
onHash: (input, metadata, hash) => {
|
|
100
|
+
this.hashCache[metadata.filename] = hash
|
|
101
101
|
},
|
|
102
102
|
cacheDir: this.cacheDirectory,
|
|
103
103
|
// when running --all we should not load source-file from
|
|
@@ -141,7 +141,9 @@ NYC.prototype._createInstrumenter = function () {
|
|
|
141
141
|
ignoreClassMethods: [].concat(this.config.ignoreClassMethod).filter(a => a),
|
|
142
142
|
produceSourceMap: this.config.produceSourceMap,
|
|
143
143
|
compact: this.config.compact,
|
|
144
|
-
preserveComments: this.config.preserveComments
|
|
144
|
+
preserveComments: this.config.preserveComments,
|
|
145
|
+
esModules: this.config.esModules,
|
|
146
|
+
plugins: this.config.plugins
|
|
145
147
|
})
|
|
146
148
|
}
|
|
147
149
|
|
|
@@ -179,14 +181,14 @@ NYC.prototype.addAllFiles = function () {
|
|
|
179
181
|
this.fakeRequire = true
|
|
180
182
|
this.walkAllFiles(this.cwd, function (filename) {
|
|
181
183
|
filename = path.resolve(_this.cwd, filename)
|
|
182
|
-
_this.
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
184
|
+
if (_this.exclude.shouldInstrument(filename)) {
|
|
185
|
+
_this.addFile(filename)
|
|
186
|
+
var coverage = coverageFinder()
|
|
187
|
+
var lastCoverage = _this.instrumenter().lastFileCoverage()
|
|
188
|
+
if (lastCoverage) {
|
|
189
|
+
filename = lastCoverage.path
|
|
190
|
+
coverage[filename] = lastCoverage
|
|
191
|
+
}
|
|
190
192
|
}
|
|
191
193
|
})
|
|
192
194
|
this.fakeRequire = false
|
|
@@ -211,7 +213,7 @@ NYC.prototype.instrumentAllFiles = function (input, output, cb) {
|
|
|
211
213
|
}
|
|
212
214
|
|
|
213
215
|
if (transform) {
|
|
214
|
-
code = transform(code, {filename: filename, relFile: inFile})
|
|
216
|
+
code = transform(code, { filename: filename, relFile: inFile })
|
|
215
217
|
}
|
|
216
218
|
|
|
217
219
|
if (!output) {
|
|
@@ -247,7 +249,7 @@ NYC.prototype.walkAllFiles = function (dir, visitor) {
|
|
|
247
249
|
pattern = '**/*{' + this.extensions.join() + '}'
|
|
248
250
|
}
|
|
249
251
|
|
|
250
|
-
glob.sync(pattern, {cwd: dir, nodir: true, ignore: this.exclude.exclude}).forEach(function (filename) {
|
|
252
|
+
glob.sync(pattern, { cwd: dir, nodir: true, ignore: this.exclude.exclude }).forEach(function (filename) {
|
|
251
253
|
visitor(filename)
|
|
252
254
|
})
|
|
253
255
|
}
|
|
@@ -266,7 +268,7 @@ NYC.prototype._maybeInstrumentSource = function (code, filename, relFile) {
|
|
|
266
268
|
}
|
|
267
269
|
}
|
|
268
270
|
|
|
269
|
-
return transform ? transform(code, {filename: filename, relFile: relFile}) : null
|
|
271
|
+
return transform ? transform(code, { filename: filename, relFile: relFile }) : null
|
|
270
272
|
}
|
|
271
273
|
|
|
272
274
|
NYC.prototype._transformFactory = function (cacheDir) {
|
|
@@ -282,8 +284,9 @@ NYC.prototype._transformFactory = function (cacheDir) {
|
|
|
282
284
|
try {
|
|
283
285
|
instrumented = instrumenter.instrumentSync(code, filename, sourceMap)
|
|
284
286
|
} catch (e) {
|
|
285
|
-
debugLog('failed to instrument ' + filename + 'with error: ' + e.stack)
|
|
287
|
+
debugLog('failed to instrument ' + filename + ' with error: ' + e.stack)
|
|
286
288
|
if (this.config.exitOnError) {
|
|
289
|
+
console.error('Failed to instrument ' + filename)
|
|
287
290
|
process.exit(1)
|
|
288
291
|
} else {
|
|
289
292
|
instrumented = code
|
|
@@ -355,7 +358,7 @@ NYC.prototype._wrapExit = function () {
|
|
|
355
358
|
// regardless of how the process exits.
|
|
356
359
|
onExit(function () {
|
|
357
360
|
_this.writeCoverageFile()
|
|
358
|
-
}, {alwaysLast: true})
|
|
361
|
+
}, { alwaysLast: true })
|
|
359
362
|
}
|
|
360
363
|
|
|
361
364
|
NYC.prototype.wrap = function (bin) {
|
|
@@ -365,11 +368,7 @@ NYC.prototype.wrap = function (bin) {
|
|
|
365
368
|
return this
|
|
366
369
|
}
|
|
367
370
|
|
|
368
|
-
NYC.prototype.generateUniqueID =
|
|
369
|
-
return md5hex(
|
|
370
|
-
process.hrtime().concat(process.pid).map(String)
|
|
371
|
-
)
|
|
372
|
-
}
|
|
371
|
+
NYC.prototype.generateUniqueID = uuid
|
|
373
372
|
|
|
374
373
|
NYC.prototype.writeCoverageFile = function () {
|
|
375
374
|
var coverage = coverageFinder()
|
|
@@ -429,7 +428,7 @@ NYC.prototype.getCoverageMapFromAllCoverageFiles = function (baseDirectory) {
|
|
|
429
428
|
map.merge(report)
|
|
430
429
|
}, baseDirectory)
|
|
431
430
|
// depending on whether source-code is pre-instrumented
|
|
432
|
-
// or instrumented using a JIT plugin like babel
|
|
431
|
+
// or instrumented using a JIT plugin like @babel/require
|
|
433
432
|
// you may opt to exclude files after applying
|
|
434
433
|
// source-map remapping logic.
|
|
435
434
|
if (this.config.excludeAfterRemap) {
|
|
@@ -14,7 +14,7 @@ exports.builder = function (yargs) {
|
|
|
14
14
|
.option('require', {
|
|
15
15
|
alias: 'i',
|
|
16
16
|
default: [],
|
|
17
|
-
describe: 'a list of additional modules that nyc should attempt to require in its subprocess, e.g., babel
|
|
17
|
+
describe: 'a list of additional modules that nyc should attempt to require in its subprocess, e.g., @babel/register, @babel/polyfill.'
|
|
18
18
|
})
|
|
19
19
|
.option('extension', {
|
|
20
20
|
alias: 'e',
|
package/lib/commands/merge.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
const fs = require('fs')
|
|
3
|
+
const path = require('path')
|
|
4
|
+
const makeDir = require('make-dir')
|
|
3
5
|
|
|
4
6
|
var NYC
|
|
5
7
|
try {
|
|
@@ -24,10 +26,14 @@ exports.builder = function (yargs) {
|
|
|
24
26
|
type: 'text',
|
|
25
27
|
default: 'coverage.json'
|
|
26
28
|
})
|
|
27
|
-
.option('temp-
|
|
29
|
+
.option('temp-dir', {
|
|
30
|
+
alias: 't',
|
|
28
31
|
describe: 'directory to read raw coverage information from',
|
|
29
32
|
default: './.nyc_output'
|
|
30
33
|
})
|
|
34
|
+
.option('temp-directory', {
|
|
35
|
+
hidden: true
|
|
36
|
+
})
|
|
31
37
|
.example('$0 merge ./out coverage.json', 'merge together reports in ./out and output as coverage.json')
|
|
32
38
|
}
|
|
33
39
|
|
|
@@ -45,6 +51,7 @@ exports.handler = function (argv) {
|
|
|
45
51
|
console.error(`failed access input directory ${argv.inputDirectory} with error:\n\n${err.message}`)
|
|
46
52
|
process.exit(1)
|
|
47
53
|
}
|
|
54
|
+
makeDir.sync(path.dirname(argv.outputFile))
|
|
48
55
|
const map = nyc.getCoverageMapFromAllCoverageFiles(argv.inputDirectory)
|
|
49
56
|
fs.writeFileSync(argv.outputFile, JSON.stringify(map, null, 2), 'utf8')
|
|
50
57
|
console.info(`coverage files in ${argv.inputDirectory} merged into ${argv.outputFile}`)
|
package/lib/commands/report.js
CHANGED
|
@@ -20,10 +20,14 @@ exports.builder = function (yargs) {
|
|
|
20
20
|
describe: 'directory to output coverage reports in',
|
|
21
21
|
default: 'coverage'
|
|
22
22
|
})
|
|
23
|
-
.option('temp-
|
|
23
|
+
.option('temp-dir', {
|
|
24
|
+
alias: 't',
|
|
24
25
|
describe: 'directory to read raw coverage information from',
|
|
25
26
|
default: './.nyc_output'
|
|
26
27
|
})
|
|
28
|
+
.option('temp-directory', {
|
|
29
|
+
hidden: true
|
|
30
|
+
})
|
|
27
31
|
.option('show-process-tree', {
|
|
28
32
|
describe: 'display the tree of spawned processes',
|
|
29
33
|
default: false,
|
|
@@ -35,6 +39,38 @@ exports.builder = function (yargs) {
|
|
|
35
39
|
type: 'boolean',
|
|
36
40
|
global: false
|
|
37
41
|
})
|
|
42
|
+
.option('check-coverage', {
|
|
43
|
+
type: 'boolean',
|
|
44
|
+
default: false,
|
|
45
|
+
describe: 'check whether coverage is within thresholds provided',
|
|
46
|
+
global: false
|
|
47
|
+
})
|
|
48
|
+
.option('branches', {
|
|
49
|
+
default: 0,
|
|
50
|
+
description: 'what % of branches must be covered?',
|
|
51
|
+
global: false
|
|
52
|
+
})
|
|
53
|
+
.option('functions', {
|
|
54
|
+
default: 0,
|
|
55
|
+
description: 'what % of functions must be covered?',
|
|
56
|
+
global: false
|
|
57
|
+
})
|
|
58
|
+
.option('lines', {
|
|
59
|
+
default: 90,
|
|
60
|
+
description: 'what % of lines must be covered?',
|
|
61
|
+
global: false
|
|
62
|
+
})
|
|
63
|
+
.option('statements', {
|
|
64
|
+
default: 0,
|
|
65
|
+
description: 'what % of statements must be covered?',
|
|
66
|
+
global: false
|
|
67
|
+
})
|
|
68
|
+
.option('per-file', {
|
|
69
|
+
default: false,
|
|
70
|
+
type: 'boolean',
|
|
71
|
+
description: 'check thresholds per file',
|
|
72
|
+
global: false
|
|
73
|
+
})
|
|
38
74
|
.example('$0 report --reporter=lcov', 'output an HTML lcov report to ./coverage')
|
|
39
75
|
}
|
|
40
76
|
|
|
@@ -42,4 +78,12 @@ exports.handler = function (argv) {
|
|
|
42
78
|
process.env.NYC_CWD = process.cwd()
|
|
43
79
|
var nyc = new NYC(argv)
|
|
44
80
|
nyc.report()
|
|
81
|
+
if (argv.checkCoverage) {
|
|
82
|
+
nyc.checkCoverage({
|
|
83
|
+
lines: argv.lines,
|
|
84
|
+
functions: argv.functions,
|
|
85
|
+
branches: argv.branches,
|
|
86
|
+
statements: argv.statements
|
|
87
|
+
}, argv['per-file'])
|
|
88
|
+
}
|
|
45
89
|
}
|
package/lib/config-util.js
CHANGED
|
@@ -11,7 +11,7 @@ var Config = {}
|
|
|
11
11
|
|
|
12
12
|
function guessCWD (cwd) {
|
|
13
13
|
cwd = cwd || process.env.NYC_CWD || process.cwd()
|
|
14
|
-
const pkgPath = findUp.sync('package.json', {cwd: cwd})
|
|
14
|
+
const pkgPath = findUp.sync('package.json', { cwd: cwd })
|
|
15
15
|
if (pkgPath) {
|
|
16
16
|
cwd = path.dirname(pkgPath)
|
|
17
17
|
}
|
|
@@ -19,7 +19,7 @@ function guessCWD (cwd) {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
Config.loadConfig = function (argv, cwd) {
|
|
22
|
-
const rcPath = findUp.sync([argv.nycrcPath || '.nycrc', '.nycrc.json'], {cwd: guessCWD(cwd)})
|
|
22
|
+
const rcPath = findUp.sync([argv.nycrcPath || '.nycrc', '.nycrc.json'], { cwd: guessCWD(cwd) })
|
|
23
23
|
let config = {}
|
|
24
24
|
|
|
25
25
|
if (rcPath) {
|
|
@@ -93,7 +93,7 @@ Config.buildYargs = function (cwd) {
|
|
|
93
93
|
.option('require', {
|
|
94
94
|
alias: 'i',
|
|
95
95
|
default: [],
|
|
96
|
-
describe: 'a list of additional modules that nyc should attempt to require in its subprocess, e.g., babel
|
|
96
|
+
describe: 'a list of additional modules that nyc should attempt to require in its subprocess, e.g., @babel/register, @babel/polyfill',
|
|
97
97
|
global: false
|
|
98
98
|
})
|
|
99
99
|
.option('eager', {
|
|
@@ -109,12 +109,22 @@ Config.buildYargs = function (cwd) {
|
|
|
109
109
|
describe: 'cache instrumentation results for improved performance',
|
|
110
110
|
global: false
|
|
111
111
|
})
|
|
112
|
+
.option('cache-dir', {
|
|
113
|
+
describe: 'explicitly set location for instrumentation cache',
|
|
114
|
+
global: false
|
|
115
|
+
})
|
|
112
116
|
.option('babel-cache', {
|
|
113
117
|
default: false,
|
|
114
118
|
type: 'boolean',
|
|
115
119
|
describe: 'cache babel transpilation results for improved performance',
|
|
116
120
|
global: false
|
|
117
121
|
})
|
|
122
|
+
.option('es-modules', {
|
|
123
|
+
default: true,
|
|
124
|
+
type: 'boolean',
|
|
125
|
+
describe: 'tell the instrumenter to treat files as ES Modules',
|
|
126
|
+
global: false
|
|
127
|
+
})
|
|
118
128
|
.option('extension', {
|
|
119
129
|
alias: 'e',
|
|
120
130
|
default: [],
|
|
@@ -216,11 +226,16 @@ Config.buildYargs = function (cwd) {
|
|
|
216
226
|
description: 'specify a different .nycrc path',
|
|
217
227
|
global: false
|
|
218
228
|
})
|
|
219
|
-
.option('temp-
|
|
229
|
+
.option('temp-dir', {
|
|
230
|
+
alias: 't',
|
|
220
231
|
describe: 'directory to output raw coverage information to',
|
|
221
232
|
default: './.nyc_output',
|
|
222
233
|
global: false
|
|
223
234
|
})
|
|
235
|
+
.option('temp-directory', {
|
|
236
|
+
hidden: true,
|
|
237
|
+
global: false
|
|
238
|
+
})
|
|
224
239
|
.option('skip-empty', {
|
|
225
240
|
describe: 'don\'t show empty files (no lines of code) in report',
|
|
226
241
|
default: false,
|
|
@@ -235,7 +250,7 @@ Config.buildYargs = function (cwd) {
|
|
|
235
250
|
})
|
|
236
251
|
.pkgConf('nyc', cwd)
|
|
237
252
|
.example('$0 npm test', 'instrument your tests with coverage')
|
|
238
|
-
.example('$0 --require babel
|
|
253
|
+
.example('$0 --require @babel/register npm test', 'instrument your tests with coverage and transpile with Babel')
|
|
239
254
|
.example('$0 report --reporter=text-lcov', 'output lcov report after running your tests')
|
|
240
255
|
.epilog('visit https://git.io/vHysA for list of available reporters')
|
|
241
256
|
.boolean('h')
|
package/lib/hash.js
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
const md5hex = require('md5-hex')
|
|
3
|
-
const salt = JSON.stringify({
|
|
4
|
-
istanbul: require('istanbul-lib-coverage/package.json').version,
|
|
5
|
-
nyc: CACHE_VERSION
|
|
6
|
-
})
|
|
1
|
+
'use strict'
|
|
7
2
|
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
module.exports = {
|
|
4
|
+
salt: JSON.stringify({
|
|
5
|
+
istanbul: require('istanbul-lib-coverage/package.json').version,
|
|
6
|
+
nyc: require('../package.json').version
|
|
7
|
+
})
|
|
10
8
|
}
|
|
11
|
-
|
|
12
|
-
Hash.salt = salt
|
|
13
|
-
|
|
14
|
-
module.exports = Hash
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
const { createInstrumenter } = require('istanbul-lib-instrument')
|
|
4
|
+
const convertSourceMap = require('convert-source-map')
|
|
5
|
+
const mergeSourceMap = require('merge-source-map')
|
|
5
6
|
|
|
6
7
|
function InstrumenterIstanbul (cwd, options) {
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
const plugins = options.plugins
|
|
9
|
+
const configPlugins = plugins ? { plugins } : {}
|
|
10
|
+
|
|
11
|
+
const instrumenter = createInstrumenter(Object.assign({
|
|
9
12
|
autoWrap: true,
|
|
10
13
|
coverageVariable: '__coverage__',
|
|
11
14
|
embedSource: true,
|
|
@@ -13,11 +16,11 @@ function InstrumenterIstanbul (cwd, options) {
|
|
|
13
16
|
preserveComments: options.preserveComments,
|
|
14
17
|
produceSourceMap: options.produceSourceMap,
|
|
15
18
|
ignoreClassMethods: options.ignoreClassMethods,
|
|
16
|
-
esModules:
|
|
17
|
-
})
|
|
19
|
+
esModules: options.esModules
|
|
20
|
+
}, configPlugins))
|
|
18
21
|
|
|
19
22
|
return {
|
|
20
|
-
instrumentSync
|
|
23
|
+
instrumentSync (code, filename, sourceMap) {
|
|
21
24
|
var instrumented = instrumenter.instrumentSync(code, filename)
|
|
22
25
|
// the instrumenter can optionally produce source maps,
|
|
23
26
|
// this is useful for features like remapping stack-traces.
|
|
@@ -36,16 +39,10 @@ function InstrumenterIstanbul (cwd, options) {
|
|
|
36
39
|
}
|
|
37
40
|
return instrumented
|
|
38
41
|
},
|
|
39
|
-
lastFileCoverage
|
|
42
|
+
lastFileCoverage () {
|
|
40
43
|
return instrumenter.lastFileCoverage()
|
|
41
44
|
}
|
|
42
45
|
}
|
|
43
46
|
}
|
|
44
47
|
|
|
45
|
-
InstrumenterIstanbul.istanbul = function () {
|
|
46
|
-
InstrumenterIstanbul._istanbul || (InstrumenterIstanbul._istanbul = require('istanbul-lib-instrument'))
|
|
47
|
-
|
|
48
|
-
return InstrumenterIstanbul._istanbul || (InstrumenterIstanbul._istanbul = require('istanbul'))
|
|
49
|
-
}
|
|
50
|
-
|
|
51
48
|
module.exports = InstrumenterIstanbul
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
const { FileCoverage } = require('istanbul-lib-coverage').classes
|
|
2
|
+
const { readInitialCoverage } = require('istanbul-lib-instrument')
|
|
3
3
|
|
|
4
4
|
function NOOP () {
|
|
5
5
|
return {
|
|
6
|
-
instrumentSync
|
|
7
|
-
|
|
6
|
+
instrumentSync (code, filename) {
|
|
7
|
+
const extracted = readInitialCoverage(code)
|
|
8
8
|
if (extracted) {
|
|
9
9
|
this.fileCoverage = new FileCoverage(extracted.coverageData)
|
|
10
10
|
} else {
|
|
@@ -12,7 +12,7 @@ function NOOP () {
|
|
|
12
12
|
}
|
|
13
13
|
return code
|
|
14
14
|
},
|
|
15
|
-
lastFileCoverage
|
|
15
|
+
lastFileCoverage () {
|
|
16
16
|
return this.fileCoverage
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"_args": [
|
|
3
3
|
[
|
|
4
4
|
"ansi-regex@3.0.0",
|
|
5
|
-
"/
|
|
5
|
+
"/usr/src/npm/nyc"
|
|
6
6
|
]
|
|
7
7
|
],
|
|
8
8
|
"_from": "ansi-regex@3.0.0",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
],
|
|
27
27
|
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
|
|
28
28
|
"_spec": "3.0.0",
|
|
29
|
-
"_where": "/
|
|
29
|
+
"_where": "/usr/src/npm/nyc",
|
|
30
30
|
"author": {
|
|
31
31
|
"name": "Sindre Sorhus",
|
|
32
32
|
"email": "sindresorhus@gmail.com",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"_args": [
|
|
3
3
|
[
|
|
4
4
|
"append-transform@1.0.0",
|
|
5
|
-
"/
|
|
5
|
+
"/usr/src/npm/nyc"
|
|
6
6
|
]
|
|
7
7
|
],
|
|
8
8
|
"_from": "append-transform@1.0.0",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
],
|
|
27
27
|
"_resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz",
|
|
28
28
|
"_spec": "1.0.0",
|
|
29
|
-
"_where": "/
|
|
29
|
+
"_where": "/usr/src/npm/nyc",
|
|
30
30
|
"author": {
|
|
31
31
|
"name": "James Talmage",
|
|
32
32
|
"email": "james@talmage.io",
|