{
  "name": "@prettier/plugin-ruby",
  "version": "4.0.4",
  "description": "prettier plugin for the Ruby programming language",
  "type": "module",
  "main": "src/plugin.js",
  "scripts": {
    "checkFormat": "prettier --check '**/*'",
    "lint": "eslint --cache .",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prettier/plugin-ruby.git"
  },
  "author": "Kevin Newton",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/prettier/plugin-ruby/issues"
  },
  "homepage": "https://github.com/prettier/plugin-ruby#readme",
  "peerDependencies": {
    "prettier": "^3.0.0"
  },
  "devDependencies": {
    "eslint": "^8.54.0",
    "eslint-config-prettier": "^9.0.0",
    "husky": "^8.0.1",
    "jest": "^29.5.0",
    "prettier": "^3.1.0",
    "pretty-quick": "^3.1.2"
  },
  "eslintConfig": {
    "extends": [
      "eslint:recommended",
      "prettier"
    ],
    "env": {
      "jest": true,
      "node": true
    },
    "parserOptions": {
      "ecmaVersion": 2020,
      "sourceType": "module"
    },
    "rules": {
      "no-undef": "off"
    }
  },
  "jest": {
    "globalSetup": "./test/js/globalSetup.js",
    "globalTeardown": "./test/js/globalTeardown.js",
    "setupFilesAfterEnv": [
      "./test/js/setupTests.js"
    ],
    "testRegex": ".test.js$",
    "transform": {}
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "prettier": {
    "trailingComma": "none",
    "plugins": [
      "./src/plugin.js"
    ]
  }
}
