{
  "name": "@pedro.pires/cypress-slack-reporter",
  "version": "1.3.2",
  "description": "A slack reporter for mochawesome reports generated by Cypress or other test frameworks using Mocha, for runs generated on CircleCI",
  "main": "./bin/index.js",
  "bin": {
    "cypress-slack-reporter": "./bin/index.js",
    "cypress-slack-reporter-full": "./bin/cli/spec.js"
  },
  "keywords": [
    "cypress",
    "slack",
    "circleci",
    "reporter",
    "mocha",
    "mochawesome",
    "mochawesome-merge",
    "marge"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/you54f/cypress-slack-reporter.git"
  },
  "author": "Yousaf Nabi",
  "license": "MIT",
  "scripts": {
    "cli": "rimraf cypress/reports && ts-node src/cli/spec.ts",
    "circle": "npm run lint && npm run test:ci && make test && npm run pre-publish",
    "lint": "tslint --project .",
    "lint-fix": "tslint --project . --fix",
    "test": "jest --coverage",
    "test:jenkins": "cross-env CI_PROVIDER_TO_TEST=jenkins jest --coverage",
    "test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
    "compile": "tsc",
    "slack-js": "node bin/index.js --verbose",
    "slack-js-opts-build-failed": "node bin/index.js --report-dir src/slack/test/jsonBuildFail --video-dir src/slack/test/videosDirPopulated --screenshot-dir src/slack/test/screenshotDirPopulated --verbose",
    "slack-js-opts-test-failed": "node bin/index.js --report-dir src/slack/test/jsonTestFail --video-dir src/slack/test/videosDirPopulated --screenshot-dir src/slack/test/screenshotDirPopulated --verbose",
    "slack-js-opts-test-passed": "node bin/index.js --report-dir src/slack/test/jsonTestPass --video-dir src/slack/test/videosDirPopulated --screenshot-dir src/slack/test/screenshotDirPopulated --verbose",
    "slack-js-opts": "node bin/index.js --report-dir src/slack/test/reportSingle --video-dir src/slack/test/videosDirPopulated --screenshot-dir src/slack/test/screenshotDirPopulated --verbose",
    "slack-ts": "ts-node src/index.ts --verbose",
    "slack-ts-opts": "ts-node src/index.ts --report-dir src/slack/test/reportSingle --video-dir src/slack/test/videosDirPopulated --screenshot-dir src/slack/test/screenshotsDirPopulated --verbose",
    "ci": "npm run test:ci && rimraf ./bin && npm run compile",
    "ship-it": "npm run pre-publish && npm publish",
    "deploy:prepare": "./scripts/create_npmrc_file.sh",
    "release": "standard-version --release-as 1.2.1"
  },
  "dependencies": {
    "@slack/types": "2.20.1",
    "@slack/webhook": "7.0.8",
    "@types/commander": "2.12.5",
    "axios": "1.13.5",
    "@types/pino": "6.3.12",
    "commander": "5.1.0",
    "del": "5.1.0",
    "dotenv": "8.2.0",
    "pino": "6.14.0"
  },
  "peerDependencies": {
    "mochawesome": ">= 3.1.2",
    "mochawesome-merge": ">= 1.0.7",
    "mochawesome-report-generator": ">= 3.1.5"
  },
  "devDependencies": {
    "@commitlint/cli": "8.3.5",
    "@commitlint/config-conventional": "8.3.4",
    "@cypress/webpack-preprocessor": "5.7.0",
    "@types/bluebird": "3.5.33",
    "@types/dotenv": "6.1.1",
    "@types/jest": "26.0.23",
    "@types/node": "10.17.59",
    "aws-sdk": "2.846.0",
    "aws-sdk-mock": "5.1.0",
    "coveralls": "3.1.0",
    "cypress": "4.12.1",
    "cypress-cucumber-preprocessor": "2.5.5",
    "cypress-multi-reporters": "1.5.0",
    "dotenv": "8.2.0",
    "globby": "9.2.0",
    "husky": "4.3.8",
    "jest": "26.6.3",
    "jest-junit": "10.0.0",
    "jest-stare": "2.2.2",
    "lint-staged": "10.5.4",
    "mocha": "8.3.2",
    "mocha-junit-reporter": "1.23.3",
    "mochawesome": "6.2.2",
    "mochawesome-merge": "4.2.0",
    "mochawesome-report-generator": "5.2.0",
    "prettier": "2.2.1",
    "rimraf": "3.0.2",
    "s3-batch-upload": "1.5.0",
    "slack-mock-typed": "2.4.0",
    "standard-version": "8.0.2",
    "ts-jest": "25.5.1",
    "ts-loader": "7.0.5",
    "ts-node": "8.10.2",
    "tslint": "5.20.1",
    "tslint-config-prettier": "1.18.0",
    "tslint-no-focused-test": "0.5.0",
    "typescript": "3.9.9",
    "webpack": "4.46.0",
    "winston": "2.4.5"
  },
  "cypress-cucumber-preprocessor": {
    "nonGlobalStepDefinitions": false
  },
  "lint-staged": {
    "src/**/*.ts": [
      "prettier --write",
      "tslint --fix",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "jest-stare": {
    "coverageLink": "../lcov-report/index.html",
    "resultDir": "coverage/html"
  },
  "jest-junit": {
    "outputDirectory": "./testReports/",
    "reportDir": "testReports/unit"
  },
  "resolutions": {
    "set-value": "3.0.2",
    "braces": "3.0.2",
    "handlebars": "4.7.7"
  }
}
