frontend-performance-analyzer
Version:
CLI to analyze frontend performance using Lighthouse
42 lines (41 loc) • 976 B
JSON
{
"name": "frontend-performance-analyzer",
"version": "0.3.1",
"description": "CLI to analyze frontend performance using Lighthouse",
"type": "module",
"main": "./src/cli.js",
"bin": {
"frontend-performance-analyzer": "./src/cli.js"
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch"
},
"author": "Oleksandr",
"license": "MIT",
"keywords": [
"cli",
"audit",
"performance",
"developer-tools",
"lighthouse",
"puppeteer",
"lighthouse-cli"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": "https://github.com/OleksandrZadvornyi/frontend-performance-analyzer",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"lighthouse": "^12.6.1",
"puppeteer": "^24.10.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.9",
"vitest": "^2.1.9"
}
}