{
  "name": "analyze-css",
  "version": "2.4.35",
  "author": "Maciej Brencz <maciej.brencz@gmail.com> (https://github.com/macbre)",
  "description": "CSS selectors complexity and performance analyzer",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git://github.com/macbre/analyze-css.git"
  },
  "keywords": [
    "analysis",
    "complexity",
    "css",
    "stylesheet",
    "webperf"
  ],
  "license": "BSD-2-Clause",
  "engines": {
    "node": ">18"
  },
  "dependencies": {
    "@adobe/css-tools": "^4.4.2",
    "cli": "^1.0.1",
    "commander": "^14.0.0",
    "css-shorthand-properties": "^1.1.1",
    "css-what": "^8.0.0",
    "debug": "^4.1.1",
    "fast-stats": "0.0.7",
    "glob": "^13.0.0",
    "http-proxy-agent": "^8.0.0",
    "node-fetch": "^3.0.0",
    "onecolor": "^4.0.0",
    "specificity": "^1.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/css": "0.0.38",
    "autoprefixer": "^10.2.4",
    "browserslist": "^4.11.1",
    "check-dts": "^1.0.0",
    "eslint": "^10.0.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-node": "^11.1.0",
    "globals": "^17.0.0",
    "jest": "^30.0.3",
    "postcss": "^8.3.6",
    "prettier": "3.8.1"
  },
  "optionalDependencies": {
    "sass": "^1.34.1"
  },
  "bin": "./bin/analyze-css.js",
  "preferGlobal": true,
  "scripts": {
    "test": "node --experimental-vm-modules node_modules/.bin/jest test/ --coverage --detectOpenHandles",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "prettier": "npx prettier --write .",
    "prefixes": "npx browserslist@latest --update-db; DEBUG=* node data/prefixes.js",
    "bump-version-patch": "npm version patch && git add -A . && git push origin master && git push --tags && ./create-gh-release.sh",
    "check-dts": "check-dts lib/*.d.ts"
  },
  "jshintConfig": {
    "esversion": 6,
    "node": true,
    "strict": true,
    "validthis": true
  },
  "jest": {
    "verbose": true,
    "coveragePathIgnorePatterns": [
      "test/"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 100,
        "branches": 100,
        "functions": 100,
        "lines": 100
      }
    }
  }
}
