myseq-vcf
Version:
Query local or remote Tabix-indexed VCFs by genomic position
78 lines (77 loc) • 2.17 kB
JSON
{
"name": "myseq-vcf",
"version": "2.0.0",
"main": "lib/myseq-vcf.js",
"scripts": {
"build": "browserify -t [ babelify ] -o dist/myseq-vcf.js --standalone myseq src/myseq-vcf.js",
"test": "mocha --require @babel/register src/**/*.test.js",
"pretest:browser": "npm run build",
"test:browser": "karma start karma.conf.js",
"lint": "eslint .",
"prepare": "babel src/ -d lib --ignore test.js"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib",
"dist"
],
"keywords": [
"myseq",
"genomics",
"VCF"
],
"author": "Michael Linderman <mlinderman@middlebury.edu>",
"contributors": [
"Leo McElroy <lmcelroy@middlebury.edu>"
],
"license": "Apache-2.0",
"browser": {
"./src/io/FileReaders.js": "./src/io/FileReaders-browser.js",
"./lib/io/FileReaders.js": "./lib/io/FileReaders-browser.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"flow-bin": "^0.124.0",
"karma": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"sinon": "^9.0.2"
},
"dependencies": {
"jbinary": "^2.1.3",
"jdataview": "^2.5.0",
"lodash": "^4.17.15",
"pako": "^1.0.11",
"promise-defer": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlinderm/myseq-vcf.git"
},
"bugs": {
"url": "https://github.com/mlinderm/myseq-vcf/issues"
},
"homepage": "https://github.com/mlinderm/myseq-vcf#readme",
"description": "Query local or remote Tabix-indexed VCFs by genomic position"
}