Sha256: 51354f94cffb6da0ee740990d55a368e0658098e06c1330b4a86d17c786e052a

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

{
  "name": "@prettier/plugin-ruby",
  "version": "1.2.0",
  "description": "prettier plugin for the Ruby programming language",
  "main": "src/ruby.js",
  "scripts": {
    "check-format": "prettier --check '**/*'",
    "lint": "eslint --cache .",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prettier/plugin-ruby.git"
  },
  "author": "Kevin Deisz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/prettier/plugin-ruby/issues"
  },
  "homepage": "https://github.com/prettier/plugin-ruby#readme",
  "dependencies": {
    "prettier": ">=1.10"
  },
  "devDependencies": {
    "all-contributors-cli": "^6.14.1",
    "eslint": "^7.8.1",
    "eslint-config-prettier": "^7.0.0",
    "husky": "^4.3.5",
    "jest": "^26.0.0",
    "pretty-quick": "^3.1.0"
  },
  "eslintConfig": {
    "extends": [
      "eslint:recommended",
      "prettier"
    ],
    "env": {
      "es6": true,
      "jest": true,
      "node": true
    },
    "rules": {
      "no-unused-vars": [
        "error",
        {
          "argsIgnorePattern": "^_",
          "varsIgnorePattern": "^_"
        }
      ]
    }
  },
  "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-1.2.0 package.json