UNPKG

@networkpro/web

Version:

Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies

48 lines (40 loc) 1.67 kB
/* ========================================================================== .ncurc.cjs Copyright © 2025-2026 Network Pro Strategies (Network Pro™) SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later This file is part of Network Pro. ========================================================================= */ /** * ========================================================== * npm-check-updates Configuration * ---------------------------------------------------------- * This file defines upgrade behavior for project dependencies. * It ensures consistent updates while preserving project-specific * upgrade behavior. * * 🔧 Usage: * - Run `npm run check:updates` to preview safe upgrades * - Run `npm run upgrade` to apply upgrades (respects these rules) * * 📜 Notes for Contributors: * - Add entries to "reject" only when a maintainer confirms * an upgrade is incompatible or requires coordinated work. * - This config is automatically used by npm-check-updates (NCU) * and requires no command-line flags. * * 💡 See CONTRIBUTING.md → "Dependency Management" for details. * ========================================================== */ /** @type {import('npm-check-updates').RunOptions} */ module.exports = { // Always upgrade devDependencies as well dep: 'prod,dev', // Show a summary table format: ['group', 'table'], // Don’t automatically install — just update package.json upgrade: true, // Display upgraded dependencies as JSON (optional for automation) jsonUpgraded: false, // Enable readable colors when supported color: true, // harmless, but CLI-only };