UNPKG

@gmod/bgzf-filehandle

Version:

read from a compressed bgzip file (with .gzi) as if it were uncompressed

59 lines (58 loc) 1.5 kB
{ "name": "@gmod/bgzf-filehandle", "version": "2.0.4", "description": "read from a compressed bgzip file (with .gzi) as if it were uncompressed", "license": "MIT", "repository": "gmod/bgzf-filehandle", "main": "dist/index.js", "module": "esm/index.js", "author": { "name": "Robert Buels", "email": "rbuels@gmail.com", "url": "https://github.com/rbuels" }, "engines": { "node": ">=6" }, "files": [ "dist", "esm", "src" ], "scripts": { "test": "vitest", "lint": "eslint --report-unused-disable-directives --max-warnings 0", "clean": "rimraf dist esm", "prebuild": "yarn clean", "build:esm": "tsc --outDir esm", "build:es5": "tsc --module commonjs --outDir dist", "build": "yarn build:esm && yarn build:es5", "prepublishOnly": "yarn test --run && yarn build", "postversion": "git push --follow-tags" }, "keywords": [ "bionode", "biojs" ], "dependencies": { "generic-filehandle2": "^1.0.0", "pako": "^1.0.11" }, "devDependencies": { "@types/node": "^18.11.16", "@types/pako": "^2.0.0", "@typescript-eslint/eslint-plugin": "^8.16.0", "@typescript-eslint/parser": "^8.16.0", "@vitest/coverage-v8": "^2.0.5", "eslint": "^9.9.0", "eslint-plugin-unicorn": "^56.0.1", "prettier": "^3.4.1", "rimraf": "^6.0.1", "typescript": "^5.7.0", "typescript-eslint": "^8.1.0", "vitest": "^2.1.6" }, "publishConfig": { "access": "public" } }