{
  "name": "nightwatch-allure",
  "version": "1.2.0",
  "description": "Nightwatch allure reporter",
  "main": "lib/index.js",
  "scripts": {
    "clean": "rimraf ./lib ./out",
    "compile": "tsc",
    "build": "npm run lint && npm run compile",
    "generate-report": "allure generate ./out/allure-results -o ./out/allure-report --clean",
    "allure-report": "allure serve ./out/allure-results",
    "test": "nyc ts-node --project test/tsconfig.json test/runner.ts",
    "coverage": "codecov",
    "lint": "eslint ./src ./test --ext .ts",
    "lint-fix": "eslint ./src ./test ./index.ts --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
  },
  "files": [
    "lib/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kushmangal/Nightwatch-Allure-Reporter.git"
  },
  "keywords": [
    "nightwatch",
    "reporter",
    "allure"
  ],
  "author": "Kushagra Mangal",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/kushmangal/Nightwatch-Allure-Reporter/issues"
  },
  "homepage": "https://github.com/kushmangal/Nightwatch-Allure-Reporter#readme",
  "dependencies": {
    "@types/node": "^12.12.14",
    "eslint": "^6.7.1",
    "mkdirp": "^0.5.1",
    "properties": "^1.2.1",
    "uuid": "^3.3.2"
  },
  "devDependencies": {
    "@types/mkdirp": "^0.5.2",
    "@types/uuid": "^3.4.4",
    "codecov": "^3.3.0",
    "fs-jetpack": "^2.2.2",
    "nyc": "^14.0.0",
    "prettier": "^1.19.1",
    "tslint": "^5.20.1",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.7.2"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 80,
    "statements": 80,
    "functions": 75,
    "branches": 70,
    "extension": [
      ".ts"
    ],
    "include": [
      "lib/*.js"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "all": true,
    "report-dir": "./out/coverage",
    "temp-dir": "./out/.nyc"
  }
}
