UNPKG

pacote-install

Version:

A tool to download npm packages from specific registries

50 lines (49 loc) 1.04 kB
{ "name": "pacote-install", "version": "0.0.7", "description": "A tool to download npm packages from specific registries", "main": "dist/index.js", "bin": { "pacote-install": "dist/cli.js" }, "scripts": { "build": "tsc", "start": "node dist/cli.js", "dev": "ts-node src/cli.ts", "test": "jest", "lint": "eslint . --ext .ts", "prepare": "npm run build" }, "keywords": [ "npm", "pacote", "install", "package", "registry" ], "author": "", "license": "ISC", "dependencies": { "chalk": "^4.1.2", "pacote": "^21.0.0", "yargs": "^17.7.2" }, "devDependencies": { "@types/node": "^20.10.5", "@types/yargs": "^17.0.32", "typescript": "^5.3.3", "ts-node": "^10.9.2", "@types/jest": "^29.5.11", "jest": "^29.7.0", "ts-jest": "^29.1.1", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0" }, "engines": { "node": ">=14.0.0" }, "files": [ "dist" ] }