{
  "name": "xunit-viewer",
  "type": "module",
  "version": "10.6.1",
  "description": "parses xunit xml into xunit viewer",
  "repository": {
    "url": "https://github.com/lukejpreston/xunit-viewer.git",
    "type": "git"
  },
  "bugs": {
    "url": "https://github.com/lukejpreston/xunit-viewer.git"
  },
  "homepage": "./",
  "keywords": [
    "test",
    "junit",
    "xunit",
    "viewer",
    "parser"
  ],
  "author": "lukejpreston <lukejpreston@gmail.com>",
  "license": "MIT",
  "main": "xunit-viewer.js",
  "bin": {
    "xunit-viewer": "bin/xunit-viewer.js"
  },
  "directories": {
    "bin": "bin",
    "cli": "src/cli"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --reporters=default --reporters=jest-junit",
    "update": "node src/cli/update-expected.js",
    "eject": "react-scripts eject",
    "lint": "eslint xunit-viewer.js src --ignore-pattern src/cli/static/js/**/*",
    "test:ci": "echo blah",
    "test:document": "./bin/xunit-viewer.js -r junit.xml -o gh-pages/xunit-viewer-results.html",
    "test:document:serve": "npm run test:document -- -s",
    "demo": "./bin/xunit-viewer.js -r data -o gh-pages/index.html",
    "release:demo": "npm run test:document && npm run demo && gh-pages -d gh-pages",
    "deploy": "rm -rf src/cli/static && cp -r build/static src/cli/static",
    "build:cli": "npm run build && npm run deploy",
    "release": "./release.sh"
  },
  "dependencies": {
    "@uiw/react-codemirror": "^4.21.3",
    "chalk": "^5.2.0",
    "chokidar": "^3.5.3",
    "console-clear": "^1.1.1",
    "debounce": "^1.2.1",
    "detect-file-encoding-and-language": "^2.4.0",
    "express": "^4.18.2",
    "get-port": "^7.0.0",
    "handlebars": "^4.7.7",
    "ip": "^1.1.8",
    "lzutf8": "^0.6.3",
    "merge": "^2.1.1",
    "socket.io": "^4.6.2",
    "xml2js": "^0.6.0",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
    "@fortawesome/fontawesome-free": "^6.4.0",
    "bulma": "^0.9.4",
    "eslint": "^8.43.0",
    "eslint-config-standard": "^17.1.0",
    "eslint-config-standard-react": "^13.0.0",
    "eslint-import-resolver-node": "^0.3.7",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-react": "^7.32.2",
    "eslint-plugin-standard": "^5.0.0",
    "fuzzy": "^0.1.3",
    "gh-pages": "^5.0.0",
    "jest-junit": "^16.0.0",
    "linkify-html": "^4.1.1",
    "linkifyjs": "^4.1.1",
    "localforage": "^1.10.0",
    "match-sorter": "^6.3.1",
    "query-string": "^8.1.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-linkify": "^1.0.0-alpha",
    "react-render-if-visible": "^2.1.1",
    "react-router-dom": "^6.13.0",
    "react-scripts": "^5.0.1",
    "react-test-renderer": "^18.2.0",
    "sort-by": "^1.2.0",
    "stream": "^0.0.2",
    "timers": "^0.1.1"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ],
  "eslintIgnore": [
    "cli/static/**/*"
  ],
  "eslintConfig": {
    "extends": [
      "standard",
      "standard-react",
      "plugin:react/recommended"
    ],
    "env": {
      "browser": true,
      "jest": true,
      "jasmine": true
    },
    "rules": {
      "react/prop-types": 0,
      "react/jsx-closing-tag-location": 0,
      "react/jsx-closing-bracket-location": 0
    }
  }
}
