UNPKG

node-filename-to-dist-paths

Version:

Converts files from https://nodejs.org/dist/index-cjson into relative distribution paths for download from https://nodejs.org/dist/

62 lines (61 loc) 1.5 kB
{ "name": "node-filename-to-dist-paths", "version": "1.3.2", "description": "Converts files from https://nodejs.org/dist/index-cjson into relative distribution paths for download from https://nodejs.org/dist/", "keywords": [ "node", "version", "versions", "install", "dist", "release", "releases", "filename", "file", "files" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/kmalakoff/node-filename-to-dist-paths.git" }, "license": "MIT", "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", "files": [ "dist", "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": { "fetch-json-cache": "^1.3.1" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "get-remote": "*", "pinkie-promise": "*", "single-line-log2": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.ts" } }