{
  "name": "argus-test-runner",
  "version": "3.0.1",
  "description": "Watches for changes in your source and test files and executes automatic tests",
  "main": "index.js",
  "author": "Danko Lučić",
  "license": "MIT",
  "bugs": "https://github.com/ldgit/argus/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/ldgit/argus.git"
  },
  "keywords": [
    "test",
    "runner",
    "watch",
    "test-runner",
    "testing",
    "tdd",
    "cli",
    "convenient"
  ],
  "bin": {
    "argus": "./index.js"
  },
  "devDependencies": {
    "@sinonjs/fake-timers": "^6.0.1",
    "chai": "^4.2.0",
    "coveralls": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-chai-expect": "^2.1.0",
    "eslint-plugin-import": "^2.20.2",
    "mocha": "^7.1.2",
    "nyc": "^15.0.1",
    "prettier": "^2.0.5",
    "touch": "^3.1.0"
  },
  "dependencies": {
    "chalk": "^4.0.0",
    "chokidar": "^3.4.0",
    "commander": "^5.1.0",
    "cross-spawn": "^7.0.2",
    "date-fns": "^2.12.0",
    "glob": "^7.1.6",
    "lodash": "^4.17.15"
  },
  "optionalDependencies": {
    "fsevents": "^1.0.0"
  },
  "nyc": {
    "exclude": [
      "coverage/**",
      "test/**",
      "**/node_modules/**",
      "*.config.js",
      ".eslintrc.js"
    ]
  },
  "scripts": {
    "test": "mocha",
    "test:int": "mocha test/integration/**/*.test.js",
    "test:all": "npm run prettier && npm run lint && npm test && npm run test:int",
    "lint": "eslint test/ src/ ./index.js",
    "coverage": "nyc --all npm t && nyc report --reporter=text-lcov | coveralls",
    "prettier": "prettier --check \"./**/*.{js,md}\""
  },
  "engines": {
    "node": ">= 12"
  },
  "prettier": {
    "arrowParens": "avoid",
    "bracketSpacing": true,
    "insertPragma": false,
    "printWidth": 100,
    "proseWrap": "preserve",
    "quoteProps": "as-needed",
    "requirePragma": false,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all",
    "useTabs": false
  }
}
