UNPKG

@gmod/vcf

Version:

High performance streaming Variant Call Format (VCF) parser in pure JavaScript

76 lines (75 loc) 2.11 kB
{ "name": "@gmod/vcf", "version": "6.0.9", "description": "High performance streaming Variant Call Format (VCF) parser in pure JavaScript", "type": "module", "types": "./dist/index.d.ts", "exports": { "import": { "import": "./esm/index.js" }, "require": { "require": "./dist/index.js" } }, "repository": "github:GMOD/vcf-js", "author": { "name": "Garrett Stevens", "email": "stevens.garrett.j@gmail.com", "url": "https://github.com/garrettjstevens" }, "license": "MIT", "homepage": "https://github.com/GMOD/vcf-js#vcf-js", "bugs": { "url": "https://github.com/GMOD/vcf-js/issues" }, "files": [ "dist", "esm", "src" ], "engines": { "node": ">=6" }, "scripts": { "test": "vitest", "lint": "eslint --report-unused-disable-directives --max-warnings 0", "docs": "documentation readme src/parse.ts --section=API --shallow", "postdocs": "prettier --write README.md", "clean": "rimraf dist esm", "build:esm": "tsc --target es2020 --outDir esm", "build:es5": "tsc --target es2020 --module commonjs --outDir dist", "build": "yarn build:esm && yarn build:es5", "prebuild": "yarn clean && yarn lint", "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json", "preversion": "yarn lint && yarn test --run && yarn build", "version": "standard-changelog && git add CHANGELOG.md", "postversion": "git push --follow-tags" }, "devDependencies": { "@babel/core": "^7.20.5", "@eslint/js": "^9.7.0", "@types/node": "^22.10.1", "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.1", "@vitest/coverage-v8": "^3.0.4", "documentation": "^14.0.1", "eslint": "^9.7.0", "eslint-plugin-unicorn": "^58.0.0", "prettier": "^3.2.4", "rimraf": "^6.0.1", "standard-changelog": "^6.0.0", "typescript": "^5.3.3", "typescript-eslint": "^8.8.1", "vitest": "^3.0.4" }, "keywords": [ "vcf", "genomics", "bionode", "biojs" ], "publishConfig": { "access": "public" } }