{
  "name": "@voxpelli/semver-set",
  "version": "6.0.0",
  "description": "Finds intersections between semantic version ranges.",
  "author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
  "license": "MIT",
  "homepage": "https://github.com/voxpelli/semver-set",
  "repository": {
    "type": "git",
    "url": "git://github.com/voxpelli/semver-set.git"
  },
  "type": "module",
  "exports": "./index.js",
  "types": "index.d.ts",
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  },
  "files": [
    "index.js",
    "index.d.ts",
    "index.d.ts.map",
    "lib/**/*.js",
    "lib/**/*.d.ts",
    "lib/**/*.d.ts.map"
  ],
  "scripts": {
    "build:0": "run-s clean",
    "build:1-declaration": "tsc -p declaration.tsconfig.json",
    "build:2-add-ignores": "ts-ignore-import '**/*.d.ts'",
    "build": "run-s build:*",
    "check:installed-check": "installed-check",
    "check:knip": "knip",
    "check:lint": "eslint --report-unused-disable-directives .",
    "check:tsc": "tsc",
    "check:type-coverage": "type-coverage --detail --strict --at-least 100",
    "check": "run-s clean && run-p check:*",
    "clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*' ! -name 'advanced-types.d.ts')",
    "clean": "run-p clean:*",
    "prepare": "husky",
    "prepublishOnly": "run-s build",
    "test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
    "test-ci": "run-s test:*",
    "test": "run-s clean check test:*"
  },
  "dependencies": {
    "semver": "^7.5.3"
  },
  "devDependencies": {
    "@types/chai": "^4.3.19",
    "@types/mocha": "^10.0.8",
    "@types/node": "^18.19.50",
    "@types/semver": "^7.5.8",
    "@voxpelli/eslint-config": "^21.0.0",
    "@voxpelli/tsconfig": "^14.0.0",
    "c8": "^10.1.2",
    "chai": "^4.5.0",
    "eslint": "^9.10.0",
    "husky": "^9.1.6",
    "installed-check": "^9.3.0",
    "knip": "^5.30.2",
    "mocha": "^10.7.3",
    "npm-run-all2": "^6.2.2",
    "ts-ignore-import": "^4.0.1",
    "type-coverage": "^2.29.1",
    "typescript": "~5.5.4",
    "validate-conventional-commit": "^1.0.4"
  }
}
