Sha256: 8e8c5b3fec08329c8b4a510a7e248d0f496b5408fb47f051c3014e40825edba2
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
{ "name": "@prettier/plugin-ruby", "version": "1.5.1", "description": "prettier plugin for the Ruby programming language", "main": "src/plugin.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": { "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.5.1 | package.json |