{
  "name": "calibre",
  "version": "6.1.0",
  "engines": {
    "node": ">= 18"
  },
  "type": "module",
  "description": "Calibre - Page speed performance testing with Google Lighthouse",
  "author": "calibreapp.com",
  "main": "dist/index.js",
  "bin": {
    "calibre": "./src/cli.js"
  },
  "exports": {
    ".": {
      "import": "./index.js",
      "require": "./dist/index.cjs"
    },
    "./cli-commands": "./src/cli-commands.js",
    "./cli-metadata": "./src/cli-metadata.js"
  },
  "dependencies": {
    "@json2csv/node": "^7.0.3",
    "chalk": "^5.0.1",
    "columnify": "^1.6.0",
    "configstore": "^7.0.0",
    "cookiefile": "^1.0.10",
    "date-fns": "^4.1.0",
    "graphql-request": "^7.1.0",
    "humanize": "0.0.9",
    "listr": "^0.14.1",
    "log-symbols": "^7.0.0",
    "marked": "^15.0.7",
    "marked-terminal": "^7.0.0",
    "ora": "^8.0.1",
    "p-throttle": "^7.0.0",
    "simple-update-notifier": "^2.0.0",
    "stats-percentile": "^3.1.0",
    "yargs": "^17.4.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.7",
    "esbuild": "^0.25.0",
    "eslint": "^9.9.1",
    "eslint-plugin-jest": "^28.8.0",
    "eslint-plugin-n": "^17.10.2",
    "eslint-plugin-security": "^3.0.1",
    "execa": "^9.3.1",
    "express": "^4.19.2",
    "jest": "^29.7.0",
    "prettier": "3.5.3",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "scripts": {
    "ci": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --no-colors --verbose=false",
    "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --no-colors --verbose=false",
    "lint": "eslint .",
    "clean": "rm -rf dist/",
    "build": "npm run clean && esbuild index.js --bundle --platform=node --outfile=dist/index.cjs",
    "pre-publish": "echo //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} > .npmrc",
    "generate-cli-md": "node ./generate-cli-md.js > CLI_COMMANDS.md"
  },
  "keywords": [
    "performance",
    "testing",
    "test",
    "lighthouse"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/calibreapp/cli.git"
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "none",
    "arrowParens": "avoid"
  }
}
