Socket
Socket
Sign inDemoInstall

@rushstack/node-core-library

Package Overview
Dependencies
Maintainers
3
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/node-core-library - npm Package Compare versions

Comparing version 3.53.3 to 3.54.0

2

dist/tsdoc-metadata.json

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.32.0"
"packageVersion": "7.34.0"
}
]
}

@@ -216,3 +216,3 @@ "use strict";

preserveSymlinks: false,
packageFilter: (pkg) => {
packageFilter: (pkg, pkgFile, dir) => {
// Hardwire "main" to point to a file that is guaranteed to exist.

@@ -219,0 +219,0 @@ // This helps resolve packages such as @types/node that have no entry point.

@@ -15,3 +15,3 @@ /**

export { IFileErrorOptions, IFileErrorFormattingOptions, FileError } from './FileError';
export { INodePackageJson, IPackageJson, IPackageJsonDependencyTable, IPackageJsonScriptTable, IPackageJsonRepository } from './IPackageJson';
export { INodePackageJson, IPackageJson, IPackageJsonDependencyTable, IPackageJsonScriptTable, IPackageJsonRepository, IPeerDependenciesMetaTable } from './IPackageJson';
export { Import, IImportResolveOptions, IImportResolveModuleOptions, IImportResolvePackageOptions } from './Import';

@@ -18,0 +18,0 @@ export { InternalError } from './InternalError';

/**
* This interface is part of the IPackageJson file format. It is used for the
* This interface is part of the {@link IPackageJson} file format. It is used for the
* "dependencies", "optionalDependencies", and "devDependencies" fields.

@@ -14,3 +14,3 @@ * @public

/**
* This interface is part of the IPackageJson file format. It is used for the
* This interface is part of the {@link IPackageJson} file format. It is used for the
* "scripts" field.

@@ -27,3 +27,3 @@ * @public

/**
* This interface is part of the IPackageJson file format. It is used for the
* This interface is part of the {@link IPackageJson} file format. It is used for the
* "repository" field.

@@ -47,2 +47,12 @@ * @public

/**
* This interface is part of the {@link IPackageJson} file format. It is used for the
* "peerDependenciesMeta" field.
* @public
*/
export interface IPeerDependenciesMetaTable {
[dependencyName: string]: {
optional?: boolean;
};
}
/**
* An interface for accessing common fields from a package.json file whose version field may be missing.

@@ -138,2 +148,6 @@ *

/**
* An array of metadata about peer dependencies.
*/
peerDependenciesMeta?: IPeerDependenciesMetaTable;
/**
* A table of script hooks that a package manager or build tool may invoke.

@@ -140,0 +154,0 @@ */

{
"name": "@rushstack/node-core-library",
"version": "3.53.3",
"version": "3.54.0",
"description": "Core libraries that every NodeJS toolchain project should use",

@@ -14,3 +14,2 @@ "main": "lib/index.js",

"dependencies": {
"@types/node": "12.20.24",
"colors": "~1.2.1",

@@ -20,3 +19,3 @@ "fs-extra": "~7.0.1",

"jju": "~1.4.0",
"resolve": "~1.17.0",
"resolve": "~1.22.1",
"semver": "~7.3.0",

@@ -26,11 +25,20 @@ "z-schema": "~5.0.2"

"devDependencies": {
"@rushstack/eslint-config": "3.1.1",
"@rushstack/heft": "0.48.0",
"@rushstack/heft-node-rig": "1.11.0",
"@rushstack/heft": "0.49.3",
"@rushstack/heft-node-rig": "1.11.14",
"@types/fs-extra": "7.0.0",
"@types/heft-jest": "1.0.1",
"@types/jju": "1.4.1",
"@types/resolve": "1.17.1",
"@types/semver": "7.3.5"
"@types/resolve": "1.20.2",
"@types/semver": "7.3.5",
"@types/node": "12.20.24",
"@rushstack/eslint-config": "3.1.1"
},
"peerDependencies": {
"@types/node": "^12.20.24"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
},
"scripts": {

@@ -37,0 +45,0 @@ "build": "heft build --clean",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc