UNPKG

@voxpelli/semver-set

Version:

Finds intersections between semantic version ranges.

69 lines (68 loc) 2.1 kB
{ "name": "@voxpelli/semver-set", "version": "7.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": "^20.15.0 || >=22.2.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.20", "@types/mocha": "^10.0.10", "@types/node": "^20.19.11", "@types/semver": "^7.7.0", "@voxpelli/eslint-config": "^23.0.0", "@voxpelli/tsconfig": "^16.0.0", "c8": "^10.1.3", "chai": "^4.5.0", "eslint": "^9.33.0", "husky": "^9.1.7", "installed-check": "^9.3.0", "knip": "^5.62.0", "mocha": "^11.7.1", "npm-run-all2": "^8.0.4", "ts-ignore-import": "^4.0.1", "type-coverage": "^2.29.7", "typescript": "~5.9.2", "validate-conventional-commit": "^1.0.4" } }