{
  "_from": "css-tree@^2.3.1",
  "_id": "css-tree@2.3.1",
  "_inBundle": false,
  "_integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
  "_location": "/css-tree",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "css-tree@^2.3.1",
    "name": "css-tree",
    "escapedName": "css-tree",
    "rawSpec": "^2.3.1",
    "saveSpec": null,
    "fetchSpec": "^2.3.1"
  },
  "_requiredBy": [
    "/svgo"
  ],
  "_resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
  "_shasum": "10264ce1e5442e8572fc82fbe490644ff54b5c20",
  "_spec": "css-tree@^2.3.1",
  "_where": "/var/www/html/moro/node_modules/svgo",
  "author": {
    "name": "Roman Dvornov",
    "email": "rdvornov@gmail.com",
    "url": "https://github.com/lahmatiy"
  },
  "browser": {
    "./cjs/data.cjs": "./dist/data.cjs",
    "./cjs/version.cjs": "./dist/version.cjs",
    "./lib/data.js": "./dist/data.js",
    "./lib/version.js": "./dist/version.js"
  },
  "bugs": {
    "url": "https://github.com/csstree/csstree/issues"
  },
  "bundleDependencies": false,
  "dependencies": {
    "mdn-data": "2.0.30",
    "source-map-js": "^1.0.1"
  },
  "deprecated": false,
  "description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations",
  "devDependencies": {
    "c8": "^7.12.0",
    "clap": "^2.0.1",
    "esbuild": "^0.14.53",
    "eslint": "^8.4.1",
    "json-to-ast": "^2.1.0",
    "mocha": "^9.2.2",
    "rollup": "^2.68.0"
  },
  "engines": {
    "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
  },
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./cjs/index.cjs"
    },
    "./dist/*": "./dist/*.js",
    "./package.json": "./package.json",
    "./tokenizer": {
      "import": "./lib/tokenizer/index.js",
      "require": "./cjs/tokenizer/index.cjs"
    },
    "./parser": {
      "import": "./lib/parser/index.js",
      "require": "./cjs/parser/index.cjs"
    },
    "./selector-parser": {
      "import": "./lib/parser/parse-selector.js",
      "require": "./cjs/parser/parse-selector.cjs"
    },
    "./generator": {
      "import": "./lib/generator/index.js",
      "require": "./cjs/generator/index.cjs"
    },
    "./walker": {
      "import": "./lib/walker/index.js",
      "require": "./cjs/walker/index.cjs"
    },
    "./convertor": {
      "import": "./lib/convertor/index.js",
      "require": "./cjs/convertor/index.cjs"
    },
    "./lexer": {
      "import": "./lib/lexer/index.js",
      "require": "./cjs/lexer/index.cjs"
    },
    "./definition-syntax": {
      "import": "./lib/definition-syntax/index.js",
      "require": "./cjs/definition-syntax/index.cjs"
    },
    "./definition-syntax-data": {
      "import": "./lib/data.js",
      "require": "./cjs/data.cjs"
    },
    "./definition-syntax-data-patch": {
      "import": "./lib/data-patch.js",
      "require": "./cjs/data-patch.cjs"
    },
    "./utils": {
      "import": "./lib/utils/index.js",
      "require": "./cjs/utils/index.cjs"
    }
  },
  "files": [
    "data",
    "dist",
    "cjs",
    "!cjs/__tests",
    "lib",
    "!lib/__tests"
  ],
  "homepage": "https://github.com/csstree/csstree#readme",
  "jsdelivr": "dist/csstree.esm.js",
  "keywords": [
    "css",
    "ast",
    "tokenizer",
    "parser",
    "walker",
    "lexer",
    "generator",
    "utils",
    "syntax",
    "validation"
  ],
  "license": "MIT",
  "main": "./cjs/index.cjs",
  "module": "./lib/index.js",
  "name": "css-tree",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/csstree/csstree.git"
  },
  "scripts": {
    "build": "npm run bundle && npm run esm-to-cjs --",
    "build-and-test": "npm run build && npm run test:dist && npm run test:cjs",
    "bundle": "node scripts/bundle",
    "bundle-and-test": "npm run bundle && npm run test:dist",
    "coverage": "c8 --exclude lib/__tests --reporter=lcovonly npm test",
    "esm-to-cjs": "node scripts/esm-to-cjs.cjs",
    "esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs",
    "hydrogen": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/parse --stat -o /dev/null",
    "lint": "eslint lib scripts && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint",
    "lint-and-test": "npm run lint && npm test",
    "prepublishOnly": "npm run lint-and-test && npm run build-and-test",
    "review:syntax-patch": "node scripts/review-syntax-patch",
    "test": "mocha lib/__tests --reporter ${REPORTER:-progress}",
    "test:cjs": "mocha cjs/__tests --reporter ${REPORTER:-progress}",
    "test:dist": "mocha dist/__tests --reporter ${REPORTER:-progress}",
    "update:docs": "node scripts/update-docs",
    "watch": "npm run build -- --watch"
  },
  "type": "module",
  "unpkg": "dist/csstree.esm.js",
  "version": "2.3.1"
}
