UNPKG

gitok

Version:

A CLI tool to quickly clone specific parts of git repositories (supports GitHub and GitLab)

38 lines (37 loc) 931 B
{ "name": "gitok", "version": "1.1.0", "description": "A CLI tool to quickly clone specific parts of git repositories (supports GitHub and GitLab)", "main": "src/index.js", "type": "module", "bin": { "gitok": "./bin/gitok.js" }, "scripts": { "start": "node bin/gitok.js", "test": "node --test test/*.test.js", "test:watch": "node --test --watch test/*.test.js", "test:verbose": "node --test --reporter=spec test/*.test.js", "test:url": "node --test test/url-parser.test.js", "test:integration": "node --test test/integration.test.js", "test:cli": "node --test test/cli.test.js" }, "keywords": [ "git", "clone", "sparse-checkout", "cli", "tool" ], "author": "", "license": "MIT", "dependencies": { "colorette": "^2.0.20", "commander": "^14.0.0", "node-pty": "^1.0.0" }, "engines": { "node": ">=14.0.0" }, "preferGlobal": true }