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

fedcomp-index-scoring

v2026.3.7

Published

FedComp Index classification engine. Two-axis posture classification (volume x frequency) for federal contractors from USASpending award data.

Readme

FedComp Index Classification

FedComp Index

Federal contractor posture classification. Classifies any federal contractor into one of four Posture Classes using two-axis thresholds on public award data from USASpending.gov.

Each contractor is classified along two independent axes: award volume (total contract dollars including delivery orders) and award frequency (base contracts only), over a trailing 5-year window:

  • Class 1 - high volume + high frequency (systematic winners, $5M+ total across 3+ base contracts)
  • Class 2 - high volume + low frequency (concentrated risk, $5M+ total but fewer than 3 base contracts)
  • Class 3 - low volume + high frequency (growth pipeline, under $5M total but 3+ base contracts)
  • Class 4 - low volume + low frequency (entry level)

Install

npm install fedcomp-index-scoring

Usage

const { classifyContractor, PostureClass } = require("fedcomp-index-scoring");

const result = classifyContractor(15_000_000, 8);

result.postureClass;      // "Class 1"
result.highVolume;        // true
result.highFrequency;     // true
result.obligationDensity; // 1875000

Classification methodology

Two-axis classification. Volume counts all contract types (base + delivery orders). Frequency counts definitive contracts and purchase orders only (BPA calls, delivery orders, and task orders excluded).

| Axis | Threshold | What it measures | |------|-----------|-----------------| | Volume | $5M total contract dollars (5yr) | Scale of all obligated dollars | | Frequency | 3 base contracts (5yr) | Breadth of competitive wins |

The two axes are independent dimensions. Neither can be derived from the other. A contractor with $50M across 2 base contracts and a contractor with $50M across 20 base contracts are fundamentally different competitive species, even though their volume is identical. Obligation Density (OD) = total dollars / base contracts.

| Posture Class | Volume | Frequency | Competitive profile | |---------------|--------|-----------|-------------------| | Class 1 | >= $5M total | >= 3 base contracts | Systematic winner, repeatable pipeline | | Class 2 | >= $5M total | < 3 base contracts | Concentrated risk, few large wins | | Class 3 | < $5M total | >= 3 base contracts | Growth pipeline, building momentum | | Class 4 | < $5M total | < 3 base contracts | Entry level |

Obligation density (dollars per base contract) is computed as a derived metric but does not affect classification.

Full methodology: fedcompindex.org/methodology

Related packages

| Package | What it does | |---------|-------------| | fedcomp-index | Meta-package (installs both) | | fedcomp-index-scoring | Classification engine (this one) | | fedcomp-index-data | Pre-classified contractor datasets |

Also available on PyPI

pip install fedcomp-index-scoring

Data sources

All data is sourced from public federal records:

  • USASpending.gov - award history, dollar amounts, agencies, NAICS codes, PSC codes
  • SAM.gov - entity registration, certifications, UEI
  • SBA.gov - small business certification verification

Live classifications

Classified contractor rankings with dossier pages, proximity maps, and velocity tracking:

  • Nevada - 779 contractors classified

Datasets

Pre-classified datasets available for download:

Links

Citation

@software{fedcomp_index,
  title = {FedComp Index},
  author = {FedComp Index},
  url = {https://fedcompindex.org/},
  year = {2026}
}

License

MIT