{
  "name": "match-semver",
  "version": "1.0.8",
  "description": "Checks match of version against semver comparators",
  "keywords": [
    "match",
    "version",
    "semver",
    "comparators",
    "eq",
    "lt",
    "lte",
    "gt",
    "gte"
  ],
  "homepage": "https://github.com/kmalakoff/match-semver",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/kmalakoff/match-semver.git"
  },
  "license": "MIT",
  "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/cjs/index.js",
  "source": "src/index.ts",
  "types": "dist/cjs/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsds build",
    "format": "tsds format",
    "prepublishOnly": "tsds validate",
    "test": "tsds test:node --no-timeouts",
    "test:engines": "nvu engines tsds test:node --no-timeouts",
    "version": "tsds version"
  },
  "dependencies": {
    "semver": "^5.7.1"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.10",
    "@types/node": "^25.0.1",
    "node-version-use": "^2.1.5",
    "ts-dev-stack": "^1.21.3",
    "tsds-config": "^0.2.1"
  },
  "engines": {
    "node": ">=0.8"
  }
}
