igor-starostenko/report-factory-mocha

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "report-factory-mocha",
  "version": "1.0.0",
  "description": "Mocha reporter for ReportFactory https://github.com/igor-starostenko/report_factory",
  "main": "./index.js",
  "scripts": {
    "docs": "jsdoc lib",
    "format": "eslint --format codeframe --fix .",
    "lint": "eslint --format codeframe .",
    "test": "mocha",
    "test:coverage": "istanbul cover _mocha",
    "test:report": "mocha --reporter './lib/reporter'"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js}": [
      "prettier --list-different --format"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/igor-starostenko/report_factory-mocha.git"
  },
  "directories": {
    "lib": "./lib",
    "test": "./test"
  },
  "keywords": [
    "test",
    "qa",
    "reports",
    "testing",
    "mocha",
    "reporter",
    "npm",
    "js",
    "javascript",
    "qatools",
    "test-automation",
    "report"
  ],
  "author": "Igor Starostenko",
  "license": "MIT",
  "engines": {
    "node": ">= 6.0.0"
  },
  "bugs": {
    "url": "https://github.com/igor-starostenko/report_factory-mocha/issues"
  },
  "homepage": "https://github.com/igor-starostenko/report_factory-mocha#readme",
  "devDependencies": {
    "chai": "^4.2.0",
    "eslint": "^5.13.0",
    "eslint-config-prettier": "^4.0.0",
    "eslint-plugin-chai-friendly": "^0.4.1",
    "eslint-plugin-mocha": "^5.2.1",
    "eslint-plugin-prettier": "^3.0.1",
    "husky": "^1.3.1",
    "istanbul": "^0.4.5",
    "lint-staged": "^8.1.3",
    "mocha": "^5.2.0",
    "nock": "^10.0.6",
    "precise-commits": "^1.0.2",
    "prettier": "1.16.4"
  },
  "dependencies": {
    "node-fetch": "^2.3.0"
  }
}