UNPKG

rugby

Version:

A Node.js CLI to collect npm package tarballs and assets (including those fetched by pre/postinstall scripts) for offline Artifactory use.

59 lines (56 loc) 1.24 kB
{ "name": "rugby", "version": "0.1.2", "description": "A Node.js CLI to collect npm package tarballs and assets (including those fetched by pre/postinstall scripts) for offline Artifactory use.", "bin": { "rugby": "bin/rugby.js" }, "type": "commonjs", "engines": { "node": ">=20.0.0" }, "files": [ "bin/", "src/", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/your-org/rugby.git" }, "homepage": "https://github.com/your-org/rugby#readme", "bugs": { "url": "https://github.com/your-org/rugby/issues" }, "scripts": { "start": "node bin/rugby.js", "lint": "echo 'no lint configured'", "test": "node -e \"console.log('rugby: no tests yet')\"" }, "keywords": [ "npm", "cli", "offline", "artifactory", "packages", "dependencies", "preinstall", "postinstall" ], "license": "MIT", "dependencies": { "chalk": "^4.1.2", "commander": "^11.1.0", "fs-extra": "^11.2.0", "npm-package-arg": "^11.0.2", "pacote": "^17.0.5", "prompts": "^2.4.2", "semver": "^7.6.3", "tmp": "^0.2.3", "which": "^4.0.0" } }