{
  "name": "horsey-sauce",
  "version": "0.2.0",
  "description": "A SauceLabs Connect Runner",
  "main": "src/index.js",
  "scripts": {
    "lint": "eslint *.{js,mjs} \"src/**/*.{js,mjs}\"",
    "report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
    "version": "npm-auto-version",
    "test": "npm run lint && npm run test:unit",
    "test:unit": "NODE_ENV=test nyc mocha test/index.js",
    "test:runner": "mocha test/runner.js",
    "start": "node ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/w33ble/horsey-sauce.git"
  },
  "keywords": [],
  "author": "Joe Fleming (https://github.com/w33ble)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/w33ble/horsey-sauce/issues"
  },
  "homepage": "https://github.com/w33ble/horsey-sauce",
  "files": [
    "src/",
    "index.js",
    "index.mjs"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "ignore": [
      "package.json"
    ],
    "linters": {
      "*.{js,mjs}": [
        "eslint --fix"
      ],
      "*.{js,mjs,json,css}": [
        "prettier --write"
      ]
    }
  },
  "prettier": {
    "printWidth": 100,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "nyc": {
    "extension": [
      ".mjs",
      ".js"
    ]
  },
  "dependencies": {
    "carafe": "^0.5.0",
    "sauce-connect-launcher": "^1.2.4",
    "wadsworth": "^0.2.0",
    "wd": "^1.11.1"
  },
  "devDependencies": {
    "@w33ble/npm-auto-tools": "*",
    "codecov": "^3.1.0",
    "dotenv": "^6.2.0",
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-config-prettier": "^2.7.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-prettier": "^2.7.0",
    "eslint-plugin-react": "^7.11.1",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.4",
    "mocha": "^6.0.2",
    "nyc": "^13.3.0",
    "prettier": "^1.15.3"
  }
}
