packages/router/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@valkyr/router",
  "version": "0.0.0",
  "description": "Framework agnostic routing solution for single page web applications written in TypeScript.",
  "repository": "https://github.com/cmdo/valkyr.git",
  "bugs": "https://github.com/cmdo/valkyr/issues",
  "license": "MIT",
  "type": "module",
  "main": "./src/index.ts",
  "types": "./src/index.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "router",
    "web",
    "spa"
  ],
  "scripts": {
    "build": "tsc -b ./tsconfig.build.json",
    "flush": "npm run clean && rm -rf ./node_modules",
    "clean": "rm -rf ./.turbo ./dist",
    "ncu": "ncu -u",
    "lint": "eslint .",
    "test": "jest"
  },
  "jest": {
    "preset": "@valkyr/jest"
  },
  "eslintConfig": {
    "parserOptions": {
      "project": "./tsconfig.json"
    },
    "extends": [
      "@valkyr"
    ]
  },
  "lint-staged": {
    "*": [
      "prettier --write --ignore-unknown"
    ],
    "*.{ts,tsx}": [
      "eslint --fix"
    ]
  },
  "dependencies": {
    "history": "5.3.0",
    "path-to-regexp": "6.2.1",
    "rxjs": "7.8.1"
  },
  "devDependencies": {
    "@valkyr/jest": "workspace:*"
  }
}