Files
meshcore-analyzer/package.json
you 7f303ee2d7 feat: code coverage with c8, npm test runs full suite
npm test: all tests + coverage summary
npm run test:unit: fast unit tests only
npm run test:coverage: full suite + HTML report in coverage/

Baseline: 37% statements, 42% branches, 54% functions
Fixed e2e channels crash (undefined .length on null)
2026-03-24 00:51:33 +00:00

21 lines
753 B
JSON

{
"name": "meshcore-analyzer",
"version": "2.6.0",
"description": "Community-run alternative to the closed-source `analyzer.letsmesh.net`. MQTT packet collection + open-source web analyzer for the Bay Area MeshCore mesh.",
"main": "index.js",
"scripts": {
"test": "npx c8 --reporter=text --reporter=text-summary sh test-all.sh",
"test:unit": "node test-packet-filter.js && node test-aging.js && node test-regional-filter.js",
"test:coverage": "npx c8 --reporter=text --reporter=html sh test-all.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@michaelhart/meshcore-decoder": "^0.2.7",
"better-sqlite3": "^12.8.0",
"express": "^5.2.1",
"mqtt": "^5.15.0",
"ws": "^8.19.0"
}
}