{
  "name": "@rokucommunity/bslint",
  "version": "0.8.43",
  "description": "BrighterScript linter plugin",
  "main": "dist/index.js",
  "bin": {
    "bslint": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "preversion": "npm run build && npm run lint && npm run test",
    "lint": "eslint \"src/**\"",
    "test": "nyc mocha",
    "test:nocover": "mocha",
    "test:watch": "npm run test -- --watch --watch-files \"src/**/*.ts,test/**/*.brs\"",
    "watch": "tsc --watch",
    "publish-coverage": "nyc report --reporter=text-lcov | coveralls",
    "package": "npm run build && npm pack"
  },
  "files": [
    "dist/**/*",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "roku",
    "brightscript"
  ],
  "author": "rokucommunity",
  "license": "MIT",
  "homepage": "https://github.com/rokucommunity/bslint",
  "repository": {
    "type": "git",
    "url": "https://github.com/rokucommunity/bslint"
  },
  "dependencies": {
    "fs-extra": "^10.0.0",
    "jsonc-parser": "^2.3.0",
    "minimatch": "^3.0.4",
    "yargs": "^15.4.1"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/minimatch": "^3.0.4",
    "@types/mocha": "^9.1.0",
    "@types/mock-fs": "^4.10.0",
    "@types/node": "^14.6.0",
    "@typescript-eslint/eslint-plugin": "^3.10.1",
    "@typescript-eslint/parser": "^3.10.1",
    "brighterscript": "^0.72.1",
    "chai": "^4.3.6",
    "coveralls-next": "^4.2.0",
    "eslint": "^7.7.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "source-map-support": "^0.5.21",
    "thenby": "^1.3.4",
    "ts-node": "^10.7.0",
    "typescript": "^4.9.4"
  },
  "peerDependencies": {
    "brighterscript": ">= 0.59.0 < 1"
  },
  "mocha": {
    "config": ".mocharc.cjs"
  },
  "nyc": {
    "include": [
      "src/**/*.ts",
      "!src/**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "check-coverage": false,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100
  }
}
