UNPKG

@gmod/bam

Version:

Parser for BAM and BAM index (bai) files

72 lines (71 loc) 1.96 kB
{ "name": "@gmod/bam", "version": "7.2.4", "description": "Parser for BAM and BAM index (bai) files", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/GMOD/bam-js.git" }, "type": "module", "main": "dist/index.js", "exports": { "import": "./esm/index.js", "require": "./dist/index.js" }, "author": { "name": "Colin Diesh", "email": "colin.diesh@gmail.com", "url": "https://github.com/cmdcolin" }, "files": [ "dist", "esm", "src" ], "scripts": { "test": "vitest", "clean": "rimraf dist esm", "format": "prettier --write .", "lint": "eslint --report-unused-disable-directives --max-warnings 0", "prebuild": "pnpm clean", "build:esm": "tsc --outDir esm", "build:es5": "tsc --module commonjs --moduleResolution bundler --outDir dist", "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json", "preversion": "pnpm lint && pnpm test --run && pnpm build", "postversion": "git push --follow-tags", "build": "pnpm build:esm && pnpm build:es5", "benchonly": "vitest bench", "bench": "./scripts/build-both-branches.sh \"$BRANCH1\" \"$BRANCH2\" && vitest bench", "version": "standard-changelog && git add CHANGELOG.md" }, "keywords": [ "bionode", "biojs", "bam", "genomics" ], "dependencies": { "@gmod/bgzf-filehandle": "^6.0.19", "@jbrowse/quick-lru": "^7.3.5", "crc": "^4.3.2", "generic-filehandle2": "^2.1.7" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^25.8.0", "@vitest/coverage-v8": "^4.1.6", "eslint": "^10.4.0", "eslint-plugin-import-x": "^4.16.2", "eslint-plugin-unicorn": "^64.0.0", "prettier": "^3.8.3", "rimraf": "^6.1.3", "standard-changelog": "^7.0.1", "typescript": "^6.0.3", "typescript-eslint": "^8.59.3", "vitest": "^4.1.6" }, "publishConfig": { "access": "public" } }