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.3.1

Published

Common development dependencies used by Isotropic

Downloads

8

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 Babel, 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:

  • Build Tools: Babel (CLI, core, presets)
  • Testing: Mocha, Chai
  • Code Coverage: c8 with Istanbul
  • Linting: ESLint with Isotropic plugin
  • Utilities: cross-env, fs-extra, globals

Shared Configurations

  • Babel: Multiple environment configurations for different build targets
  • 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, you can reference its configurations in your project:

// package.json
{
    "scripts": {
        "build": "cross-env BABEL_ENV=node-minify babel --config-file ./node_modules/isotropic-dev-dependencies/config/babel.json js -d lib --delete-dir-on-start",
        "lint": "eslint js test",
        "test": "cross-env BABEL_ENV=test c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json mocha --import=isotropic-dev-dependencies/lib/register-babel-loader.js"
    }
}

The cross-env utility fixes issues setting inline environment variables in certain runtime environments.

Babel Configuration

The package provides multiple Babel environments:

  • browser: Modern browsers (last 2 years)
  • browser-minify: Browser targets with minification
  • browser-minify-no-mangle: Minification without name mangling
  • node: Current Node.js (ESM)
  • node-cjs: Current Node.js (CommonJS)
  • node-minify: Node.js with minification
  • test: Testing environment with code coverage

To use in your build scripts:

cross-env BABEL_ENV=node-minify babel --config-file ./node_modules/isotropic-dev-dependencies/config/babel.json js -d lib

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 Mocha and Chai

// test/test.js
import _chai from 'isotropic-dev-dependencies/lib/chai.js';
import _mocha from 'isotropic-dev-dependencies/lib/mocha.js';

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

Then set your test script to:

cross-env BABEL_ENV=test c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json mocha --import=isotropic-dev-dependencies/lib/register-babel-loader.js

c8 Configuration

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

Git Hooks

Git hooks are automatically installed during the prepare script. They validate committer information against package.json author and contributors.

Examples

Complete package.json Setup

{
    "name": "my-package",
    "devDependencies": {
        "eslint": "~9.8.0",
        "isotropic-dev-dependencies": "~0.3.0"
    },
    "scripts": {
        "build": "cross-env BABEL_ENV=node-minify babel --config-file ./node_modules/isotropic-dev-dependencies/config/babel.json js -d lib --delete-dir-on-start",
        "lint": "eslint js test",
        "postprepare": "node ./node_modules/isotropic-dev-dependencies/lib/install-git-hooks.js",
        "posttest": "[ -z \"$npm_config_coverage\" ] || c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json check-coverage",
        "prepare": "npm run build",
        "prepublishOnly": "npm test --coverage",
        "pretest": "npm run lint",
        "test": "cross-env BABEL_ENV=test c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json mocha --import=isotropic-dev-dependencies/lib/register-babel-loader.js"
    },
    "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