npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

isotropic-dev-dependencies

v0.5.0

Published

Common development dependencies used by Isotropic

Readme

isotropic-dev-dependencies

npm version License

A shared package of common development dependencies and configurations used across Isotropic modules.

Why Use This?

  • Single Source of Truth: Maintain consistent development dependencies across multiple projects
  • Version Synchronization: Update dependencies in one place and propagate to all dependent projects
  • Shared Configurations: Common configuration files for ESLint, c8, and other tools
  • Simplified Setup: Easy integration of standard development tools with minimal boilerplate
  • Git Hooks: Automated setup of git hooks for commit validation

Installation

npm install --save-dev isotropic-dev-dependencies

Features

Bundled Dependencies

This package bundles common development dependencies to ensure consistency across projects:

  • Testing: The Node.js built-in test runner (node:test) with Chai assertions
  • Code Coverage: c8
  • Linting: ESLint with the Isotropic plugin
  • Utilities: fs-extra, globals

Note: This package no longer bundles Babel, Mocha, or cross-env. Isotropic targets a current Node.js release (Node 26+) and runs its ES module source directly, so there is no build/transpile step. Tests run on the Node.js built-in test runner instead of Mocha.

Shared Configurations

  • c8: Code coverage configuration with high standards (100% coverage targets)
  • ESLint: Standard linting rules for both CommonJS and ES modules
  • Git Hooks: Pre-commit hooks for validation

Usage

Basic Setup

After installing the package, reference its configurations in your project.

Because Isotropic publishes its ES module source directly, source now lives in (and is published from) the lib directory and there is no separate build output. Lint and test point at lib and test:

// package.json
{
    "scripts": {
        "lint": "eslint lib test",
        "test": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json node --test"
    }
}

ESLint Integration

Set up ESLint with the shared configuration.

  • eslint-module.js: Configuration for ES modules
  • eslint-commonjs.js: Configuration for CommonJS modules
// eslint.config.js
export {
    default
} from 'isotropic-dev-dependencies/lib/eslint-module.js';

When your package depends on isotropic-dev-dependencies it will automatically bring in eslint because isotropic-dev-dependencies depends on eslint. However, a lot of packages depend on eslint. If you have other dependencies that also depend on eslint, you may have to declare eslint as a dependency of your package to ensure that you get the correct version of eslint.

Testing with the Node.js Test Runner and Chai

Tests use the Node.js built-in test runner. Import describe/it (and any other helpers) directly from node:test, which is always available and needs no dependency declaration. Chai is provided by this package for assertions:

// test/test.js
import _chai from 'isotropic-dev-dependencies/lib/chai.js';
import _test from 'node:test';

_test.describe('My Test Suite', () => {
    _test.it('should pass', () => {
        _chai.expect(true).to.be.true;
    });
});

Then set your test script to run the test runner under c8:

c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json node --test

node --test automatically discovers test files in your test directory. Because the source is no longer transpiled, coverage maps directly to the files in lib.

c8 Configuration

  • 100% coverage requirements for statements, branches, functions, and lines
  • LCOV and text-summary reporters

Git Hooks

Git hooks are automatically installed during the prepare script. They validate committer information against the package.json author and contributors. When there is no .git directory (for example, when the package is installed as a dependency), hook installation is skipped silently.

Examples

Complete package.json Setup

{
    "name": "my-package",
    "devDependencies": {
        "eslint": "~10.5.0",
        "isotropic-dev-dependencies": "~0.3.0"
    },
    "scripts": {
        "lint": "eslint lib test",
        "posttest": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json check-coverage",
        "prepare": "node ./node_modules/isotropic-dev-dependencies/lib/install-git-hooks.js",
        "prepublishOnly": "npm test",
        "pretest": "npm run lint",
        "test": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json node --test"
    },
    "type": "module",
    "version": "0.0.0"
}

Contributing

Please refer to CONTRIBUTING.md for contribution guidelines.

Issues

If you encounter any issues, please file them at https://github.com/ibi-group/isotropic-dev-dependencies/issues