{
  "name": "jest-stare-2",
  "version": "2.2.4",
  "description": "jest html reporter (results processor) to view HTML jest results, save raw JSON, and invoke multiple reporters",
  "license": "MIT",
  "repository": "https://github.com/dkelosky/jest-stare",
  "author": {
    "name": "dan kelosky",
    "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"
  },
  "dependencies": {
    "@jest/reporters": "^26.0.0",
    "@jest/test-result": "^26.0.0",
    "@jest/types": "^26.0.0",
    "@types/jest": "^26.0.12",
    "ansi-parser": "^3.2.10",
    "bootstrap": "^4.5.2",
    "chalk": "^4.1.0",
    "chart.js": "^2.9.3",
    "diff2html": "^3.1.18",
    "holderjs": "^2.9.7",
    "jquery": "^3.5.1",
    "moment": "^2.27.0",
    "mustache": "^4.0.0",
    "pkg-up": "^3.0.0",
    "popper.js": "^1.16.1",
    "yargs": "^16.0.0"
  },
  "devDependencies": {
    "@types/diff2html": "0.0.5",
    "@types/jquery": "3.5.5",
    "@types/mustache": "4.1.1",
    "@types/node": "12.12.34",
    "browserify": "17.0.0",
    "codecov": "3.8.1",
    "coveralls": "3.1.0",
    "jest": "26.6.3",
    "jest-environment-jsdom": "26.6.2",
    "jest-environment-node-debug": "2.0.0",
    "jest-image-snapshot": "4.3.0",
    "jest-junit": "12.0.0",
    "rimraf": "3.0.2",
    "ts-jest": "26.5.1",
    "ts-node": "9.1.1",
    "tslint": "6.1.3",
    "tslint-config-prettier": "1.18.0",
    "typescript": "4.1.5"
  },
  "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"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/jest.setup.js"
    ],
    "testEnvironment": "jsdom",
    "reporters": [
      "default",
      [
        "./",
        {
          "resultDir": "results/jest-stare",
          "reportTitle": "jest-stare!",
          "coverageLink": "../../coverage/lcov-report/index.html",
          "jestStareConfigJson": "jest-stare.json",
          "jestGlobalConfigJson": "globalStuff.json"
        }
      ]
    ]
  },
  "jest-junit": {
    "output": "./results/jest-junit/junit.xml",
    "classNameTemplate": "{classname}-{title}",
    "titleTemplate": "{classname}-{title}",
    "ancestorSeparator": " › ",
    "usePathForSuiteName": "true"
  }
}
