Sha256: e398b85af7ea649f90b691288c98937c8f71d19d9b3ae1f0abd92835bc4e9f9e

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

{
  "name": "@prettier/plugin-ruby",
  "version": "3.0.0",
  "description": "prettier plugin for the Ruby programming language",
  "main": "src/plugin.js",
  "scripts": {
    "checkFormat": "prettier --check '**/*'",
    "lint": "eslint --cache .",
    "test": "jest"
  },
  "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",
  "dependencies": {
    "prettier": ">=2.3.0"
  },
  "devDependencies": {
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.0.0",
    "husky": "^7.0.0",
    "jest": "^28.0.1",
    "pretty-quick": "^3.1.2"
  },
  "eslintConfig": {
    "extends": [
      "eslint:recommended",
      "prettier"
    ],
    "env": {
      "es6": true,
      "jest": true,
      "node": true
    },
    "rules": {
      "no-unused-vars": "off"
    }
  },
  "jest": {
    "globalSetup": "./test/js/globalSetup.js",
    "globalTeardown": "./test/js/globalTeardown.js",
    "setupFilesAfterEnv": [
      "./test/js/setupTests.js"
    ],
    "testRegex": ".test.js$"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "prettier": {
    "trailingComma": "none",
    "plugins": [
      "."
    ]
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prettier-3.0.0 package.json