{
  "name": "@uirouter/react",
  "version": "1.0.8",
  "description": "State based routing for React",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "jsnext:main": "lib-esm/index.js",
  "module": "lib-esm/index.js",
  "scripts": {
    "test": "jest",
    "test:debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch",
    "test:downstream": "npm run build && test_downstream_projects",
    "start": "cross-env NODE_ENV=development webpack-dev-server --host 0.0.0.0 --port 8000 --config ./examples/typescript/webpack.config.js --history-api-fallback",
    "clean": "shx rm -rf _bundles lib lib-esm build _doc",
    "compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm",
    "bundle": "cross-env NODE_ENV=production webpack",
    "build": "run-s compile bundle fixmaps:*",
    "release": "release --deps @uirouter/core",
    "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-esm/**/*.js.map'",
    "fixmaps:bundle": "tweak_sourcemap_paths -a --include '_bundles/**/*.js.map'",
    "docs": "generate_docs",
    "docs:publish": "generate_docs && publish_docs",
    "prepublishOnly": "npm run build",
    "artifacts": "artifact_tagging",
    "prettier": "npx prettier --write src/**/*.[jt]s src/**/*.[jt]sx"
  },
  "homepage": "https://ui-router.github.io/react",
  "contributors": [
    {
      "name": "Marco Botto",
      "web": "https://github.com/elboman"
    },
    {
      "name": "Chris Thielen",
      "web": "https://github.com/christopherthielen"
    }
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ui-router/react.git"
  },
  "dependencies": {
    "@uirouter/core": "6.1.2",
    "classnames": "^2.3.1",
    "prop-types": "^15.6.1"
  },
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.14.1",
    "@testing-library/react": "^12.0.0",
    "@types/classnames": "^2.3.1",
    "@types/jest": "^26.0.24",
    "@types/lodash": "^4.14.171",
    "@types/prop-types": "15.7.4",
    "@types/react": "17.0.14",
    "@types/react-dom": "17.0.9",
    "@uirouter/publish-scripts": "^2.6.4",
    "babel-jest": "^27.0.6",
    "babel-polyfill": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.24.1",
    "cross-env": "^7.0.3",
    "husky": "^4.3.6",
    "jest": "27.0.6",
    "prettier": "^2.3.2",
    "pretty-quick": "^3.1.1",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-test-renderer": "^17.0.2",
    "ts-jest": "^27.0.4",
    "ts-loader": "^9.2.3",
    "ts-node": "^10.1.0",
    "tsconfig-paths-webpack-plugin": "^4.2.0",
    "typescript": "^4.3.5",
    "webpack": "^5.101.3",
    "webpack-cli": "^6.0.1",
    "webpack-dev-server": "^5.2.2"
  },
  "jest": {
    "setupFiles": [
      "../jest.setup.js"
    ],
    "rootDir": "src",
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testEnvironment": "jsdom",
    "moduleFileExtensions": [
      "js",
      "json",
      "ts",
      "tsx"
    ],
    "globals": {
      "ts-jest": {
        "tsConfig": "./tsconfig.jest.json"
      }
    },
    "preset": "ts-jest",
    "restoreMocks": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "docgen": {
    "publishDir": "_react_docs",
    "navigation": {
      "": [
        "UIRouterReact"
      ],
      "Services": [
        "StateService",
        "StateRegistry",
        "TransitionService",
        "UrlService",
        "UrlConfig",
        "UrlRules"
      ],
      "Interfaces": [
        "ReactStateDeclaration"
      ],
      "Components": [
        "UIRouter",
        "UIView",
        "UISref",
        "UISrefActive"
      ],
      "React Hooks": [
        "useRouter",
        "useSref",
        "useSrefActive",
        "useSrefActiveExact",
        "useTransitionHook",
        "useCanExit",
        "useCurrentStateAndParams",
        "useOnStateChanged",
        "useIsActive"
      ],
      "Other": [
        "Transition",
        "Trace"
      ]
    },
    "include": [
      {
        "pkg": "@uirouter/core",
        "repo": "https://github.com/ui-router/core",
        "branch": "master"
      }
    ]
  }
}
