{
  "name": "stylelint-react-native",
  "description": "A collection of React Native specific rules for stylelint",
  "version": "2.7.0",
  "main": "dist/index.js",
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "files": [
    "dist",
    "src",
    "CHANGELOG.md",
    "README.md",
    "!**/__tests__"
  ],
  "keywords": [
    "css",
    "csslint",
    "lint",
    "linter",
    "stylelint",
    "stylelint-plugin"
  ],
  "scripts": {
    "precommit": "lint-staged",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "prebuild": "rimraf dist",
    "build": "babel src --out-dir dist",
    "lint": "eslint . --ignore-path .gitignore",
    "prettify": "prettier --write src/**/*",
    "prepublish": "npm run build",
    "pretest": "npm run lint",
    "release": "np",
    "jest": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
    "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kristerkari/stylelint-react-native.git"
  },
  "author": "Krister Kari",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kristerkari/stylelint-react-native/issues"
  },
  "engines": {
    "node": ">=18.12.0"
  },
  "homepage": "https://github.com/kristerkari/stylelint-react-native#readme",
  "jest": {
    "clearMocks": true,
    "collectCoverage": false,
    "collectCoverageFrom": [
      "src/**/*.js"
    ],
    "coverageDirectory": "./.coverage/",
    "coverageReporters": [
      "lcov",
      "text"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 75,
        "functions": 75,
        "lines": 75,
        "statements": 75
      }
    },
    "preset": "jest-preset-stylelint",
    "setupFiles": [
      "./jest-setup.js"
    ],
    "testEnvironment": "node",
    "roots": [
      "src"
    ],
    "testRegex": ".*\\.test\\.js$|src/.*/__tests__/.*\\.js$"
  },
  "peerDependencies": {
    "stylelint": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
  },
  "lint-staged": {
    "**/*.{js,json,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "eslintConfig": {
    "extends": "eslint:recommended",
    "parserOptions": {
      "sourceType": "module",
      "ecmaVersion": 6
    },
    "env": {
      "es6": true,
      "jest": true,
      "node": true
    },
    "plugins": [
      "sort-requires"
    ],
    "globals": {
      "testRule": true
    },
    "rules": {
      "eqeqeq": "error",
      "no-use-before-define": [
        "error",
        "nofunc"
      ],
      "sort-requires/sort-requires": "error",
      "strict": [
        "error",
        "global"
      ],
      "arrow-spacing": "error",
      "no-var": "error",
      "object-shorthand": "error",
      "prefer-const": "error",
      "template-curly-spacing": "error"
    }
  },
  "devDependencies": {
    "@babel/cli": "^7.14.5",
    "@babel/core": "^7.14.6",
    "@babel/preset-env": "^7.14.7",
    "@stylelint/postcss-css-in-js": "^0.38.0",
    "babel-plugin-istanbul": "^6.0.0",
    "babel-preset-jest": "^29.2.0",
    "cross-env": "^7.0.3",
    "eslint": "^8.31.0",
    "eslint-config-stylelint": "^20.0.0",
    "eslint-plugin-sort-requires": "^2.1.0",
    "husky": "^7.0.1",
    "jest": "^29.7.0",
    "jest-cli": "^29.7.0",
    "jest-preset-stylelint": "^7.0.0",
    "lint-staged": "^15.2.0",
    "np": "^9.2.0",
    "postcss-less": "^5.0.0",
    "postcss-scss": "^4.0.2",
    "postcss-syntax": "^0.36.2",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.1",
    "stylelint": "^16.2.0"
  },
  "prettier": {
    "semi": true,
    "singleQuote": false,
    "trailingComma": "none"
  },
  "dependencies": {
    "react-native-known-styling-properties": "^1.2.0"
  }
}
