variant-linker
Version:
CLI for Ensembl VEP and Variant Recoder
105 lines (104 loc) • 2.69 kB
JSON
{
"name": "variant-linker",
"version": "3.12.2",
"description": "CLI for Ensembl VEP and Variant Recoder",
"main": "src/index.js",
"bin": {
"variant-linker": "./src/main.js"
},
"scripts": {
"test": "mocha --recursive",
"test:ci": "mocha --config .mocharc.ci.json --recursive",
"start": "node ./src/main.js",
"build": "webpack --mode production",
"serve": "webpack serve --mode development --open",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"benchmark": "node scripts/benchmark.js",
"docs:dev": "cd docs && npm start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve"
},
"keywords": [
"variant",
"annotation",
"Ensembl",
"VEP",
"CLI",
"genetics"
],
"author": "Bernt Popp",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/berntpopp/variant-linker.git"
},
"bugs": {
"url": "https://github.com/berntpopp/variant-linker/issues"
},
"homepage": "https://berntpopp.github.io/variant-linker/",
"files": [
"src",
"config",
"schema",
"scoring",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@gmod/vcf": "^6.0.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.6.7",
"debug": "^4.3.4",
"lru-cache": "^11.1.0",
"node-interval-tree": "^2.1.2",
"semver": "^7.7.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"babel-loader": "^9.1.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.6",
"json-loader": "^0.5.7",
"mocha": "^10.4.0",
"nock": "^13.5.4",
"path-browserify": "^1.0.1",
"prettier": "^3.5.3",
"proxyquire": "^2.1.3",
"semantic-release": "^24.2.3",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0",
"table": "^6.9.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}