UNPKG

@gmod/bam

Version:

Parser for BAM and BAM index (bai) files

66 lines (65 loc) 1.73 kB
{ "name": "@gmod/bam", "version": "5.0.7", "description": "Parser for BAM and BAM index (bai) files", "license": "MIT", "repository": "GMOD/bam-js", "main": "dist/index.js", "module": "esm/index.js", "author": { "name": "Colin Diesh", "email": "colin.diesh@gmail.com", "url": "https://github.com/cmdcolin" }, "engines": { "node": ">=6" }, "files": [ "dist", "esm", "src" ], "scripts": { "test": "vitest", "lint": "eslint --report-unused-disable-directives --max-warnings 0", "clean": "rimraf dist esm", "build:esm": "tsc --outDir esm", "build:es5": "tsc --module commonjs --outDir dist", "build": "npm run build:esm && npm run build:es5", "prebuild": "npm run clean && npm run lint", "preversion": "npm run lint && npm test run && npm run build", "version": "standard-changelog && git add CHANGELOG.md", "postversion": "git push --follow-tags" }, "keywords": [ "bionode", "biojs", "bam", "genomics" ], "dependencies": { "@gmod/abortable-promise-cache": "^2.0.0", "@gmod/bgzf-filehandle": "^2.0.1", "crc": "^4.3.2", "generic-filehandle2": "^1.0.0", "quick-lru": "^4.0.0" }, "devDependencies": { "@types/node": "^20.11.19", "@typescript-eslint/eslint-plugin": "^8.1.0", "@typescript-eslint/parser": "^8.1.0", "@vitest/coverage-v8": "^3.0.1", "eslint": "^9.9.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-unicorn": "^57.0.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "standard-changelog": "^6.0.0", "typescript": "^5.0.4", "typescript-eslint": "^8.1.0", "vitest": "^3.0.1" }, "publishConfig": { "access": "public" } }