{
  "name": "@honeybook/jest-stare",
  "version": "2.5.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/honeybook/jest-stare",
  "author": {
    "name": "honeybook",
    "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": "^29.0.0",
    "@jest/test-result": "^29.0.0",
    "@jest/types": "^29.0.0",
    "@types/jest": "^29.0.0",
    "ansi-parser": "^3.2.10",
    "bootstrap": "^5.0.0",
    "chalk": "^4.1.0",
    "chart.js": "^4.1.2",
    "diff2html": "^3.4.40",
    "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": "^17.0.0"
  },
  "devDependencies": {
    "@types/diff2html": "0.0.5",
    "@types/jquery": "3.5.16",
    "@types/mustache": "4.2.2",
    "@types/node": "^18.11.18",
    "@types/offscreencanvas": "2019.7.0",
    "browserify": "17.0.0",
    "codecov": "3.8.3",
    "jest": "29.6.2",
    "jest-environment-jsdom": "29.6.2",
    "jest-environment-node-debug": "2.0.0",
    "jest-image-snapshot": "6.2.0",
    "jest-junit": "15",
    "rimraf": "5.0.1",
    "ts-jest": "29.1.1",
    "ts-node": "10.9.1",
    "tslint": "6.1.3",
    "tslint-config-prettier": "1.18.0",
    "typescript": "5.1.6"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "jest": {
    "testEnvironmentOptions": {
      "url": "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"
  }
}
