mirror of
https://github.com/github/codeql-action.git
synced 2026-05-26 08:24:52 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a92229a995 |
Generated
+13
-47
@@ -13,6 +13,7 @@ on:
|
|||||||
- main
|
- main
|
||||||
- releases/v1
|
- releases/v1
|
||||||
- releases/v2
|
- releases/v2
|
||||||
|
- criemen/debug-action
|
||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
@@ -25,30 +26,8 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-latest
|
|
||||||
version: stable-20210308
|
|
||||||
- os: macos-latest
|
|
||||||
version: stable-20210308
|
|
||||||
- os: ubuntu-latest
|
|
||||||
version: stable-20210319
|
|
||||||
- os: macos-latest
|
|
||||||
version: stable-20210319
|
|
||||||
- os: ubuntu-latest
|
|
||||||
version: stable-20210809
|
|
||||||
- os: macos-latest
|
|
||||||
version: stable-20210809
|
|
||||||
- os: ubuntu-latest
|
|
||||||
version: cached
|
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
version: cached
|
version: cached
|
||||||
- os: ubuntu-latest
|
|
||||||
version: latest
|
|
||||||
- os: macos-latest
|
|
||||||
version: latest
|
|
||||||
- os: ubuntu-latest
|
|
||||||
version: nightly-latest
|
|
||||||
- os: macos-latest
|
|
||||||
version: nightly-latest
|
|
||||||
name: Debug artifact upload
|
name: Debug artifact upload
|
||||||
timeout-minutes: 45
|
timeout-minutes: 45
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
@@ -63,34 +42,21 @@ jobs:
|
|||||||
- uses: ./../action/init
|
- uses: ./../action/init
|
||||||
with:
|
with:
|
||||||
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
||||||
debug: true
|
languages: csharp, go
|
||||||
debug-artifact-name: my-debug-artifacts
|
|
||||||
debug-database-name: my-db
|
|
||||||
- name: Build code
|
- name: Build code
|
||||||
shell: bash
|
shell: bash
|
||||||
run: ./build.sh
|
run: ./build.sh
|
||||||
|
env:
|
||||||
|
SEMMLE_DEBUG_TRACER: 10000
|
||||||
- uses: ./../action/analyze
|
- uses: ./../action/analyze
|
||||||
id: analysis
|
id: analysis
|
||||||
- uses: actions/download-artifact@v3
|
timeout-minutes: 1
|
||||||
|
env:
|
||||||
|
SEMMLE_DEBUG_TRACER: 10000
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: my-debug-artifacts-${{ matrix.os }}-${{ matrix.version }}
|
name: debug-artifact-log
|
||||||
- shell: bash
|
path: |
|
||||||
run: |
|
/Users/runner/work/_temp/codeql_databases/
|
||||||
LANGUAGES="cpp csharp go java javascript python"
|
!/Users/runner/work/_temp/codeql_databases/working/copy-root
|
||||||
for language in $LANGUAGES; do
|
|
||||||
echo "Checking $language"
|
|
||||||
if [[ ! -f "$language.sarif" ]] ; then
|
|
||||||
echo "Missing a SARIF file for $language"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [[ ! -f "my-db-$language.zip" ]] ; then
|
|
||||||
echo "Missing a database bundle for $language"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [[ ! -d "$language/log" ]] ; then
|
|
||||||
echo "Missing logs for $language"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
env:
|
|
||||||
INTERNAL_CODEQL_ACTION_DEBUG_LOC: true
|
|
||||||
|
|||||||
Generated
+11
-9
@@ -239,15 +239,6 @@ function createQuerySuiteContents(queries) {
|
|||||||
return queries.map((q) => `- query: ${q}`).join("\n");
|
return queries.map((q) => `- query: ${q}`).join("\n");
|
||||||
}
|
}
|
||||||
async function runFinalize(outputDir, threadsFlag, memoryFlag, config, logger, featureFlags) {
|
async function runFinalize(outputDir, threadsFlag, memoryFlag, config, logger, featureFlags) {
|
||||||
const codeql = await (0, codeql_1.getCodeQL)(config.codeQLCmd);
|
|
||||||
if (await util.codeQlVersionAbove(codeql, codeql_1.CODEQL_VERSION_NEW_TRACING)) {
|
|
||||||
// Delete variables as specified by the end-tracing script
|
|
||||||
await (0, tracer_config_1.endTracingForCluster)(config);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// Delete the tracer config env var to avoid tracing ourselves
|
|
||||||
delete process.env[sharedEnv.ODASA_TRACER_CONFIGURATION];
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
await (0, del_1.default)(outputDir, { force: true });
|
await (0, del_1.default)(outputDir, { force: true });
|
||||||
}
|
}
|
||||||
@@ -258,6 +249,17 @@ async function runFinalize(outputDir, threadsFlag, memoryFlag, config, logger, f
|
|||||||
}
|
}
|
||||||
await fs.promises.mkdir(outputDir, { recursive: true });
|
await fs.promises.mkdir(outputDir, { recursive: true });
|
||||||
await finalizeDatabaseCreation(config, threadsFlag, memoryFlag, logger, featureFlags);
|
await finalizeDatabaseCreation(config, threadsFlag, memoryFlag, logger, featureFlags);
|
||||||
|
const codeql = await (0, codeql_1.getCodeQL)(config.codeQLCmd);
|
||||||
|
if (await util.codeQlVersionAbove(codeql, codeql_1.CODEQL_VERSION_NEW_TRACING)) {
|
||||||
|
// Delete variables as specified by the end-tracing script
|
||||||
|
await (0, codeql_1.runTool)("bash", ["-c", "export"]);
|
||||||
|
await (0, tracer_config_1.endTracingForCluster)(config);
|
||||||
|
await (0, codeql_1.runTool)("bash", ["-c", "export"]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Delete the tracer config env var to avoid tracing ourselves
|
||||||
|
delete process.env[sharedEnv.ODASA_TRACER_CONFIGURATION];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exports.runFinalize = runFinalize;
|
exports.runFinalize = runFinalize;
|
||||||
async function runCleanup(config, cleanupLevel, logger) {
|
async function runCleanup(config, cleanupLevel, logger) {
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
Generated
+8
-5
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getExtraOptions = exports.getCodeQLForTesting = exports.getCachedCodeQL = exports.setCodeQL = exports.getCodeQL = exports.convertToSemVer = exports.getCodeQLURLVersion = exports.setupCodeQL = exports.getCodeQLActionRepository = exports.CODEQL_VERSION_ML_POWERED_QUERIES_WINDOWS = exports.CODEQL_VERSION_NEW_TRACING = exports.CODEQL_VERSION_ML_POWERED_QUERIES = exports.CODEQL_VERSION_COUNTS_LINES = exports.CommandInvocationError = void 0;
|
exports.runTool = exports.getExtraOptions = exports.getCodeQLForTesting = exports.getCachedCodeQL = exports.setCodeQL = exports.getCodeQL = exports.convertToSemVer = exports.getCodeQLURLVersion = exports.setupCodeQL = exports.getCodeQLActionRepository = exports.CODEQL_VERSION_ML_POWERED_QUERIES_WINDOWS = exports.CODEQL_VERSION_NEW_TRACING = exports.CODEQL_VERSION_ML_POWERED_QUERIES = exports.CODEQL_VERSION_COUNTS_LINES = exports.CommandInvocationError = void 0;
|
||||||
const fs = __importStar(require("fs"));
|
const fs = __importStar(require("fs"));
|
||||||
const path = __importStar(require("path"));
|
const path = __importStar(require("path"));
|
||||||
const toolrunner = __importStar(require("@actions/exec/lib/toolrunner"));
|
const toolrunner = __importStar(require("@actions/exec/lib/toolrunner"));
|
||||||
@@ -477,12 +477,13 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
|||||||
// because that always passes in a process name.
|
// because that always passes in a process name.
|
||||||
extraArgs.push(`--trace-process-level=${processLevel || 3}`);
|
extraArgs.push(`--trace-process-level=${processLevel || 3}`);
|
||||||
}
|
}
|
||||||
|
extraArgs.push("--internal-use-lua-tracing");
|
||||||
if (await util.codeQlVersionAbove(this, CODEQL_VERSION_LUA_TRACER_CONFIG)) {
|
if (await util.codeQlVersionAbove(this, CODEQL_VERSION_LUA_TRACER_CONFIG)) {
|
||||||
if (await featureFlags.getValue(feature_flags_1.FeatureFlag.LuaTracerConfigEnabled)) {
|
if (await featureFlags.getValue(feature_flags_1.FeatureFlag.LuaTracerConfigEnabled)) {
|
||||||
extraArgs.push("--internal-use-lua-tracing");
|
//
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
extraArgs.push("--no-internal-use-lua-tracing");
|
// extraArgs.push("--no-internal-use-lua-tracing");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -537,11 +538,12 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
|||||||
const traceCommand = path.resolve(JSON.parse(extractorPath), "tools", `autobuild${ext}`);
|
const traceCommand = path.resolve(JSON.parse(extractorPath), "tools", `autobuild${ext}`);
|
||||||
const extraArgs = [];
|
const extraArgs = [];
|
||||||
if (await util.codeQlVersionAbove(this, CODEQL_VERSION_LUA_TRACER_CONFIG)) {
|
if (await util.codeQlVersionAbove(this, CODEQL_VERSION_LUA_TRACER_CONFIG)) {
|
||||||
|
extraArgs.push("--internal-use-lua-tracing");
|
||||||
if (await featureFlags.getValue(feature_flags_1.FeatureFlag.LuaTracerConfigEnabled)) {
|
if (await featureFlags.getValue(feature_flags_1.FeatureFlag.LuaTracerConfigEnabled)) {
|
||||||
extraArgs.push("--internal-use-lua-tracing");
|
// extraArgs.push("--internal-use-lua-tracing");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
extraArgs.push("--no-internal-use-lua-tracing");
|
// extraArgs.push("--no-internal-use-lua-tracing");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Run trace command
|
// Run trace command
|
||||||
@@ -802,4 +804,5 @@ async function runTool(cmd, args = []) {
|
|||||||
throw new CommandInvocationError(cmd, args, exitCode, error);
|
throw new CommandInvocationError(cmd, args, exitCode, error);
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
exports.runTool = runTool;
|
||||||
//# sourceMappingURL=codeql.js.map
|
//# sourceMappingURL=codeql.js.map
|
||||||
+1
-1
File diff suppressed because one or more lines are too long
Generated
+286
@@ -0,0 +1,286 @@
|
|||||||
|
"use strict";
|
||||||
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||||
|
if (k2 === undefined) k2 = k;
|
||||||
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||||
|
}) : (function(o, m, k, k2) {
|
||||||
|
if (k2 === undefined) k2 = k;
|
||||||
|
o[k2] = m[k];
|
||||||
|
}));
|
||||||
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||||
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||||
|
}) : function(o, v) {
|
||||||
|
o["default"] = v;
|
||||||
|
});
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||||
|
__setModuleDefault(result, mod);
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
};
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
exports.downloadTool = exports.findAllVersions = exports.find = exports.cacheDir = exports.extractTar = void 0;
|
||||||
|
const fs = __importStar(require("fs"));
|
||||||
|
const os = __importStar(require("os"));
|
||||||
|
const path = __importStar(require("path"));
|
||||||
|
const toolrunner = __importStar(require("@actions/exec/lib/toolrunner"));
|
||||||
|
const io = __importStar(require("@actions/io"));
|
||||||
|
const actionsToolcache = __importStar(require("@actions/tool-cache"));
|
||||||
|
const safeWhich = __importStar(require("@chrisgavin/safe-which"));
|
||||||
|
const del_1 = __importDefault(require("del"));
|
||||||
|
const semver = __importStar(require("semver"));
|
||||||
|
const uuid_1 = require("uuid");
|
||||||
|
const util_1 = require("./util");
|
||||||
|
/*
|
||||||
|
* This file acts as an interface to the functionality of the actions toolcache.
|
||||||
|
* That library is not safe to use outside of actions as it makes assumptions about
|
||||||
|
* the state of the filesystem and available environment variables.
|
||||||
|
*
|
||||||
|
* On actions we can just delegate to the toolcache library, however outside of
|
||||||
|
* actions we provide our own implementation.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Extract a compressed tar archive.
|
||||||
|
*
|
||||||
|
* See extractTar function from node_modules/@actions/tool-cache/lib/tool-cache.d.ts
|
||||||
|
*
|
||||||
|
* @param file path to the tar
|
||||||
|
* @param mode should run the actions or runner implementation
|
||||||
|
* @param tempDir path to the temporary directory
|
||||||
|
* @param logger logger to use
|
||||||
|
* @returns path to the destination directory
|
||||||
|
*/
|
||||||
|
async function extractTar(file, tempDir, logger) {
|
||||||
|
if ((0, util_1.isActions)()) {
|
||||||
|
return await actionsToolcache.extractTar(file);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Initial implementation copied from node_modules/@actions/tool-cache/lib/tool-cache.js
|
||||||
|
if (!file) {
|
||||||
|
throw new Error("parameter 'file' is required");
|
||||||
|
}
|
||||||
|
// Create dest
|
||||||
|
const dest = createExtractFolder(tempDir);
|
||||||
|
// Determine whether GNU tar
|
||||||
|
logger.debug("Checking tar --version");
|
||||||
|
let versionOutput = "";
|
||||||
|
await new toolrunner.ToolRunner(await safeWhich.safeWhich("tar"), ["--version"], {
|
||||||
|
ignoreReturnCode: true,
|
||||||
|
silent: true,
|
||||||
|
listeners: {
|
||||||
|
stdout: (data) => (versionOutput += data.toString()),
|
||||||
|
stderr: (data) => (versionOutput += data.toString()),
|
||||||
|
},
|
||||||
|
}).exec();
|
||||||
|
logger.debug(versionOutput.trim());
|
||||||
|
const isGnuTar = versionOutput.toUpperCase().includes("GNU TAR");
|
||||||
|
// Initialize args
|
||||||
|
const args = ["xz"];
|
||||||
|
if (logger.isDebug()) {
|
||||||
|
args.push("-v");
|
||||||
|
}
|
||||||
|
let destArg = dest;
|
||||||
|
let fileArg = file;
|
||||||
|
if (process.platform === "win32" && isGnuTar) {
|
||||||
|
args.push("--force-local");
|
||||||
|
destArg = dest.replace(/\\/g, "/");
|
||||||
|
// Technically only the dest needs to have `/` but for aesthetic consistency
|
||||||
|
// convert slashes in the file arg too.
|
||||||
|
fileArg = file.replace(/\\/g, "/");
|
||||||
|
}
|
||||||
|
if (isGnuTar) {
|
||||||
|
// Suppress warnings when using GNU tar to extract archives created by BSD tar
|
||||||
|
args.push("--warning=no-unknown-keyword");
|
||||||
|
}
|
||||||
|
args.push("-C", destArg, "-f", fileArg);
|
||||||
|
await new toolrunner.ToolRunner(`tar`, args).exec();
|
||||||
|
return dest;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.extractTar = extractTar;
|
||||||
|
/**
|
||||||
|
* Caches a directory and installs it into the tool cacheDir.
|
||||||
|
*
|
||||||
|
* Also see cacheDir function from node_modules/@actions/tool-cache/lib/tool-cache.d.ts
|
||||||
|
*
|
||||||
|
* @param sourceDir the directory to cache into tools
|
||||||
|
* @param tool tool name
|
||||||
|
* @param version version of the tool. semver format
|
||||||
|
* @param mode should run the actions or runner implementation
|
||||||
|
* @param toolCacheDir path to the tool cache directory
|
||||||
|
* @param logger logger to use
|
||||||
|
*/
|
||||||
|
async function cacheDir(sourceDir, tool, version, toolCacheDir, logger) {
|
||||||
|
if ((0, util_1.isActions)()) {
|
||||||
|
return await actionsToolcache.cacheDir(sourceDir, tool, version);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Initial implementation copied from node_modules/@actions/tool-cache/lib/tool-cache.js
|
||||||
|
version = semver.clean(version) || version;
|
||||||
|
const arch = os.arch();
|
||||||
|
logger.debug(`Caching tool ${tool} ${version} ${arch}`);
|
||||||
|
logger.debug(`source dir: ${sourceDir}`);
|
||||||
|
if (!fs.statSync(sourceDir).isDirectory()) {
|
||||||
|
throw new Error("sourceDir is not a directory");
|
||||||
|
}
|
||||||
|
// Create the tool dir
|
||||||
|
const destPath = await createToolPath(tool, version, arch, toolCacheDir, logger);
|
||||||
|
// copy each child item. do not move. move can fail on Windows
|
||||||
|
// due to anti-virus software having an open handle on a file.
|
||||||
|
for (const itemName of fs.readdirSync(sourceDir)) {
|
||||||
|
const s = path.join(sourceDir, itemName);
|
||||||
|
await io.cp(s, destPath, { recursive: true });
|
||||||
|
}
|
||||||
|
// write .complete
|
||||||
|
completeToolPath(tool, version, arch, toolCacheDir, logger);
|
||||||
|
return destPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.cacheDir = cacheDir;
|
||||||
|
/**
|
||||||
|
* Finds the path to a tool version in the local installed tool cache.
|
||||||
|
*
|
||||||
|
* Also see find function from node_modules/@actions/tool-cache/lib/tool-cache.d.ts
|
||||||
|
*
|
||||||
|
* @param toolName name of the tool
|
||||||
|
* @param versionSpec version of the tool
|
||||||
|
* @param mode should run the actions or runner implementation
|
||||||
|
* @param toolCacheDir path to the tool cache directory
|
||||||
|
* @param logger logger to use
|
||||||
|
*/
|
||||||
|
function find(toolName, versionSpec, toolCacheDir, logger) {
|
||||||
|
if ((0, util_1.isActions)()) {
|
||||||
|
return actionsToolcache.find(toolName, versionSpec);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Initial implementation copied from node_modules/@actions/tool-cache/lib/tool-cache.js
|
||||||
|
if (!toolName) {
|
||||||
|
throw new Error("toolName parameter is required");
|
||||||
|
}
|
||||||
|
if (!versionSpec) {
|
||||||
|
throw new Error("versionSpec parameter is required");
|
||||||
|
}
|
||||||
|
const arch = os.arch();
|
||||||
|
// attempt to resolve an explicit version
|
||||||
|
if (!isExplicitVersion(versionSpec, logger)) {
|
||||||
|
const localVersions = findAllVersions(toolName, toolCacheDir, logger);
|
||||||
|
const match = evaluateVersions(localVersions, versionSpec, logger);
|
||||||
|
versionSpec = match;
|
||||||
|
}
|
||||||
|
// check for the explicit version in the cache
|
||||||
|
let toolPath = "";
|
||||||
|
if (versionSpec) {
|
||||||
|
versionSpec = semver.clean(versionSpec) || "";
|
||||||
|
const cachePath = path.join(toolCacheDir, toolName, versionSpec, arch);
|
||||||
|
logger.debug(`checking cache: ${cachePath}`);
|
||||||
|
if (fs.existsSync(cachePath) && fs.existsSync(`${cachePath}.complete`)) {
|
||||||
|
logger.debug(`Found tool in cache ${toolName} ${versionSpec} ${arch}`);
|
||||||
|
toolPath = cachePath;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
logger.debug("not found");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return toolPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.find = find;
|
||||||
|
/**
|
||||||
|
* Finds the paths to all versions of a tool that are installed in the local tool cache.
|
||||||
|
*
|
||||||
|
* Also see findAllVersions function from node_modules/@actions/tool-cache/lib/tool-cache.d.ts
|
||||||
|
*
|
||||||
|
* @param toolName name of the tool
|
||||||
|
* @param toolCacheDir path to the tool cache directory
|
||||||
|
* @param logger logger to use
|
||||||
|
*/
|
||||||
|
function findAllVersions(toolName, toolCacheDir, logger) {
|
||||||
|
if ((0, util_1.isActions)()) {
|
||||||
|
return actionsToolcache.findAllVersions(toolName);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Initial implementation copied from node_modules/@actions/tool-cache/lib/tool-cache.js
|
||||||
|
const versions = [];
|
||||||
|
const arch = os.arch();
|
||||||
|
const toolPath = path.join(toolCacheDir, toolName);
|
||||||
|
if (fs.existsSync(toolPath)) {
|
||||||
|
const children = fs.readdirSync(toolPath);
|
||||||
|
for (const child of children) {
|
||||||
|
if (isExplicitVersion(child, logger)) {
|
||||||
|
const fullPath = path.join(toolPath, child, arch || "");
|
||||||
|
if (fs.existsSync(fullPath) &&
|
||||||
|
fs.existsSync(`${fullPath}.complete`)) {
|
||||||
|
versions.push(child);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return versions;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.findAllVersions = findAllVersions;
|
||||||
|
async function downloadTool(url, tempDir, headers) {
|
||||||
|
const dest = path.join(tempDir, (0, uuid_1.v4)());
|
||||||
|
const finalHeaders = Object.assign({ "User-Agent": "CodeQL Action" }, headers);
|
||||||
|
return await actionsToolcache.downloadTool(url, dest, undefined, finalHeaders);
|
||||||
|
}
|
||||||
|
exports.downloadTool = downloadTool;
|
||||||
|
function createExtractFolder(tempDir) {
|
||||||
|
// create a temp dir
|
||||||
|
const dest = path.join(tempDir, "toolcache-temp");
|
||||||
|
if (!fs.existsSync(dest)) {
|
||||||
|
fs.mkdirSync(dest);
|
||||||
|
}
|
||||||
|
return dest;
|
||||||
|
}
|
||||||
|
async function createToolPath(tool, version, arch, toolCacheDir, logger) {
|
||||||
|
const folderPath = path.join(toolCacheDir, tool, semver.clean(version) || version, arch || "");
|
||||||
|
logger.debug(`destination ${folderPath}`);
|
||||||
|
const markerPath = `${folderPath}.complete`;
|
||||||
|
await (0, del_1.default)(folderPath, { force: true });
|
||||||
|
await (0, del_1.default)(markerPath, { force: true });
|
||||||
|
fs.mkdirSync(folderPath, { recursive: true });
|
||||||
|
return folderPath;
|
||||||
|
}
|
||||||
|
function completeToolPath(tool, version, arch, toolCacheDir, logger) {
|
||||||
|
const folderPath = path.join(toolCacheDir, tool, semver.clean(version) || version, arch || "");
|
||||||
|
const markerPath = `${folderPath}.complete`;
|
||||||
|
fs.writeFileSync(markerPath, "");
|
||||||
|
logger.debug("finished caching tool");
|
||||||
|
}
|
||||||
|
function isExplicitVersion(versionSpec, logger) {
|
||||||
|
const c = semver.clean(versionSpec) || "";
|
||||||
|
logger.debug(`isExplicit: ${c}`);
|
||||||
|
const valid = semver.valid(c) != null;
|
||||||
|
logger.debug(`explicit? ${valid}`);
|
||||||
|
return valid;
|
||||||
|
}
|
||||||
|
function evaluateVersions(versions, versionSpec, logger) {
|
||||||
|
let version = "";
|
||||||
|
logger.debug(`evaluating ${versions.length} versions`);
|
||||||
|
versions = versions.sort((a, b) => {
|
||||||
|
if (semver.gt(a, b)) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
});
|
||||||
|
for (let i = versions.length - 1; i >= 0; i--) {
|
||||||
|
const potential = versions[i];
|
||||||
|
const satisfied = semver.satisfies(potential, versionSpec);
|
||||||
|
if (satisfied) {
|
||||||
|
version = potential;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (version) {
|
||||||
|
logger.debug(`matched: ${version}`);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
logger.debug("match not found");
|
||||||
|
}
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=toolcache.js.map
|
||||||
-14
@@ -2744,20 +2744,6 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
||||||
},
|
},
|
||||||
"node_modules/fsevents": {
|
|
||||||
"version": "2.3.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
|
||||||
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
|
||||||
"dev": true,
|
|
||||||
"hasInstallScript": true,
|
|
||||||
"optional": true,
|
|
||||||
"os": [
|
|
||||||
"darwin"
|
|
||||||
],
|
|
||||||
"engines": {
|
|
||||||
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/function-bind": {
|
"node_modules/function-bind": {
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||||
|
|||||||
+38
-38
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "escape-string-regexp",
|
"name": "escape-string-regexp",
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"description": "Escape RegExp special characters",
|
"description": "Escape RegExp special characters",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/escape-string-regexp",
|
"repository": "sindresorhus/escape-string-regexp",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"escape",
|
"escape",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"regular",
|
"regular",
|
||||||
"expression",
|
"expression",
|
||||||
"string",
|
"string",
|
||||||
"special",
|
"special",
|
||||||
"characters"
|
"characters"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+30
-30
@@ -1,32 +1,32 @@
|
|||||||
{
|
{
|
||||||
"name": "@chrisgavin/safe-which",
|
"name": "@chrisgavin/safe-which",
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"description": "A NodeJS library to guard against Windows binary planting attacks.",
|
"description": "A NodeJS library to guard against Windows binary planting attacks.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/chrisgavin/safe-which/",
|
"homepage": "https://github.com/chrisgavin/safe-which/",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"main": "./build/index.js",
|
"main": "./build/index.js",
|
||||||
"types": "./build/index.d.ts",
|
"types": "./build/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"pretest": "npm install && npm run build",
|
"pretest": "npm install && npm run build",
|
||||||
"test": "ava --verbose --serial ./src/**",
|
"test": "ava --verbose --serial ./src/**",
|
||||||
"prepublishOnly": "npm install && npm run build && npm version --allow-same-version=true --git-tag-version=false ${GITHUB_REF#refs/tags/}"
|
"prepublishOnly": "npm install && npm run build && npm version --allow-same-version=true --git-tag-version=false ${GITHUB_REF#refs/tags/}"
|
||||||
},
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ava/typescript": "^1.1.1",
|
"@ava/typescript": "^1.1.1",
|
||||||
"@types/node": "^14.14.7",
|
"@types/node": "^14.14.7",
|
||||||
"ava": "^3.13.0",
|
"ava": "^3.13.0",
|
||||||
"typescript": "^3.8.3"
|
"typescript": "^3.8.3"
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"typescript": {
|
"typescript": {
|
||||||
"rewritePaths": {
|
"rewritePaths": {
|
||||||
"./src/": "./build/"
|
"./src/": "./build/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+45
-45
@@ -1,47 +1,47 @@
|
|||||||
{
|
{
|
||||||
"name": "strip-json-comments",
|
"name": "strip-json-comments",
|
||||||
"version": "3.1.1",
|
"version": "3.1.1",
|
||||||
"description": "Strip comments from JSON. Lets you use comments in your JSON files!",
|
"description": "Strip comments from JSON. Lets you use comments in your JSON files!",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/strip-json-comments",
|
"repository": "sindresorhus/strip-json-comments",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"bench": "matcha benchmark.js"
|
"bench": "matcha benchmark.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"json",
|
"json",
|
||||||
"strip",
|
"strip",
|
||||||
"comments",
|
"comments",
|
||||||
"remove",
|
"remove",
|
||||||
"delete",
|
"delete",
|
||||||
"trim",
|
"trim",
|
||||||
"multiline",
|
"multiline",
|
||||||
"parse",
|
"parse",
|
||||||
"config",
|
"config",
|
||||||
"configuration",
|
"configuration",
|
||||||
"settings",
|
"settings",
|
||||||
"util",
|
"util",
|
||||||
"env",
|
"env",
|
||||||
"environment",
|
"environment",
|
||||||
"jsonc"
|
"jsonc"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+21
-21
@@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/color-name",
|
"name": "@types/color-name",
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"description": "TypeScript definitions for color-name",
|
"description": "TypeScript definitions for color-name",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Junyoung Clare Jang",
|
"name": "Junyoung Clare Jang",
|
||||||
"url": "https://github.com/Ailrun",
|
"url": "https://github.com/Ailrun",
|
||||||
"githubUsername": "Ailrun"
|
"githubUsername": "Ailrun"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"main": "",
|
"main": "",
|
||||||
"types": "index",
|
"types": "index",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7",
|
"typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7",
|
||||||
"typeScriptVersion": "2.0"
|
"typeScriptVersion": "2.0"
|
||||||
}
|
}
|
||||||
+49
-49
@@ -1,53 +1,53 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/js-yaml",
|
"name": "@types/js-yaml",
|
||||||
"version": "4.0.5",
|
"version": "4.0.5",
|
||||||
"description": "TypeScript definitions for js-yaml",
|
"description": "TypeScript definitions for js-yaml",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-yaml",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-yaml",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Bart van der Schoor",
|
"name": "Bart van der Schoor",
|
||||||
"url": "https://github.com/Bartvds",
|
"url": "https://github.com/Bartvds",
|
||||||
"githubUsername": "Bartvds"
|
"githubUsername": "Bartvds"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sebastian Clausen",
|
||||||
|
"url": "https://github.com/sclausen",
|
||||||
|
"githubUsername": "sclausen"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ExE Boss",
|
||||||
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Armaan Tobaccowalla",
|
||||||
|
"url": "https://github.com/ArmaanT",
|
||||||
|
"githubUsername": "ArmaanT"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Linus Unnebäck",
|
||||||
|
"url": "https://github.com/LinusU",
|
||||||
|
"githubUsername": "LinusU"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"main": "",
|
||||||
|
"types": "index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
|
"directory": "types/js-yaml"
|
||||||
},
|
},
|
||||||
{
|
"scripts": {},
|
||||||
"name": "Sebastian Clausen",
|
"dependencies": {},
|
||||||
"url": "https://github.com/sclausen",
|
"typesPublisherContentHash": "6f40877154edac83ffa22d53a6aca74f151a0d094074c81ce7fb21df57ea5725",
|
||||||
"githubUsername": "sclausen"
|
"typeScriptVersion": "3.8",
|
||||||
},
|
"exports": {
|
||||||
{
|
".": {
|
||||||
"name": "ExE Boss",
|
"types": {
|
||||||
"url": "https://github.com/ExE-Boss",
|
"import": "./index.d.mts",
|
||||||
"githubUsername": "ExE-Boss"
|
"default": "./index.d.ts"
|
||||||
},
|
}
|
||||||
{
|
}
|
||||||
"name": "Armaan Tobaccowalla",
|
|
||||||
"url": "https://github.com/ArmaanT",
|
|
||||||
"githubUsername": "ArmaanT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Linus Unnebäck",
|
|
||||||
"url": "https://github.com/LinusU",
|
|
||||||
"githubUsername": "LinusU"
|
|
||||||
}
|
}
|
||||||
],
|
|
||||||
"main": "",
|
|
||||||
"types": "index.d.ts",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
||||||
"directory": "types/js-yaml"
|
|
||||||
},
|
|
||||||
"scripts": {},
|
|
||||||
"dependencies": {},
|
|
||||||
"typesPublisherContentHash": "6f40877154edac83ffa22d53a6aca74f151a0d094074c81ce7fb21df57ea5725",
|
|
||||||
"typeScriptVersion": "3.8",
|
|
||||||
"exports": {
|
|
||||||
".": {
|
|
||||||
"types": {
|
|
||||||
"import": "./index.d.mts",
|
|
||||||
"default": "./index.d.ts"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
+42
-42
@@ -1,45 +1,45 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/json-schema",
|
"name": "@types/json-schema",
|
||||||
"version": "7.0.8",
|
"version": "7.0.8",
|
||||||
"description": "TypeScript definitions for json-schema 4.0, 6.0 and",
|
"description": "TypeScript definitions for json-schema 4.0, 6.0 and",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Boris Cherny",
|
"name": "Boris Cherny",
|
||||||
"url": "https://github.com/bcherny",
|
"url": "https://github.com/bcherny",
|
||||||
"githubUsername": "bcherny"
|
"githubUsername": "bcherny"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Cyrille Tuzi",
|
||||||
|
"url": "https://github.com/cyrilletuzi",
|
||||||
|
"githubUsername": "cyrilletuzi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lucian Buzzo",
|
||||||
|
"url": "https://github.com/lucianbuzzo",
|
||||||
|
"githubUsername": "lucianbuzzo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Roland Groza",
|
||||||
|
"url": "https://github.com/rolandjitsu",
|
||||||
|
"githubUsername": "rolandjitsu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Jason Kwok",
|
||||||
|
"url": "https://github.com/JasonHK",
|
||||||
|
"githubUsername": "JasonHK"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"main": "",
|
||||||
|
"types": "index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
|
"directory": "types/json-schema"
|
||||||
},
|
},
|
||||||
{
|
"scripts": {},
|
||||||
"name": "Cyrille Tuzi",
|
"dependencies": {},
|
||||||
"url": "https://github.com/cyrilletuzi",
|
"typesPublisherContentHash": "a58f3eeeeaaf6f6dd512e6c35e095675ba3d36c3dbae363a90d6927e672d0906",
|
||||||
"githubUsername": "cyrilletuzi"
|
"typeScriptVersion": "3.6"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Lucian Buzzo",
|
|
||||||
"url": "https://github.com/lucianbuzzo",
|
|
||||||
"githubUsername": "lucianbuzzo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Roland Groza",
|
|
||||||
"url": "https://github.com/rolandjitsu",
|
|
||||||
"githubUsername": "rolandjitsu"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Jason Kwok",
|
|
||||||
"url": "https://github.com/JasonHK",
|
|
||||||
"githubUsername": "JasonHK"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"main": "",
|
|
||||||
"types": "index.d.ts",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
||||||
"directory": "types/json-schema"
|
|
||||||
},
|
|
||||||
"scripts": {},
|
|
||||||
"dependencies": {},
|
|
||||||
"typesPublisherContentHash": "a58f3eeeeaaf6f6dd512e6c35e095675ba3d36c3dbae363a90d6927e672d0906",
|
|
||||||
"typeScriptVersion": "3.6"
|
|
||||||
}
|
}
|
||||||
+14
-14
@@ -1,16 +1,16 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/json5",
|
"name": "@types/json5",
|
||||||
"version": "0.0.29",
|
"version": "0.0.29",
|
||||||
"description": "TypeScript definitions for JSON5",
|
"description": "TypeScript definitions for JSON5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "Jason Swearingen <https://jasonswearingen.github.io>",
|
"author": "Jason Swearingen <https://jasonswearingen.github.io>",
|
||||||
"main": "",
|
"main": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
|
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"typings": "index.d.ts",
|
"typings": "index.d.ts",
|
||||||
"typesPublisherContentHash": "1ed77f2bfd59d290798abf89db281c36565f4a78d97d4e9caab25319d54c6331"
|
"typesPublisherContentHash": "1ed77f2bfd59d290798abf89db281c36565f4a78d97d4e9caab25319d54c6331"
|
||||||
}
|
}
|
||||||
+22
-22
@@ -1,24 +1,24 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/long",
|
"name": "@types/long",
|
||||||
"version": "4.0.1",
|
"version": "4.0.1",
|
||||||
"description": "TypeScript definitions for long.js",
|
"description": "TypeScript definitions for long.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Peter Kooijmans",
|
"name": "Peter Kooijmans",
|
||||||
"url": "https://github.com/peterkooijmans",
|
"url": "https://github.com/peterkooijmans",
|
||||||
"githubUsername": "peterkooijmans"
|
"githubUsername": "peterkooijmans"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"main": "",
|
"main": "",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
"directory": "types/long"
|
"directory": "types/long"
|
||||||
},
|
},
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"typesPublisherContentHash": "5a2ae1424989c49d7303e1f5cc510288bfab1e71e0e2143cdcb9d24ff1c3dc8e",
|
"typesPublisherContentHash": "5a2ae1424989c49d7303e1f5cc510288bfab1e71e0e2143cdcb9d24ff1c3dc8e",
|
||||||
"typeScriptVersion": "2.8"
|
"typeScriptVersion": "2.8"
|
||||||
}
|
}
|
||||||
+222
-222
@@ -1,225 +1,225 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/node",
|
"name": "@types/node",
|
||||||
"version": "16.11.22",
|
"version": "16.11.22",
|
||||||
"description": "TypeScript definitions for Node.js",
|
"description": "TypeScript definitions for Node.js",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Microsoft TypeScript",
|
"name": "Microsoft TypeScript",
|
||||||
"url": "https://github.com/Microsoft",
|
"url": "https://github.com/Microsoft",
|
||||||
"githubUsername": "Microsoft"
|
"githubUsername": "Microsoft"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DefinitelyTyped",
|
||||||
|
"url": "https://github.com/DefinitelyTyped",
|
||||||
|
"githubUsername": "DefinitelyTyped"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Alberto Schiabel",
|
||||||
|
"url": "https://github.com/jkomyno",
|
||||||
|
"githubUsername": "jkomyno"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Alvis HT Tang",
|
||||||
|
"url": "https://github.com/alvis",
|
||||||
|
"githubUsername": "alvis"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Andrew Makarov",
|
||||||
|
"url": "https://github.com/r3nya",
|
||||||
|
"githubUsername": "r3nya"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Benjamin Toueg",
|
||||||
|
"url": "https://github.com/btoueg",
|
||||||
|
"githubUsername": "btoueg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Chigozirim C.",
|
||||||
|
"url": "https://github.com/smac89",
|
||||||
|
"githubUsername": "smac89"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "David Junger",
|
||||||
|
"url": "https://github.com/touffy",
|
||||||
|
"githubUsername": "touffy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Deividas Bakanas",
|
||||||
|
"url": "https://github.com/DeividasBakanas",
|
||||||
|
"githubUsername": "DeividasBakanas"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Eugene Y. Q. Shen",
|
||||||
|
"url": "https://github.com/eyqs",
|
||||||
|
"githubUsername": "eyqs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Hannes Magnusson",
|
||||||
|
"url": "https://github.com/Hannes-Magnusson-CK",
|
||||||
|
"githubUsername": "Hannes-Magnusson-CK"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Huw",
|
||||||
|
"url": "https://github.com/hoo29",
|
||||||
|
"githubUsername": "hoo29"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Kelvin Jin",
|
||||||
|
"url": "https://github.com/kjin",
|
||||||
|
"githubUsername": "kjin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Klaus Meinhardt",
|
||||||
|
"url": "https://github.com/ajafff",
|
||||||
|
"githubUsername": "ajafff"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lishude",
|
||||||
|
"url": "https://github.com/islishude",
|
||||||
|
"githubUsername": "islishude"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mariusz Wiktorczyk",
|
||||||
|
"url": "https://github.com/mwiktorczyk",
|
||||||
|
"githubUsername": "mwiktorczyk"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mohsen Azimi",
|
||||||
|
"url": "https://github.com/mohsen1",
|
||||||
|
"githubUsername": "mohsen1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Nicolas Even",
|
||||||
|
"url": "https://github.com/n-e",
|
||||||
|
"githubUsername": "n-e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Nikita Galkin",
|
||||||
|
"url": "https://github.com/galkin",
|
||||||
|
"githubUsername": "galkin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Parambir Singh",
|
||||||
|
"url": "https://github.com/parambirs",
|
||||||
|
"githubUsername": "parambirs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sebastian Silbermann",
|
||||||
|
"url": "https://github.com/eps1lon",
|
||||||
|
"githubUsername": "eps1lon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Seth Westphal",
|
||||||
|
"url": "https://github.com/westy92",
|
||||||
|
"githubUsername": "westy92"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Simon Schick",
|
||||||
|
"url": "https://github.com/SimonSchick",
|
||||||
|
"githubUsername": "SimonSchick"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thomas den Hollander",
|
||||||
|
"url": "https://github.com/ThomasdenH",
|
||||||
|
"githubUsername": "ThomasdenH"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Wilco Bakker",
|
||||||
|
"url": "https://github.com/WilcoBakker",
|
||||||
|
"githubUsername": "WilcoBakker"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wwwy3y3",
|
||||||
|
"url": "https://github.com/wwwy3y3",
|
||||||
|
"githubUsername": "wwwy3y3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Samuel Ainsworth",
|
||||||
|
"url": "https://github.com/samuela",
|
||||||
|
"githubUsername": "samuela"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Kyle Uehlein",
|
||||||
|
"url": "https://github.com/kuehlein",
|
||||||
|
"githubUsername": "kuehlein"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thanik Bhongbhibhat",
|
||||||
|
"url": "https://github.com/bhongy",
|
||||||
|
"githubUsername": "bhongy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Marcin Kopacz",
|
||||||
|
"url": "https://github.com/chyzwar",
|
||||||
|
"githubUsername": "chyzwar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trivikram Kamat",
|
||||||
|
"url": "https://github.com/trivikr",
|
||||||
|
"githubUsername": "trivikr"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Junxiao Shi",
|
||||||
|
"url": "https://github.com/yoursunny",
|
||||||
|
"githubUsername": "yoursunny"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ilia Baryshnikov",
|
||||||
|
"url": "https://github.com/qwelias",
|
||||||
|
"githubUsername": "qwelias"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ExE Boss",
|
||||||
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Piotr Błażejewicz",
|
||||||
|
"url": "https://github.com/peterblazejewicz",
|
||||||
|
"githubUsername": "peterblazejewicz"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Anna Henningsen",
|
||||||
|
"url": "https://github.com/addaleax",
|
||||||
|
"githubUsername": "addaleax"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Victor Perin",
|
||||||
|
"url": "https://github.com/victorperin",
|
||||||
|
"githubUsername": "victorperin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Yongsheng Zhang",
|
||||||
|
"url": "https://github.com/ZYSzys",
|
||||||
|
"githubUsername": "ZYSzys"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "NodeJS Contributors",
|
||||||
|
"url": "https://github.com/NodeJS",
|
||||||
|
"githubUsername": "NodeJS"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Linus Unnebäck",
|
||||||
|
"url": "https://github.com/LinusU",
|
||||||
|
"githubUsername": "LinusU"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wafuwafu13",
|
||||||
|
"url": "https://github.com/wafuwafu13",
|
||||||
|
"githubUsername": "wafuwafu13"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"main": "",
|
||||||
|
"types": "index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
|
"directory": "types/node"
|
||||||
},
|
},
|
||||||
{
|
"scripts": {},
|
||||||
"name": "DefinitelyTyped",
|
"dependencies": {},
|
||||||
"url": "https://github.com/DefinitelyTyped",
|
"typesPublisherContentHash": "57a94e60cf640ea4d81b4fa914f3fb5929a63ae0b4d5141d7daf250c569e7d10",
|
||||||
"githubUsername": "DefinitelyTyped"
|
"typeScriptVersion": "3.8"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Alberto Schiabel",
|
|
||||||
"url": "https://github.com/jkomyno",
|
|
||||||
"githubUsername": "jkomyno"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Alvis HT Tang",
|
|
||||||
"url": "https://github.com/alvis",
|
|
||||||
"githubUsername": "alvis"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Andrew Makarov",
|
|
||||||
"url": "https://github.com/r3nya",
|
|
||||||
"githubUsername": "r3nya"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Benjamin Toueg",
|
|
||||||
"url": "https://github.com/btoueg",
|
|
||||||
"githubUsername": "btoueg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Chigozirim C.",
|
|
||||||
"url": "https://github.com/smac89",
|
|
||||||
"githubUsername": "smac89"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "David Junger",
|
|
||||||
"url": "https://github.com/touffy",
|
|
||||||
"githubUsername": "touffy"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Deividas Bakanas",
|
|
||||||
"url": "https://github.com/DeividasBakanas",
|
|
||||||
"githubUsername": "DeividasBakanas"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Eugene Y. Q. Shen",
|
|
||||||
"url": "https://github.com/eyqs",
|
|
||||||
"githubUsername": "eyqs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Hannes Magnusson",
|
|
||||||
"url": "https://github.com/Hannes-Magnusson-CK",
|
|
||||||
"githubUsername": "Hannes-Magnusson-CK"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Huw",
|
|
||||||
"url": "https://github.com/hoo29",
|
|
||||||
"githubUsername": "hoo29"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Kelvin Jin",
|
|
||||||
"url": "https://github.com/kjin",
|
|
||||||
"githubUsername": "kjin"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Klaus Meinhardt",
|
|
||||||
"url": "https://github.com/ajafff",
|
|
||||||
"githubUsername": "ajafff"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Lishude",
|
|
||||||
"url": "https://github.com/islishude",
|
|
||||||
"githubUsername": "islishude"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Mariusz Wiktorczyk",
|
|
||||||
"url": "https://github.com/mwiktorczyk",
|
|
||||||
"githubUsername": "mwiktorczyk"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Mohsen Azimi",
|
|
||||||
"url": "https://github.com/mohsen1",
|
|
||||||
"githubUsername": "mohsen1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Nicolas Even",
|
|
||||||
"url": "https://github.com/n-e",
|
|
||||||
"githubUsername": "n-e"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Nikita Galkin",
|
|
||||||
"url": "https://github.com/galkin",
|
|
||||||
"githubUsername": "galkin"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Parambir Singh",
|
|
||||||
"url": "https://github.com/parambirs",
|
|
||||||
"githubUsername": "parambirs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Sebastian Silbermann",
|
|
||||||
"url": "https://github.com/eps1lon",
|
|
||||||
"githubUsername": "eps1lon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Seth Westphal",
|
|
||||||
"url": "https://github.com/westy92",
|
|
||||||
"githubUsername": "westy92"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Simon Schick",
|
|
||||||
"url": "https://github.com/SimonSchick",
|
|
||||||
"githubUsername": "SimonSchick"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Thomas den Hollander",
|
|
||||||
"url": "https://github.com/ThomasdenH",
|
|
||||||
"githubUsername": "ThomasdenH"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Wilco Bakker",
|
|
||||||
"url": "https://github.com/WilcoBakker",
|
|
||||||
"githubUsername": "WilcoBakker"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wwwy3y3",
|
|
||||||
"url": "https://github.com/wwwy3y3",
|
|
||||||
"githubUsername": "wwwy3y3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Samuel Ainsworth",
|
|
||||||
"url": "https://github.com/samuela",
|
|
||||||
"githubUsername": "samuela"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Kyle Uehlein",
|
|
||||||
"url": "https://github.com/kuehlein",
|
|
||||||
"githubUsername": "kuehlein"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Thanik Bhongbhibhat",
|
|
||||||
"url": "https://github.com/bhongy",
|
|
||||||
"githubUsername": "bhongy"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Marcin Kopacz",
|
|
||||||
"url": "https://github.com/chyzwar",
|
|
||||||
"githubUsername": "chyzwar"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Trivikram Kamat",
|
|
||||||
"url": "https://github.com/trivikr",
|
|
||||||
"githubUsername": "trivikr"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Junxiao Shi",
|
|
||||||
"url": "https://github.com/yoursunny",
|
|
||||||
"githubUsername": "yoursunny"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Ilia Baryshnikov",
|
|
||||||
"url": "https://github.com/qwelias",
|
|
||||||
"githubUsername": "qwelias"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ExE Boss",
|
|
||||||
"url": "https://github.com/ExE-Boss",
|
|
||||||
"githubUsername": "ExE-Boss"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Piotr Błażejewicz",
|
|
||||||
"url": "https://github.com/peterblazejewicz",
|
|
||||||
"githubUsername": "peterblazejewicz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Anna Henningsen",
|
|
||||||
"url": "https://github.com/addaleax",
|
|
||||||
"githubUsername": "addaleax"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Victor Perin",
|
|
||||||
"url": "https://github.com/victorperin",
|
|
||||||
"githubUsername": "victorperin"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Yongsheng Zhang",
|
|
||||||
"url": "https://github.com/ZYSzys",
|
|
||||||
"githubUsername": "ZYSzys"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "NodeJS Contributors",
|
|
||||||
"url": "https://github.com/NodeJS",
|
|
||||||
"githubUsername": "NodeJS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Linus Unnebäck",
|
|
||||||
"url": "https://github.com/LinusU",
|
|
||||||
"githubUsername": "LinusU"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wafuwafu13",
|
|
||||||
"url": "https://github.com/wafuwafu13",
|
|
||||||
"githubUsername": "wafuwafu13"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"main": "",
|
|
||||||
"types": "index.d.ts",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
||||||
"directory": "types/node"
|
|
||||||
},
|
|
||||||
"scripts": {},
|
|
||||||
"dependencies": {},
|
|
||||||
"typesPublisherContentHash": "57a94e60cf640ea4d81b4fa914f3fb5929a63ae0b4d5141d7daf250c569e7d10",
|
|
||||||
"typeScriptVersion": "3.8"
|
|
||||||
}
|
}
|
||||||
+47
-47
@@ -1,50 +1,50 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/semver",
|
"name": "@types/semver",
|
||||||
"version": "7.3.8",
|
"version": "7.3.8",
|
||||||
"description": "TypeScript definitions for semver",
|
"description": "TypeScript definitions for semver",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Bart van der Schoor",
|
"name": "Bart van der Schoor",
|
||||||
"url": "https://github.com/Bartvds",
|
"url": "https://github.com/Bartvds",
|
||||||
"githubUsername": "Bartvds"
|
"githubUsername": "Bartvds"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "BendingBender",
|
||||||
|
"url": "https://github.com/BendingBender",
|
||||||
|
"githubUsername": "BendingBender"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lucian Buzzo",
|
||||||
|
"url": "https://github.com/LucianBuzzo",
|
||||||
|
"githubUsername": "LucianBuzzo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Klaus Meinhardt",
|
||||||
|
"url": "https://github.com/ajafff",
|
||||||
|
"githubUsername": "ajafff"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ExE Boss",
|
||||||
|
"url": "https://github.com/ExE-Boss",
|
||||||
|
"githubUsername": "ExE-Boss"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Piotr Błażejewicz",
|
||||||
|
"url": "https://github.com/peterblazejewicz",
|
||||||
|
"githubUsername": "peterblazejewicz"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"main": "",
|
||||||
|
"types": "index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
|
"directory": "types/semver"
|
||||||
},
|
},
|
||||||
{
|
"scripts": {},
|
||||||
"name": "BendingBender",
|
"dependencies": {},
|
||||||
"url": "https://github.com/BendingBender",
|
"typesPublisherContentHash": "9f17862a79b39f8289a2ac1d3bf53c50947aa9c048bafe1ce72418667cf56e27",
|
||||||
"githubUsername": "BendingBender"
|
"typeScriptVersion": "3.6"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Lucian Buzzo",
|
|
||||||
"url": "https://github.com/LucianBuzzo",
|
|
||||||
"githubUsername": "LucianBuzzo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Klaus Meinhardt",
|
|
||||||
"url": "https://github.com/ajafff",
|
|
||||||
"githubUsername": "ajafff"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ExE Boss",
|
|
||||||
"url": "https://github.com/ExE-Boss",
|
|
||||||
"githubUsername": "ExE-Boss"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Piotr Błażejewicz",
|
|
||||||
"url": "https://github.com/peterblazejewicz",
|
|
||||||
"githubUsername": "peterblazejewicz"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"main": "",
|
|
||||||
"types": "index.d.ts",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
||||||
"directory": "types/semver"
|
|
||||||
},
|
|
||||||
"scripts": {},
|
|
||||||
"dependencies": {},
|
|
||||||
"typesPublisherContentHash": "9f17862a79b39f8289a2ac1d3bf53c50947aa9c048bafe1ce72418667cf56e27",
|
|
||||||
"typeScriptVersion": "3.6"
|
|
||||||
}
|
}
|
||||||
+63
-63
@@ -1,67 +1,67 @@
|
|||||||
{
|
{
|
||||||
"name": "@types/sinon",
|
"name": "@types/sinon",
|
||||||
"version": "10.0.2",
|
"version": "10.0.2",
|
||||||
"description": "TypeScript definitions for Sinon",
|
"description": "TypeScript definitions for Sinon",
|
||||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sinon",
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sinon",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "William Sears",
|
"name": "William Sears",
|
||||||
"url": "https://github.com/mrbigdog2u",
|
"url": "https://github.com/mrbigdog2u",
|
||||||
"githubUsername": "mrbigdog2u"
|
"githubUsername": "mrbigdog2u"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Lukas Spieß",
|
||||||
|
"url": "https://github.com/lumaxis",
|
||||||
|
"githubUsername": "lumaxis"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Nico Jansen",
|
||||||
|
"url": "https://github.com/nicojs",
|
||||||
|
"githubUsername": "nicojs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "James Garbutt",
|
||||||
|
"url": "https://github.com/43081j",
|
||||||
|
"githubUsername": "43081j"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Josh Goldberg",
|
||||||
|
"url": "https://github.com/joshuakgoldberg",
|
||||||
|
"githubUsername": "joshuakgoldberg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Greg Jednaszewski",
|
||||||
|
"url": "https://github.com/gjednaszewski",
|
||||||
|
"githubUsername": "gjednaszewski"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "John Wood",
|
||||||
|
"url": "https://github.com/johnjesse",
|
||||||
|
"githubUsername": "johnjesse"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Alec Flett",
|
||||||
|
"url": "https://github.com/alecf",
|
||||||
|
"githubUsername": "alecf"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Simon Schick",
|
||||||
|
"url": "https://github.com/SimonSchick",
|
||||||
|
"githubUsername": "SimonSchick"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"main": "",
|
||||||
|
"types": "index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||||
|
"directory": "types/sinon"
|
||||||
},
|
},
|
||||||
{
|
"scripts": {},
|
||||||
"name": "Lukas Spieß",
|
"dependencies": {
|
||||||
"url": "https://github.com/lumaxis",
|
"@sinonjs/fake-timers": "^7.1.0"
|
||||||
"githubUsername": "lumaxis"
|
|
||||||
},
|
},
|
||||||
{
|
"typesPublisherContentHash": "d9f02a4574f6f32057808563b4551e558075d0c93c5739b604521c743c4bb712",
|
||||||
"name": "Nico Jansen",
|
"typeScriptVersion": "3.6"
|
||||||
"url": "https://github.com/nicojs",
|
|
||||||
"githubUsername": "nicojs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "James Garbutt",
|
|
||||||
"url": "https://github.com/43081j",
|
|
||||||
"githubUsername": "43081j"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Josh Goldberg",
|
|
||||||
"url": "https://github.com/joshuakgoldberg",
|
|
||||||
"githubUsername": "joshuakgoldberg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Greg Jednaszewski",
|
|
||||||
"url": "https://github.com/gjednaszewski",
|
|
||||||
"githubUsername": "gjednaszewski"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "John Wood",
|
|
||||||
"url": "https://github.com/johnjesse",
|
|
||||||
"githubUsername": "johnjesse"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Alec Flett",
|
|
||||||
"url": "https://github.com/alecf",
|
|
||||||
"githubUsername": "alecf"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Simon Schick",
|
|
||||||
"url": "https://github.com/SimonSchick",
|
|
||||||
"githubUsername": "SimonSchick"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"main": "",
|
|
||||||
"types": "index.d.ts",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
||||||
"directory": "types/sinon"
|
|
||||||
},
|
|
||||||
"scripts": {},
|
|
||||||
"dependencies": {
|
|
||||||
"@sinonjs/fake-timers": "^7.1.0"
|
|
||||||
},
|
|
||||||
"typesPublisherContentHash": "d9f02a4574f6f32057808563b4551e558075d0c93c5739b604521c743c4bb712",
|
|
||||||
"typeScriptVersion": "3.6"
|
|
||||||
}
|
}
|
||||||
+1
-3
@@ -17,9 +17,7 @@
|
|||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"version": "8.2.0",
|
"version": "8.2.0",
|
||||||
"engines": {
|
"engines": {"node": ">=0.4.0"},
|
||||||
"node": ">=0.4.0"
|
|
||||||
},
|
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
{
|
{
|
||||||
"name": "Marijn Haverbeke",
|
"name": "Marijn Haverbeke",
|
||||||
|
|||||||
+2
-6
@@ -6,9 +6,7 @@
|
|||||||
"types": "dist/acorn.d.ts",
|
"types": "dist/acorn.d.ts",
|
||||||
"module": "dist/acorn.mjs",
|
"module": "dist/acorn.mjs",
|
||||||
"version": "7.4.1",
|
"version": "7.4.1",
|
||||||
"engines": {
|
"engines": {"node": ">=0.4.0"},
|
||||||
"node": ">=0.4.0"
|
|
||||||
},
|
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
{
|
{
|
||||||
"name": "Marijn Haverbeke",
|
"name": "Marijn Haverbeke",
|
||||||
@@ -33,7 +31,5 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "cd ..; npm run build:main && npm run build:bin"
|
"prepare": "cd ..; npm run build:main && npm run build:bin"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {"acorn": "./bin/acorn"}
|
||||||
"acorn": "./bin/acorn"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
+39
-39
@@ -1,41 +1,41 @@
|
|||||||
{
|
{
|
||||||
"name": "aggregate-error",
|
"name": "aggregate-error",
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"description": "Create an error from multiple errors",
|
"description": "Create an error from multiple errors",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/aggregate-error",
|
"repository": "sindresorhus/aggregate-error",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"aggregate",
|
"aggregate",
|
||||||
"error",
|
"error",
|
||||||
"combine",
|
"combine",
|
||||||
"multiple",
|
"multiple",
|
||||||
"many",
|
"many",
|
||||||
"collection",
|
"collection",
|
||||||
"iterable",
|
"iterable",
|
||||||
"iterator"
|
"iterator"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clean-stack": "^2.0.0",
|
"clean-stack": "^2.0.0",
|
||||||
"indent-string": "^4.0.0"
|
"indent-string": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"tsd": "^0.7.1",
|
"tsd": "^0.7.1",
|
||||||
"xo": "^0.25.3"
|
"xo": "^0.25.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+53
-53
@@ -1,55 +1,55 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-regex",
|
"name": "ansi-regex",
|
||||||
"version": "5.0.1",
|
"version": "5.0.1",
|
||||||
"description": "Regular expression for matching ANSI escape codes",
|
"description": "Regular expression for matching ANSI escape codes",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-regex",
|
"repository": "chalk/ansi-regex",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"view-supported": "node fixtures/view-codes.js"
|
"view-supported": "node fixtures/view-codes.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text",
|
"text",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"re",
|
"re",
|
||||||
"match",
|
"match",
|
||||||
"test",
|
"test",
|
||||||
"find",
|
"find",
|
||||||
"pattern"
|
"pattern"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"tsd": "^0.9.0",
|
"tsd": "^0.9.0",
|
||||||
"xo": "^0.25.3"
|
"xo": "^0.25.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+54
-54
@@ -1,56 +1,56 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-styles",
|
"name": "ansi-styles",
|
||||||
"version": "3.2.1",
|
"version": "3.2.1",
|
||||||
"description": "ANSI escape codes for styling strings in the terminal",
|
"description": "ANSI escape codes for styling strings in the terminal",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-styles",
|
"repository": "chalk/ansi-styles",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava",
|
"test": "xo && ava",
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"index.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"color-convert": "^1.9.0"
|
"color-convert": "^1.9.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "*",
|
"ava": "*",
|
||||||
"babel-polyfill": "^6.23.0",
|
"babel-polyfill": "^6.23.0",
|
||||||
"svg-term-cli": "^2.1.1",
|
"svg-term-cli": "^2.1.1",
|
||||||
"xo": "*"
|
"xo": "*"
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"require": "babel-polyfill"
|
"require": "babel-polyfill"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+91
-91
@@ -1,93 +1,93 @@
|
|||||||
{
|
{
|
||||||
"name": "array-includes",
|
"name": "array-includes",
|
||||||
"version": "3.1.3",
|
"version": "3.1.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.",
|
"description": "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "safe-publish-latest",
|
"prepublish": "safe-publish-latest",
|
||||||
"pretest": "npm run --silent lint && evalmd README.md",
|
"pretest": "npm run --silent lint && evalmd README.md",
|
||||||
"test": "npm run --silent tests-only",
|
"test": "npm run --silent tests-only",
|
||||||
"posttest": "npx aud --production",
|
"posttest": "npx aud --production",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"postlint": "es-shim-api --bound"
|
"postlint": "es-shim-api --bound"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/es-shims/array-includes.git"
|
"url": "git://github.com/es-shims/array-includes.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Array.prototype.includes",
|
"Array.prototype.includes",
|
||||||
"includes",
|
"includes",
|
||||||
"array",
|
"array",
|
||||||
"ES7",
|
"ES7",
|
||||||
"shim",
|
"shim",
|
||||||
"polyfill",
|
"polyfill",
|
||||||
"contains",
|
"contains",
|
||||||
"Array.prototype.contains",
|
"Array.prototype.contains",
|
||||||
"es-shim API"
|
"es-shim API"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"call-bind": "^1.0.2",
|
"call-bind": "^1.0.2",
|
||||||
"define-properties": "^1.1.3",
|
"define-properties": "^1.1.3",
|
||||||
"es-abstract": "^1.18.0-next.2",
|
"es-abstract": "^1.18.0-next.2",
|
||||||
"get-intrinsic": "^1.1.1",
|
"get-intrinsic": "^1.1.1",
|
||||||
"is-string": "^1.0.5"
|
"is-string": "^1.0.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@es-shims/api": "^2.1.2",
|
"@es-shims/api": "^2.1.2",
|
||||||
"@ljharb/eslint-config": "^17.5.1",
|
"@ljharb/eslint-config": "^17.5.1",
|
||||||
"aud": "^1.1.4",
|
"aud": "^1.1.4",
|
||||||
"eslint": "^7.20.0",
|
"eslint": "^7.20.0",
|
||||||
"evalmd": "0.0.19",
|
"evalmd": "0.0.19",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"functions-have-names": "^1.2.2",
|
"functions-have-names": "^1.2.2",
|
||||||
"has-strict-mode": "^1.0.1",
|
"has-strict-mode": "^1.0.1",
|
||||||
"indexof": "^0.0.1",
|
"indexof": "^0.0.1",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.2.0"
|
"tape": "^5.2.0"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": [
|
"files": [
|
||||||
"test/index.js",
|
"test/index.js",
|
||||||
"test/implementation.js",
|
"test/implementation.js",
|
||||||
"test/shimmed.js"
|
"test/shimmed.js"
|
||||||
],
|
],
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "array-union",
|
"name": "array-union",
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"description": "Create an array of unique values, in order, from the input arrays",
|
"description": "Create an array of unique values, in order, from the input arrays",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/array-union",
|
"repository": "sindresorhus/array-union",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"array",
|
"array",
|
||||||
"set",
|
"set",
|
||||||
"uniq",
|
"uniq",
|
||||||
"unique",
|
"unique",
|
||||||
"duplicate",
|
"duplicate",
|
||||||
"remove",
|
"remove",
|
||||||
"union",
|
"union",
|
||||||
"combine",
|
"combine",
|
||||||
"merge"
|
"merge"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+94
-94
@@ -1,96 +1,96 @@
|
|||||||
{
|
{
|
||||||
"name": "array.prototype.flat",
|
"name": "array.prototype.flat",
|
||||||
"version": "1.2.4",
|
"version": "1.2.4",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.",
|
"description": "An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "safe-publish-latest",
|
"prepublish": "safe-publish-latest",
|
||||||
"pretest": "npm run --silent lint && evalmd README.md",
|
"pretest": "npm run --silent lint && evalmd README.md",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"postlint": "es-shim-api --bound"
|
"postlint": "es-shim-api --bound"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/es-shims/Array.prototype.flat.git"
|
"url": "git://github.com/es-shims/Array.prototype.flat.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Array.prototype.flatten",
|
"Array.prototype.flatten",
|
||||||
"Array.prototype.flat",
|
"Array.prototype.flat",
|
||||||
"flatten",
|
"flatten",
|
||||||
"flat",
|
"flat",
|
||||||
"array",
|
"array",
|
||||||
"ESnext",
|
"ESnext",
|
||||||
"shim",
|
"shim",
|
||||||
"polyfill",
|
"polyfill",
|
||||||
"flatMap",
|
"flatMap",
|
||||||
"Array.prototype.flatMap",
|
"Array.prototype.flatMap",
|
||||||
"es-shim API"
|
"es-shim API"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"call-bind": "^1.0.0",
|
"call-bind": "^1.0.0",
|
||||||
"define-properties": "^1.1.3",
|
"define-properties": "^1.1.3",
|
||||||
"es-abstract": "^1.18.0-next.1"
|
"es-abstract": "^1.18.0-next.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@es-shims/api": "^2.1.2",
|
"@es-shims/api": "^2.1.2",
|
||||||
"@ljharb/eslint-config": "^17.2.0",
|
"@ljharb/eslint-config": "^17.2.0",
|
||||||
"aud": "^1.1.3",
|
"aud": "^1.1.3",
|
||||||
"covert": "^1.1.1",
|
"covert": "^1.1.1",
|
||||||
"eslint": "^7.13.0",
|
"eslint": "^7.13.0",
|
||||||
"evalmd": "^0.0.19",
|
"evalmd": "^0.0.19",
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"has-strict-mode": "^1.0.0",
|
"has-strict-mode": "^1.0.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"object-inspect": "^1.8.0",
|
"object-inspect": "^1.8.0",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.0.1"
|
"tape": "^5.0.1"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": [
|
"files": [
|
||||||
"test/index.js",
|
"test/index.js",
|
||||||
"test/shimmed.js"
|
"test/shimmed.js"
|
||||||
],
|
],
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
"greenkeeper": {
|
"greenkeeper": {
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"nyc"
|
"nyc"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+33
-33
@@ -1,35 +1,35 @@
|
|||||||
{
|
{
|
||||||
"name": "arrify",
|
"name": "arrify",
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"description": "Convert a value to an array",
|
"description": "Convert a value to an array",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/arrify",
|
"repository": "sindresorhus/arrify",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"array",
|
"array",
|
||||||
"arrify",
|
"arrify",
|
||||||
"arrayify",
|
"arrayify",
|
||||||
"convert",
|
"convert",
|
||||||
"value",
|
"value",
|
||||||
"ensure"
|
"ensure"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+31
-31
@@ -1,33 +1,33 @@
|
|||||||
{
|
{
|
||||||
"name": "astral-regex",
|
"name": "astral-regex",
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"description": "Regular expression for matching astral symbols",
|
"description": "Regular expression for matching astral symbols",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "kevva/astral-regex",
|
"repository": "kevva/astral-regex",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
"url": "github.com/kevva"
|
"url": "github.com/kevva"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"astral",
|
"astral",
|
||||||
"emoji",
|
"emoji",
|
||||||
"regex",
|
"regex",
|
||||||
"surrogate"
|
"surrogate"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-6
@@ -17,9 +17,7 @@
|
|||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"version": "8.7.0",
|
"version": "8.7.0",
|
||||||
"engines": {
|
"engines": {"node": ">=0.4.0"},
|
||||||
"node": ">=0.4.0"
|
|
||||||
},
|
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
{
|
{
|
||||||
"name": "Marijn Haverbeke",
|
"name": "Marijn Haverbeke",
|
||||||
@@ -44,7 +42,5 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"prepare": "cd ..; npm run build:main"
|
"prepare": "cd ..; npm run build:main"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {"acorn": "./bin/acorn"}
|
||||||
"acorn": "./bin/acorn"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
+43
-43
@@ -1,45 +1,45 @@
|
|||||||
{
|
{
|
||||||
"name": "aggregate-error",
|
"name": "aggregate-error",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Create an error from multiple errors",
|
"description": "Create an error from multiple errors",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/aggregate-error",
|
"repository": "sindresorhus/aggregate-error",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"//test": "xo && ava && tsd",
|
"//test": "xo && ava && tsd",
|
||||||
"test": "ava && tsd"
|
"test": "ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"aggregate",
|
"aggregate",
|
||||||
"error",
|
"error",
|
||||||
"combine",
|
"combine",
|
||||||
"multiple",
|
"multiple",
|
||||||
"many",
|
"many",
|
||||||
"collection",
|
"collection",
|
||||||
"iterable",
|
"iterable",
|
||||||
"iterator"
|
"iterator"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clean-stack": "^4.0.0",
|
"clean-stack": "^4.0.0",
|
||||||
"indent-string": "^5.0.0"
|
"indent-string": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+56
-56
@@ -1,58 +1,58 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-regex",
|
"name": "ansi-regex",
|
||||||
"version": "6.0.1",
|
"version": "6.0.1",
|
||||||
"description": "Regular expression for matching ANSI escape codes",
|
"description": "Regular expression for matching ANSI escape codes",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-regex",
|
"repository": "chalk/ansi-regex",
|
||||||
"funding": "https://github.com/chalk/ansi-regex?sponsor=1",
|
"funding": "https://github.com/chalk/ansi-regex?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"view-supported": "node fixtures/view-codes.js"
|
"view-supported": "node fixtures/view-codes.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text",
|
"text",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"re",
|
"re",
|
||||||
"match",
|
"match",
|
||||||
"test",
|
"test",
|
||||||
"find",
|
"find",
|
||||||
"pattern"
|
"pattern"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+52
-52
@@ -1,54 +1,54 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-styles",
|
"name": "ansi-styles",
|
||||||
"version": "6.1.0",
|
"version": "6.1.0",
|
||||||
"description": "ANSI escape codes for styling strings in the terminal",
|
"description": "ANSI escape codes for styling strings in the terminal",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-styles",
|
"repository": "chalk/ansi-styles",
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"svg-term-cli": "^2.1.1",
|
"svg-term-cli": "^2.1.1",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+44
-44
@@ -1,46 +1,46 @@
|
|||||||
{
|
{
|
||||||
"name": "array-union",
|
"name": "array-union",
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"description": "Create an array of unique values, in order, from the input arrays",
|
"description": "Create an array of unique values, in order, from the input arrays",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/array-union",
|
"repository": "sindresorhus/array-union",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"array",
|
"array",
|
||||||
"set",
|
"set",
|
||||||
"uniq",
|
"uniq",
|
||||||
"unique",
|
"unique",
|
||||||
"duplicate",
|
"duplicate",
|
||||||
"remove",
|
"remove",
|
||||||
"union",
|
"union",
|
||||||
"combine",
|
"combine",
|
||||||
"merge"
|
"merge"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
},
|
},
|
||||||
"tsd": {
|
"tsd": {
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"esModuleInterop": true
|
"esModuleInterop": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "arrify",
|
"name": "arrify",
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"description": "Convert a value to an array",
|
"description": "Convert a value to an array",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/arrify",
|
"repository": "sindresorhus/arrify",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"array",
|
"array",
|
||||||
"arrify",
|
"arrify",
|
||||||
"arrayify",
|
"arrayify",
|
||||||
"convert",
|
"convert",
|
||||||
"value",
|
"value",
|
||||||
"ensure"
|
"ensure"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.39.1"
|
"xo": "^0.39.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+40
-40
@@ -1,42 +1,42 @@
|
|||||||
{
|
{
|
||||||
"name": "callsites",
|
"name": "callsites",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Get callsites from the V8 stack trace API",
|
"description": "Get callsites from the V8 stack trace API",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/callsites",
|
"repository": "sindresorhus/callsites",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.20"
|
"node": ">=12.20"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"stacktrace",
|
"stacktrace",
|
||||||
"v8",
|
"v8",
|
||||||
"callsite",
|
"callsite",
|
||||||
"callsites",
|
"callsites",
|
||||||
"stack",
|
"stack",
|
||||||
"trace",
|
"trace",
|
||||||
"function",
|
"function",
|
||||||
"file",
|
"file",
|
||||||
"line",
|
"line",
|
||||||
"debug"
|
"debug"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"xo": "^0.44.0"
|
"xo": "^0.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+75
-75
@@ -1,77 +1,77 @@
|
|||||||
{
|
{
|
||||||
"name": "chalk",
|
"name": "chalk",
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/chalk",
|
"repository": "chalk/chalk",
|
||||||
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./source/index.js",
|
"exports": "./source/index.js",
|
||||||
"imports": {
|
"imports": {
|
||||||
"#ansi-styles": "./source/vendor/ansi-styles/index.js",
|
"#ansi-styles": "./source/vendor/ansi-styles/index.js",
|
||||||
"#supports-color": {
|
"#supports-color": {
|
||||||
"node": "./source/vendor/supports-color/index.js",
|
"node": "./source/vendor/supports-color/index.js",
|
||||||
"default": "./source/vendor/supports-color/browser.js"
|
"default": "./source/vendor/supports-color/browser.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"types": "./source/index.d.ts",
|
"types": "./source/index.d.ts",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && c8 ava && tsd",
|
"test": "xo && c8 ava && tsd",
|
||||||
"bench": "matcha benchmark.js"
|
"bench": "matcha benchmark.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"!source/index.test-d.ts"
|
"!source/index.test-d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"ansi",
|
"ansi",
|
||||||
"style",
|
"style",
|
||||||
"styles",
|
"styles",
|
||||||
"tty",
|
"tty",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.10",
|
"@types/node": "^16.11.10",
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"c8": "^7.10.0",
|
"c8": "^7.10.0",
|
||||||
"color-convert": "^2.0.1",
|
"color-convert": "^2.0.1",
|
||||||
"execa": "^6.0.0",
|
"execa": "^6.0.0",
|
||||||
"log-update": "^5.0.0",
|
"log-update": "^5.0.0",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"tsd": "^0.19.0",
|
"tsd": "^0.19.0",
|
||||||
"xo": "^0.47.0",
|
"xo": "^0.47.0",
|
||||||
"yoctodelay": "^2.0.0"
|
"yoctodelay": "^2.0.0"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off"
|
"unicorn/prefer-string-slice": "off"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"c8": {
|
"c8": {
|
||||||
"reporter": [
|
"reporter": [
|
||||||
"text",
|
"text",
|
||||||
"lcov"
|
"lcov"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"source/vendor"
|
"source/vendor"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+42
-42
@@ -1,44 +1,44 @@
|
|||||||
{
|
{
|
||||||
"name": "clean-stack",
|
"name": "clean-stack",
|
||||||
"version": "4.1.0",
|
"version": "4.1.0",
|
||||||
"description": "Clean up error stack traces",
|
"description": "Clean up error stack traces",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/clean-stack",
|
"repository": "sindresorhus/clean-stack",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"clean",
|
"clean",
|
||||||
"stack",
|
"stack",
|
||||||
"trace",
|
"trace",
|
||||||
"traces",
|
"traces",
|
||||||
"error",
|
"error",
|
||||||
"electron"
|
"electron"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"escape-string-regexp": "5.0.0"
|
"escape-string-regexp": "5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
},
|
},
|
||||||
"browser": {
|
"browser": {
|
||||||
"os": false
|
"os": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-38
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "escape-string-regexp",
|
"name": "escape-string-regexp",
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"description": "Escape RegExp special characters",
|
"description": "Escape RegExp special characters",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/escape-string-regexp",
|
"repository": "sindresorhus/escape-string-regexp",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"escape",
|
"escape",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"regular",
|
"regular",
|
||||||
"expression",
|
"expression",
|
||||||
"string",
|
"string",
|
||||||
"special",
|
"special",
|
||||||
"characters"
|
"characters"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "slash",
|
"name": "slash",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Convert Windows backslash paths to slash paths",
|
"description": "Convert Windows backslash paths to slash paths",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/slash",
|
"repository": "sindresorhus/slash",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"path",
|
"path",
|
||||||
"seperator",
|
"seperator",
|
||||||
"slash",
|
"slash",
|
||||||
"backslash",
|
"backslash",
|
||||||
"windows",
|
"windows",
|
||||||
"convert"
|
"convert"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+85
-85
@@ -1,87 +1,87 @@
|
|||||||
{
|
{
|
||||||
"name": "globby",
|
"name": "globby",
|
||||||
"version": "12.2.0",
|
"version": "12.2.0",
|
||||||
"description": "User-friendly glob matching",
|
"description": "User-friendly glob matching",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/globby",
|
"repository": "sindresorhus/globby",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bench": "npm update glob-stream fast-glob && matcha bench.js",
|
"bench": "npm update glob-stream fast-glob && matcha bench.js",
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"gitignore.js",
|
"gitignore.js",
|
||||||
"stream-utils.js",
|
"stream-utils.js",
|
||||||
"to-path.js"
|
"to-path.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"all",
|
"all",
|
||||||
"array",
|
"array",
|
||||||
"directories",
|
"directories",
|
||||||
"expand",
|
"expand",
|
||||||
"files",
|
"files",
|
||||||
"filesystem",
|
"filesystem",
|
||||||
"filter",
|
"filter",
|
||||||
"find",
|
"find",
|
||||||
"fnmatch",
|
"fnmatch",
|
||||||
"folders",
|
"folders",
|
||||||
"fs",
|
"fs",
|
||||||
"glob",
|
"glob",
|
||||||
"globbing",
|
"globbing",
|
||||||
"globs",
|
"globs",
|
||||||
"gulpfriendly",
|
"gulpfriendly",
|
||||||
"match",
|
"match",
|
||||||
"matcher",
|
"matcher",
|
||||||
"minimatch",
|
"minimatch",
|
||||||
"multi",
|
"multi",
|
||||||
"multiple",
|
"multiple",
|
||||||
"paths",
|
"paths",
|
||||||
"pattern",
|
"pattern",
|
||||||
"patterns",
|
"patterns",
|
||||||
"traverse",
|
"traverse",
|
||||||
"util",
|
"util",
|
||||||
"utility",
|
"utility",
|
||||||
"wildcard",
|
"wildcard",
|
||||||
"wildcards",
|
"wildcards",
|
||||||
"promise",
|
"promise",
|
||||||
"gitignore",
|
"gitignore",
|
||||||
"git"
|
"git"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"array-union": "^3.0.1",
|
"array-union": "^3.0.1",
|
||||||
"dir-glob": "^3.0.1",
|
"dir-glob": "^3.0.1",
|
||||||
"fast-glob": "^3.2.7",
|
"fast-glob": "^3.2.7",
|
||||||
"ignore": "^5.1.9",
|
"ignore": "^5.1.9",
|
||||||
"merge2": "^1.4.1",
|
"merge2": "^1.4.1",
|
||||||
"slash": "^4.0.0"
|
"slash": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.11",
|
"@types/node": "^16.11.11",
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"get-stream": "^6.0.1",
|
"get-stream": "^6.0.1",
|
||||||
"glob-stream": "^7.0.0",
|
"glob-stream": "^7.0.0",
|
||||||
"globby": "sindresorhus/globby#main",
|
"globby": "sindresorhus/globby#main",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"tsd": "^0.19.0",
|
"tsd": "^0.19.0",
|
||||||
"typescript": "^4.5.2",
|
"typescript": "^4.5.2",
|
||||||
"xo": "^0.47.0"
|
"xo": "^0.47.0"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"ignores": [
|
"ignores": [
|
||||||
"fixtures"
|
"fixtures"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-38
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "indent-string",
|
"name": "indent-string",
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"description": "Indent each line in a string",
|
"description": "Indent each line in a string",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/indent-string",
|
"repository": "sindresorhus/indent-string",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"indent",
|
"indent",
|
||||||
"string",
|
"string",
|
||||||
"pad",
|
"pad",
|
||||||
"align",
|
"align",
|
||||||
"line",
|
"line",
|
||||||
"text",
|
"text",
|
||||||
"each",
|
"each",
|
||||||
"every"
|
"every"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+53
-53
@@ -1,55 +1,55 @@
|
|||||||
{
|
{
|
||||||
"name": "p-map",
|
"name": "p-map",
|
||||||
"version": "5.3.0",
|
"version": "5.3.0",
|
||||||
"description": "Map over promises concurrently",
|
"description": "Map over promises concurrently",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/p-map",
|
"repository": "sindresorhus/p-map",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"promise",
|
"promise",
|
||||||
"map",
|
"map",
|
||||||
"resolved",
|
"resolved",
|
||||||
"wait",
|
"wait",
|
||||||
"collection",
|
"collection",
|
||||||
"iterable",
|
"iterable",
|
||||||
"iterator",
|
"iterator",
|
||||||
"race",
|
"race",
|
||||||
"fulfilled",
|
"fulfilled",
|
||||||
"async",
|
"async",
|
||||||
"await",
|
"await",
|
||||||
"promises",
|
"promises",
|
||||||
"concurrently",
|
"concurrently",
|
||||||
"concurrency",
|
"concurrency",
|
||||||
"parallel",
|
"parallel",
|
||||||
"bluebird"
|
"bluebird"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"aggregate-error": "^4.0.0"
|
"aggregate-error": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"delay": "^5.0.0",
|
"delay": "^5.0.0",
|
||||||
"in-range": "^3.0.0",
|
"in-range": "^3.0.0",
|
||||||
"random-int": "^3.0.0",
|
"random-int": "^3.0.0",
|
||||||
"time-span": "^5.0.0",
|
"time-span": "^5.0.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-55
@@ -1,57 +1,57 @@
|
|||||||
{
|
{
|
||||||
"name": "strip-ansi",
|
"name": "strip-ansi",
|
||||||
"version": "7.0.1",
|
"version": "7.0.1",
|
||||||
"description": "Strip ANSI escape codes from a string",
|
"description": "Strip ANSI escape codes from a string",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/strip-ansi",
|
"repository": "chalk/strip-ansi",
|
||||||
"funding": "https://github.com/chalk/strip-ansi?sponsor=1",
|
"funding": "https://github.com/chalk/strip-ansi?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"strip",
|
"strip",
|
||||||
"trim",
|
"trim",
|
||||||
"remove",
|
"remove",
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-regex": "^6.0.1"
|
"ansi-regex": "^6.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"xo": "^0.44.0"
|
"xo": "^0.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+146
-146
@@ -1,148 +1,148 @@
|
|||||||
{
|
{
|
||||||
"name": "ava",
|
"name": "ava",
|
||||||
"version": "4.0.1",
|
"version": "4.0.1",
|
||||||
"description": "Node.js test runner that lets you develop with confidence.",
|
"description": "Node.js test runner that lets you develop with confidence.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "avajs/ava",
|
"repository": "avajs/ava",
|
||||||
"homepage": "https://avajs.dev",
|
"homepage": "https://avajs.dev",
|
||||||
"bin": {
|
"bin": {
|
||||||
"ava": "entrypoints/cli.mjs"
|
"ava": "entrypoints/cli.mjs"
|
||||||
},
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"import": "./entrypoints/main.mjs",
|
"import": "./entrypoints/main.mjs",
|
||||||
"require": "./entrypoints/main.cjs"
|
"require": "./entrypoints/main.cjs"
|
||||||
},
|
},
|
||||||
"./eslint-plugin-helper": "./entrypoints/eslint-plugin-helper.cjs",
|
"./eslint-plugin-helper": "./entrypoints/eslint-plugin-helper.cjs",
|
||||||
"./plugin": {
|
"./plugin": {
|
||||||
"import": "./entrypoints/plugin.mjs",
|
"import": "./entrypoints/plugin.mjs",
|
||||||
"require": "./entrypoints/plugin.cjs"
|
"require": "./entrypoints/plugin.cjs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.22 <13 || >=14.17 <15 || >=16.4 <17 || >=17"
|
"node": ">=12.22 <13 || >=14.17 <15 || >=16.4 <17 || >=17"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"cover": "c8 --report=none test-ava && c8 --report=none --no-clean tap && c8 report",
|
"cover": "c8 --report=none test-ava && c8 --report=none --no-clean tap && c8 report",
|
||||||
"test": "xo && tsd && npm run -s cover"
|
"test": "xo && tsd && npm run -s cover"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"entrypoints",
|
"entrypoints",
|
||||||
"lib",
|
"lib",
|
||||||
"types",
|
"types",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"plugin.d.ts"
|
"plugin.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"🦄",
|
"🦄",
|
||||||
"test",
|
"test",
|
||||||
"runner",
|
"runner",
|
||||||
"testing",
|
"testing",
|
||||||
"ava",
|
"ava",
|
||||||
"concurrent",
|
"concurrent",
|
||||||
"parallel",
|
"parallel",
|
||||||
"fast",
|
"fast",
|
||||||
"tdd",
|
"tdd",
|
||||||
"cli-app",
|
"cli-app",
|
||||||
"cli",
|
"cli",
|
||||||
"jest",
|
"jest",
|
||||||
"mocha",
|
"mocha",
|
||||||
"tape",
|
"tape",
|
||||||
"tap",
|
"tap",
|
||||||
"qunit",
|
"qunit",
|
||||||
"jasmine",
|
"jasmine",
|
||||||
"assert",
|
"assert",
|
||||||
"assertion",
|
"assertion",
|
||||||
"promise",
|
"promise",
|
||||||
"promises",
|
"promises",
|
||||||
"async",
|
"async",
|
||||||
"function",
|
"function",
|
||||||
"await",
|
"await",
|
||||||
"generator",
|
"generator",
|
||||||
"generators",
|
"generators",
|
||||||
"yield",
|
"yield",
|
||||||
"observable",
|
"observable",
|
||||||
"observables",
|
"observables",
|
||||||
"unit",
|
"unit",
|
||||||
"snapshot",
|
"snapshot",
|
||||||
"expect",
|
"expect",
|
||||||
"typescript"
|
"typescript"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"acorn": "^8.7.0",
|
"acorn": "^8.7.0",
|
||||||
"acorn-walk": "^8.2.0",
|
"acorn-walk": "^8.2.0",
|
||||||
"ansi-styles": "^6.1.0",
|
"ansi-styles": "^6.1.0",
|
||||||
"arrgv": "^1.0.2",
|
"arrgv": "^1.0.2",
|
||||||
"arrify": "^3.0.0",
|
"arrify": "^3.0.0",
|
||||||
"callsites": "^4.0.0",
|
"callsites": "^4.0.0",
|
||||||
"cbor": "^8.1.0",
|
"cbor": "^8.1.0",
|
||||||
"chalk": "^5.0.0",
|
"chalk": "^5.0.0",
|
||||||
"chokidar": "^3.5.2",
|
"chokidar": "^3.5.2",
|
||||||
"chunkd": "^2.0.1",
|
"chunkd": "^2.0.1",
|
||||||
"ci-info": "^3.3.0",
|
"ci-info": "^3.3.0",
|
||||||
"ci-parallel-vars": "^1.0.1",
|
"ci-parallel-vars": "^1.0.1",
|
||||||
"clean-yaml-object": "^0.1.0",
|
"clean-yaml-object": "^0.1.0",
|
||||||
"cli-truncate": "^3.1.0",
|
"cli-truncate": "^3.1.0",
|
||||||
"code-excerpt": "^3.0.0",
|
"code-excerpt": "^3.0.0",
|
||||||
"common-path-prefix": "^3.0.0",
|
"common-path-prefix": "^3.0.0",
|
||||||
"concordance": "^5.0.4",
|
"concordance": "^5.0.4",
|
||||||
"currently-unhandled": "^0.4.1",
|
"currently-unhandled": "^0.4.1",
|
||||||
"debug": "^4.3.3",
|
"debug": "^4.3.3",
|
||||||
"del": "^6.0.0",
|
"del": "^6.0.0",
|
||||||
"emittery": "^0.10.0",
|
"emittery": "^0.10.0",
|
||||||
"figures": "^4.0.0",
|
"figures": "^4.0.0",
|
||||||
"globby": "^12.0.2",
|
"globby": "^12.0.2",
|
||||||
"ignore-by-default": "^2.0.0",
|
"ignore-by-default": "^2.0.0",
|
||||||
"indent-string": "^5.0.0",
|
"indent-string": "^5.0.0",
|
||||||
"is-error": "^2.2.2",
|
"is-error": "^2.2.2",
|
||||||
"is-plain-object": "^5.0.0",
|
"is-plain-object": "^5.0.0",
|
||||||
"is-promise": "^4.0.0",
|
"is-promise": "^4.0.0",
|
||||||
"matcher": "^5.0.0",
|
"matcher": "^5.0.0",
|
||||||
"mem": "^9.0.1",
|
"mem": "^9.0.1",
|
||||||
"ms": "^2.1.3",
|
"ms": "^2.1.3",
|
||||||
"p-event": "^5.0.1",
|
"p-event": "^5.0.1",
|
||||||
"p-map": "^5.3.0",
|
"p-map": "^5.3.0",
|
||||||
"picomatch": "^2.3.0",
|
"picomatch": "^2.3.0",
|
||||||
"pkg-conf": "^4.0.0",
|
"pkg-conf": "^4.0.0",
|
||||||
"plur": "^5.1.0",
|
"plur": "^5.1.0",
|
||||||
"pretty-ms": "^7.0.1",
|
"pretty-ms": "^7.0.1",
|
||||||
"resolve-cwd": "^3.0.0",
|
"resolve-cwd": "^3.0.0",
|
||||||
"slash": "^3.0.0",
|
"slash": "^3.0.0",
|
||||||
"stack-utils": "^2.0.5",
|
"stack-utils": "^2.0.5",
|
||||||
"strip-ansi": "^7.0.1",
|
"strip-ansi": "^7.0.1",
|
||||||
"supertap": "^2.0.0",
|
"supertap": "^2.0.0",
|
||||||
"temp-dir": "^2.0.0",
|
"temp-dir": "^2.0.0",
|
||||||
"write-file-atomic": "^3.0.3",
|
"write-file-atomic": "^3.0.3",
|
||||||
"yargs": "^17.3.1"
|
"yargs": "^17.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ava/test": "github:avajs/test",
|
"@ava/test": "github:avajs/test",
|
||||||
"@ava/typescript": "^3.0.1",
|
"@ava/typescript": "^3.0.1",
|
||||||
"@sinonjs/fake-timers": "^8.1.0",
|
"@sinonjs/fake-timers": "^8.1.0",
|
||||||
"ansi-escapes": "^5.0.0",
|
"ansi-escapes": "^5.0.0",
|
||||||
"c8": "^7.11.0",
|
"c8": "^7.11.0",
|
||||||
"delay": "^5.0.0",
|
"delay": "^5.0.0",
|
||||||
"execa": "^6.0.0",
|
"execa": "^6.0.0",
|
||||||
"fs-extra": "^10.0.0",
|
"fs-extra": "^10.0.0",
|
||||||
"get-stream": "^6.0.1",
|
"get-stream": "^6.0.1",
|
||||||
"replace-string": "^4.0.0",
|
"replace-string": "^4.0.0",
|
||||||
"sinon": "^12.0.1",
|
"sinon": "^12.0.1",
|
||||||
"tap": "^15.1.5",
|
"tap": "^15.1.5",
|
||||||
"temp-write": "^5.0.0",
|
"temp-write": "^5.0.0",
|
||||||
"tempy": "^2.0.0",
|
"tempy": "^2.0.0",
|
||||||
"touch": "^3.1.0",
|
"touch": "^3.1.0",
|
||||||
"tsd": "^0.19.1",
|
"tsd": "^0.19.1",
|
||||||
"typescript": "^4.4.4",
|
"typescript": "^4.4.4",
|
||||||
"xo": "^0.47.0",
|
"xo": "^0.47.0",
|
||||||
"zen-observable": "^0.8.15"
|
"zen-observable": "^0.8.15"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@ava/typescript": "*"
|
"@ava/typescript": "*"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"@ava/typescript": {
|
"@ava/typescript": {
|
||||||
"optional": true
|
"optional": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "binary-extensions",
|
"name": "binary-extensions",
|
||||||
"version": "2.2.0",
|
"version": "2.2.0",
|
||||||
"description": "List of binary file extensions",
|
"description": "List of binary file extensions",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/binary-extensions",
|
"repository": "sindresorhus/binary-extensions",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"binary-extensions.json",
|
"binary-extensions.json",
|
||||||
"binary-extensions.json.d.ts"
|
"binary-extensions.json.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"binary",
|
"binary",
|
||||||
"extensions",
|
"extensions",
|
||||||
"extension",
|
"extension",
|
||||||
"file",
|
"file",
|
||||||
"json",
|
"json",
|
||||||
"list",
|
"list",
|
||||||
"array"
|
"array"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+78
-78
@@ -1,80 +1,80 @@
|
|||||||
{
|
{
|
||||||
"name": "call-bind",
|
"name": "call-bind",
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"description": "Robustly `.call.bind()` a function",
|
"description": "Robustly `.call.bind()` a function",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": [
|
".": [
|
||||||
{
|
{
|
||||||
"default": "./index.js"
|
"default": "./index.js"
|
||||||
},
|
},
|
||||||
"./index.js"
|
"./index.js"
|
||||||
],
|
],
|
||||||
"./callBound": [
|
"./callBound": [
|
||||||
{
|
{
|
||||||
"default": "./callBound.js"
|
"default": "./callBound.js"
|
||||||
},
|
},
|
||||||
"./callBound.js"
|
"./callBound.js"
|
||||||
],
|
],
|
||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "safe-publish-latest",
|
"prepublish": "safe-publish-latest",
|
||||||
"lint": "eslint --ext=.js,.mjs .",
|
"lint": "eslint --ext=.js,.mjs .",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"tests-only": "nyc tape 'test/*'",
|
"tests-only": "nyc tape 'test/*'",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/ljharb/call-bind.git"
|
"url": "git+https://github.com/ljharb/call-bind.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"javascript",
|
"javascript",
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"es",
|
"es",
|
||||||
"js",
|
"js",
|
||||||
"callbind",
|
"callbind",
|
||||||
"callbound",
|
"callbound",
|
||||||
"call",
|
"call",
|
||||||
"bind",
|
"bind",
|
||||||
"bound",
|
"bound",
|
||||||
"call-bind",
|
"call-bind",
|
||||||
"call-bound",
|
"call-bound",
|
||||||
"function",
|
"function",
|
||||||
"es-abstract"
|
"es-abstract"
|
||||||
],
|
],
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ljharb/call-bind/issues"
|
"url": "https://github.com/ljharb/call-bind/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/ljharb/call-bind#readme",
|
"homepage": "https://github.com/ljharb/call-bind#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.3.0",
|
"@ljharb/eslint-config": "^17.3.0",
|
||||||
"aud": "^1.1.3",
|
"aud": "^1.1.3",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"eslint": "^7.17.0",
|
"eslint": "^7.17.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.1.1"
|
"tape": "^5.1.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"get-intrinsic": "^1.0.2"
|
"get-intrinsic": "^1.0.2"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+37
-37
@@ -1,39 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "callsites",
|
"name": "callsites",
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"description": "Get callsites from the V8 stack trace API",
|
"description": "Get callsites from the V8 stack trace API",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/callsites",
|
"repository": "sindresorhus/callsites",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"stacktrace",
|
"stacktrace",
|
||||||
"v8",
|
"v8",
|
||||||
"callsite",
|
"callsite",
|
||||||
"callsites",
|
"callsites",
|
||||||
"stack",
|
"stack",
|
||||||
"trace",
|
"trace",
|
||||||
"function",
|
"function",
|
||||||
"file",
|
"file",
|
||||||
"line",
|
"line",
|
||||||
"debug"
|
"debug"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+69
-69
@@ -1,71 +1,71 @@
|
|||||||
{
|
{
|
||||||
"name": "chalk",
|
"name": "chalk",
|
||||||
"version": "2.4.2",
|
"version": "2.4.2",
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/chalk",
|
"repository": "chalk/chalk",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava",
|
"test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava",
|
||||||
"bench": "matcha benchmark.js",
|
"bench": "matcha benchmark.js",
|
||||||
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"templates.js",
|
"templates.js",
|
||||||
"types/index.d.ts",
|
"types/index.d.ts",
|
||||||
"index.js.flow"
|
"index.js.flow"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"str",
|
"str",
|
||||||
"ansi",
|
"ansi",
|
||||||
"style",
|
"style",
|
||||||
"styles",
|
"styles",
|
||||||
"tty",
|
"tty",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-styles": "^3.2.1",
|
"ansi-styles": "^3.2.1",
|
||||||
"escape-string-regexp": "^1.0.5",
|
"escape-string-regexp": "^1.0.5",
|
||||||
"supports-color": "^5.3.0"
|
"supports-color": "^5.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "*",
|
"ava": "*",
|
||||||
"coveralls": "^3.0.0",
|
"coveralls": "^3.0.0",
|
||||||
"execa": "^0.9.0",
|
"execa": "^0.9.0",
|
||||||
"flow-bin": "^0.68.0",
|
"flow-bin": "^0.68.0",
|
||||||
"import-fresh": "^2.0.0",
|
"import-fresh": "^2.0.0",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"nyc": "^11.0.2",
|
"nyc": "^11.0.2",
|
||||||
"resolve-from": "^4.0.0",
|
"resolve-from": "^4.0.0",
|
||||||
"typescript": "^2.5.3",
|
"typescript": "^2.5.3",
|
||||||
"xo": "*"
|
"xo": "*"
|
||||||
},
|
},
|
||||||
"types": "types/index.d.ts",
|
"types": "types/index.d.ts",
|
||||||
"xo": {
|
"xo": {
|
||||||
"envs": [
|
"envs": [
|
||||||
"node",
|
"node",
|
||||||
"mocha"
|
"mocha"
|
||||||
],
|
],
|
||||||
"ignores": [
|
"ignores": [
|
||||||
"test/_flow.js"
|
"test/_flow.js"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+52
-52
@@ -1,54 +1,54 @@
|
|||||||
{
|
{
|
||||||
"name": "chunkd",
|
"name": "chunkd",
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"description": "Get a chunk of an array based on the total number of chunks and current index",
|
"description": "Get a chunk of an array based on the total number of chunks and current index",
|
||||||
"main": "dist/chunkd.js",
|
"main": "dist/chunkd.js",
|
||||||
"repository": "jamiebuilds/chunkd",
|
"repository": "jamiebuilds/chunkd",
|
||||||
"author": "Jamie Kyle <me@thejameskyle.com>",
|
"author": "Jamie Kyle <me@thejameskyle.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"util",
|
"util",
|
||||||
"chunk",
|
"chunk",
|
||||||
"index",
|
"index",
|
||||||
"total"
|
"total"
|
||||||
],
|
],
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"check:typescript": "tsc --noEmit",
|
"check:typescript": "tsc --noEmit",
|
||||||
"check:prettier": "prettier --check '**'",
|
"check:prettier": "prettier --check '**'",
|
||||||
"build": "rm -rf dist && tsc",
|
"build": "rm -rf dist && tsc",
|
||||||
"format": "prettier --write '**'",
|
"format": "prettier --write '**'",
|
||||||
"test": "ava",
|
"test": "ava",
|
||||||
"prepublishOnly": "npm run -s build"
|
"prepublishOnly": "npm run -s build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"husky": "^3.1.0",
|
"husky": "^3.1.0",
|
||||||
"lint-staged": "^9.4.3",
|
"lint-staged": "^9.4.3",
|
||||||
"prettier": "^1.19.1",
|
"prettier": "^1.19.1",
|
||||||
"ts-node": "^8.5.2",
|
"ts-node": "^8.5.2",
|
||||||
"typescript": "^3.7.2"
|
"typescript": "^3.7.2"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"pre-commit": "lint-staged"
|
"pre-commit": "lint-staged"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*": [
|
"*": [
|
||||||
"prettier --write",
|
"prettier --write",
|
||||||
"git add"
|
"git add"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"compileEnhancements": false,
|
"compileEnhancements": false,
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"ts"
|
"ts"
|
||||||
],
|
],
|
||||||
"require": [
|
"require": [
|
||||||
"ts-node/register"
|
"ts-node/register"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+37
-37
@@ -1,39 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "clean-stack",
|
"name": "clean-stack",
|
||||||
"version": "2.2.0",
|
"version": "2.2.0",
|
||||||
"description": "Clean up error stack traces",
|
"description": "Clean up error stack traces",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/clean-stack",
|
"repository": "sindresorhus/clean-stack",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"clean",
|
"clean",
|
||||||
"stack",
|
"stack",
|
||||||
"trace",
|
"trace",
|
||||||
"traces",
|
"traces",
|
||||||
"error",
|
"error",
|
||||||
"err",
|
"err",
|
||||||
"electron"
|
"electron"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"browser": {
|
"browser": {
|
||||||
"os": false
|
"os": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+56
-56
@@ -1,58 +1,58 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-regex",
|
"name": "ansi-regex",
|
||||||
"version": "6.0.1",
|
"version": "6.0.1",
|
||||||
"description": "Regular expression for matching ANSI escape codes",
|
"description": "Regular expression for matching ANSI escape codes",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-regex",
|
"repository": "chalk/ansi-regex",
|
||||||
"funding": "https://github.com/chalk/ansi-regex?sponsor=1",
|
"funding": "https://github.com/chalk/ansi-regex?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"view-supported": "node fixtures/view-codes.js"
|
"view-supported": "node fixtures/view-codes.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text",
|
"text",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"re",
|
"re",
|
||||||
"match",
|
"match",
|
||||||
"test",
|
"test",
|
||||||
"find",
|
"find",
|
||||||
"pattern"
|
"pattern"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+57
-57
@@ -1,59 +1,59 @@
|
|||||||
{
|
{
|
||||||
"name": "string-width",
|
"name": "string-width",
|
||||||
"version": "5.1.0",
|
"version": "5.1.0",
|
||||||
"description": "Get the visual width of a string - the number of columns required to display it",
|
"description": "Get the visual width of a string - the number of columns required to display it",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/string-width",
|
"repository": "sindresorhus/string-width",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"string",
|
"string",
|
||||||
"character",
|
"character",
|
||||||
"unicode",
|
"unicode",
|
||||||
"width",
|
"width",
|
||||||
"visual",
|
"visual",
|
||||||
"column",
|
"column",
|
||||||
"columns",
|
"columns",
|
||||||
"fullwidth",
|
"fullwidth",
|
||||||
"full-width",
|
"full-width",
|
||||||
"full",
|
"full",
|
||||||
"ansi",
|
"ansi",
|
||||||
"escape",
|
"escape",
|
||||||
"codes",
|
"codes",
|
||||||
"cli",
|
"cli",
|
||||||
"command-line",
|
"command-line",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cjk",
|
"cjk",
|
||||||
"chinese",
|
"chinese",
|
||||||
"japanese",
|
"japanese",
|
||||||
"korean",
|
"korean",
|
||||||
"fixed-width"
|
"fixed-width"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eastasianwidth": "^0.2.0",
|
"eastasianwidth": "^0.2.0",
|
||||||
"emoji-regex": "^9.2.2",
|
"emoji-regex": "^9.2.2",
|
||||||
"strip-ansi": "^7.0.1"
|
"strip-ansi": "^7.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-55
@@ -1,57 +1,57 @@
|
|||||||
{
|
{
|
||||||
"name": "strip-ansi",
|
"name": "strip-ansi",
|
||||||
"version": "7.0.1",
|
"version": "7.0.1",
|
||||||
"description": "Strip ANSI escape codes from a string",
|
"description": "Strip ANSI escape codes from a string",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/strip-ansi",
|
"repository": "chalk/strip-ansi",
|
||||||
"funding": "https://github.com/chalk/strip-ansi?sponsor=1",
|
"funding": "https://github.com/chalk/strip-ansi?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"strip",
|
"strip",
|
||||||
"trim",
|
"trim",
|
||||||
"remove",
|
"remove",
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-regex": "^6.0.1"
|
"ansi-regex": "^6.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"xo": "^0.44.0"
|
"xo": "^0.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+46
-46
@@ -1,48 +1,48 @@
|
|||||||
{
|
{
|
||||||
"name": "cli-truncate",
|
"name": "cli-truncate",
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"description": "Truncate a string to a specific width in the terminal",
|
"description": "Truncate a string to a specific width in the terminal",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/cli-truncate",
|
"repository": "sindresorhus/cli-truncate",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"truncate",
|
"truncate",
|
||||||
"ellipsis",
|
"ellipsis",
|
||||||
"text",
|
"text",
|
||||||
"limit",
|
"limit",
|
||||||
"slice",
|
"slice",
|
||||||
"cli",
|
"cli",
|
||||||
"terminal",
|
"terminal",
|
||||||
"term",
|
"term",
|
||||||
"shell",
|
"shell",
|
||||||
"width",
|
"width",
|
||||||
"ansi",
|
"ansi",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slice-ansi": "^5.0.0",
|
"slice-ansi": "^5.0.0",
|
||||||
"string-width": "^5.0.0"
|
"string-width": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"xo": "^0.44.0"
|
"xo": "^0.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+40
-56
@@ -1,59 +1,43 @@
|
|||||||
{
|
{
|
||||||
"name": "concat-map",
|
"name" : "concat-map",
|
||||||
"description": "concatenative mapdashery",
|
"description" : "concatenative mapdashery",
|
||||||
"version": "0.0.1",
|
"version" : "0.0.1",
|
||||||
"repository": {
|
"repository" : {
|
||||||
"type": "git",
|
"type" : "git",
|
||||||
"url": "git://github.com/substack/node-concat-map.git"
|
"url" : "git://github.com/substack/node-concat-map.git"
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main" : "index.js",
|
||||||
"keywords": [
|
"keywords" : [
|
||||||
"concat",
|
"concat",
|
||||||
"concatMap",
|
"concatMap",
|
||||||
"map",
|
"map",
|
||||||
"functional",
|
"functional",
|
||||||
"higher-order"
|
"higher-order"
|
||||||
],
|
],
|
||||||
"directories": {
|
"directories" : {
|
||||||
"example": "example",
|
"example" : "example",
|
||||||
"test": "test"
|
"test" : "test"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts" : {
|
||||||
"test": "tape test/*.js"
|
"test" : "tape test/*.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies" : {
|
||||||
"tape": "~2.4.0"
|
"tape" : "~2.4.0"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license" : "MIT",
|
||||||
"author": {
|
"author" : {
|
||||||
"name": "James Halliday",
|
"name" : "James Halliday",
|
||||||
"email": "mail@substack.net",
|
"email" : "mail@substack.net",
|
||||||
"url": "http://substack.net"
|
"url" : "http://substack.net"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling" : {
|
||||||
"files": "test/*.js",
|
"files" : "test/*.js",
|
||||||
"browsers": {
|
"browsers" : {
|
||||||
"ie": [
|
"ie" : [ 6, 7, 8, 9 ],
|
||||||
6,
|
"ff" : [ 3.5, 10, 15.0 ],
|
||||||
7,
|
"chrome" : [ 10, 22 ],
|
||||||
8,
|
"safari" : [ 5.1 ],
|
||||||
9
|
"opera" : [ 12 ]
|
||||||
],
|
}
|
||||||
"ff": [
|
|
||||||
3.5,
|
|
||||||
10,
|
|
||||||
15
|
|
||||||
],
|
|
||||||
"chrome": [
|
|
||||||
10,
|
|
||||||
22
|
|
||||||
],
|
|
||||||
"safari": [
|
|
||||||
5.1
|
|
||||||
],
|
|
||||||
"opera": [
|
|
||||||
12
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
+39
-39
@@ -1,41 +1,41 @@
|
|||||||
{
|
{
|
||||||
"name": "date-time",
|
"name": "date-time",
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"description": "Pretty datetime: `2014-01-09 06:46:01`",
|
"description": "Pretty datetime: `2014-01-09 06:46:01`",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/date-time",
|
"repository": "sindresorhus/date-time",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"datetime",
|
"datetime",
|
||||||
"date-time",
|
"date-time",
|
||||||
"date",
|
"date",
|
||||||
"time",
|
"time",
|
||||||
"utc",
|
"utc",
|
||||||
"iso",
|
"iso",
|
||||||
"timezone",
|
"timezone",
|
||||||
"zone",
|
"zone",
|
||||||
"timestamp"
|
"timestamp"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"time-zone": "^1.0.0"
|
"time-zone": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.1",
|
"tsd": "^0.7.1",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+63
-63
@@ -1,65 +1,65 @@
|
|||||||
{
|
{
|
||||||
"name": "define-properties",
|
"name": "define-properties",
|
||||||
"version": "1.1.3",
|
"version": "1.1.3",
|
||||||
"author": "Jordan Harband",
|
"author": "Jordan Harband",
|
||||||
"description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
|
"description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"pretest": "npm run --silent lint",
|
"pretest": "npm run --silent lint",
|
||||||
"test": "npm run --silent tests-only",
|
"test": "npm run --silent tests-only",
|
||||||
"posttest": "npm run --silent security",
|
"posttest": "npm run --silent security",
|
||||||
"tests-only": "node test/index.js",
|
"tests-only": "node test/index.js",
|
||||||
"coverage": "covert test/*.js",
|
"coverage": "covert test/*.js",
|
||||||
"coverage-quiet": "covert test/*.js --quiet",
|
"coverage-quiet": "covert test/*.js --quiet",
|
||||||
"lint": "npm run --silent jscs && npm run --silent eslint",
|
"lint": "npm run --silent jscs && npm run --silent eslint",
|
||||||
"jscs": "jscs test/*.js *.js",
|
"jscs": "jscs test/*.js *.js",
|
||||||
"eslint": "eslint test/*.js *.js",
|
"eslint": "eslint test/*.js *.js",
|
||||||
"security": "nsp check"
|
"security": "nsp check"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/ljharb/define-properties.git"
|
"url": "git://github.com/ljharb/define-properties.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Object.defineProperty",
|
"Object.defineProperty",
|
||||||
"Object.defineProperties",
|
"Object.defineProperties",
|
||||||
"object",
|
"object",
|
||||||
"property descriptor",
|
"property descriptor",
|
||||||
"descriptor",
|
"descriptor",
|
||||||
"define",
|
"define",
|
||||||
"ES5"
|
"ES5"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"object-keys": "^1.0.12"
|
"object-keys": "^1.0.12"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^13.0.0",
|
"@ljharb/eslint-config": "^13.0.0",
|
||||||
"covert": "^1.1.0",
|
"covert": "^1.1.0",
|
||||||
"eslint": "^5.3.0",
|
"eslint": "^5.3.0",
|
||||||
"jscs": "^3.0.7",
|
"jscs": "^3.0.7",
|
||||||
"nsp": "^3.2.1",
|
"nsp": "^3.2.1",
|
||||||
"tape": "^4.9.0"
|
"tape": "^4.9.0"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test/index.js",
|
"files": "test/index.js",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+64
-64
@@ -1,66 +1,66 @@
|
|||||||
{
|
{
|
||||||
"name": "del",
|
"name": "del",
|
||||||
"version": "6.0.0",
|
"version": "6.0.0",
|
||||||
"description": "Delete files and directories",
|
"description": "Delete files and directories",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/del",
|
"repository": "sindresorhus/del",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"bench": "node benchmark.js"
|
"bench": "node benchmark.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"delete",
|
"delete",
|
||||||
"files",
|
"files",
|
||||||
"folders",
|
"folders",
|
||||||
"directories",
|
"directories",
|
||||||
"remove",
|
"remove",
|
||||||
"destroy",
|
"destroy",
|
||||||
"trash",
|
"trash",
|
||||||
"unlink",
|
"unlink",
|
||||||
"clean",
|
"clean",
|
||||||
"cleaning",
|
"cleaning",
|
||||||
"cleanup",
|
"cleanup",
|
||||||
"rm",
|
"rm",
|
||||||
"rmrf",
|
"rmrf",
|
||||||
"rimraf",
|
"rimraf",
|
||||||
"rmdir",
|
"rmdir",
|
||||||
"glob",
|
"glob",
|
||||||
"gulpfriendly",
|
"gulpfriendly",
|
||||||
"file",
|
"file",
|
||||||
"folder",
|
"folder",
|
||||||
"directory",
|
"directory",
|
||||||
"fs",
|
"fs",
|
||||||
"filesystem"
|
"filesystem"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"globby": "^11.0.1",
|
"globby": "^11.0.1",
|
||||||
"graceful-fs": "^4.2.4",
|
"graceful-fs": "^4.2.4",
|
||||||
"is-glob": "^4.0.1",
|
"is-glob": "^4.0.1",
|
||||||
"is-path-cwd": "^2.2.0",
|
"is-path-cwd": "^2.2.0",
|
||||||
"is-path-inside": "^3.0.2",
|
"is-path-inside": "^3.0.2",
|
||||||
"p-map": "^4.0.0",
|
"p-map": "^4.0.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"slash": "^3.0.0"
|
"slash": "^3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"benchmark": "^2.1.4",
|
"benchmark": "^2.1.4",
|
||||||
"make-dir": "^3.1.0",
|
"make-dir": "^3.1.0",
|
||||||
"tempy": "^0.7.0",
|
"tempy": "^0.7.0",
|
||||||
"tsd": "^0.13.1",
|
"tsd": "^0.13.1",
|
||||||
"xo": "^0.33.1"
|
"xo": "^0.33.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "dir-glob",
|
"name": "dir-glob",
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"description": "Convert directories to glob compatible strings",
|
"description": "Convert directories to glob compatible strings",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "kevva/dir-glob",
|
"repository": "kevva/dir-glob",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
"url": "github.com/kevva"
|
"url": "github.com/kevva"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"index.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"convert",
|
"convert",
|
||||||
"directory",
|
"directory",
|
||||||
"extensions",
|
"extensions",
|
||||||
"files",
|
"files",
|
||||||
"glob"
|
"glob"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"path-type": "^4.0.0"
|
"path-type": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.1.0",
|
"ava": "^2.1.0",
|
||||||
"del": "^4.1.1",
|
"del": "^4.1.1",
|
||||||
"make-dir": "^3.0.0",
|
"make-dir": "^3.0.0",
|
||||||
"rimraf": "^2.5.0",
|
"rimraf": "^2.5.0",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+64
-64
@@ -1,66 +1,66 @@
|
|||||||
{
|
{
|
||||||
"name": "emittery",
|
"name": "emittery",
|
||||||
"version": "0.10.0",
|
"version": "0.10.0",
|
||||||
"description": "Simple and modern async event emitter",
|
"description": "Simple and modern async event emitter",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/emittery",
|
"repository": "sindresorhus/emittery",
|
||||||
"funding": "https://github.com/sindresorhus/emittery?sponsor=1",
|
"funding": "https://github.com/sindresorhus/emittery?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && nyc ava && tsd"
|
"test": "xo && nyc ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"event",
|
"event",
|
||||||
"emitter",
|
"emitter",
|
||||||
"eventemitter",
|
"eventemitter",
|
||||||
"events",
|
"events",
|
||||||
"async",
|
"async",
|
||||||
"emit",
|
"emit",
|
||||||
"on",
|
"on",
|
||||||
"once",
|
"once",
|
||||||
"off",
|
"off",
|
||||||
"listener",
|
"listener",
|
||||||
"subscribe",
|
"subscribe",
|
||||||
"unsubscribe",
|
"unsubscribe",
|
||||||
"pubsub",
|
"pubsub",
|
||||||
"tiny",
|
"tiny",
|
||||||
"addlistener",
|
"addlistener",
|
||||||
"addeventlistener",
|
"addeventlistener",
|
||||||
"dispatch",
|
"dispatch",
|
||||||
"dispatcher",
|
"dispatcher",
|
||||||
"observer",
|
"observer",
|
||||||
"trigger",
|
"trigger",
|
||||||
"await",
|
"await",
|
||||||
"promise",
|
"promise",
|
||||||
"typescript",
|
"typescript",
|
||||||
"ts",
|
"ts",
|
||||||
"typed"
|
"typed"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^15.6.1",
|
"@types/node": "^15.6.1",
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"delay": "^4.3.0",
|
"delay": "^4.3.0",
|
||||||
"nyc": "^15.0.0",
|
"nyc": "^15.0.0",
|
||||||
"p-event": "^4.1.0",
|
"p-event": "^4.1.0",
|
||||||
"tsd": "^0.16.0",
|
"tsd": "^0.16.0",
|
||||||
"xo": "^0.39.0"
|
"xo": "^0.39.0"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"reporter": [
|
"reporter": [
|
||||||
"html",
|
"html",
|
||||||
"lcov",
|
"lcov",
|
||||||
"text"
|
"text"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+133
-133
@@ -1,135 +1,135 @@
|
|||||||
{
|
{
|
||||||
"name": "es-abstract",
|
"name": "es-abstract",
|
||||||
"version": "1.18.3",
|
"version": "1.18.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "ECMAScript spec abstract operations.",
|
"description": "ECMAScript spec abstract operations.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./package.json": "./package.json",
|
"./package.json": "./package.json",
|
||||||
"./2020/*": "./2020/*.js",
|
"./2020/*": "./2020/*.js",
|
||||||
"./2019/*": "./2019/*.js",
|
"./2019/*": "./2019/*.js",
|
||||||
"./2018/*": "./2018/*.js",
|
"./2018/*": "./2018/*.js",
|
||||||
"./2017/*": "./2017/*.js",
|
"./2017/*": "./2017/*.js",
|
||||||
"./2016/*": "./2016/*.js",
|
"./2016/*": "./2016/*.js",
|
||||||
"./2015/*": "./2015/*.js",
|
"./2015/*": "./2015/*.js",
|
||||||
"./helpers/*": "./helpers/*.js",
|
"./helpers/*": "./helpers/*.js",
|
||||||
"./5/*": "./5/*.js",
|
"./5/*": "./5/*.js",
|
||||||
"./": "./"
|
"./": "./"
|
||||||
},
|
},
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prespackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs rm || true",
|
"prespackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs rm || true",
|
||||||
"spackle": "node operations/spackle 1",
|
"spackle": "node operations/spackle 1",
|
||||||
"postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
|
"postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
|
||||||
"prepublish": "not-in-publish || npm run prepublishOnly",
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
||||||
"prepublishOnly": "safe-publish-latest && npm run spackle",
|
"prepublishOnly": "safe-publish-latest && npm run spackle",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"test": "npm run tests-only && npm run test:ses",
|
"test": "npm run tests-only && npm run test:ses",
|
||||||
"test:ses": "node test/ses-compat",
|
"test:ses": "node test/ses-compat",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"tests-only": "nyc node test",
|
"tests-only": "nyc node test",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"eccheck": "eclint check *.js **/*.js > /dev/null"
|
"eccheck": "eclint check *.js **/*.js > /dev/null"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/ljharb/es-abstract.git"
|
"url": "git://github.com/ljharb/es-abstract.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ECMAScript",
|
"ECMAScript",
|
||||||
"ES",
|
"ES",
|
||||||
"abstract",
|
"abstract",
|
||||||
"operation",
|
"operation",
|
||||||
"abstract operation",
|
"abstract operation",
|
||||||
"JavaScript",
|
"JavaScript",
|
||||||
"ES5",
|
"ES5",
|
||||||
"ES6",
|
"ES6",
|
||||||
"ES7"
|
"ES7"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"call-bind": "^1.0.2",
|
"call-bind": "^1.0.2",
|
||||||
"es-to-primitive": "^1.2.1",
|
"es-to-primitive": "^1.2.1",
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"get-intrinsic": "^1.1.1",
|
"get-intrinsic": "^1.1.1",
|
||||||
"has": "^1.0.3",
|
"has": "^1.0.3",
|
||||||
"has-symbols": "^1.0.2",
|
"has-symbols": "^1.0.2",
|
||||||
"is-callable": "^1.2.3",
|
"is-callable": "^1.2.3",
|
||||||
"is-negative-zero": "^2.0.1",
|
"is-negative-zero": "^2.0.1",
|
||||||
"is-regex": "^1.1.3",
|
"is-regex": "^1.1.3",
|
||||||
"is-string": "^1.0.6",
|
"is-string": "^1.0.6",
|
||||||
"object-inspect": "^1.10.3",
|
"object-inspect": "^1.10.3",
|
||||||
"object-keys": "^1.1.1",
|
"object-keys": "^1.1.1",
|
||||||
"object.assign": "^4.1.2",
|
"object.assign": "^4.1.2",
|
||||||
"string.prototype.trimend": "^1.0.4",
|
"string.prototype.trimend": "^1.0.4",
|
||||||
"string.prototype.trimstart": "^1.0.4",
|
"string.prototype.trimstart": "^1.0.4",
|
||||||
"unbox-primitive": "^1.0.1"
|
"unbox-primitive": "^1.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.6.0",
|
"@ljharb/eslint-config": "^17.6.0",
|
||||||
"array.prototype.indexof": "^1.0.2",
|
"array.prototype.indexof": "^1.0.2",
|
||||||
"aud": "^1.1.5",
|
"aud": "^1.1.5",
|
||||||
"cheerio": "=1.0.0-rc.3",
|
"cheerio": "=1.0.0-rc.3",
|
||||||
"diff": "^5.0.0",
|
"diff": "^5.0.0",
|
||||||
"eclint": "^2.8.1",
|
"eclint": "^2.8.1",
|
||||||
"es-value-fixtures": "^1.2.1",
|
"es-value-fixtures": "^1.2.1",
|
||||||
"eslint": "^7.27.0",
|
"eslint": "^7.27.0",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"functions-have-names": "^1.2.2",
|
"functions-have-names": "^1.2.2",
|
||||||
"has-bigints": "^1.0.1",
|
"has-bigints": "^1.0.1",
|
||||||
"has-strict-mode": "^1.0.1",
|
"has-strict-mode": "^1.0.1",
|
||||||
"in-publish": "^2.0.1",
|
"in-publish": "^2.0.1",
|
||||||
"make-arrow-function": "^1.2.0",
|
"make-arrow-function": "^1.2.0",
|
||||||
"make-async-function": "^1.0.0",
|
"make-async-function": "^1.0.0",
|
||||||
"make-async-generator-function": "^1.0.0",
|
"make-async-generator-function": "^1.0.0",
|
||||||
"make-generator-function": "^2.0.0",
|
"make-generator-function": "^2.0.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"object.fromentries": "^2.0.4",
|
"object.fromentries": "^2.0.4",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"ses": "^0.10.4",
|
"ses": "^0.10.4",
|
||||||
"tape": "^5.2.2"
|
"tape": "^5.2.2"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test/index.js",
|
"files": "test/index.js",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
"greenkeeper": {
|
"greenkeeper": {
|
||||||
"//": "nyc is ignored because it requires node 4+, and we support older than that",
|
"//": "nyc is ignored because it requires node 4+, and we support older than that",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"nyc"
|
"nyc"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+79
-79
@@ -1,81 +1,81 @@
|
|||||||
{
|
{
|
||||||
"name": "es-to-primitive",
|
"name": "es-to-primitive",
|
||||||
"version": "1.2.1",
|
"version": "1.2.1",
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.",
|
"description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"pretest": "npm run --silent lint",
|
"pretest": "npm run --silent lint",
|
||||||
"test": "npm run --silent tests-only",
|
"test": "npm run --silent tests-only",
|
||||||
"posttest": "npx aud",
|
"posttest": "npx aud",
|
||||||
"tests-only": "node --es-staging test",
|
"tests-only": "node --es-staging test",
|
||||||
"coverage": "covert test/*.js",
|
"coverage": "covert test/*.js",
|
||||||
"coverage-quiet": "covert test/*.js --quiet",
|
"coverage-quiet": "covert test/*.js --quiet",
|
||||||
"lint": "eslint ."
|
"lint": "eslint ."
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/ljharb/es-to-primitive.git"
|
"url": "git://github.com/ljharb/es-to-primitive.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"primitive",
|
"primitive",
|
||||||
"abstract",
|
"abstract",
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"es5",
|
"es5",
|
||||||
"es6",
|
"es6",
|
||||||
"es2015",
|
"es2015",
|
||||||
"toPrimitive",
|
"toPrimitive",
|
||||||
"coerce",
|
"coerce",
|
||||||
"type",
|
"type",
|
||||||
"object",
|
"object",
|
||||||
"string",
|
"string",
|
||||||
"number",
|
"number",
|
||||||
"boolean",
|
"boolean",
|
||||||
"symbol",
|
"symbol",
|
||||||
"null",
|
"null",
|
||||||
"undefined"
|
"undefined"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"is-callable": "^1.1.4",
|
"is-callable": "^1.1.4",
|
||||||
"is-date-object": "^1.0.1",
|
"is-date-object": "^1.0.1",
|
||||||
"is-symbol": "^1.0.2"
|
"is-symbol": "^1.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^15.0.0",
|
"@ljharb/eslint-config": "^15.0.0",
|
||||||
"covert": "^1.1.1",
|
"covert": "^1.1.1",
|
||||||
"eslint": "^6.6.0",
|
"eslint": "^6.6.0",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"function.prototype.name": "^1.1.1",
|
"function.prototype.name": "^1.1.1",
|
||||||
"has-symbols": "^1.0.0",
|
"has-symbols": "^1.0.0",
|
||||||
"object-inspect": "^1.6.0",
|
"object-inspect": "^1.6.0",
|
||||||
"object-is": "^1.0.1",
|
"object-is": "^1.0.1",
|
||||||
"replace": "^1.1.1",
|
"replace": "^1.1.1",
|
||||||
"semver": "^6.3.0",
|
"semver": "^6.3.0",
|
||||||
"tape": "^4.11.0"
|
"tape": "^4.11.0"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test",
|
"files": "test",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-5
@@ -6,11 +6,7 @@
|
|||||||
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
|
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
|
||||||
"repository": "prettier/eslint-config-prettier",
|
"repository": "prettier/eslint-config-prettier",
|
||||||
"bin": "bin/cli.js",
|
"bin": "bin/cli.js",
|
||||||
"keywords": [
|
"keywords": ["eslint", "eslintconfig", "prettier"],
|
||||||
"eslint",
|
|
||||||
"eslintconfig",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": ">=7.0.0"
|
"eslint": ">=7.0.0"
|
||||||
}
|
}
|
||||||
|
|||||||
+47
-47
@@ -1,49 +1,49 @@
|
|||||||
{
|
{
|
||||||
"name": "p-limit",
|
"name": "p-limit",
|
||||||
"version": "1.3.0",
|
"version": "1.3.0",
|
||||||
"description": "Run multiple promise-returning & async functions with limited concurrency",
|
"description": "Run multiple promise-returning & async functions with limited concurrency",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/p-limit",
|
"repository": "sindresorhus/p-limit",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"index.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"promise",
|
"promise",
|
||||||
"limit",
|
"limit",
|
||||||
"limited",
|
"limited",
|
||||||
"concurrency",
|
"concurrency",
|
||||||
"throttle",
|
"throttle",
|
||||||
"throat",
|
"throat",
|
||||||
"rate",
|
"rate",
|
||||||
"batch",
|
"batch",
|
||||||
"ratelimit",
|
"ratelimit",
|
||||||
"task",
|
"task",
|
||||||
"queue",
|
"queue",
|
||||||
"async",
|
"async",
|
||||||
"await",
|
"await",
|
||||||
"promises",
|
"promises",
|
||||||
"bluebird"
|
"bluebird"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"p-try": "^1.0.0"
|
"p-try": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "*",
|
"ava": "*",
|
||||||
"delay": "^2.0.0",
|
"delay": "^2.0.0",
|
||||||
"in-range": "^1.0.0",
|
"in-range": "^1.0.0",
|
||||||
"random-int": "^1.0.0",
|
"random-int": "^1.0.0",
|
||||||
"time-span": "^2.0.0",
|
"time-span": "^2.0.0",
|
||||||
"xo": "*"
|
"xo": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+47
-47
@@ -1,49 +1,49 @@
|
|||||||
{
|
{
|
||||||
"name": "p-limit",
|
"name": "p-limit",
|
||||||
"version": "1.3.0",
|
"version": "1.3.0",
|
||||||
"description": "Run multiple promise-returning & async functions with limited concurrency",
|
"description": "Run multiple promise-returning & async functions with limited concurrency",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/p-limit",
|
"repository": "sindresorhus/p-limit",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"index.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"promise",
|
"promise",
|
||||||
"limit",
|
"limit",
|
||||||
"limited",
|
"limited",
|
||||||
"concurrency",
|
"concurrency",
|
||||||
"throttle",
|
"throttle",
|
||||||
"throat",
|
"throat",
|
||||||
"rate",
|
"rate",
|
||||||
"batch",
|
"batch",
|
||||||
"ratelimit",
|
"ratelimit",
|
||||||
"task",
|
"task",
|
||||||
"queue",
|
"queue",
|
||||||
"async",
|
"async",
|
||||||
"await",
|
"await",
|
||||||
"promises",
|
"promises",
|
||||||
"bluebird"
|
"bluebird"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"p-try": "^1.0.0"
|
"p-try": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "*",
|
"ava": "*",
|
||||||
"delay": "^2.0.0",
|
"delay": "^2.0.0",
|
||||||
"in-range": "^1.0.0",
|
"in-range": "^1.0.0",
|
||||||
"random-int": "^1.0.0",
|
"random-int": "^1.0.0",
|
||||||
"time-span": "^2.0.0",
|
"time-span": "^2.0.0",
|
||||||
"xo": "*"
|
"xo": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-55
@@ -1,57 +1,57 @@
|
|||||||
{
|
{
|
||||||
"name": "ansi-styles",
|
"name": "ansi-styles",
|
||||||
"version": "4.2.1",
|
"version": "4.2.1",
|
||||||
"description": "ANSI escape codes for styling strings in the terminal",
|
"description": "ANSI escape codes for styling strings in the terminal",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/ansi-styles",
|
"repository": "chalk/ansi-styles",
|
||||||
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
"funding": "https://github.com/chalk/ansi-styles?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
"screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"tty",
|
"tty",
|
||||||
"escape",
|
"escape",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/color-name": "^1.1.1",
|
"@types/color-name": "^1.1.1",
|
||||||
"color-convert": "^2.0.1"
|
"color-convert": "^2.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/color-convert": "^1.9.0",
|
"@types/color-convert": "^1.9.0",
|
||||||
"ava": "^2.3.0",
|
"ava": "^2.3.0",
|
||||||
"svg-term-cli": "^2.1.1",
|
"svg-term-cli": "^2.1.1",
|
||||||
"tsd": "^0.11.0",
|
"tsd": "^0.11.0",
|
||||||
"xo": "^0.25.3"
|
"xo": "^0.25.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+66
-66
@@ -1,68 +1,68 @@
|
|||||||
{
|
{
|
||||||
"name": "chalk",
|
"name": "chalk",
|
||||||
"version": "4.1.0",
|
"version": "4.1.0",
|
||||||
"description": "Terminal string styling done right",
|
"description": "Terminal string styling done right",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/chalk",
|
"repository": "chalk/chalk",
|
||||||
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
||||||
"main": "source",
|
"main": "source",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && nyc ava && tsd",
|
"test": "xo && nyc ava && tsd",
|
||||||
"bench": "matcha benchmark.js"
|
"bench": "matcha benchmark.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"source",
|
"source",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"string",
|
"string",
|
||||||
"str",
|
"str",
|
||||||
"ansi",
|
"ansi",
|
||||||
"style",
|
"style",
|
||||||
"styles",
|
"styles",
|
||||||
"tty",
|
"tty",
|
||||||
"formatting",
|
"formatting",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"log",
|
"log",
|
||||||
"logging",
|
"logging",
|
||||||
"command-line",
|
"command-line",
|
||||||
"text"
|
"text"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-styles": "^4.1.0",
|
"ansi-styles": "^4.1.0",
|
||||||
"supports-color": "^7.1.0"
|
"supports-color": "^7.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"coveralls": "^3.0.7",
|
"coveralls": "^3.0.7",
|
||||||
"execa": "^4.0.0",
|
"execa": "^4.0.0",
|
||||||
"import-fresh": "^3.1.0",
|
"import-fresh": "^3.1.0",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"nyc": "^15.0.0",
|
"nyc": "^15.0.0",
|
||||||
"resolve-from": "^5.0.0",
|
"resolve-from": "^5.0.0",
|
||||||
"tsd": "^0.7.4",
|
"tsd": "^0.7.4",
|
||||||
"xo": "^0.28.2"
|
"xo": "^0.28.2"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
"unicorn/prefer-includes": "off",
|
"unicorn/prefer-includes": "off",
|
||||||
"@typescript-eslint/member-ordering": "off",
|
"@typescript-eslint/member-ordering": "off",
|
||||||
"no-redeclare": "off",
|
"no-redeclare": "off",
|
||||||
"unicorn/string-content": "off",
|
"unicorn/string-content": "off",
|
||||||
"unicorn/better-regex": "off"
|
"unicorn/better-regex": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+36
-36
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "escape-string-regexp",
|
"name": "escape-string-regexp",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Escape RegExp special characters",
|
"description": "Escape RegExp special characters",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/escape-string-regexp",
|
"repository": "sindresorhus/escape-string-regexp",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"escape",
|
"escape",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"regular",
|
"regular",
|
||||||
"expression",
|
"expression",
|
||||||
"string",
|
"string",
|
||||||
"special",
|
"special",
|
||||||
"characters"
|
"characters"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.11.0",
|
"tsd": "^0.11.0",
|
||||||
"xo": "^0.28.3"
|
"xo": "^0.28.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+44
-44
@@ -1,46 +1,46 @@
|
|||||||
{
|
{
|
||||||
"name": "has-flag",
|
"name": "has-flag",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Check if argv has a specific flag",
|
"description": "Check if argv has a specific flag",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/has-flag",
|
"repository": "sindresorhus/has-flag",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"has",
|
"has",
|
||||||
"check",
|
"check",
|
||||||
"detect",
|
"detect",
|
||||||
"contains",
|
"contains",
|
||||||
"find",
|
"find",
|
||||||
"flag",
|
"flag",
|
||||||
"cli",
|
"cli",
|
||||||
"command-line",
|
"command-line",
|
||||||
"argv",
|
"argv",
|
||||||
"process",
|
"process",
|
||||||
"arg",
|
"arg",
|
||||||
"args",
|
"args",
|
||||||
"argument",
|
"argument",
|
||||||
"arguments",
|
"arguments",
|
||||||
"getopt",
|
"getopt",
|
||||||
"minimist",
|
"minimist",
|
||||||
"optimist"
|
"optimist"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+45
-45
@@ -1,47 +1,47 @@
|
|||||||
{
|
{
|
||||||
"name": "strip-json-comments",
|
"name": "strip-json-comments",
|
||||||
"version": "3.1.1",
|
"version": "3.1.1",
|
||||||
"description": "Strip comments from JSON. Lets you use comments in your JSON files!",
|
"description": "Strip comments from JSON. Lets you use comments in your JSON files!",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/strip-json-comments",
|
"repository": "sindresorhus/strip-json-comments",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"bench": "matcha benchmark.js"
|
"bench": "matcha benchmark.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"json",
|
"json",
|
||||||
"strip",
|
"strip",
|
||||||
"comments",
|
"comments",
|
||||||
"remove",
|
"remove",
|
||||||
"delete",
|
"delete",
|
||||||
"trim",
|
"trim",
|
||||||
"multiline",
|
"multiline",
|
||||||
"parse",
|
"parse",
|
||||||
"config",
|
"config",
|
||||||
"configuration",
|
"configuration",
|
||||||
"settings",
|
"settings",
|
||||||
"util",
|
"util",
|
||||||
"env",
|
"env",
|
||||||
"environment",
|
"environment",
|
||||||
"jsonc"
|
"jsonc"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+51
-51
@@ -1,53 +1,53 @@
|
|||||||
{
|
{
|
||||||
"name": "supports-color",
|
"name": "supports-color",
|
||||||
"version": "7.2.0",
|
"version": "7.2.0",
|
||||||
"description": "Detect whether a terminal supports color",
|
"description": "Detect whether a terminal supports color",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "chalk/supports-color",
|
"repository": "chalk/supports-color",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"browser.js"
|
"browser.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"color",
|
"color",
|
||||||
"colour",
|
"colour",
|
||||||
"colors",
|
"colors",
|
||||||
"terminal",
|
"terminal",
|
||||||
"console",
|
"console",
|
||||||
"cli",
|
"cli",
|
||||||
"ansi",
|
"ansi",
|
||||||
"styles",
|
"styles",
|
||||||
"tty",
|
"tty",
|
||||||
"rgb",
|
"rgb",
|
||||||
"256",
|
"256",
|
||||||
"shell",
|
"shell",
|
||||||
"xterm",
|
"xterm",
|
||||||
"command-line",
|
"command-line",
|
||||||
"support",
|
"support",
|
||||||
"supports",
|
"supports",
|
||||||
"capability",
|
"capability",
|
||||||
"detect",
|
"detect",
|
||||||
"truecolor",
|
"truecolor",
|
||||||
"16m"
|
"16m"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"has-flag": "^4.0.0"
|
"has-flag": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"import-fresh": "^3.0.0",
|
"import-fresh": "^3.0.0",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"browser": "browser.js"
|
"browser": "browser.js"
|
||||||
}
|
}
|
||||||
|
|||||||
+45
-45
@@ -1,47 +1,47 @@
|
|||||||
{
|
{
|
||||||
"name": "get-stream",
|
"name": "get-stream",
|
||||||
"version": "6.0.1",
|
"version": "6.0.1",
|
||||||
"description": "Get a stream as a string, buffer, or array",
|
"description": "Get a stream as a string, buffer, or array",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/get-stream",
|
"repository": "sindresorhus/get-stream",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"buffer-stream.js"
|
"buffer-stream.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"get",
|
"get",
|
||||||
"stream",
|
"stream",
|
||||||
"promise",
|
"promise",
|
||||||
"concat",
|
"concat",
|
||||||
"string",
|
"string",
|
||||||
"text",
|
"text",
|
||||||
"buffer",
|
"buffer",
|
||||||
"read",
|
"read",
|
||||||
"data",
|
"data",
|
||||||
"consume",
|
"consume",
|
||||||
"readable",
|
"readable",
|
||||||
"readablestream",
|
"readablestream",
|
||||||
"array",
|
"array",
|
||||||
"object"
|
"object"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^14.0.27",
|
"@types/node": "^14.0.27",
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"into-stream": "^5.0.0",
|
"into-stream": "^5.0.0",
|
||||||
"tsd": "^0.13.1",
|
"tsd": "^0.13.1",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+72
-72
@@ -1,74 +1,74 @@
|
|||||||
{
|
{
|
||||||
"name": "execa",
|
"name": "execa",
|
||||||
"version": "5.1.1",
|
"version": "5.1.1",
|
||||||
"description": "Process execution for humans",
|
"description": "Process execution for humans",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/execa",
|
"repository": "sindresorhus/execa",
|
||||||
"funding": "https://github.com/sindresorhus/execa?sponsor=1",
|
"funding": "https://github.com/sindresorhus/execa?sponsor=1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && nyc ava && tsd"
|
"test": "xo && nyc ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"lib"
|
"lib"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"exec",
|
"exec",
|
||||||
"child",
|
"child",
|
||||||
"process",
|
"process",
|
||||||
"execute",
|
"execute",
|
||||||
"fork",
|
"fork",
|
||||||
"execfile",
|
"execfile",
|
||||||
"spawn",
|
"spawn",
|
||||||
"file",
|
"file",
|
||||||
"shell",
|
"shell",
|
||||||
"bin",
|
"bin",
|
||||||
"binary",
|
"binary",
|
||||||
"binaries",
|
"binaries",
|
||||||
"npm",
|
"npm",
|
||||||
"path",
|
"path",
|
||||||
"local"
|
"local"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cross-spawn": "^7.0.3",
|
"cross-spawn": "^7.0.3",
|
||||||
"get-stream": "^6.0.0",
|
"get-stream": "^6.0.0",
|
||||||
"human-signals": "^2.1.0",
|
"human-signals": "^2.1.0",
|
||||||
"is-stream": "^2.0.0",
|
"is-stream": "^2.0.0",
|
||||||
"merge-stream": "^2.0.0",
|
"merge-stream": "^2.0.0",
|
||||||
"npm-run-path": "^4.0.1",
|
"npm-run-path": "^4.0.1",
|
||||||
"onetime": "^5.1.2",
|
"onetime": "^5.1.2",
|
||||||
"signal-exit": "^3.0.3",
|
"signal-exit": "^3.0.3",
|
||||||
"strip-final-newline": "^2.0.0"
|
"strip-final-newline": "^2.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^14.14.10",
|
"@types/node": "^14.14.10",
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"get-node": "^11.0.1",
|
"get-node": "^11.0.1",
|
||||||
"is-running": "^2.1.0",
|
"is-running": "^2.1.0",
|
||||||
"nyc": "^15.1.0",
|
"nyc": "^15.1.0",
|
||||||
"p-event": "^4.2.0",
|
"p-event": "^4.2.0",
|
||||||
"tempfile": "^3.0.0",
|
"tempfile": "^3.0.0",
|
||||||
"tsd": "^0.13.1",
|
"tsd": "^0.13.1",
|
||||||
"xo": "^0.35.0"
|
"xo": "^0.35.0"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"reporter": [
|
"reporter": [
|
||||||
"text",
|
"text",
|
||||||
"lcov"
|
"lcov"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"**/fixtures/**",
|
"**/fixtures/**",
|
||||||
"**/test.js",
|
"**/test.js",
|
||||||
"**/test/**"
|
"**/test/**"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-38
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "escape-string-regexp",
|
"name": "escape-string-regexp",
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"description": "Escape RegExp special characters",
|
"description": "Escape RegExp special characters",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/escape-string-regexp",
|
"repository": "sindresorhus/escape-string-regexp",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"escape",
|
"escape",
|
||||||
"regex",
|
"regex",
|
||||||
"regexp",
|
"regexp",
|
||||||
"regular",
|
"regular",
|
||||||
"expression",
|
"expression",
|
||||||
"string",
|
"string",
|
||||||
"special",
|
"special",
|
||||||
"characters"
|
"characters"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.38.2"
|
"xo": "^0.38.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+45
-45
@@ -1,47 +1,47 @@
|
|||||||
{
|
{
|
||||||
"name": "figures",
|
"name": "figures",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Unicode symbols with fallbacks for older terminals",
|
"description": "Unicode symbols with fallbacks for older terminals",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/figures",
|
"repository": "sindresorhus/figures",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"unicode",
|
"unicode",
|
||||||
"cli",
|
"cli",
|
||||||
"cmd",
|
"cmd",
|
||||||
"command-line",
|
"command-line",
|
||||||
"characters",
|
"characters",
|
||||||
"symbol",
|
"symbol",
|
||||||
"symbols",
|
"symbols",
|
||||||
"figure",
|
"figure",
|
||||||
"figures",
|
"figures",
|
||||||
"fallback"
|
"fallback"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"escape-string-regexp": "^5.0.0",
|
"escape-string-regexp": "^5.0.0",
|
||||||
"is-unicode-supported": "^1.0.0"
|
"is-unicode-supported": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"typescript": "^4.3.5",
|
"typescript": "^4.3.5",
|
||||||
"xo": "^0.40.3"
|
"xo": "^0.40.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+33
-33
@@ -1,35 +1,35 @@
|
|||||||
{
|
{
|
||||||
"name": "file-url",
|
"name": "file-url",
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`",
|
"description": "Convert a file path to a file url: `unicorn.jpg` → `file:///Users/sindresorhus/unicorn.jpg`",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/file-url",
|
"repository": "sindresorhus/file-url",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"file",
|
"file",
|
||||||
"url",
|
"url",
|
||||||
"uri",
|
"uri",
|
||||||
"path",
|
"path",
|
||||||
"scheme",
|
"scheme",
|
||||||
"slash"
|
"slash"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+54
-54
@@ -1,56 +1,56 @@
|
|||||||
{
|
{
|
||||||
"name": "find-up",
|
"name": "find-up",
|
||||||
"version": "6.2.0",
|
"version": "6.2.0",
|
||||||
"description": "Find a file or directory by walking up parent directories",
|
"description": "Find a file or directory by walking up parent directories",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/find-up",
|
"repository": "sindresorhus/find-up",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": "./index.js",
|
"exports": "./index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"find",
|
"find",
|
||||||
"up",
|
"up",
|
||||||
"find-up",
|
"find-up",
|
||||||
"findup",
|
"findup",
|
||||||
"look-up",
|
"look-up",
|
||||||
"look",
|
"look",
|
||||||
"file",
|
"file",
|
||||||
"search",
|
"search",
|
||||||
"match",
|
"match",
|
||||||
"package",
|
"package",
|
||||||
"resolve",
|
"resolve",
|
||||||
"parent",
|
"parent",
|
||||||
"parents",
|
"parents",
|
||||||
"folder",
|
"folder",
|
||||||
"directory",
|
"directory",
|
||||||
"walk",
|
"walk",
|
||||||
"walking",
|
"walking",
|
||||||
"path"
|
"path"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"locate-path": "^7.0.0",
|
"locate-path": "^7.0.0",
|
||||||
"path-exists": "^5.0.0"
|
"path-exists": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.15.0",
|
"ava": "^3.15.0",
|
||||||
"is-path-inside": "^4.0.0",
|
"is-path-inside": "^4.0.0",
|
||||||
"tempy": "^2.0.0",
|
"tempy": "^2.0.0",
|
||||||
"tsd": "^0.17.0",
|
"tsd": "^0.17.0",
|
||||||
"xo": "^0.44.0"
|
"xo": "^0.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-3
@@ -1,3 +1 @@
|
|||||||
{
|
{"type":"commonjs"}
|
||||||
"type": "commonjs"
|
|
||||||
}
|
|
||||||
-22
@@ -1,22 +0,0 @@
|
|||||||
MIT License
|
|
||||||
-----------
|
|
||||||
|
|
||||||
Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
-83
@@ -1,83 +0,0 @@
|
|||||||
# fsevents [](https://nodei.co/npm/fsevents/)
|
|
||||||
|
|
||||||
Native access to MacOS FSEvents in [Node.js](https://nodejs.org/)
|
|
||||||
|
|
||||||
The FSEvents API in MacOS allows applications to register for notifications of
|
|
||||||
changes to a given directory tree. It is a very fast and lightweight alternative
|
|
||||||
to kqueue.
|
|
||||||
|
|
||||||
This is a low-level library. For a cross-platform file watching module that
|
|
||||||
uses fsevents, check out [Chokidar](https://github.com/paulmillr/chokidar).
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
Supports only **Node.js v8.16 and higher**.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install fsevents
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
```js
|
|
||||||
const fsevents = require('fsevents');
|
|
||||||
const stop = fsevents.watch(__dirname, (path, flags, id) => {
|
|
||||||
const info = fsevents.getInfo(path, flags, id);
|
|
||||||
}); // To start observation
|
|
||||||
stop(); // To end observation
|
|
||||||
```
|
|
||||||
|
|
||||||
The callback passed as the second parameter to `.watch` get's called whenever the operating system detects a
|
|
||||||
a change in the file system. It takes three arguments:
|
|
||||||
|
|
||||||
###### `fsevents.watch(dirname: string, (path: string, flags: number, id: string) => void): () => Promise<undefined>`
|
|
||||||
|
|
||||||
* `path: string` - the item in the filesystem that have been changed
|
|
||||||
* `flags: number` - a numeric value describing what the change was
|
|
||||||
* `id: string` - an unique-id identifying this specific event
|
|
||||||
|
|
||||||
Returns closer callback which when called returns a Promise resolving when the watcher process has been shut down.
|
|
||||||
|
|
||||||
###### `fsevents.getInfo(path: string, flags: number, id: string): FsEventInfo`
|
|
||||||
|
|
||||||
The `getInfo` function takes the `path`, `flags` and `id` arguments and converts those parameters into a structure
|
|
||||||
that is easier to digest to determine what the change was.
|
|
||||||
|
|
||||||
The `FsEventsInfo` has the following shape:
|
|
||||||
|
|
||||||
```js
|
|
||||||
/**
|
|
||||||
* @typedef {'created'|'modified'|'deleted'|'moved'|'root-changed'|'cloned'|'unknown'} FsEventsEvent
|
|
||||||
* @typedef {'file'|'directory'|'symlink'} FsEventsType
|
|
||||||
*/
|
|
||||||
{
|
|
||||||
"event": "created", // {FsEventsEvent}
|
|
||||||
"path": "file.txt",
|
|
||||||
"type": "file", // {FsEventsType}
|
|
||||||
"changes": {
|
|
||||||
"inode": true, // Had iNode Meta-Information changed
|
|
||||||
"finder": false, // Had Finder Meta-Data changed
|
|
||||||
"access": false, // Had access permissions changed
|
|
||||||
"xattrs": false // Had xAttributes changed
|
|
||||||
},
|
|
||||||
"flags": 0x100000000
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Changelog
|
|
||||||
|
|
||||||
- v2.3 supports Apple Silicon ARM CPUs
|
|
||||||
- v2 supports node 8.16+ and reduces package size massively
|
|
||||||
- v1.2.8 supports node 6+
|
|
||||||
- v1.2.7 supports node 4+
|
|
||||||
|
|
||||||
## Troubleshooting
|
|
||||||
|
|
||||||
- I'm getting `EBADPLATFORM` `Unsupported platform for fsevents` error.
|
|
||||||
- It's fine, nothing is broken. fsevents is macos-only. Other platforms are skipped. If you want to hide this warning, report a bug to NPM bugtracker asking them to hide ebadplatform warnings by default.
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
The MIT License Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller — see LICENSE file.
|
|
||||||
|
|
||||||
Visit our [GitHub page](https://github.com/fsevents/fsevents) and [NPM Page](https://npmjs.org/package/fsevents)
|
|
||||||
-46
@@ -1,46 +0,0 @@
|
|||||||
declare type Event = "created" | "cloned" | "modified" | "deleted" | "moved" | "root-changed" | "unknown";
|
|
||||||
declare type Type = "file" | "directory" | "symlink";
|
|
||||||
declare type FileChanges = {
|
|
||||||
inode: boolean;
|
|
||||||
finder: boolean;
|
|
||||||
access: boolean;
|
|
||||||
xattrs: boolean;
|
|
||||||
};
|
|
||||||
declare type Info = {
|
|
||||||
event: Event;
|
|
||||||
path: string;
|
|
||||||
type: Type;
|
|
||||||
changes: FileChanges;
|
|
||||||
flags: number;
|
|
||||||
};
|
|
||||||
declare type WatchHandler = (path: string, flags: number, id: string) => void;
|
|
||||||
export declare function watch(path: string, handler: WatchHandler): () => Promise<void>;
|
|
||||||
export declare function watch(path: string, since: number, handler: WatchHandler): () => Promise<void>;
|
|
||||||
export declare function getInfo(path: string, flags: number): Info;
|
|
||||||
export declare const constants: {
|
|
||||||
None: 0x00000000;
|
|
||||||
MustScanSubDirs: 0x00000001;
|
|
||||||
UserDropped: 0x00000002;
|
|
||||||
KernelDropped: 0x00000004;
|
|
||||||
EventIdsWrapped: 0x00000008;
|
|
||||||
HistoryDone: 0x00000010;
|
|
||||||
RootChanged: 0x00000020;
|
|
||||||
Mount: 0x00000040;
|
|
||||||
Unmount: 0x00000080;
|
|
||||||
ItemCreated: 0x00000100;
|
|
||||||
ItemRemoved: 0x00000200;
|
|
||||||
ItemInodeMetaMod: 0x00000400;
|
|
||||||
ItemRenamed: 0x00000800;
|
|
||||||
ItemModified: 0x00001000;
|
|
||||||
ItemFinderInfoMod: 0x00002000;
|
|
||||||
ItemChangeOwner: 0x00004000;
|
|
||||||
ItemXattrMod: 0x00008000;
|
|
||||||
ItemIsFile: 0x00010000;
|
|
||||||
ItemIsDir: 0x00020000;
|
|
||||||
ItemIsSymlink: 0x00040000;
|
|
||||||
ItemIsHardlink: 0x00100000;
|
|
||||||
ItemIsLastHardlink: 0x00200000;
|
|
||||||
OwnEvent: 0x00080000;
|
|
||||||
ItemCloned: 0x00400000;
|
|
||||||
};
|
|
||||||
export {};
|
|
||||||
-82
@@ -1,82 +0,0 @@
|
|||||||
/*
|
|
||||||
** © 2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller
|
|
||||||
** Licensed under MIT License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* jshint node:true */
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
if (process.platform !== "darwin") {
|
|
||||||
throw new Error(`Module 'fsevents' is not compatible with platform '${process.platform}'`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Native = require("./fsevents.node");
|
|
||||||
const events = Native.constants;
|
|
||||||
|
|
||||||
function watch(path, since, handler) {
|
|
||||||
if (typeof path !== "string") {
|
|
||||||
throw new TypeError(`fsevents argument 1 must be a string and not a ${typeof path}`);
|
|
||||||
}
|
|
||||||
if ("function" === typeof since && "undefined" === typeof handler) {
|
|
||||||
handler = since;
|
|
||||||
since = Native.flags.SinceNow;
|
|
||||||
}
|
|
||||||
if (typeof since !== "number") {
|
|
||||||
throw new TypeError(`fsevents argument 2 must be a number and not a ${typeof since}`);
|
|
||||||
}
|
|
||||||
if (typeof handler !== "function") {
|
|
||||||
throw new TypeError(`fsevents argument 3 must be a function and not a ${typeof handler}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
let instance = Native.start(Native.global, path, since, handler);
|
|
||||||
if (!instance) throw new Error(`could not watch: ${path}`);
|
|
||||||
return () => {
|
|
||||||
const result = instance ? Promise.resolve(instance).then(Native.stop) : Promise.resolve(undefined);
|
|
||||||
instance = undefined;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function getInfo(path, flags) {
|
|
||||||
return {
|
|
||||||
path,
|
|
||||||
flags,
|
|
||||||
event: getEventType(flags),
|
|
||||||
type: getFileType(flags),
|
|
||||||
changes: getFileChanges(flags),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function getFileType(flags) {
|
|
||||||
if (events.ItemIsFile & flags) return "file";
|
|
||||||
if (events.ItemIsDir & flags) return "directory";
|
|
||||||
if (events.ItemIsSymlink & flags) return "symlink";
|
|
||||||
}
|
|
||||||
function anyIsTrue(obj) {
|
|
||||||
for (let key in obj) {
|
|
||||||
if (obj[key]) return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
function getEventType(flags) {
|
|
||||||
if (events.ItemRemoved & flags) return "deleted";
|
|
||||||
if (events.ItemRenamed & flags) return "moved";
|
|
||||||
if (events.ItemCreated & flags) return "created";
|
|
||||||
if (events.ItemModified & flags) return "modified";
|
|
||||||
if (events.RootChanged & flags) return "root-changed";
|
|
||||||
if (events.ItemCloned & flags) return "cloned";
|
|
||||||
if (anyIsTrue(flags)) return "modified";
|
|
||||||
return "unknown";
|
|
||||||
}
|
|
||||||
function getFileChanges(flags) {
|
|
||||||
return {
|
|
||||||
inode: !!(events.ItemInodeMetaMod & flags),
|
|
||||||
finder: !!(events.ItemFinderInfoMod & flags),
|
|
||||||
access: !!(events.ItemChangeOwner & flags),
|
|
||||||
xattrs: !!(events.ItemXattrMod & flags),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.watch = watch;
|
|
||||||
exports.getInfo = getInfo;
|
|
||||||
exports.constants = events;
|
|
||||||
BIN
Binary file not shown.
-62
@@ -1,62 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "fsevents",
|
|
||||||
"version": "2.3.2",
|
|
||||||
"description": "Native Access to MacOS FSEvents",
|
|
||||||
"main": "fsevents.js",
|
|
||||||
"types": "fsevents.d.ts",
|
|
||||||
"os": [
|
|
||||||
"darwin"
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"fsevents.d.ts",
|
|
||||||
"fsevents.js",
|
|
||||||
"fsevents.node"
|
|
||||||
],
|
|
||||||
"engines": {
|
|
||||||
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"clean": "node-gyp clean && rm -f fsevents.node",
|
|
||||||
"build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean",
|
|
||||||
"test": "/bin/bash ./test.sh 2>/dev/null",
|
|
||||||
"prepublishOnly": "npm run build"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/fsevents/fsevents.git"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"fsevents",
|
|
||||||
"mac"
|
|
||||||
],
|
|
||||||
"contributors": [
|
|
||||||
{
|
|
||||||
"name": "Philipp Dunkel",
|
|
||||||
"email": "pip@pipobscure.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Ben Noordhuis",
|
|
||||||
"email": "info@bnoordhuis.nl"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Elan Shankar",
|
|
||||||
"email": "elan.shanker@gmail.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Miroslav Bajtoš",
|
|
||||||
"email": "mbajtoss@gmail.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Paul Miller",
|
|
||||||
"url": "https://paulmillr.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/fsevents/fsevents/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/fsevents/fsevents",
|
|
||||||
"devDependencies": {
|
|
||||||
"node-gyp": "^6.1.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+76
-76
@@ -1,78 +1,78 @@
|
|||||||
{
|
{
|
||||||
"name": "get-intrinsic",
|
"name": "get-intrinsic",
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"description": "Get and robustly cache all JS language-level intrinsics at first require time",
|
"description": "Get and robustly cache all JS language-level intrinsics at first require time",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": [
|
".": [
|
||||||
{
|
{
|
||||||
"default": "./index.js"
|
"default": "./index.js"
|
||||||
},
|
},
|
||||||
"./index.js"
|
"./index.js"
|
||||||
],
|
],
|
||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prelint": "evalmd README.md",
|
"prelint": "evalmd README.md",
|
||||||
"lint": "eslint --ext=.js,.mjs .",
|
"lint": "eslint --ext=.js,.mjs .",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/ljharb/get-intrinsic.git"
|
"url": "git+https://github.com/ljharb/get-intrinsic.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"javascript",
|
"javascript",
|
||||||
"ecmascript",
|
"ecmascript",
|
||||||
"es",
|
"es",
|
||||||
"js",
|
"js",
|
||||||
"intrinsic",
|
"intrinsic",
|
||||||
"getintrinsic",
|
"getintrinsic",
|
||||||
"es-abstract"
|
"es-abstract"
|
||||||
],
|
],
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ljharb/get-intrinsic/issues"
|
"url": "https://github.com/ljharb/get-intrinsic/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/ljharb/get-intrinsic#readme",
|
"homepage": "https://github.com/ljharb/get-intrinsic#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.5.0",
|
"@ljharb/eslint-config": "^17.5.0",
|
||||||
"aud": "^1.1.3",
|
"aud": "^1.1.3",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"call-bind": "^1.0.2",
|
"call-bind": "^1.0.2",
|
||||||
"es-abstract": "^1.18.0-next.2",
|
"es-abstract": "^1.18.0-next.2",
|
||||||
"es-value-fixtures": "^1.0.0",
|
"es-value-fixtures": "^1.0.0",
|
||||||
"eslint": "^7.19.0",
|
"eslint": "^7.19.0",
|
||||||
"evalmd": "^0.0.19",
|
"evalmd": "^0.0.19",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"has-bigints": "^1.0.1",
|
"has-bigints": "^1.0.1",
|
||||||
"make-async-function": "^1.0.0",
|
"make-async-function": "^1.0.0",
|
||||||
"make-async-generator-function": "^1.0.0",
|
"make-async-generator-function": "^1.0.0",
|
||||||
"make-generator-function": "^2.0.0",
|
"make-generator-function": "^2.0.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"object-inspect": "^1.9.0",
|
"object-inspect": "^1.9.0",
|
||||||
"tape": "^5.1.1"
|
"tape": "^5.1.1"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"has": "^1.0.3",
|
"has": "^1.0.3",
|
||||||
"has-symbols": "^1.0.1"
|
"has-symbols": "^1.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+53
-53
@@ -1,55 +1,55 @@
|
|||||||
{
|
{
|
||||||
"name": "globals",
|
"name": "globals",
|
||||||
"version": "13.10.0",
|
"version": "13.10.0",
|
||||||
"description": "Global identifiers from different JavaScript environments",
|
"description": "Global identifiers from different JavaScript environments",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/globals",
|
"repository": "sindresorhus/globals",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"globals.json"
|
"globals.json"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"globals",
|
"globals",
|
||||||
"global",
|
"global",
|
||||||
"identifiers",
|
"identifiers",
|
||||||
"variables",
|
"variables",
|
||||||
"vars",
|
"vars",
|
||||||
"jshint",
|
"jshint",
|
||||||
"eslint",
|
"eslint",
|
||||||
"environments"
|
"environments"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"type-fest": "^0.20.2"
|
"type-fest": "^0.20.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^2.4.0",
|
"ava": "^2.4.0",
|
||||||
"tsd": "^0.14.0",
|
"tsd": "^0.14.0",
|
||||||
"xo": "^0.36.1"
|
"xo": "^0.36.1"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"ignores": [
|
"ignores": [
|
||||||
"get-browser-globals.js"
|
"get-browser-globals.js"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"node/no-unsupported-features/es-syntax": "off"
|
"node/no-unsupported-features/es-syntax": "off"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tsd": {
|
"tsd": {
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"resolveJsonModule": true
|
"resolveJsonModule": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+80
-80
@@ -1,82 +1,82 @@
|
|||||||
{
|
{
|
||||||
"name": "globby",
|
"name": "globby",
|
||||||
"version": "11.0.4",
|
"version": "11.0.4",
|
||||||
"description": "User-friendly glob matching",
|
"description": "User-friendly glob matching",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/globby",
|
"repository": "sindresorhus/globby",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bench": "npm update glob-stream fast-glob && matcha bench.js",
|
"bench": "npm update glob-stream fast-glob && matcha bench.js",
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"gitignore.js",
|
"gitignore.js",
|
||||||
"stream-utils.js"
|
"stream-utils.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"all",
|
"all",
|
||||||
"array",
|
"array",
|
||||||
"directories",
|
"directories",
|
||||||
"expand",
|
"expand",
|
||||||
"files",
|
"files",
|
||||||
"filesystem",
|
"filesystem",
|
||||||
"filter",
|
"filter",
|
||||||
"find",
|
"find",
|
||||||
"fnmatch",
|
"fnmatch",
|
||||||
"folders",
|
"folders",
|
||||||
"fs",
|
"fs",
|
||||||
"glob",
|
"glob",
|
||||||
"globbing",
|
"globbing",
|
||||||
"globs",
|
"globs",
|
||||||
"gulpfriendly",
|
"gulpfriendly",
|
||||||
"match",
|
"match",
|
||||||
"matcher",
|
"matcher",
|
||||||
"minimatch",
|
"minimatch",
|
||||||
"multi",
|
"multi",
|
||||||
"multiple",
|
"multiple",
|
||||||
"paths",
|
"paths",
|
||||||
"pattern",
|
"pattern",
|
||||||
"patterns",
|
"patterns",
|
||||||
"traverse",
|
"traverse",
|
||||||
"util",
|
"util",
|
||||||
"utility",
|
"utility",
|
||||||
"wildcard",
|
"wildcard",
|
||||||
"wildcards",
|
"wildcards",
|
||||||
"promise",
|
"promise",
|
||||||
"gitignore",
|
"gitignore",
|
||||||
"git"
|
"git"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"array-union": "^2.1.0",
|
"array-union": "^2.1.0",
|
||||||
"dir-glob": "^3.0.1",
|
"dir-glob": "^3.0.1",
|
||||||
"fast-glob": "^3.1.1",
|
"fast-glob": "^3.1.1",
|
||||||
"ignore": "^5.1.4",
|
"ignore": "^5.1.4",
|
||||||
"merge2": "^1.3.0",
|
"merge2": "^1.3.0",
|
||||||
"slash": "^3.0.0"
|
"slash": "^3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^3.13.0",
|
"ava": "^3.13.0",
|
||||||
"get-stream": "^6.0.0",
|
"get-stream": "^6.0.0",
|
||||||
"glob-stream": "^6.1.0",
|
"glob-stream": "^6.1.0",
|
||||||
"globby": "sindresorhus/globby#main",
|
"globby": "sindresorhus/globby#main",
|
||||||
"matcha": "^0.7.0",
|
"matcha": "^0.7.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"tsd": "^0.13.1",
|
"tsd": "^0.13.1",
|
||||||
"xo": "^0.33.1"
|
"xo": "^0.33.1"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"ignores": [
|
"ignores": [
|
||||||
"fixtures"
|
"fixtures"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+51
-51
@@ -1,53 +1,53 @@
|
|||||||
{
|
{
|
||||||
"name": "has-bigints",
|
"name": "has-bigints",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"description": "Determine if the JS environment has BigInt support.",
|
"description": "Determine if the JS environment has BigInt support.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
||||||
"prepublish": "not-in-publish || safe-publish-latest",
|
"prepublish": "not-in-publish || safe-publish-latest",
|
||||||
"lint": "eslint --ext=js,mjs .",
|
"lint": "eslint --ext=js,mjs .",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production"
|
"posttest": "aud --production"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/ljharb/has-bigints.git"
|
"url": "git+https://github.com/ljharb/has-bigints.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"BigInt",
|
"BigInt",
|
||||||
"bigints",
|
"bigints",
|
||||||
"typeof",
|
"typeof",
|
||||||
"ES2020"
|
"ES2020"
|
||||||
],
|
],
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ljharb/has-bigints/issues"
|
"url": "https://github.com/ljharb/has-bigints/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/ljharb/has-bigints#readme",
|
"homepage": "https://github.com/ljharb/has-bigints#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.3.0",
|
"@ljharb/eslint-config": "^17.3.0",
|
||||||
"aud": "^1.1.3",
|
"aud": "^1.1.3",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"eslint": "^7.15.0",
|
"eslint": "^7.15.0",
|
||||||
"in-publish": "^2.0.1",
|
"in-publish": "^2.0.1",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.0.1"
|
"tape": "^5.0.1"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+94
-94
@@ -1,96 +1,96 @@
|
|||||||
{
|
{
|
||||||
"name": "has-symbols",
|
"name": "has-symbols",
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
|
"description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "safe-publish-latest",
|
"prepublish": "safe-publish-latest",
|
||||||
"pretest": "npm run --silent lint",
|
"pretest": "npm run --silent lint",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"tests-only": "npm run test:stock && npm run test:staging && npm run test:shams",
|
"tests-only": "npm run test:stock && npm run test:staging && npm run test:shams",
|
||||||
"test:stock": "nyc node test",
|
"test:stock": "nyc node test",
|
||||||
"test:staging": "nyc node --harmony --es-staging test",
|
"test:staging": "nyc node --harmony --es-staging test",
|
||||||
"test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
|
"test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
|
||||||
"test:shams:corejs": "nyc node test/shams/core-js.js",
|
"test:shams:corejs": "nyc node test/shams/core-js.js",
|
||||||
"test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js",
|
"test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js",
|
||||||
"lint": "eslint --ext=js,mjs .",
|
"lint": "eslint --ext=js,mjs .",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/inspect-js/has-symbols.git"
|
"url": "git://github.com/inspect-js/has-symbols.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Symbol",
|
"Symbol",
|
||||||
"symbols",
|
"symbols",
|
||||||
"typeof",
|
"typeof",
|
||||||
"sham",
|
"sham",
|
||||||
"polyfill",
|
"polyfill",
|
||||||
"native",
|
"native",
|
||||||
"core-js",
|
"core-js",
|
||||||
"ES6"
|
"ES6"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.5.1",
|
"@ljharb/eslint-config": "^17.5.1",
|
||||||
"aud": "^1.1.4",
|
"aud": "^1.1.4",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"core-js": "^2.6.12",
|
"core-js": "^2.6.12",
|
||||||
"eslint": "^7.20.0",
|
"eslint": "^7.20.0",
|
||||||
"get-own-property-symbols": "^0.9.5",
|
"get-own-property-symbols": "^0.9.5",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.2.0"
|
"tape": "^5.2.0"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test/index.js",
|
"files": "test/index.js",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
},
|
},
|
||||||
"greenkeeper": {
|
"greenkeeper": {
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"core-js"
|
"core-js"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
"name": "Thiago de Arruda",
|
"name": "Thiago de Arruda",
|
||||||
"email": "tpadilha84@gmail.com"
|
"email": "tpadilha84@gmail.com"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
|
|||||||
+32
-32
@@ -1,34 +1,34 @@
|
|||||||
{
|
{
|
||||||
"name": "resolve-from",
|
"name": "resolve-from",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Resolve the path of a module like `require.resolve()` but from a given path",
|
"description": "Resolve the path of a module like `require.resolve()` but from a given path",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/resolve-from",
|
"repository": "sindresorhus/resolve-from",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava"
|
"test": "xo && ava"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js"
|
"index.js"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"require",
|
"require",
|
||||||
"resolve",
|
"resolve",
|
||||||
"path",
|
"path",
|
||||||
"module",
|
"module",
|
||||||
"from",
|
"from",
|
||||||
"like",
|
"like",
|
||||||
"import"
|
"import"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "*",
|
"ava": "*",
|
||||||
"xo": "*"
|
"xo": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+41
-41
@@ -1,43 +1,43 @@
|
|||||||
{
|
{
|
||||||
"name": "import-fresh",
|
"name": "import-fresh",
|
||||||
"version": "3.3.0",
|
"version": "3.3.0",
|
||||||
"description": "Import a module while bypassing the cache",
|
"description": "Import a module while bypassing the cache",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/import-fresh",
|
"repository": "sindresorhus/import-fresh",
|
||||||
"funding": "https://github.com/sponsors/sindresorhus",
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "https://sindresorhus.com"
|
"url": "https://sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd",
|
"test": "xo && ava && tsd",
|
||||||
"heapdump": "node heapdump.js"
|
"heapdump": "node heapdump.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"require",
|
"require",
|
||||||
"cache",
|
"cache",
|
||||||
"uncache",
|
"uncache",
|
||||||
"uncached",
|
"uncached",
|
||||||
"module",
|
"module",
|
||||||
"fresh",
|
"fresh",
|
||||||
"bypass"
|
"bypass"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parent-module": "^1.0.0",
|
"parent-module": "^1.0.0",
|
||||||
"resolve-from": "^4.0.0"
|
"resolve-from": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.0.1",
|
"ava": "^1.0.1",
|
||||||
"heapdump": "^0.3.12",
|
"heapdump": "^0.3.12",
|
||||||
"tsd": "^0.7.3",
|
"tsd": "^0.7.3",
|
||||||
"xo": "^0.23.0"
|
"xo": "^0.23.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-2
@@ -30,8 +30,10 @@
|
|||||||
"url": "https://github.com/homebrewing"
|
"url": "https://github.com/homebrewing"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {},
|
"dependencies": {
|
||||||
"devDependencies": {},
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.8.19"
|
"node": ">=0.8.19"
|
||||||
}
|
}
|
||||||
|
|||||||
+35
-35
@@ -1,37 +1,37 @@
|
|||||||
{
|
{
|
||||||
"name": "indent-string",
|
"name": "indent-string",
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"description": "Indent each line in a string",
|
"description": "Indent each line in a string",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/indent-string",
|
"repository": "sindresorhus/indent-string",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"indent",
|
"indent",
|
||||||
"string",
|
"string",
|
||||||
"pad",
|
"pad",
|
||||||
"align",
|
"align",
|
||||||
"line",
|
"line",
|
||||||
"text",
|
"text",
|
||||||
"each",
|
"each",
|
||||||
"every"
|
"every"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+44
-44
@@ -1,46 +1,46 @@
|
|||||||
{
|
{
|
||||||
"name": "irregular-plurals",
|
"name": "irregular-plurals",
|
||||||
"version": "3.3.0",
|
"version": "3.3.0",
|
||||||
"description": "Map of nouns to their irregular plural form",
|
"description": "Map of nouns to their irregular plural form",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/irregular-plurals",
|
"repository": "sindresorhus/irregular-plurals",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts",
|
"index.d.ts",
|
||||||
"irregular-plurals.json"
|
"irregular-plurals.json"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"word",
|
"word",
|
||||||
"words",
|
"words",
|
||||||
"list",
|
"list",
|
||||||
"map",
|
"map",
|
||||||
"hash",
|
"hash",
|
||||||
"json",
|
"json",
|
||||||
"irregular",
|
"irregular",
|
||||||
"plural",
|
"plural",
|
||||||
"plurals",
|
"plurals",
|
||||||
"noun",
|
"noun",
|
||||||
"nouns"
|
"nouns"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
},
|
},
|
||||||
"tsd": {
|
"tsd": {
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"resolveJsonModule": true
|
"resolveJsonModule": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+53
-53
@@ -1,55 +1,55 @@
|
|||||||
{
|
{
|
||||||
"name": "is-bigint",
|
"name": "is-bigint",
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"description": "Is this value an ES BigInt?",
|
"description": "Is this value an ES BigInt?",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublishOnly": "safe-publish-latest",
|
"prepublishOnly": "safe-publish-latest",
|
||||||
"prepublish": "not-in-publish || npm run prepublishOnly",
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"test": "npm run tests-only",
|
"test": "npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/inspect-js/is-bigint.git"
|
"url": "git+https://github.com/inspect-js/is-bigint.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bigint",
|
"bigint",
|
||||||
"es",
|
"es",
|
||||||
"integer",
|
"integer",
|
||||||
"is"
|
"is"
|
||||||
],
|
],
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/inspect-js/is-bigint/issues"
|
"url": "https://github.com/inspect-js/is-bigint/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/inspect-js/is-bigint#readme",
|
"homepage": "https://github.com/inspect-js/is-bigint#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.6.0",
|
"@ljharb/eslint-config": "^17.6.0",
|
||||||
"aud": "^1.1.5",
|
"aud": "^1.1.5",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"eslint": "^7.25.0",
|
"eslint": "^7.25.0",
|
||||||
"has-symbols": "^1.0.2",
|
"has-symbols": "^1.0.2",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"object-inspect": "^1.10.2",
|
"object-inspect": "^1.10.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.2.2"
|
"tape": "^5.2.2"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-38
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"name": "is-binary-path",
|
"name": "is-binary-path",
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"description": "Check if a file path is a binary file",
|
"description": "Check if a file path is a binary file",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "sindresorhus/is-binary-path",
|
"repository": "sindresorhus/is-binary-path",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
"url": "sindresorhus.com"
|
"url": "sindresorhus.com"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && ava && tsd"
|
"test": "xo && ava && tsd"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"index.js",
|
"index.js",
|
||||||
"index.d.ts"
|
"index.d.ts"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"binary",
|
"binary",
|
||||||
"extensions",
|
"extensions",
|
||||||
"extension",
|
"extension",
|
||||||
"file",
|
"file",
|
||||||
"path",
|
"path",
|
||||||
"check",
|
"check",
|
||||||
"detect",
|
"detect",
|
||||||
"is"
|
"is"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"binary-extensions": "^2.0.0"
|
"binary-extensions": "^2.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^1.4.1",
|
"ava": "^1.4.1",
|
||||||
"tsd": "^0.7.2",
|
"tsd": "^0.7.2",
|
||||||
"xo": "^0.24.0"
|
"xo": "^0.24.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+84
-84
@@ -1,86 +1,86 @@
|
|||||||
{
|
{
|
||||||
"name": "is-boolean-object",
|
"name": "is-boolean-object",
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"description": "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
|
"description": "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublishOnly": "safe-publish-latest",
|
"prepublishOnly": "safe-publish-latest",
|
||||||
"prepublish": "not-in-publish || npm run prepublishOnly",
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"test": "npm run tests-only && npm run test:harmony && npm run test:corejs",
|
"test": "npm run tests-only && npm run test:harmony && npm run test:corejs",
|
||||||
"tests-only": "nyc tape 'test/**/*.js'",
|
"tests-only": "nyc tape 'test/**/*.js'",
|
||||||
"test:harmony": "node --harmony --es-staging test",
|
"test:harmony": "node --harmony --es-staging test",
|
||||||
"test:corejs": "nyc tape test-corejs.js",
|
"test:corejs": "nyc tape test-corejs.js",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"prelint": "npm run eccheck",
|
"prelint": "npm run eccheck",
|
||||||
"lint": "eslint --ext=js,mjs .",
|
"lint": "eslint --ext=js,mjs .",
|
||||||
"eccheck": "eclint check $(git ls-files)",
|
"eccheck": "eclint check $(git ls-files)",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/inspect-js/is-boolean-object.git"
|
"url": "git://github.com/inspect-js/is-boolean-object.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Boolean",
|
"Boolean",
|
||||||
"ES6",
|
"ES6",
|
||||||
"toStringTag",
|
"toStringTag",
|
||||||
"@@toStringTag",
|
"@@toStringTag",
|
||||||
"Boolean object",
|
"Boolean object",
|
||||||
"true",
|
"true",
|
||||||
"false",
|
"false",
|
||||||
"is-boolean"
|
"is-boolean"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"call-bind": "^1.0.2"
|
"call-bind": "^1.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.6.0",
|
"@ljharb/eslint-config": "^17.6.0",
|
||||||
"aud": "^1.1.5",
|
"aud": "^1.1.5",
|
||||||
"auto-changelog": "^2.2.1",
|
"auto-changelog": "^2.2.1",
|
||||||
"core-js": "^3.12.0",
|
"core-js": "^3.12.0",
|
||||||
"eclint": "^2.8.1",
|
"eclint": "^2.8.1",
|
||||||
"eslint": "^7.25.0",
|
"eslint": "^7.25.0",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"indexof": "^0.0.1",
|
"indexof": "^0.0.1",
|
||||||
"is": "^3.3.0",
|
"is": "^3.3.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.2.2"
|
"tape": "^5.2.2"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test.js",
|
"files": "test.js",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+98
-98
@@ -1,100 +1,100 @@
|
|||||||
{
|
{
|
||||||
"name": "is-callable",
|
"name": "is-callable",
|
||||||
"version": "1.2.3",
|
"version": "1.2.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Jordan Harband",
|
"name": "Jordan Harband",
|
||||||
"email": "ljharb@gmail.com",
|
"email": "ljharb@gmail.com",
|
||||||
"url": "http://ljharb.codes"
|
"url": "http://ljharb.codes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
|
"description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "safe-publish-latest",
|
"prepublish": "safe-publish-latest",
|
||||||
"pretest": "npm run --silent lint",
|
"pretest": "npm run --silent lint",
|
||||||
"test": "npm run --silent tests-only",
|
"test": "npm run --silent tests-only",
|
||||||
"posttest": "npx aud --production",
|
"posttest": "npx aud --production",
|
||||||
"tests-only": "npm run --silent test:stock && npm run --silent test:staging",
|
"tests-only": "npm run --silent test:stock && npm run --silent test:staging",
|
||||||
"test:stock": "node test",
|
"test:stock": "node test",
|
||||||
"test:staging": "node --es-staging test",
|
"test:staging": "node --es-staging test",
|
||||||
"coverage": "npm run --silent istanbul",
|
"coverage": "npm run --silent istanbul",
|
||||||
"covert": "covert test",
|
"covert": "covert test",
|
||||||
"covert:quiet": "covert test --quiet",
|
"covert:quiet": "covert test --quiet",
|
||||||
"istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check",
|
"istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check",
|
||||||
"istanbul:clean": "rimraf coverage coverage-std coverage-harmony",
|
"istanbul:clean": "rimraf coverage coverage-std coverage-harmony",
|
||||||
"istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html",
|
"istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html",
|
||||||
"istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test --dir coverage-harmony",
|
"istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test --dir coverage-harmony",
|
||||||
"istanbul:std": "istanbul cover test --report html --dir coverage-std",
|
"istanbul:std": "istanbul cover test --report html --dir coverage-std",
|
||||||
"prelint": "eclint check *",
|
"prelint": "eclint check *",
|
||||||
"lint": "eslint ."
|
"lint": "eslint ."
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/ljharb/is-callable.git"
|
"url": "git://github.com/ljharb/is-callable.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Function",
|
"Function",
|
||||||
"function",
|
"function",
|
||||||
"callable",
|
"callable",
|
||||||
"generator",
|
"generator",
|
||||||
"generator function",
|
"generator function",
|
||||||
"arrow",
|
"arrow",
|
||||||
"arrow function",
|
"arrow function",
|
||||||
"ES6",
|
"ES6",
|
||||||
"toStringTag",
|
"toStringTag",
|
||||||
"@@toStringTag"
|
"@@toStringTag"
|
||||||
],
|
],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.5.0",
|
"@ljharb/eslint-config": "^17.5.0",
|
||||||
"aud": "^1.1.3",
|
"aud": "^1.1.3",
|
||||||
"covert": "^1.1.1",
|
"covert": "^1.1.1",
|
||||||
"eclint": "^2.8.1",
|
"eclint": "^2.8.1",
|
||||||
"eslint": "^7.19.0",
|
"eslint": "^7.19.0",
|
||||||
"foreach": "^2.0.5",
|
"foreach": "^2.0.5",
|
||||||
"istanbul": "1.1.0-alpha.1",
|
"istanbul": "1.1.0-alpha.1",
|
||||||
"istanbul-merge": "^1.1.1",
|
"istanbul-merge": "^1.1.1",
|
||||||
"make-arrow-function": "^1.2.0",
|
"make-arrow-function": "^1.2.0",
|
||||||
"make-async-function": "^1.0.0",
|
"make-async-function": "^1.0.0",
|
||||||
"make-generator-function": "^2.0.0",
|
"make-generator-function": "^2.0.0",
|
||||||
"rimraf": "^2.7.1",
|
"rimraf": "^2.7.1",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"tape": "^5.1.1"
|
"tape": "^5.1.1"
|
||||||
},
|
},
|
||||||
"testling": {
|
"testling": {
|
||||||
"files": "test/index.js",
|
"files": "test/index.js",
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"iexplore/6.0..latest",
|
"iexplore/6.0..latest",
|
||||||
"firefox/3.0..6.0",
|
"firefox/3.0..6.0",
|
||||||
"firefox/15.0..latest",
|
"firefox/15.0..latest",
|
||||||
"firefox/nightly",
|
"firefox/nightly",
|
||||||
"chrome/4.0..10.0",
|
"chrome/4.0..10.0",
|
||||||
"chrome/20.0..latest",
|
"chrome/20.0..latest",
|
||||||
"chrome/canary",
|
"chrome/canary",
|
||||||
"opera/10.0..latest",
|
"opera/10.0..latest",
|
||||||
"opera/next",
|
"opera/next",
|
||||||
"safari/4.0..latest",
|
"safari/4.0..latest",
|
||||||
"ipad/6.0..latest",
|
"ipad/6.0..latest",
|
||||||
"iphone/6.0..latest",
|
"iphone/6.0..latest",
|
||||||
"android-browser/4.2"
|
"android-browser/4.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
"greenkeeper": {
|
"greenkeeper": {
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"rimraf"
|
"rimraf"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+66
-66
@@ -1,68 +1,68 @@
|
|||||||
{
|
{
|
||||||
"name": "is-core-module",
|
"name": "is-core-module",
|
||||||
"version": "2.5.0",
|
"version": "2.5.0",
|
||||||
"description": "Is this specifier a node.js core module?",
|
"description": "Is this specifier a node.js core module?",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": [
|
".": [
|
||||||
{
|
{
|
||||||
"default": "./index.js"
|
"default": "./index.js"
|
||||||
},
|
},
|
||||||
"./index.js"
|
"./index.js"
|
||||||
],
|
],
|
||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prepublish": "not-in-publish || npm run prepublishOnly",
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
||||||
"prepublishOnly": "safe-publish-latest",
|
"prepublishOnly": "safe-publish-latest",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"tests-only": "tape 'test/**/*.js'",
|
"tests-only": "tape 'test/**/*.js'",
|
||||||
"test": "nyc npm run tests-only",
|
"test": "nyc npm run tests-only",
|
||||||
"posttest": "aud --production",
|
"posttest": "aud --production",
|
||||||
"version": "auto-changelog && git add CHANGELOG.md",
|
"version": "auto-changelog && git add CHANGELOG.md",
|
||||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/inspect-js/is-core-module.git"
|
"url": "git+https://github.com/inspect-js/is-core-module.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"core",
|
"core",
|
||||||
"modules",
|
"modules",
|
||||||
"module",
|
"module",
|
||||||
"npm",
|
"npm",
|
||||||
"node",
|
"node",
|
||||||
"dependencies"
|
"dependencies"
|
||||||
],
|
],
|
||||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/inspect-js/is-core-module/issues"
|
"url": "https://github.com/inspect-js/is-core-module/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/inspect-js/is-core-module",
|
"homepage": "https://github.com/inspect-js/is-core-module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"has": "^1.0.3"
|
"has": "^1.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ljharb/eslint-config": "^17.6.0",
|
"@ljharb/eslint-config": "^17.6.0",
|
||||||
"aud": "^1.1.5",
|
"aud": "^1.1.5",
|
||||||
"auto-changelog": "^2.3.0",
|
"auto-changelog": "^2.3.0",
|
||||||
"eslint": "^7.30.0",
|
"eslint": "^7.30.0",
|
||||||
"nyc": "^10.3.2",
|
"nyc": "^10.3.2",
|
||||||
"safe-publish-latest": "^1.1.4",
|
"safe-publish-latest": "^1.1.4",
|
||||||
"semver": "^6.3.0",
|
"semver": "^6.3.0",
|
||||||
"tape": "^5.2.2"
|
"tape": "^5.2.2"
|
||||||
},
|
},
|
||||||
"auto-changelog": {
|
"auto-changelog": {
|
||||||
"output": "CHANGELOG.md",
|
"output": "CHANGELOG.md",
|
||||||
"template": "keepachangelog",
|
"template": "keepachangelog",
|
||||||
"unreleased": false,
|
"unreleased": false,
|
||||||
"commitLimit": false,
|
"commitLimit": false,
|
||||||
"backfillLimit": false,
|
"backfillLimit": false,
|
||||||
"hideCredit": true
|
"hideCredit": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user