UNPKG

@gmod/bam

Version:

Parser for BAM and BAM index (bai) files

73 lines (72 loc) 1.84 kB
{ "name": "@gmod/bam", "version": "6.0.4", "description": "Parser for BAM and BAM index (bai) files", "license": "MIT", "repository": "GMOD/bam-js", "type": "module", "types": "./dist/index.d.ts", "exports": { "import": { "import": "./esm/index.js" }, "require": { "require": "./dist/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", "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json", "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": "^3.0.1", "@gmod/bgzf-filehandle": "^4.0.0", "crc": "^4.3.2", "generic-filehandle2": "^2.0.1", "quick-lru": "^4.0.0" }, "devDependencies": { "@types/node": "^22.15.3", "@vitest/coverage-v8": "^3.0.9", "eslint": "^9.9.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-unicorn": "^59.0.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "standard-changelog": "^7.0.1", "typescript": "^5.0.4", "typescript-eslint": "^8.27.0", "vitest": "^3.0.9" }, "publishConfig": { "access": "public" } }