{
  "name": "bespoken-jest-stare",
  "version": "1.0.25",
  "description": "jest html reporter (results processor) to view HTML jest results, save raw JSON, and invoke multiple reporters",
  "license": "MIT",
  "repository": "https://github.com/bespoken/jest-stare",
  "author": {
    "name": "juan perata",
    "email": "",
    "url": ""
  },
  "bin": {
    "jest-stare": "lib/jest-stare.js"
  },
  "keywords": [
    "jest",
    "html",
    "jest-html",
    "jest-stare",
    "mochawesome",
    "mocha",
    "json",
    "jasmine",
    "reporters",
    "custom",
    "spec",
    "results",
    "processor",
    "reporter"
  ],
  "files": [
    "lib",
    "web"
  ],
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "clean": "rimraf lib && rimraf coverage",
    "lint": "tslint --force --format verbose \"src/**/*.ts\"",
    "prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
    "build": "tsc --pretty && browserify lib/render/view.js -o lib/render/view.js",
    "test": "jest",
    "example": "npm run build && jest --testRegex __tests__.*\\.example\\.ts$",
    "examplePassing": "npm run build && jest --testRegex __tests__.*\\.example\\.ts$ Passing",
    "exampleFailing": "npm run build && jest --testRegex __tests__.*\\.example\\.ts$ Failing",
    "coverage": "jest --coverage",
    "codecov": "codecov",
    "watch": "npm run build -- --watch",
    "watch:test": "jest --watch",
    "preversion": "node lib/utils/GenerateInlineReport.js"
  },
  "dependencies": {
    "ansi-parser": "^3.2.9",
    "axios": "^0.21.1",
    "bootstrap": "^4.3.1",
    "chalk": "^2.4.2",
    "chart.js": "^2.7.3",
    "diff2html": "^2.9.0",
    "holderjs": "^2.9.6",
    "jquery": "^3.4.1",
    "moment": "^2.23.0",
    "mustache": "^3.0.0",
    "pkg-up": "^3.0.0",
    "popper.js": "^1.14.6",
    "yargs": "^14.2.0"
  },
  "devDependencies": {
    "@types/parcel-bundler": "^1.12.1",
    "@types/chart.js": "2.8.7",
    "@types/diff2html": "0.0.5",
    "@types/jest": "22.2.3",
    "@types/jquery": "3.3.31",
    "@types/mustache": "0.8.32",
    "@types/node": "8.10.55",
    "browserify": "16.5.0",
    "codecov": "3.6.1",
    "coveralls": "3.0.7",
    "jest": "24.9.0",
    "jest-environment-jsdom": "24.9.0",
    "jest-environment-node-debug": "2.0.0",
    "jest-html-reporter": "2.6.2",
    "jest-image-snapshot": "2.11.0",
    "jest-junit": "8.0.0",
    "rimraf": "3.0.0",
    "ts-jest": "24.1.0",
    "ts-node": "8.4.1",
    "tslint": "5.20.0",
    "tslint-config-prettier": "1.18.0",
    "typescript": "3.6.4",
    "cssnano": "^4.1.10",
    "parcel-bundler": "^1.12.4",
    "parcel-plugin-inliner": "^1.0.10"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "jest": {
    "testURL": "http://localhost",
    "modulePathIgnorePatterns": [
      "__tests__/__snapshots__/"
    ],
    "transform": {
      ".(ts)$": "ts-jest"
    },
    "testRegex": "__tests__.*\\.(spec|test)\\.ts$",
    "watchPathIgnorePatterns": [
      ".*jest-stare.*\\.js"
    ],
    "moduleFileExtensions": [
      "ts",
      "js",
      "node"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/jest.setup.js"
    ],
    "testEnvironment": "jsdom",
    "reporters": [
      "default",
      "./"
    ]
  },
  "jest-stare": {
    "resultDir": "results/jest-stare",
    "additionalResultsProcessors": [
      "jest-html-reporter",
      "jest-junit"
    ],
    "reportSummary": "true",
    "coverageLink": "../../coverage/lcov-report/index.html",
    "jestStareConfigJson": "jest-stare.json",
    "jestGlobalConfigJson": "globalStuff.json"
  },
  "jest-html-reporter": {
    "outputPath": "results/jest-html-reporter/index.html"
  },
  "jest-junit": {
    "output": "./results/jest-junit/junit.xml",
    "classNameTemplate": "{classname}-{title}",
    "titleTemplate": "{classname}-{title}",
    "ancestorSeparator": " › ",
    "usePathForSuiteName": "true"
  }
}
