{
  "name": "overman",
  "version": "1.0.5",
  "description": "Test runner for integration tests",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "doc",
    "dist",
    "!dist/tsconfig.tsbuildinfo",
    "!dist/test",
    "!dist/fakes"
  ],
  "scripts": {
    "lint": "eslint --ext .ts src",
    "build": "tsc -b src",
    "test:mocha": "npm run build && npm run lint && mocha -r ts-node/register --timeout 5000 --slow 1000 --colors src/test",
    "test:overman": "npm run build && FORCE_COLOR=true node dist/test/overman_suite",
    "test": "npm run test:mocha"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pereckerdal/overman.git"
  },
  "keywords": [
    "test",
    "runner",
    "integration",
    "parallel"
  ],
  "author": "Per Eckerdal <per.eckerdal@gmail.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "async": "^3.2.4",
    "chalk": "^4.1.2",
    "exit": "~0.1.2",
    "is-running": "~2.1.0",
    "ps-tree": "^1.2.0",
    "teamcity-service-messages": "^0.1.14",
    "through": "~2.3.8"
  },
  "devDependencies": {
    "@types/async": "^3.2.18",
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/exit": "^0.1.31",
    "@types/is-running": "^2.1.0",
    "@types/node": "^18.14.6",
    "@types/ps-tree": "^1.1.2",
    "@types/recursive-readdir": "^2.2.1",
    "@types/source-map-support": "^0.5.6",
    "@types/through": "^0.0.30",
    "@typescript-eslint/eslint-plugin": "^5.57.0",
    "@typescript-eslint/parser": "^5.57.0",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "eslint": "^8.36.0",
    "istanbul": "~0.4.3",
    "mocha": "~2.4.5",
    "recursive-readdir": "^2.2.3",
    "source-map-support": "^0.5.21",
    "strip-ansi": "^6.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.2"
  },
  "prettier": {
    "printWidth": 100,
    "singleQuote": true
  },
  "eslintConfig": {
    "env": {
      "commonjs": true,
      "es2020": true,
      "node": true
    },
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint"
    ],
    "root": true,
    "parserOptions": {
      "sourceType": "module"
    },
    "extends": [
      "eslint:recommended",
      "plugin:@typescript-eslint/recommended"
    ],
    "ignorePatterns": "data/suite",
    "rules": {
      "@typescript-eslint/ban-ts-comment": [
        "error",
        {
          "ts-ignore": "allow-with-description"
        }
      ],
      "@typescript-eslint/no-empty-function": "off",
      "@typescript-eslint/no-empty-interface": "off",
      "@typescript-eslint/no-non-null-assertion": "off",
      "@typescript-eslint/no-unused-vars": [
        "error",
        {
          "argsIgnorePattern": "^_"
        }
      ],
      "no-regex-spaces": "off"
    },
    "overrides": [
      {
        "files": [
          "src/index.ts"
        ],
        "rules": {
          "@typescript-eslint/triple-slash-reference": "off"
        }
      },
      {
        "files": [
          "src/interfaces/bdd_mocha.globals.ts"
        ],
        "rules": {
          "no-var": "off",
          "@typescript-eslint/no-namespace": "off"
        }
      },
      {
        "files": [
          "src/test/**"
        ],
        "env": {
          "mocha": true
        },
        "rules": {
          "no-control-regex": 0,
          "no-empty": 0,
          "no-undef": 0,
          "no-unused-vars": 0,
          "no-useless-escape": 0
        }
      }
    ]
  }
}
