UNPKG

node-version-matches

Version:

Returns true if the current node version matches the given semver expression

35 lines (34 loc) 761 B
{ "name": "node-version-matches", "author": "Lloyd Brookes <75pound@gmail.com>", "version": "3.0.0", "description": "Returns true if the current node version matches the given semver expression", "repository": "https://github.com/75lb/node-version-matches", "keywords": [ "node", "version", "semver", "check", "test" ], "main": "./index.mjs", "exports": "./index.mjs", "license": "MIT", "engines": { "node": ">=14" }, "files": [ "index.mjs" ], "scripts": { "test": "test-runner test.mjs", "cover": "nyc --reporter=text-lcov test-runner test.mjs | coveralls" }, "devDependencies": { "coveralls": "^3.1.0", "test-runner": "^0.9.2" }, "dependencies": { "semver": "^7.3.5" } }