UNPKG

apr144-bam

Version:

Parser for BAM and BAM index (bai) files

78 lines (77 loc) 2.13 kB
{ "name": "apr144-bam", "version": "2.0.2-rs-053124-020", "description": "Parser for BAM and BAM index (bai) files", "license": "MIT", "repository": "alexpreynolds/bam-js", "main": "dist/index.js", "module": "esm/index.js", "author": { "name": "Colin Diesh", "email": "colin.diesh@gmail.com", "url": "https://github.com/cmdcolin" }, "contributors": [ { "name": "Alex Reynolds", "url": "http://github.com/alexpreynolds" } ], "engines": { "node": ">=6" }, "files": [ "dist", "esm", "src" ], "scripts": { "test": "jest", "coverage": "npm test -- --coverage", "lint:fix": "eslint --fix --ext .js,.ts src test", "lint": "eslint --report-unused-disable-directives --max-warnings 0 --ext .js,.ts src test", "clean": "rimraf dist esm", "build:esm": "tsc --target es2018 --outDir esm", "build:es5": "tsc --target es2015 --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 && npm run build", "version": "standard-changelog && git add CHANGELOG.md", "postversion": "git push --follow-tags" }, "keywords": [ "bionode", "biojs", "bam", "genomics" ], "dependencies": { "@gmod/bgzf-filehandle": "^1.4.4", "abortable-promise-cache": "^1.5.0", "buffer-crc32": "^1.0.0", "generic-filehandle": "^3.0.0", "long": "^4.0.0", "quick-lru": "^4.0.0" }, "devDependencies": { "@types/jest": "^29.5.1", "@types/long": "^4.0.0", "@types/node": "^20.11.19", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7.0.2", "eslint": "^8.40.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "eslint-plugin-unicorn": "^51.0.1", "jest": "^29.5.0", "jest-fetch-mock": "^3.0.3", "prettier": "^3.2.5", "rimraf": "^5.0.0", "standard-changelog": "^5.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.4" }, "publishConfig": { "access": "public" } }