UNPKG

@terascope/fetch-github-release

Version:

Download a specific release from github

73 lines 2.18 kB
{ "name": "@terascope/fetch-github-release", "publishConfig": { "access": "public" }, "version": "2.2.1", "description": "Download a specific release from github", "type": "module", "files": [ "dist/src/**/*", "bin/*" ], "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "scripts": { "build": "tsc --project tsconfig.json", "build:watch": "yarn build --watch", "lint": "eslint --ignore-pattern .gitignore", "lint:fix": "yarn lint --fix", "setup": "yarn && yarn build", "test": "NODE_OPTIONS='--experimental-vm-modules' jest", "test:cov": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage", "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage=false --notify --watch --onlyChanged", "test:debug": "NODE_OPTIONS='--experimental-vm-modules' env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand", "check": "yarn run lint && yarn run test", "clean": "rimraf dist coverage", "prepublishOnly": "yarn run clean && yarn run build" }, "bin": "bin/fetch-github-release", "repository": { "type": "git", "url": "https://github.com/terascope/fetch-github-release.git" }, "keywords": [ "github", "release", "download" ], "author": "Stephan Florquin", "license": "MIT", "bugs": { "url": "https://github.com/terascope/fetch-github-release/issues" }, "dependencies": { "extract-zip": "^2.0.1", "got": "13.0.0", "multi-progress": "^4.0.0", "progress": "^2.0.3", "yargs": "^17.7.2" }, "devDependencies": { "@terascope/eslint-config": "^1.1.14", "@types/jest": "^29.5.14", "@types/multi-progress": "^2.0.6", "@types/node": "^22.15.19", "@types/stream-buffers": "^3.0.7", "@types/tmp": "^0.2.6", "eslint": "^9.27.0", "jest": "^29.7.0", "jest-extended": "^4.0.2", "nock": "^14.0.4", "node-notifier": "^10.0.1", "rimraf": "^5.0.10", "stream-buffers": "^3.0.3", "tmp": "0.2.3", "ts-jest": "^29.3.4", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "packageManager": "yarn@4.9.1" }