@terascope/fetch-github-release
Version:
Download a specific release from github
74 lines • 2.2 kB
JSON
{
"name": "@terascope/fetch-github-release",
"publishConfig": {
"access": "public"
},
"version": "2.3.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",
"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": "14.6.6",
"multi-progress": "^4.0.0",
"progress": "^2.0.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@terascope/eslint-config": "^1.1.30",
"@types/jest": "^30.0.0",
"@types/multi-progress": "^2.0.6",
"@types/node": "^24.12.0",
"@types/stream-buffers": "^3.0.8",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.4",
"jest": "^30.3.0",
"jest-extended": "^7.0.0",
"nock": "^14.0.11",
"node-notifier": "^10.0.1",
"rimraf": "^6.1.3",
"stream-buffers": "^3.0.3",
"tmp": "0.2.5",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.32.1"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"lint": "eslint --ignore-pattern .gitignore",
"lint:fix": "pnpm lint --fix",
"setup": "pnpm install && pnpm 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": "pnpm run lint && pnpm run test",
"clean": "rimraf dist coverage"
}
}