UNPKG

@gmod/gff

Version:

read and write GFF3 data as streams

73 lines (72 loc) 1.98 kB
{ "name": "@gmod/gff", "version": "1.3.0", "description": "read and write GFF3 data as streams", "license": "MIT", "repository": "GMOD/gff-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" }, "bin": { "gff-to-json": "dist/gff-to-json.js" }, "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", "gff3", "gff", "genomics" ], "dependencies": { "stream-browserify": "^3.0.0" }, "devDependencies": { "@types/jest": "^27.0.2", "@types/node": "^16.11.7", "@typescript-eslint/eslint-plugin": "^4.28.5", "@typescript-eslint/parser": "^4.28.5", "documentation": "^13.2.5", "eslint": "^7.31.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.23.4", "eslint-plugin-prettier": "^3.4.0", "eslint-plugin-tsdoc": "^0.2.14", "jest": "^27.3.1", "npm-run-all": "^4.1.5", "prettier": "^2.3.2", "rimraf": "^3.0.2", "tmp-promise": "^3.0.2", "ts-jest": "^27.0.7", "tslib": "^2.3.1", "typescript": "^4.4.4" } }