UNPKG

gdl

Version:

Download any folder from GitHub Repo url

94 lines (93 loc) 2.21 kB
{ "name": "gdl", "version": "1.8.0", "description": "Download any folder from GitHub Repo url", "keywords": [ "GitHub", "Repo", "Download" ], "repository": "KusStar/gdl", "license": "MIT", "author": "KusStar", "main": "dist/index.js", "module": "dist/index.mjs", "typings": "dist/index.d.ts", "bin": { "gdl": "./bin/cli.js" }, "files": [ "dist", "bin", "!scripts", "!tests" ], "scripts": { "start": "npm run build -- --watch", "prebuild": "rimraf ./dist/", "build": "tsup ./src/index.ts --dts --format esm,cjs", "lint": "eslint ./src", "lint:fix": "npm run lint -- --fix", "prepub": "npm run build && npm run replace:interfaces", "pub": "release-it", "replace:interfaces": "ts-node scripts/replace_interfaces", "test": "jest" }, "eslintConfig": { "extends": [ "@kuss/eslint-config-vanilla" ] }, "dependencies": { "update-notifier": "5.1.0" }, "devDependencies": { "@kuss/eslint-config-vanilla": "^2.4.0", "@release-it/conventional-changelog": "^3.3.0", "@swc/core": "^1.2.112", "@swc/jest": "^0.2.9", "@types/jest": "^27.0.3", "@types/node": "^16.11.10", "@types/tar": "^6.1.1", "@types/update-notifier": "5.1.0", "eslint": "^8.3.0", "got": "^11.8.2", "jest": "^27.3.1", "ora": "5.4.1", "quick-lru": "^6.0.1", "regenerator-runtime": "^0.13.9", "release-it": "^14.11.6", "rimraf": "^3.0.2", "tar": "^6.1.11", "ts-node": "^10.4.0", "tsup": "^6.5.0", "typescript": "^4.5.2" }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", "ignoreRecommendedBump": true, "parserOpts": { "headerPattern": "^(:\\w+:\\s+)?(\\w*)(?:\\(([\\w\\$\\.\\-\\* ]*)\\))?\\: (.*)$", "headerCorrespondence": [ "gitmoji", "type", "scope", "subject" ] } } } } }