Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
qpp-measures-data
Advanced tools
This is the source of truth for QPP measures data. Stability in the API contract for qpp-measures-data is prioritized but not guaranteed.
Measures and benchmark data can be accessed by installing the qpp-measures-data
NPM repository.
The measures data JSON schema is described in measures/$YEAR/measures-schema.yaml
; $YEAR refers to the performance year. The measures data here combines existing data from the QPP API, with supplementary data found in util
. To access measures data without installing the NPM repository, run git clone git@github.com:CMSgov/qpp-measures-data.git
and navigate to measures/$YEAR/measures-data.json
.
The benchmarks data JSON schema is described in benchmarks/benchmarks-schema.yaml
.
To access the benchmarks data without installing the NPM repository, run git clone git@github.com:CMSgov/qpp-measures-data.git
and navigate to benchmarks/
. Benchmarks data is organized by performance year. For example, benchmarks/2017.json
contains the benchmarks for performance year 2017
(benchmark year 2015).
All Measure and Benchmark data for Performance Year 2025 is currently in progress and is subject to change. (This note will be removed in December.)
Functions take a string version argument and return the appropriate YAML schema or JSON data.
The module can be used with the following pattern:
import * as qppMeasuresData from 'qpp-measures-data';
const measuresData = qppMeasuresData.getMeasuresData($YEAR);
const measuresSchema = qppMeasuresData.getMeasuresSchema($YEAR);
const benchmarksData = qppMeasuresData.getBenchmarksData();
const benchmarkData$YEAR = benchmarksData[$YEAR];
const benchmarksSchema = qppMeasuresData.getBenchmarksSchema();
const benchmarksCostNationalAveragesData = qppMeasuresData.getBenchmarksNationalAverages($YEAR);
const benchmarksCostNationalAveragesSchema = qppMeasuresData.getBenchmarksNationalAveragesSchema($YEAR);
// Note: for the following function, the mvpIds is an optional parameter (array of MVP IDs to filter by)
const mvpData = qppMeasuresData.getMVPData($YEAR, mvpIds);
const mvpSchema = qppMeasuresData.getMVPSchema($YEAR);
Before creating pull requests, please make sure to review CONTRIBUTING.md.
FAQs
Quality Payment Program Measures Data Repository
The npm package qpp-measures-data receives a total of 931 weekly downloads. As such, qpp-measures-data popularity was classified as not popular.
We found that qpp-measures-data demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.