{
  "name": "@nomiclabs/hardhat-solhint",
  "version": "4.0.2",
  "description": "Hardhat plugin for solhint",
  "repository": "github:nomiclabs/hardhat",
  "homepage": "https://github.com/nomiclabs/hardhat/tree/main/packages/hardhat-solhint",
  "author": "Nomic Labs LLC",
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "ethereum",
    "smart-contracts",
    "hardhat",
    "hardhat-plugin",
    "solhint",
    "solidity",
    "linter"
  ],
  "files": [
    "dist/src",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "solhint": "~5.0.2"
  },
  "devDependencies": {
    "@types/chai": "^4.2.0",
    "@types/fs-extra": "^5.1.0",
    "@types/mocha": ">=9.1.0",
    "@types/node": "^18.0.0",
    "@types/sinon": "^9.0.8",
    "@typescript-eslint/eslint-plugin": "5.61.0",
    "@typescript-eslint/parser": "5.61.0",
    "chai": "^4.2.0",
    "eslint": "^8.44.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-mocha": "10.4.1",
    "eslint-plugin-prettier": "3.4.0",
    "fs-extra": "^7.0.1",
    "hardhat": "^2.0.0",
    "mocha": "^10.0.0",
    "prettier": "2.4.1",
    "rimraf": "^3.0.2",
    "sinon": "^9.0.0",
    "ts-node": "^10.8.0",
    "typescript": "~5.0.0",
    "@nomicfoundation/eslint-plugin-hardhat-internal-rules": "^1.0.2",
    "@nomicfoundation/eslint-plugin-slow-imports": "^1.0.0"
  },
  "peerDependencies": {
    "hardhat": "^2.0.0"
  },
  "scripts": {
    "lint": "pnpm prettier --check && pnpm eslint",
    "lint:fix": "pnpm prettier --write && pnpm eslint --fix",
    "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
    "prettier": "prettier \"**/*.{js,md,json}\"",
    "pretest": "cd ../.. && pnpm build",
    "test": "mocha --recursive \"test/**/*.ts\" --exit",
    "build": "tsc --build .",
    "clean": "rimraf dist"
  }
}