node-semvers
Version:
Utilities for managing versions of node including looking up codenames
70 lines (69 loc) • 1.68 kB
JSON
{
"name": "node-semvers",
"version": "1.4.6",
"description": "Utilities for managing versions of node including looking up codenames",
"keywords": [
"node",
"version",
"versions",
"semver",
"range",
"engine"
],
"homepage": "https://github.com/kmalakoff/node-semvers",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/node-semvers.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",
"types": "dist/cjs/index.d.cts",
"bin": {
"nsv": "bin/cli.js"
},
"files": [
"dist",
"bin",
"assets",
"scripts"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe src/ test/ && biome check --config-path biome.es5.json --write --unsafe assets/ scripts/",
"postinstall": "node scripts/postinstall.cjs",
"test": "mocha --no-timeouts test/**/*.test.*",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"exit": "^0.1.2",
"fetch-json-cache": "^1.2.60",
"getopts-compat": "^2.2.6",
"isarray": "^2.0.5",
"semver": "^5.7.1"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"cr": "*",
"cross-spawn-cb": "*",
"pinkie-promise": "*",
"rimraf2": "*",
"rollup": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}