node-version-use
Version:
Cross-platform solution for using multiple versions of node. Useful for compatibility testing
69 lines (68 loc) • 1.6 kB
JSON
{
"name": "node-version-use",
"version": "1.5.90",
"description": "Cross-platform solution for using multiple versions of node. Useful for compatibility testing",
"keywords": [
"node",
"version",
"use",
"versions",
"compatability",
"cross",
"platform",
"platforms"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/node-version-use.git"
},
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"main": "dist/cjs/index.cjs",
"module": "dist/dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"bin": {
"nvu": "./bin/cli.cjs"
},
"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": {
"cross-spawn-cb": "^2.1.23",
"exit": "^0.1.2",
"getopts-compat": "^2.2.6",
"homedir-polyfill": "^1.0.3",
"node-resolve-versions": "^1.0.35",
"node-version-install": "^1.1.53",
"node-version-utils": "^1.2.14",
"queue-cb": "^1.4.16",
"spawn-streaming": "^1.0.32",
"spawn-term": "^0.1.50"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"cr": "*",
"is-version": "*",
"pinkie-promise": "*",
"rimraf2": "*"
},
"engines": {
"node": ">=14"
},
"tsds": {
"source": "src/index.ts"
}
}