UNPKG

match-semver

Version:

Checks match of version against semver comparators

52 lines (51 loc) 1.09 kB
{ "name": "match-semver", "version": "0.1.11", "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)", "main": "dist/cjs/index.cjs", "types": "dist/types/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsds build", "format": "biome check --write --unsafe src/ test/", "test": "tsds test:node --no-timeouts", "test:engines": "nvu engines npm test", "version": "tsds version" }, "dependencies": { "semver": "^5.7.1" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.mjs", "targets": [ "cjs" ] } }