{
  "name": "postcss-less",
  "version": "6.0.0",
  "description": "LESS parser for PostCSS",
  "license": "MIT",
  "repository": "shellscape/postcss-less",
  "author": "Denys Kniazevych <webschik@gmail.com>",
  "maintainer": "Andrew Powell <andrew@shellscape.org>",
  "homepage": "https://github.com/shellscape/postcss-less",
  "bugs": "https://github.com/shellscape/postcss-less/issues",
  "main": "lib/index.js",
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
    "ci:lint": "npm run lint && npm run security",
    "ci:test": "npm run test",
    "commitlint": "commitlint",
    "commitmsg": "commitlint -e $GIT_PARAMS",
    "lint": "eslint --fix --cache lib test",
    "lint-staged": "lint-staged",
    "security": "npm audit --audit-level=high",
    "test": "ava"
  },
  "files": [
    "lib",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {},
  "devDependencies": {
    "@commitlint/cli": "^12.1.4",
    "@commitlint/config-conventional": "^12.1.4",
    "ava": "^3.15.0",
    "cheerio": "^1.0.0-rc.10",
    "eslint-config-shellscape": "^2.0.2",
    "eslint-plugin-filenames": "^1.2.0",
    "is-absolute-url": "^3.0.0",
    "less": "^4.1.1",
    "lint-staged": "^11.0.0",
    "node-fetch": "^2.6.1",
    "nyc": "^15.1.0",
    "postcss": "^8.3.5",
    "postcss-parser-tests": "^8.3.5",
    "pre-commit": "^1.2.2",
    "url-join": "^4.0.0"
  },
  "peerDependencies": {
    "postcss": "^8.3.5"
  },
  "keywords": [
    "css",
    "postcss",
    "postcss-syntax",
    "parser",
    "less"
  ],
  "ava": {
    "files": [
      "!**/fixtures/**",
      "!**/helpers/**"
    ]
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ]
  },
  "nyc": {
    "include": [
      "lib/*.js"
    ],
    "exclude": [
      "lib/client*.js",
      "test/"
    ]
  },
  "pre-commit": "lint-staged"
}
