{
  "name": "stylelint-value-no-unknown-custom-properties",
  "version": "6.1.1",
  "description": "A stylelint rule to disallow usage of unknown custom properties",
  "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  "license": "CC0-1.0",
  "repository": "csstools/stylelint-value-no-unknown-custom-properties",
  "homepage": "https://github.com/csstools/stylelint-value-no-unknown-custom-properties#readme",
  "bugs": "https://github.com/csstools/stylelint-value-no-unknown-custom-properties/issues",
  "type": "module",
  "main": "src/index.mjs",
  "files": [
    "src"
  ],
  "scripts": {
    "prepublishOnly": "npm test",
    "test": "npm run lint && node --test index.test.mjs",
    "lint": "eslint src/**/*.mjs *.mjs --cache --ignore-path .gitignore --quiet"
  },
  "engines": {
    "node": ">=18.12.0"
  },
  "dependencies": {
    "postcss-value-parser": "^4.2.0",
    "resolve": "^1.22.8"
  },
  "devDependencies": {
    "eslint": "^8.53.0",
    "eslint-config-dev": "^3.3.1",
    "stylelint": "^16.26.1",
    "stylelint-test-rule-node": "^0.4.0"
  },
  "peerDependencies": {
    "stylelint": ">=16"
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "node": true
    },
    "extends": "eslint:recommended",
    "rules": {
      "quotes": [
        "error",
        "single"
      ],
      "comma-dangle": [
        "error",
        "always-multiline"
      ],
      "semi": [
        "error",
        "always"
      ],
      "curly": "error",
      "brace-style": "error",
      "indent": [
        "error",
        "tab",
        {
          "SwitchCase": 1
        }
      ],
      "radix": "error"
    },
    "parserOptions": {
      "ecmaVersion": 2020,
      "sourceType": "module"
    },
    "root": true
  },
  "keywords": [
    "stylelint",
    "stylelint-plugin",
    "css",
    "custom",
    "properties",
    "property",
    "variables",
    "variable",
    "vars",
    "var",
    "csswg",
    "w3c",
    "unknown"
  ]
}
