@gmod/gtf
Version:
read and write GTF data as streams
90 lines (89 loc) • 2.33 kB
JSON
{
"name": "@gmod/gtf",
"version": "0.0.9",
"description": "read and write GTF data as streams",
"license": "MIT",
"repository": "https://github.com/GMOD/gtf-js",
"main": "dist/index.js",
"module": "esm/index.js",
"browser": {
"stream": "stream-browserify"
},
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"url": "https://github.com/rbuels"
},
"contributors": [
{
"name": "Teresa De Jesus Martinez",
"email": "tere486martinez@gmail.com",
"url": "https://github.com/teresam856"
}
],
"engines": {
"node": ">=6"
},
"bin": {
"gtf-to-json": "dist/gtf-to-json.js"
},
"directories": {
"lib": "dist"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist esm",
"coverage": "npm-run-all \"test -- --coverage\"",
"lint": "eslint src test",
"docs": "npm-run-all docs:*",
"docs:api": "documentation readme src/api.ts --section=API --shallow",
"docs:util": "documentation readme src/util.ts --section=util --shallow",
"docs:format": "prettier --write README.md",
"prebuild": "npm-run-all clean",
"build:esm": "tsc --target es2018 --outDir esm",
"build:es5": "tsc --target es2015 --module commonjs --outDir dist",
"build": "npm-run-all --parallel build:*",
"prepublishOnly": "npm-run-all test build",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"gtf",
"gff",
"genomics"
],
"dependencies": {
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.16",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"documentation": "^14.0.1",
"es6-promisify": "^7.0.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"tmp-promise": "^3.0.2",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}